forked from pycontribs/jira
-
Notifications
You must be signed in to change notification settings - Fork 0
Python JIRA Library is the easiest way to automate JIRA.
License
esciara/jira
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
# JIRA Python Library This library eases the use of the JIRA REST API from Python applications. # Quickstart Feeling impatient? I like your style. :::python from jira.client import JIRA options = { 'server': 'https://jira.atlassian.com'} jira = JIRA(options) 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 user directory You ARE using a [virtualenv][2], right? # Usage See the documentation (http://readthedocs.org/docs/jira-python/) for full details. [1]: http://docs.python-requests.org/ [2]: http://www.virtualenv.org/en/latest/index.html
About
Python JIRA Library is the easiest way to automate JIRA.
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Python 97.5%
- Makefile 1.5%
- Shell 1.0%