Python Redmine is a library for communicating with a Redmine project management application
.. image:: https://badge.fury.io/py/python-redmine.svg :target: https://badge.fury.io/py/python-redmine
.. image:: https://img.shields.io/travis/maxtepkeev/python-redmine/master.svg :target: https://travis-ci.org/maxtepkeev/python-redmine
.. image:: https://img.shields.io/coveralls/maxtepkeev/python-redmine/master.svg :target: https://coveralls.io/r/maxtepkeev/python-redmine?branch=master
Python-Redmine is a library for communicating with a
Redmine__ project management application. Redmine exposes some of it's data via
REST API__ for which Python-Redmine provides a simple but powerful Pythonic API inspired by a well-known
Django ORM__:
.. code-block:: python
from redminelib import Redmine
redmine = Redmine('http://demo.redmine.org', username='foo', password='bar') project = redmine.project.get('vacation')
project.id 30404
project.identifier 'vacation'
project.created_on datetime.datetime(2013, 12, 31, 13, 27, 47)
project.issues
project.issues[0]
dir(project.issues[0]) ['assignedto', 'author', 'createdon', 'description', 'doneratio', 'duedate', 'estimatedhours', 'id', 'priority', 'project', 'relations', 'startdate', 'status', 'subject', 'timeentries', 'tracker', 'updatedon']
project.issues[0].subject 'Vacation'
project.issues[0].time_entries
Standard Edition ++++++++++++++++
The recommended way to install is from Python Package Index (PyPI) with
pip__:
.. code-block:: bash
$ pip install python-redmine
Pro Edition +++++++++++
License for a Pro Edition can be bought
here__. You will receive an email with all the details regarding Pro Edition installation process.
Documentation is available at https://python-redmine.com.
Support for Standard Edition is provided via
GitHub__ only, while support for Pro Edition is provided both via
GitHub__ and [email protected] Be sure to write from email that was specified during the purchase procedure.
Python-Redmine Standard Edition is licensed under Apache 2.0 license. Python-Redmine Pro Edition is licensed under the Python-Redmine Pro Edition 1.0 license. Check the
License__ for details.