Skip to main content

Extends standard jira package with agile specific tooling for metrics and administration

Project description

jira_agile_toolbox

python package workflow python package workflow Quality Gate Status Code style: black PyPI downloads

A python package which extends the jira package with agile related functionality

        For more info about the jira package
        
        - PyPi: https://pypi.org/project/jira/
        - rtd:  https://jira.readthedocs.io/en/latest/

Installation

pip install jira-agile-toolbox

Documentation

https://jira-agile-toolbox.readthedocs.io/

Features

  • Getting story points from an epic

Example:

>>> from jira_agile_toolbox import JiraAgileToolBox
>>> from jira import JIRA
>>> my_jira_client = JIRA("https://my-jira-server.com", basic_auth=("MYUSERNAME","MYPASSWORD"))
>>> tb = JiraAgileToolBox(my_jira_client)
>>> tb.get_storypoints_from_epic("JAT-001")
{'total': 100, "Reported": 50, "Closed": 50}
  • Ranking a list of epics on top of another one

Example:

>>> from jira_agile_toolbox import JiraAgileToolBox
>>> from jira import JIRA
>>> my_jira_client = JIRA("https://my-jira-server.com", basic_auth=("MYUSERNAME","MYPASSWORD"))
>>> tb = JiraAgileToolBox(my_jira_client)
>>> tb.rank_issues_by_list([my_jira_client.issue("JAT-001"), my_jira_client.issue("JAT-003")], my_jira_client.issue("JAT-005"))

will rank issues like:

original result
JAT-010 JAT-010
JAT-005 JAT-001
JAT-003 JAT-003
JAT-002 JAT-005
JAT-001 JAT-002

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jira_agile_toolbox-0.0.13.tar.gz (18.4 kB view hashes)

Uploaded Source

Built Distribution

jira_agile_toolbox-0.0.13-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page