Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Pulling labels onto Python Report

Darnell Nance
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 1, 2020

Good Morning,

My python script uses a JQL query a couple functions to export Jira data to a csv file.  I'm currently able to pull all fields accept "Labels."  Customfield_11702 seems to be right.  Any advice on why label fields are showing None? 

'project in (PIZ, PI) AND issuetype in ("Defect ", Deployment, Story, Task) AND status in (Open, "Tech Design", Ready, "In Progress", "Code Review", "Dev Complete", "Test in Progress", Done, "In Prod", "ready for deployment", "On Hold", Dev, QA, Analysis, "On Hold/Waiting for Partner") AND assignee in (**email addresses redacted) ORDER BY key ASC',

 

If I run the JQL below in Jira label values are returned in Jira: 

Project in (PIZ, PI) AND labels is not EMPTY AND createdDate >= startOfYear()

1 answer

0 votes
Gonchik Tsymzhitov
Community Champion
January 27, 2021

Please, put as expand field labels

https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L638

 

Then you can start to see that info

Suggest an answer

Log in or Sign up to answer