skillfed

python-redmine

Library for communicating with a Redmine project management application

python-redmine v2.5.0 195.7K downloads/30d#9,807 on PyPI595
Permissive license Apache 2.0 DORMANT released

What it is and what it does

Python-Redmine is a client library that wraps Redmine's REST API in a Pythonic, ORM-inspired interface. It lets you query, create, update, and delete Redmine resources—projects, issues, users, time entries, and more—using familiar object-oriented patterns rather than raw HTTP calls. The library depends only on requests and supports Python 3.7 through 3.12 and PyPy3.

It's designed for developers who need to automate Redmine workflows, integrate Redmine data into other systems, or build tooling on top of Redmine. The ORM-style API means you work with resource objects and their attributes directly, rather than parsing JSON responses. Standard Edition is open-source under Apache 2.0; a Pro Edition with extended plugin support is available commercially.

Use it for:

  • Automate issue creation and status updates in bulk from external data sources or CI/CD pipelines.
  • Extract project and issue data for reporting, analytics, or integration with business intelligence tools.
  • Build custom dashboards or monitoring tools that pull real-time data from Redmine.
  • Synchronize Redmine issues with external ticketing or project management systems.
  • Manage time entries and project resources programmatically for resource planning automation.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python-Redmine provides a Django ORM-style Pythonic API for interacting with Redmine project management servers via their REST API, supporting resource creation, retrieval, filtering, and updates.

Yes, if you need to integrate with a Redmine server and want a stable, well-documented Python client. The library is production-ready (Development Status 5), has no known vulnerabilities, and low install friction. However, note that maintenance is dormant (last release 866 days ago)—suitable for established integrations but not ideal if you need active upstream support or compatibility with very recent Redmine versions. Verify your Redmine version compatibility before adopting.

Install

python-redmine on PyPI

pip

pip install python-redmine

uv

uv add python-redmine

poetry

poetry add python-redmine

Installing python-redmine

Before you install

Low install friction with a single dependency (requests >= 2.31.0). Dormant maintenance status—last release was 866 days ago (2024-03-31), though the repository remains active with recent commits and no archived status. Suitable for stable, established Redmine integrations but not for projects requiring active upstream development.

License in practice

Apache 2.0 permissive license allows commercial and private use with minimal restrictions. Standard Edition is open-source; a Pro Edition with proprietary licensing is available separately for purchase.

Quickstart

pip install python-redmine

from python_redmine import Redmine

redmine = Redmine('http://demo.redmine.org', username='foo', password='bar')
project = redmine.project.get('vacation')
print(project.issues[0].subject)

Requires Redmine server running with REST API enabled; requests >= 2.31.0 is mandatory as of version 2.5.0.

Verify before relying

  • Whether Pro Edition features (RedmineUP plugins) are available and what their licensing terms entail.
  • Current state of Redmine server compatibility—changelog mentions Redmine >= 5.0.0 for some features but does not specify maximum supported version.
  • Performance characteristics when working with large result sets or deeply nested resource relations.

Package facts

License Apache 2.0 (permissive)
Python support supports the current Python release (<4,>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies 1 — requests
Maintenance dormant — 866 days since the last release
Last repo commit
First released
Downloads 195,688/month — #9,807 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: python_redmine-2.5.0-py3-none-any.whl

Keywords: redmine, redmineup, redminecrm, redminelib, easyredmine

Development Status :: 5 - Production/StableEnvironment :: ConsoleEnvironment :: Web EnvironmentIntended Audience :: DevelopersLicense :: OSI Approved :: Apache Software LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Internet :: WWW/HTTPTopic :: Software Development :: Libraries :: Python ModulesTopic :: Utilities

Tags

redmine api client pythonredmine project management libraryredmine rest api wrapperredmine orm-style interfaceredmine resource managementredmine issue tracking apiredmine python integration
redmine-integrationproject-management-apiorm-style

More Python Modules packages