问题标签 [python-jira]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
2010 浏览

python - 通过 JIRA API 使用 python 创建问题会导致 HTTP 400 错误

我是 python 新手,正在尝试创建简单的脚本,这将在 JIRA 中创建新问题。

不确定我的代码有什么问题。

错误是给出

JIRAError:HTTP 400:“需要帐户。” https://jira.my_jira.com/rest/api/2/issue

有人可以建议有什么问题吗?

0 投票
1 回答
775 浏览

python - 如何在rest api中获取过滤结果

我是 python 和 Jira rest api 的新手。我需要知道如何将结果导出到 excel(以我们手动获取的相同格式)。

但是,它无法导出任何内容。帮帮我

0 投票
2 回答
2471 浏览

python - 如何更新 Jql 查询/过滤器中存在的问题的标签

我的要求是:我想更新过滤器中存在的问题的标签。

我收到属性错误,指出“结果列表”对象没有属性“更新”。

0 投票
1 回答
538 浏览

python - Jira Python:尝试打印时出现语法错误

我想打印 jql 查询的输出。但是,在最后一行“问题”上出现语法错误。

0 投票
1 回答
6785 浏览

python - 在 python 中创建 JIRA 问题时设置优先级、截止日期

我想在 python 中创建一个 jira 问题。我知道如何设置摘要、问题类型、描述和项目名称,但我找不到如何设置优先级、截止日期、环境和其他字段。

这是我所知道的:

如何设置其他字段?

0 投票
1 回答
1081 浏览

python - 从jira附件python获取附件ID

我可以使用 python 使用 issue.fields.attachment 显示来自 jira 的附件

输出 :

如何从该列表中检索 id。在上面的例子中,我需要检索 525427

请建议我?

0 投票
1 回答
214 浏览

python - 如何通过jira-python获取默认组件

我一直在尝试以编程方式检索 JIRA 项目的默认组件集,但收效甚微。

目前,我已经尝试过

试图理解 API 输出是一件麻烦事。我相信这可能是不可能的,但我至少想在做出最终假设之前确认这一点。

有没有一种简单的方法来检索在 jira-python api 中设置为默认组件的组件?

以供参考:

https://jira-python.readthedocs.org/en/latest/

0 投票
1 回答
3059 浏览

jira - Best way to fix using a reserved JQL keyword in a JIRA query?

I am trying to write a JIRA query to query a bunch of defects. The problem I am having is that if there is a JQL keyword in the list of defects I am querying, the entire query fails and spits out the following error:

My query:

This fails when a defect contains the word: 'update'. Now it is a bad data error, but I want to make sure the query is tolerant to malicious input.

Now the only way I can think of to make sure this bug never happens again is to make sure each defect that contains a JIRA keyword has that keyword escaped. This is obviously pretty tedious and is subject to fail if any new JQL keywords are added.

So is there a better way to do this other than escaping each JIRA keyword I find in my string? Additionally, is there an easy way in Python to get the JIRA keywords?

Thanks!

0 投票
1 回答
3651 浏览

python - 如何使用 JIRA python API 将观察者添加到 JIRA 票证

我正在使用 JIRA python API 从我的代码创建 JIRA 票证。代码如下所示

现在我想为这张票添加一个观察者。我怎样才能在这里添加它。

提前致谢。

0 投票
0 回答
693 浏览

python - 迭代 jira.search_issue 列表

我正在尝试通过调用 jira.search_issue 从收到的列表中迭代和解析 jira 键。http://jira-python.readthedocs.org/en/latest/_modules/jira/client.html#JIRA.search_issues

印刷:

但是,如果我使用以下代码迭代列表,这就是我正在寻找的

我得到以下结果:

如何摆脱“无”?

**编辑:

看起来我发现了这个问题,我用 Python 2.6.6 得到了这个“无”的东西。当我将我的 python 更新到 2.7.8 时,我能够得到正确的输出。