Python library for interacting with JIRA via REST APIs.
Project description
This library eases the use of the Jira REST API from Python and it has been used in production for years.
As this is an open-source project that is community maintained, do not be surprised if some bugs or features are not implemented quickly enough. You are always welcomed to use BountySource to motivate others to help.
Quickstart
Feeling impatient? I like your style.
from jira import JIRA
jira = JIRA('https://jira.atlassian.com')
issue = jira.issue('JRA-9')
print(issue.fields.project.key) # 'JRA'
print(issue.fields.issuetype.name) # 'New Feature'
print(issue.fields.reporter.displayName) # 'Mike Cannon-Brookes [Atlassian]'
Installation
Download and install using pip install jira or easy_install jira
You can also try pip install --user --upgrade jira which will install or upgrade jira to your user directory. Or maybe you ARE using a virtualenv right?
By default only the basic library dependencies are installed, so if you want to use the cli tool or other optional dependencies do perform a full installation using pip install jira[opt,cli,test]
Usage
See the documentation for full details.
Development
Development takes place on GitHub using the default repository branch. Each version is tagged.
Setup
Automatic (VS Code)
Follow the instructions in the contributing guide, which will describe how to use the dev container that will automatically setup a suitable environment.
Manual
Install pyenv to install a suitable python version.
- Launch docker jira server
docker run -dit -p 2990:2990 --name jira addono/jira-software-standalone
tox envs
- Lint
tox -e lint
- Run tests
tox
- Build and publish with TWINE
tox -e publish
Jira REST API Reference Links
When updating interactions with the Jira REST API please refer to the documentation below. We aim to support both Jira Cloud and Jira Server / Data Center.
Jira Cloud / Jira Server (main REST API reference)
Jira Software Cloud / Jira Software Server (former names include: Jira Agile, Greenhopper)
Credits
In addition to all the contributors we would like to thank to these companies:
Atlassian for developing such a powerful issue tracker and for providing a free on-demand Jira instance that we can use for continuous integration testing.
GitHub for hosting our continuous integration and our git repo
Navicat for providing us free licenses of their powerful database client GUI tools.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jira-3.8.0.tar.gz
.
File metadata
- Download URL: jira-3.8.0.tar.gz
- Upload date:
- Size: 102.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63719c529a570aaa01c3373dbb5a104dab70381c5be447f6c27f997302fa335a |
|
MD5 | 6e9fa2e8eaa6ac1b1e6ad9a94e63a0e5 |
|
BLAKE2b-256 | 78b4557e4c80c0ea12164ffeec0e29372c085bfb263faad53cef5e1455523bec |
File details
Details for the file jira-3.8.0-py3-none-any.whl
.
File metadata
- Download URL: jira-3.8.0-py3-none-any.whl
- Upload date:
- Size: 77.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12190dc84dad00b8a6c0341f7e8a254b0f38785afdec022bd5941e1184a5a3fb |
|
MD5 | 69aa8c13c290e0a020470fcc7c0b1c22 |
|
BLAKE2b-256 | 4f52bb617020064261ba31cc965e932943458b7facfd9691ad7f76a2b631f44f |