Skip to content

jhosmer/jira

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

# Credits

In additions to all the contributors we would like to thank to these companies:

* [Atlassian](https://www.atlassian.com/) for developing such a powerful issue tracker and for providing a [free on-demand JIRA instance](https://pycontribs.atlassian.net) that we can use for continous integration testing.
* [JetBrains](http://www.jetbrains.com) for providing us with free licenses of [PyCharm](http://www.jetbrains.com/pycharm/)
* [Travis CI](https://travis-ci.org/) for hosting our continous integration

About

Fork of pycontribs/jira

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.1%
  • Other 0.9%