I have a script which scrapes info from Jira based on the filters I set up in Jira. Currently it just prints the Key, but how do I print the summary and status?
I would like they to appear along side each other.
Thanks!
Here is my code so far:
# coding=utf-8
from jira.client import JIRA
options = {'server': 'https://jira.blank.com/'}
jira = JIRA(options, basic_auth=('blank', 'blank'))
for i in jira.search_issues('filter=14270', maxResults=150):
print i