{"id":16863839,"url":"https://github.com/studioj/jira-agile-toolbox","last_synced_at":"2025-07-16T18:05:55.446Z","repository":{"id":44533413,"uuid":"349411509","full_name":"studioj/jira-agile-toolbox","owner":"studioj","description":"A python package which extends the jira package with agile related functionality","archived":false,"fork":false,"pushed_at":"2023-05-16T20:19:13.000Z","size":45,"stargazers_count":3,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T10:01:07.761Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/studioj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.MD","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-19T12:13:14.000Z","updated_at":"2023-10-14T12:01:16.000Z","dependencies_parsed_at":"2025-02-19T03:32:02.701Z","dependency_job_id":"ea261eca-269a-4a6e-a967-040e155cdc25","html_url":"https://github.com/studioj/jira-agile-toolbox","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/studioj/jira-agile-toolbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studioj%2Fjira-agile-toolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studioj%2Fjira-agile-toolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studioj%2Fjira-agile-toolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studioj%2Fjira-agile-toolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/studioj","download_url":"https://codeload.github.com/studioj/jira-agile-toolbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/studioj%2Fjira-agile-toolbox/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265529014,"owners_count":23782798,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T14:39:55.583Z","updated_at":"2025-07-16T18:05:55.430Z","avatar_url":"https://github.com/studioj.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jira_agile_toolbox\n\n![python package workflow](https://github.com/studioj/jira-agile-toolbox/actions/workflows/python-publish.yml/badge.svg)\n![python package workflow](https://github.com/studioj/jira-agile-toolbox/actions/workflows/python-package.yml/badge.svg)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=studioj_jira-agile-toolbox\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=studioj_jira-agile-toolbox)\n\u003ca href=\"https://github.com/psf/black\"\u003e\u003cimg alt=\"Code style: black\" src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"\u003e\u003c/a\u003e\n[![PyPI downloads](https://img.shields.io/pypi/dm/jira-agile-toolbox.svg)](https://pypistats.org/packages/jira-agile-toolbox)\n\n\nA python package which extends the jira package with agile related functionality\n\n            For more info about the jira package\n            \n            - PyPi: https://pypi.org/project/jira/\n            - rtd:  https://jira.readthedocs.io/en/latest/\n\n## Installation\n```bash\npip install jira-agile-toolbox\n```\n\n## Documentation\nhttps://jira-agile-toolbox.readthedocs.io/\n\n## Features\n\n- ### Getting story points from an epic\n\nExample:\n```python\n\u003e\u003e\u003e from jira_agile_toolbox import JiraAgileToolBox\n\u003e\u003e\u003e from jira import JIRA\n\u003e\u003e\u003e my_jira_client = JIRA(\"https://my-jira-server.com\", basic_auth=(\"MYUSERNAME\",\"MYPASSWORD\"))\n\u003e\u003e\u003e tb = JiraAgileToolBox(my_jira_client)\n\u003e\u003e\u003e tb.get_storypoints_from_epic(\"JAT-001\")\n{'total': 100, \"Reported\": 50, \"Closed\": 50}\n```\n\n- ### Ranking a list of epics on top of another one\n\nExample:\n```python\n\u003e\u003e\u003e from jira_agile_toolbox import JiraAgileToolBox\n\u003e\u003e\u003e from jira import JIRA\n\u003e\u003e\u003e my_jira_client = JIRA(\"https://my-jira-server.com\", basic_auth=(\"MYUSERNAME\",\"MYPASSWORD\"))\n\u003e\u003e\u003e tb = JiraAgileToolBox(my_jira_client)\n\u003e\u003e\u003e tb.rank_issues_by_list([my_jira_client.issue(\"JAT-001\"), my_jira_client.issue(\"JAT-003\")], my_jira_client.issue(\"JAT-005\"))\n```\n\nwill rank issues like:\n\n| original | result |\n| -------- | ------ |\n| JAT-010 | JAT-010\n| JAT-005 | JAT-001\n| JAT-003 | JAT-003 \n| JAT-002 | JAT-005\n| JAT-001 | JAT-002\n\n- ### more explanation and examples can be found here\n    \n    https://jira-agile-toolbox.readthedocs.io/en/stable/#api-documentation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudioj%2Fjira-agile-toolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstudioj%2Fjira-agile-toolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstudioj%2Fjira-agile-toolbox/lists"}