Questions tagged [python-redmine]

Python module for interfacing Redmine REST API.Python Redmine is a library for communicating with a Redmine project management application.

Documentation lives here.

19 questions
0
votes
1 answer

python-redmine timestamp filter

I have a code in python which I use to retrieve issues from redmine project. I am using the python-redmine library. My code is as below: from redminelib import Redmine from datetime import datetime from datetime import timedelta time =…
Vivek B Ahmed
  • 33
  • 1
  • 8
0
votes
1 answer

Attachments in Redmine Python Rest API

dir(sttachments) will give the following value. [u'author', u'content_type', u'content_url', u'created_on', u'description', u'filename', u'filesize', u'id', u'thumbnail_url'] But I cannot able to read the container_id of attachments, due to this I…
0
votes
1 answer

Read the null value in Python Redmine API

Using rest API, I am connecting Redmine with Python Script and Populating the data in the ODOO. In Redmine assigned_to value in issue is empty i.e NULL, while Reading those value. Traceback (most recent call last): File…
0
votes
1 answer

Redmine: remove archived projects

I would like to remove all archived projects on my redmine installation. Doing so from my browser works, but I have 400 of them... I had the idea to script it, but the redmine REST api doesn't seem to expose the deletion of archived projects... And…
alleen1
  • 418
  • 6
  • 14
1
2