python - How to get the filter results in rest api -
i'm new python , jira rest api. need know how export results excel(in same format how manually).
import jira.client jira.client import jira options = {'server': 'https"//atlassian.com'} jira = jira(options, basic_auth=('ss' , 'ss') issues = jira.attachment('filterid')
however, fails export anything. me out
i think question how turn issues excel object.
first, there no way export excel jira directly according documentation. here link you. https://jira-python.readthedocs.org/en/latest/
second, need use modules turn attachment
object excel. xlrd/xlwt. here link you.
https://secure.simplistix.co.uk/svn/xlwt/trunk/xlwt/doc/xlwt.html?p=4966 https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html?p=4966
hope helps.
Comments
Post a Comment