How to convert jira api output to dataframe

177 Views Asked by At

I have tried the following script to call jira api to get the jira issues.

JQL = 'project = DEMO AND status IN ("To Do", "In Progress") ORDER BY issuekey'
data = jira.jql(JQL)
print(data)

However, it is not in table format. How to convert to dataframe with selected columns?

0

There are 0 best solutions below