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.
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]'
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]
See the documentation for full details.
Development takes place on GitHub using the default repository branch. Each version is tagged.
Follow the instructions in the contributing guide, which will describe how to use the dev container that will automatically setup a suitable environment.
docker run -dit -p 2990:2990 --name jira addono/jira-software-standalone
tox -e lint
tox
tox -e publish
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.
In addition to all the contributors we would like to thank to these companies:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4