You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
how can I get jira story under the epics by python jira
Hi @Yuuki
Welcome to the Community!
To retrieve Jira stories that belong to a specific epic using Python, you can use the jira Python library. Here are the steps;
pip install jira
from jira import JIRA
jira_url = 'https://url-to-your-jira-instance'
jira_username = 'username'
jira_password = 'password'
jira = JIRA(jira_url, basic_auth=(jira_username, jira_password))
epic_key = 'ABC-123'
jql = f'"Epic Link" = {epic_key}'
issues = jira.search_issues(jql, maxResults=False)
for issue in issues:
print(f'Key: {issue.key} - Summary: {issue.fields.summary}')
I hope this helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.