How can I list all the issues within a project in Jira?
I am able to list all the projects, but not sure how to list all issues within a project.
This is how I list all the projects:
#/usr/bin/python
import jira.client
from jira.client import JIRA
options = {'server': 'http://jira.confluence.no' }
jira = JIRA(options, batch_auth=('admin', 'admin'))
project = jira.projects()
print project