Skip to main content

backlogops-cli

There are 3 related packages for backlog operations:

  • backlogops a collection of library functions to manipulate backlogs

  • backlogops-cli command line interface to use the functions in the library. This is just a thin wrapper around the library functions. It serves a dual purpose as both an example of how to use the library and as a tool for the user to use the library.

  • backlogops-gui graphical user interface to use the functions in the library. It is based on TkInter. The ambition is to keep it as a thin wrapper around the library.

Project status

The three packages share a version number and are released together.

The library is not meant to ever be "finished": using it for real planning keeps surfacing new ideas. Some of those will be added to backlogops itself, and others will fit better in separate packages built on top of backlogops.

Available functionality

The following functionality is available in all 3 packages:

  • Reading backlog and releases from file types that TableIO supports reading from (Currently CSV, Excel, and ODS).

  • Writing backlog and releases to file types that TableIO supports writing to (Currently CSV, Excel, ODS and 9 other file formats).

  • File format is detected from the file extension, but may be overridden.

  • Adjust release content to fit the planned release dates.

  • Create a demonstration backlog and releases (for exploring the features).

  • Estimate ready date for the backlog items based on available teams, team velocity, vacation dates, periods with half time work, etc.

  • Extract backlog keys at given backlog item levels.

  • Reorder the backlog so that the dependencies are satisfied.

  • Reorder the backlog so that items identified by keys in a list come first. If the key is at a higher level it will bring all items it is a parent of in front of it (recursively).

  • Reorder the backlog in release order, optionally taking dependencies into account.

  • Set planned release dates from the estimated release dates.

  • Calculate the release dates from the backlog items estimated ready dates, with a configurable buffer time.

  • Validate the backlog and releases for consistency.

  • Convert a backlog and releases between table file formats.

  • Order the releases by their planned or estimated date.

  • Rename columns when reading a file and when writing a file.

  • Map custom status names in input files to backlog item statuses.

  • Choose how backlog item levels are written: by number, by name, or both, and configure custom level names.

  • Create stand-alone input or output preset configuration files.

  • Migrate an older configuration or preset file to the current file format.

  • A wizard to create a backlog-ops configuration file with the workforce, named input and output presets, level names, and status name mapping.

  • Read a backlog and releases from Jira into a backlog and release table.

  • Write a backlog to Jira, creating a new Jira issue for each backlog item.

  • Update a backlog that is already in Jira, changing only the chosen columns.

  • Add the releases to Jira as Jira versions.

  • Update the releases in Jira, setting their dates to the planned release dates.

  • Order the releases in Jira by date, by a name list, or by the input order.

  • Rename releases in Jira, changing the Jira version names.

  • Move backlog items to a chosen anchor in the Jira rank order, following a key list.

The operating model

The operating model that most of the functionality is designed for is that the teams work off a single backlog in the order of the backlog. The backlog items are ordered by priority and dependencies to allow the teams to work in the backlog order. Each backlog item and each release may have a planned ready date, that records what has been communicated to the customer. Each backlog item and each release may have an estimated ready date, that is calculated from the current backlog state, the team velocity, and what we know about the availability of the team members.

The backlog item fields

Each backlog item has the following fields that are used by the algorithms in the library:

  • key The key of the backlog item. Required. Must be unique. Must not be empty, must not contain whitespace and must not contain any of the characters , . ; : ( ) [ ] { }.

  • level The level of the backlog item. Required. Must be an integer.

  • title The title of the backlog item. Required.

  • story_points The story points of the backlog item. Required.

  • status The status of the backlog item. Required.

  • parent_key The key of the parent backlog item. Optional. Must exist as a key in the backlog. Parent keys are used to build the hierarchy of the backlog. The parent key must be at a higher level than the current item. Parent keys introduce implicit dependencies between items: the current item cannot start before the parent item starts, and the parent item cannot finish before all its children have finished.

  • release The release of the backlog item. Optional. Must not be empty string, must not start or end with whitespace, and must not contain tabs, newlines or control characters.

  • team The team responsible for the backlog item. Optional. Must not be empty string. Must be a valid team name. If None the item can be done by any team. If not None. the item can only be done by the specified team.

  • depends_on_f2s The list of keys of the backlog items that must have been finished before the current item can start. May be empty.

  • depends_on_f2f The list of keys of the backlog items that must have been finished before the current item can finish. May be empty.

  • depends_on_s2s The list of keys of the backlog items that must have been started before the current item can start. May be empty.

  • planned_ready_date The planned ready date of the backlog item. The date that is communicated to the customer. Optional.

  • estimated_ready_date The estimated ready date of the backlog item. Optional.

Additionally each backlog item can have any number of other fields.

Installing backlogops-cli

On macOS and Linux

To install backlogops-cli on macOS and Linux, run the following command:

pip3 install --upgrade backlogops-cli

On Microsoft Windows

