Questions tagged [python-redmine]

Python module for interfacing Redmine REST API.Python Redmine is a library for communicating with a Redmine project management application.

Documentation lives here.

19 questions
4
votes
2 answers

Can I get a list of users assigned to a project?

Using python-redmine module, is there a way to list all users assigned to a project through the Redmine API? I've found that I'm able to request information about individual users, and that may API Key user is only assigned to a specific project…
oz10
  • 153,307
  • 27
  • 93
  • 128
2
votes
1 answer

python-redmine filter issues by version due date

I need to filter issues where issue fixed_version due date is between two given date. For example versions which they due_date is in current month. I tried everything I could think of, but I couldn't figure it out. I used below code now but It's too…
Sajad Jalilian
  • 136
  • 1
  • 7
2
votes
1 answer

Redmine API to fetch all issue in python

I am trying to fetch all the issue from redmine list_1 = [] issuess = conn_red.issue.all() for i in issuess: list_1.append(i) print len(list_1) The print statement result is 575 But In Redmine, I have 2735 issue. I wonder, why it is…
2
votes
1 answer

python redmine how to get all the issues in a project as xml or json?

I have more than 1500 issues in my project I need to check each issues using python Redmine API but it limits default by 25 and I can extend up to 100 but how can I check for all 1500 issues.
Anishkumar
  • 31
  • 1
  • 6
2
votes
2 answers

Get Redmine user details by user email id

Is there any redmine REST API available for company admin to get the details of user by giving users email id. details like redmine KEY etc
2
votes
1 answer

Get the list of subtasks of an issue using python redmine module

I am writing a python script using python-redmine module to automate the issue creation in Redmine tool for project task tracking. With the help of python-redmine documentation, it was quite easy to create issues and subtask under them. Also it is…
Anb
  • 23
  • 4
1
vote
0 answers

Python-Redmine filter issues by closed_on date

I am attempting to get all open ticket and tickets that have closed within the last year. I have tried a few different variations of this but have not been successful to even just get closed tickets within the last year. from datetime import…
1
vote
1 answer

Python-Redmine Unable to concat custom_field value to issues

I am unable to get the custom fields value merged on the issues. The results look like this. I am looking to have those lines merged together so that it would look more like 669 | 253652 | 10 671 | 118387 | 10 Here is my code that I am attempting…
1
vote
1 answer

Python redmine api: journals.filter usage

For example I have an issue: issue = redmine.issue.get(100) It is possible to get the notes of particular user for this issue? I found journals.filter method: issue.journals.filter() But I don't know syntax for filter() method. Can somebody…
alex
  • 13
  • 2
0
votes
0 answers

Python-Redmine sort issues by two columns

I am trying to sort fetched issues by two columns, and following the documentation https://python-redmine.com/resources/issue.html#filter I first wrote redmine.issue.filter(..., sort = 'priority:desc') which works as expected. But now, I want to…
mvidelgauz
  • 2,176
  • 1
  • 16
  • 23
0
votes
1 answer

Python redmine collect actual start date and actual completion date

I am trying to collect the actual issue start date and actual completion date from my company Redmine using Python-Redmine. But I CAN NOT find out the attribute of actual completion date. I tried some common phrases like…
0
votes
2 answers

python/redmine retrieve value of a custom_field

With redminelib, I'm trying to retrieve value of custom_fields, when the custom_field is a key/value in redmine. In issue.custom_fields.get(109), we've got: id of the custom_field name of the custom_field value which is actually the key index of…
Raoul Debaze
  • 466
  • 1
  • 8
  • 24
0
votes
1 answer

Query about usage of setattr() in Python-Redmine

setattr() for an item in Redmine issues, is failing, with the following error. Traceback (most recent call last): File "E:\test\get_redmine_data.py", line 47, in print (item.assigned_to) File…
Deepak V
  • 299
  • 2
  • 15
0
votes
1 answer

how i can fix this error? AbstractController::DoubleRenderError

I want to recover data in two different tables and put the data on excel but I have a little bug if someone has an idea. Thank you class ExportController < ApplicationController def index @attachments= Attachment.all @projects= Project.all …
mor diop
  • 27
  • 8
0
votes
1 answer

How to synchronize planio communication to trello?

I am trying to integrate plan.io with trello so that issue, bug e.t.c communication on planio get synchronized to trello dashboard. On the internet I am only getting link for redmine to integrate to trello. Also I found https://zapier.com which…
iamabhaykmr
  • 1,803
  • 3
  • 24
  • 49
1
2