JIRAPy Documentation 0.1.0

JIRAPy Documentation Advanced JIRA API Wrapper

JIRA API Wrapper

JiraPy now includes a remote API wrapper for fetching data from a running JIRA instance. To use it:

from jirapy import JiraApi

Then you can use the API helper object to perform actiona like running a JQL search:

RemoteJira = JiraApi("https://neko-design.jira.com", "Username", "Password")
SearchResults = RemoteJira.search("assignee = currentuser() AND resolution = Unresolved")
for result in SearchResults['issues']:
    print result['key']
...
>>> Key-1
>>> Key-2
>>> Key-3