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

Hello, I recently discovered your library which seems the perfect tool to automate some regular actions on Redmine. I read the documentation and tried several things but I still can't...

question

Hi, we need to create or update multiple (1000+) issues at once. Do you plan to extent the engine to support async write access to the redmine rest api? Or...

feature

I'm trying to filter the Time Entries with a custom date format configuration (%d-%m-%Y - with dashes), but the filter is returning all records, as if I didn't pass any...

question

Hello, I'm working on a project that uses the [DMSf plugin ](https://github.com/danmunn/redmine_dmsf) for Redmine, so I was wondering if there is a chance to take controll of this plugin with...

feature

Hello, I'm trying to catch an Auth Error when I try to make this: ``` redmine = Redmine( connection.REDMINE_URL, version=connection.REDMINE_VERSION, username=connection.REDMINE_USER, password=connection.REDMINE_PASSWORD, requests={'verify': False} ) ``` Of course, it returns...

question

I want to receive data by request: `redmine_connection = Redmine('http://link/redmine', key=REDMINE_API)` `while True:` `set_issues_update = list(redmine_connection.issue.filter(status_id=string_list_status, project_id=CurrentProjectId, assigned_to_id=self.list_users_to_string).values())` For a while, everything runs flawlessly, but after a while the program...

question

tested with the Debian package version 2.2.1-1 and Redmine 3.3.1-4+deb9u2, PostgreSQL backend Here is the workaround I'm using in my code: ``` # FIXME - why doesn't this already have...

feature

As an alternative, maybe it should throw if auth is present in both requests and the explicit username/password at the same time.

I am trying to use python-redmine to create a filter that returns all issues that NOT belong to target version A or target version B. In Redmine I can create...

docs