Is jira-python compatible with JIRA 7 ?

Pedro Henrique Andrade June 28, 2017

We are upgrading our jira to version 7 and, would someone please tell me if the jira-python 1.0.10 compatible with the Jira 7 ?

 

Thank you

Pedro Henrique

1 answer

0 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 25, 2017

Hi Pedro,

I have succesfully used jira-python with JIRA 7.4.  I used this as a sample to print the projects in my instance:

from jira import JIRA


jira = JIRA(server='http://localhost:8080', basic_auth=('myUN', 'myPW'))
projects = jira.projects()
print projects

You can see the output is as follows:

[<JIRA Project: key=u'PP', name=u'Portfolio Project', id=u'10000'>, <JIRA Project: key=u'TES', name=u'Testing', id=u'10001'>]

Cheers,

Branden

Suggest an answer

Log in or Sign up to answer