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

Hi, I'm trying to add custom fields to an existing project. This seems not to work, while updating existing custom fields in a project works fine. The documentation's example https://python-redmine.com/resources/project.html#save...

question

We can pass optional parameters to Redmine for the requests module. In particular, we can set timeout. But in fact, this timeout was not passed to the requests module, it...

Hello, Thanks for this package. Is there a way to filter projects which has a specific custom field? With the api, I would do it with: - `https://redmine.url/projects.json?cf_3=*` for all...

improvement

https://python-redmine.com/ is no longer working, please fix. We have a pro license...

Hello! It seems like the tls/ssl certificate for the [python-redmine.com](https://python-redmine.com/) is outdated: ```bash [stfad@workstation ~]$ openssl s_client -showcerts -servername python-redmine.com -connect python-redmine.com:443 2>/dev/null | openssl x509 -inform pem -noout -text...

Hello, I am new to using this library and have encountered an issue when attempting to apply multiple filters while listing issues. It seems that the filters are not being...

Hi, I want to purchase the pro version for note support and it always shows the session expire page after placing the order, could please check it or if there's...

question

The fairly-new construct_request_kwargs() takes a param "headers" which it uses exclusively to create the request headers; however, if the engine object was instantiated with 'key', the key is stored in...

`BaseEngine.construct_request_kwargs()` fails to preserve existing headers set in self.requests by `BaseEngine.__init__`. Merge the new headers with the existing engine headers. (This was noticed with 'key' for API access via key.)...

Hi, I'm using the Python Redmine library to fetch time entries like this: entries = client.time_entry.filter(offset=0, limit=100) But each request (100 entries) takes ~50–60 seconds, which becomes very slow when...