python-jira Questions
3
Solved
I am trying to fetch all issues related to a project. When I execute the below code, I get only 50 results. I need to navigate all pages and get all the bugs.Please help
all_issues = jira.search_i...
Stramonium asked 19/11, 2015 at 22:15
4
I have already done pip install jira
but when I run the following it fails with ImportError: cannot import name JIRA
import re
from jira import JIRA
jira = JIRA('https://issues.net')
# all valu...
Algometer asked 12/1, 2017 at 19:38
5
Solved
I'm trying to get all the fields and values from a specific issue my code:
authenticated_jira = JIRA(options={'server': self.jira_server}, basic_auth=(self.jira_username, self.jira_password))
issue...
Admass asked 3/6, 2015 at 9:19
5
I am trying to list all isues in a project with status Done or Closed. When I run a JQL-query with advanced search I get: 3096 issues in the project. However when I run it with python I get around ...
Staw asked 12/6, 2016 at 8:48
2
I am using JIRA python API to create JIRA tickets from my code. The code looks like below
from jira.client import JIRA
def create_jira_issue(jira, summary, description, status):
project = getatt...
Messiah asked 30/1, 2015 at 9:57
2
So, I have written python code which interact with Jira api via python library atlassian_python_api
from atlassian import Jira
jira = Jira(
url="https://jira.example.com/",
username='gonchik.ts...
Simla asked 15/8, 2019 at 8:36
2
Solved
I am trying to assign issues to epics using Jira's python API. From the documentation, I found there is an add_issues_to_epic method in the GreenHopper class, but it doesn't seem to work for me. I ...
Kilmer asked 24/2, 2014 at 21:0
2
I've run into this issue while using the jira library for python. Despite setting the appropriate parameters for basic auth, I get the following:
Exception ignored in: <bound method Magic.del o...
Greenock asked 5/10, 2020 at 17:50
4
Solved
I want to change jira issue status with python-jira.The python-jira API is http://jira-python.readthedocs.org/en/latest/ .I can't find any way to do this.
I was trying to use issue.update(status="C...
Finnish asked 13/11, 2013 at 4:15
3
Solved
I'm not sure what I'm doing wrong here, and am hoping someone else has the same problem. I don't get any error, and my json matches what should be correct both on Jira's docs and jira-python questi...
Crossfade asked 14/4, 2015 at 17:43
1
I am trying to query and pull changelog details using python.
The below code returns the list of issues in the project.
issued = jira.search_issues('project= proj_a', maxResults=5)
for issue in ...
Gillam asked 20/6, 2019 at 18:53
2
Solved
So i'm using the JIRA-Python module to connect to my company's instance on JIRA and it requires me to pass the certificate and key for this.
However using the OpenSSL module,i'm unable to read my l...
Discredit asked 5/8, 2016 at 6:44
4
I am trying to handle jira-python exception but my try, except does not seem to catch it. I also need to add more lines in order to be able to post this. So there they are, the lines.
try:
new_is...
Templas asked 21/8, 2013 at 22:16
1
I am trying to authenticate to jira by google sign-in using a python script . I am using jira python library.
I tried using basic_auth but it failed with error as my account is registered through ...
Pistareen asked 14/8, 2015 at 8:18
1
I'm new in jira python and I want to have a list with tickets obtained with an existing filter.
I tried jira.filter(id) but instead receiving the list with issue, I received only the name of the f...
Splenetic asked 11/5, 2015 at 13:2
1
Solved
How can I get the minutes spent from a worklog from an issue using the jira-python library?
Using the jirashell I see that the issue has the attribute issue.fields.worklog, however when I try to a...
Bartlet asked 23/6, 2014 at 22:16
1
© 2022 - 2024 — McMap. All rights reserved.