I'm new to python and Jira rest api. I need to know how to export the results to excel(in the same format how we get it manually).
import jira.client
from jira.client import JIRA
options = {'server': 'https"//atlassian.com'}
jira = JIRA(options, basic_auth=('ss' , 'ss')
issues = jira.attachment('filterid')
However, it fails to export anything. Help me out