python-redmine
python-redmine copied to clipboard
Python Redmine is a library for communicating with a Redmine project management application
In case described, the value is set to None, so it is in the dict. This raises the exception mentioned. The fix prevents the error.
I was wondering if anyone has tried using python-redmine with OpenProject, a fork of Redmine. I get a lot of : ``` >>> redmine.project.get('project_name') Traceback (most recent call last): File...
There is no option to export the whole wiki at once, is there? I used wiki = redmine.wiki_page.get('Foo', project_id=1) as described in the wiki and it works great for single...
I found this in the documentation for filtering issues ``` issues = redmine.issue.filter( project_id='vacation', subproject_id='!*', created_on='>
Hello again! In Redmine's GUI it's possible to make copies of issues, including their attachments. I was wondering if it's possible to do the same action using the API, including...
We need to create a section in our documentation about "freezing" Python-Redmine using cxFreeze, PyInstaller, py2exe etc. Thanks to @vlegoff we already have a nice explanation about how to do...
Salute! I clearly don't understand something. Please help) I want to check previously created applications through certain values in the SUBJECT of the application. Let's imagine a case: Once an...
Instead of having the Key being a query parameter in the url (which can shows up in webserver access logs), move it to the header. https://www.redmine.org/projects/redmine/wiki/Rest_api#Authentication
The quick way to test it is with no Internet connection: ``` import os import logging from redminelib import Redmine from redminelib.exceptions import BaseRedmineError from requests.exceptions import RequestException URL =...