How to using python3 connect to JIRA ?

Oracle Angel February 6, 2017

I have same problem...
can't work ?  This is so simple thing, but ..... 
I'm crying.....

#----[my.py]------------

import jira.client
from jira.client import JIRA 
options = {'server': 'http://192.168.1.99:8080'}
jira = JIRA(options, basic_auth=('myname', 'mypassword'))

 

#----[error]------------

Traceback (most recent call last):
File "C:/Python/Python35_Workspace/python_jira01.py", line 4, in <module>
jira = JIRA(options, basic_auth=('myname', 'mypassword'))
File "C:\Python\Python35\lib\site-packages\jira\client.py", line 310, in __init__
si = self.server_info()
File "C:\Python\Python35\lib\site-packages\jira\client.py", line 1764, in server_info
j = self._get_json('serverInfo')

....

....

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 7, 2017

I think you'll need to read the documentation for the "JIRA client" you are importing there.

My best guess is that you probably need to give it the REST url, not just the base url of JIRA.

Suggest an answer

Log in or Sign up to answer