python-redmine icon indicating copy to clipboard operation
python-redmine copied to clipboard

Python Redmine is a library for communicating with a Redmine project management application

Results 60 python-redmine issues
Sort by recently updated
recently updated
newest added

When querying a single resource, multiple requests will be sent for this includes. _includes = ['trackers', 'issue_categories', 'enabled_modules', 'time_entry_activities', 'issue_custom_fields'] _includes = ['children', 'attachments', 'relations', 'changesets', 'journals', 'watchers', 'allowed_statuses']

question

https://python-redmine.com/resources/user.html#all does not appear to return all users. It only returns the active users. It does not include the registered or locked users. I am trying to search for users...

bug

`redmine.user.get(...).issues` searches on the `assigned_to` field which might not be what the user expects.

question

When you try adding a user to a group they are member of, you get "User is invalid" instead of something that says, already a member, or something to that...

question

Hello, I was wondering if it is possible to customize the input fields of issues on GitHub to integrate a new parameter "geojson". This parameter comes from the extension "gtt"...

question

To test whether, for example, a project lookedup earlier is equal to a tracker's project.

Hi, Wanted to get an issue from the redmine api I work with, however when I run this code I get an unexpected error. The version I installed on python...

question

The uploads portion of the following example code fails with the error below for create(), removing the uploads assignment makes the call successful: https://python-redmine.com/resources/issue.html?highlight=BytesIO issue = redmine.issue.create( project_id='vacation', subject='Vacation', tracker_id=8,...

question

hi, any help? I couldn't find a solution to my issue. issues.export("csv", savepath=save_path, columns="all", filename="issues.csv") gives 9469,SDK,Feature,"",Closed,Normal,??????????? ???????? ?????? SDK instead of 9469,SDK,Feature,"",Closed,Normal,Исправление релизных сборок SDK

question

when I code as this: res = redmine.project.get(20).issues.filter((1,1)) why errors: Traceback (most recent call last): File "D:\gitlab\test_proj\redmine_demo\update.py", line 23, in res = redmine.project.get(20).issues.filter((1,1)) TypeError: filter() takes 1 positional argument but...

bug