How to get boards with Python

Alik February 28, 2020

Hi all,

I want to get all boards from Jira and found method with python, but something get wrong. Who try this kind of method please help

from jira.client import JIRAfrom jira.client 
import GreenHopperimport logging
import refrom .rest_client 
import AtlassianRestAPI

options = {'server''http://localhost/'}
jira = JIRA(options, basic_auth=('username''password'))

gh = GreenHopper(options)

 
def get_agile_board_configuration(selfboard_id)      
url = 
'rest/agile/1.0/board/{}/configuration'.format(str(board_id))        

return self.get(url)

I get this error.

File "board.py", line 11
def get_agile_board_configuration(self, board_id)
IndentationError: unexpected indent

Code I get from github

https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L984

Thanks in advance,
regards,
Alik
 

1 answer

0 votes
Gergely Fehér February 28, 2020

Delete the first "space" character at the start at line 11 - before "def ".

Gergely Fehér February 28, 2020

And as I see from the copied script you should add 2 or 4 spaces at the start of next line (starting with "url = ") and the same spaces to the last line (starts with "return ")

Alik February 28, 2020

Hi @Gergely Fehér ,

Thanks for answer, but after changes, that still not working.

Regards,

Alik

Suggest an answer

Log in or Sign up to answer