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]
|