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

I am using that meeting plugin of Redmine but your library is unable to fetch the details that are now present in Redmine like start time and end time plz...

Here is a minimal working example. I have a redmine group "My Redmine Group" associated with the 2 following projects : Root Project (id=1) └── Subproject (id=4) ```python ########## Explicitly...

Hi, I have a question about creating new projects. Here is an example snippet: ``` project = redmine.project.create( name=pr_name, identifier=pr_id_name, description=pr_description, is_public=False, parent_id=parent_project, inherit_members=False, tracker_ids=pr_tracker_ids, enabled_module_names=['issue_tracking', 'time_tracking', 'issue_templates'], time_entry_activities=[{"id": 30,...

Hello, In the documentation, there is no mention of support for the invoice. Is this already supported in the v2.3? Thanks!

Do you plan to add support for redminecrm helpdesk plugin ?

feature

hi I'm trying to get projects and their users. it works with concrete id ``` project = [values for values in self.entity.project_membership.filter(project_id=1037).values()] ``` but it does not work if you...

I tried to read the information in the project document and download the file, but I couldn't find the solution. Do you have a good method? Thank you for your...

According to https://www.redmine.org/projects/redmine/wiki/Rest_TimeEntries , the property user_id is supported: > "user id to be specified in need of posting time on behalf of another user" But python-redmine does not support...

Using the example code from the readme, like this: ```python import redminelib import sys import json from redminelib import Redmine from dateutil.relativedelta import relativedelta with open('config.json', 'r') as f: cfg...

The Redmine GUI can filter issues "Related to" with many options: Are these options available via the API or Python-Redmine? I have searched everywhere and can't find anything. I know...