To install backlogops-cli on Microsoft Windows, run the following command:

pip install --upgrade backlogops-cli

Using backlogops documentation

For a better understanding of how to use the library, CLI or GUI, see the user documentation: Using backlogops

API documentation

For more detailed code documentation, see the API documentation:

Command line backlog operations

backlogops_cli serves 2 purposes:

  • as a command line utility collection for manipulating backlogs

  • as an example of how to write your own programs that use the backlogops library

Currently available commands

  python3 -m backlogops_cli.add_releases_to_jira
     Add releases to Jira, creating a new version per release

  python3 -m backlogops_cli.add_to_jira
     Add a backlog to Jira, creating a new issue per item

  python3 -m backlogops_cli.adjust_release_content
     Adjust release content to fit the planned release dates

  python3 -m backlogops_cli.config_wizard
     Create a backlog-ops configuration file via a wizard

  python3 -m backlogops_cli.convert
     Convert a backlog and releases between table file formats

  python3 -m backlogops_cli.demo_backlog
     Write a demonstration backlog and releases to a file

  python3 -m backlogops_cli.encrypt_token_file
     Encrypt a Jira API token file with a pass phrase.

  python3 -m backlogops_cli.estimate_ready_date
     Estimate ready dates for the backlog items

  python3 -m backlogops_cli.extract_keys
     Extract backlog keys at the given levels to a key list

  python3 -m backlogops_cli.jira_fields
     Print Jira custom fields and an issue's editable fields

  python3 -m backlogops_cli.list
     List all commands available in backlogops_cli

  python3 -m backlogops_cli.migrate_cfg
     Migrate a configuration file to the current file format

  python3 -m backlogops_cli.order_by_deps
     Reorder a backlog so that dependencies are fulfilled

  python3 -m backlogops_cli.order_by_keys
     Reorder a backlog so that key-list items come first

  python3 -m backlogops_cli.order_by_release
     Order the backlog to follow the release order

  python3 -m backlogops_cli.order_releases
     Order the releases by their planned or estimated date

  python3 -m backlogops_cli.order_releases_in_jira
     Order releases in Jira by date, a name list or the input order

  python3 -m backlogops_cli.plan_release_dates
     Set planned release dates from the estimated release dates

  python3 -m backlogops_cli.preset_wizard
     Create an input or output preset config file via a wizard

  python3 -m backlogops_cli.rank_in_jira
     Move key-list items to a chosen anchor in the Jira rank order

  python3 -m backlogops_cli.read_jira
     Read a backlog and releases from Jira and store to a file

  python3 -m backlogops_cli.rename_releases_in_jira
     Rename releases in Jira, changing Jira version names

  python3 -m backlogops_cli.update_backlog_in_jira
     Update a backlog in Jira, changing only the chosen columns

  python3 -m backlogops_cli.update_releases_in_jira
     Update releases in Jira, setting dates to the planned dates

  python3 -m backlogops_cli.version
     Print version information for the backlogops_cli package

Test summary

  • Test result: 2173 passed, 1 deselected in 35s
  • No flake8 warnings.
  • No mypy errors found.
  • No pylint warnings.
  • No python layout warnings.
  • Built version(s): 0.8
  • Build and test using Python 3.14.6

Download files

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

Source Distribution

backlogops_cli-0.8.tar.gz (30.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

backlogops_cli-0.8-py3-none-any.whl (53.6 kB view details)

Uploaded Python 3

File details

Details for the file backlogops_cli-0.8.tar.gz.

File metadata

  • Download URL: backlogops_cli-0.8.tar.gz
  • Upload date:
  • Size: 30.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.6

File hashes

Hashes for backlogops_cli-0.8.tar.gz
Algorithm Hash digest
SHA256 a42210410208af9af5dbe2fcb5a78c203b1a4a7bb49b02fae4b50f4e3ea44337
MD5 2db6df1d08ac2035701e4e34161fea51
BLAKE2b-256 5da6c7fb9e0063091a9b9bc7881af9a6a01bb2e6d14650cddcf4066f52d8c7ae

See more details on using hashes here.

File details

Details for the file backlogops_cli-0.8-py3-none-any.whl.

File metadata

  • Download URL: backlogops_cli-0.8-py3-none-any.whl
  • Upload date:
  • Size: 53.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.6

File hashes

Hashes for backlogops_cli-0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 5c306354d5e074ae05f0eddce074f12402d5a20ef023e6c846da339ffc2f9af0
MD5 aad90c058ec52a94db92d4679eb9b84e
BLAKE2b-256 631f8df1b22e05f43e167bb6ec9b368df43bc280bec490eff5b83bd2e74e6d0f

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0

2 files

0.9

2 files

This release

0.8 This release

2 files

0.7

2 files

0.6

2 files

0.5

2 files

0.4

2 files

0.3

2 files

0.2

2 files

0.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page