新创建的问题(JIRA和python)

时间:2018-03-18 13:50:12

标签: python jira

我正在使用python访问Jira的简单应用程序。 我想要解决所有问题如何获得唯一新创建的问题?

from jira import JIRA

jira = JIRA(basic_auth=('username', 'password'), options={'server':'https://MY_JIRA.atlassian.net'})

got = 50
total = 0
while got==50:
    issues = jira.search_issues('project=JA', startAt = total)
    ....
    got = len(issues)
    total += got

1 个答案:

答案 0 :(得分:2)

获取新创建的问题将涉及您创建新的JQL查询 - 这里是来自Atlassian博客的 get started with JQL page

从底部的示例看,您可以按相对日期查询:

assignee is EMPTY and created < -1d

我希望有所帮助。