Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,558,994
Community Members
 
Community Events
184
Community Groups

Is there any way to execute jira JQL query from python script.

Is it possible to execute JQL query from python script and get the result in a xml or character delimited format.

 

Regards,

Urmimala

(NagraVision)

5 answers

2 votes
noamdah
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 26, 2016

Yes, you can call jira's rest api it will return a JSON response.

In python you can use the os.system() function to use curl and get the jql required.

Check out this and this example.

0 votes
Mariana_Pryshliak_Saasjet
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Mar 02, 2021

Hello @Urmimala Biswal 

Can you clarify for which purposes you need a JQL function in Python?

I'll try to help you when I get to know it.

Best regards, Mariana

from jira import JIRA

USER = 'you@yourdomain.com'
API_TOKEN ='<api token>'

options = {"server": "https://yourdomain.atlassian.net"}
jira = JIRA(options, basic_auth=(USER, API_TOKEN))

query = """

project = "MVP"
AND status = "Development done"
AND issuetype = Subtask
ORDER BY lastViewed DESC

"""

my_jql = jira.search_issues(query)

for issue in my_jql:
print (issue.key)
print (issue.fields.customfield_10233)


##############################
#projects = jira.projects()

#for project in projects:
# print (project.key)

 

# All fields on a ticket
#ticket = 'TICKET-653'
#issue = jira.issue(ticket)

#for field_name in issue.raw['fields']:
# print ("Field:", field_name, "Value:", issue.raw['fields'][field_name])

#summary = issue.fields.summary

#print('ticket: ', ticket, summary)

##############################

0 votes
Petar Petrov (Appfire)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 26, 2016

Yes - use the search REST API. Also, requests is a good client library which you can use in Python to execute the REST call.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events