I tried to install jira-python via pip.
pip install jira
pip install jira-python
jira package installed normally, but jira-python package returns error that there is no matching version.
I think there seems a problem with package in pip.
https://pypi.python.org/pypi/jira-python page also rises 404 error.
Is there any method to install jira-python package? things like install via source code or anything..
It might have been superceded or replaced by jira
Install:
$ pip install jira
Quickstart:
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]'