You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

jira-agile-toolbox

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jira-agile-toolbox

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

0.0.13
Maintainers
1

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:

originalresult
JAT-010JAT-010
JAT-005JAT-001
JAT-003JAT-003
JAT-002JAT-005
JAT-001JAT-002

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts