Skip to content

thedavecollins/jira

 
 

Repository files navigation

JIRA Python Library

https://pypip.in/py_versions/jira/badge.svg?style=flat https://pypip.in/license/jira/badge.svg?style=flat https://pypip.in/download/jira/badge.svg?style=flat https://pypip.in/version/jira/badge.svg?style=flat https://pypip.in/egg/jira/badge.svg?style=flat https://pypip.in/wheel/jira/badge.svg?style=flat
https://api.travis-ci.org/pycontribs/jira.svg?branch=master https://pypip.in/status/jira/badge.svg?style=flat

This library eases the use of the JIRA REST API from Python

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?

Usage

See the documentation for full details.

Credits

In additions 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 continous integration testing.
  • JetBrains for providing us with free licenses of PyCharm
  • Travis for hosting our continous integration
  • Navicat for providing us free licenses of their powerful database client GUI tools.
https://www.atlassian.com/dms/wac/images/press/Atlassian-logos/logoAtlassianPNG.png https://www.jetbrains.com/pycharm/docs/logo_pycharm.png https://upload.wikimedia.org/wikipedia/en/9/90/PremiumSoft_Navicat_Premium_Logo.png

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.9%
  • Other 1.1%