您可以使用搜索问题
JQL
字符串并执行
ordering
像这样-
jiraOptions = {'server': "https://xxx.atlassian.net"}
jira = JIRA(options=jiraOptions, basic_auth=(jira_workspace_email, jira_api_token))
# Modify the JQL string to include the "order by" clause
jql_str = f"project = GEN order by updated"
for singleIssue in jira.search_issues(jql_str=jql_str):
key = singleIssue.key
raw_fields_json = singleIssue.raw['fields']
created = raw_fields_json['created']
updated = raw_fields_json['updated']