dyuri / jira-python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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:

pip install jira-python

You ARE using a virtualenv, right?

Usage

See the documentation (http://readthedocs.org/docs/jira-python/) for full details.

About

License:BSD 2-Clause "Simplified" License


Languages

Language:Python 100.0%