A simple package to create burndown charts manually.
This creates data/burndown.xlsx
and adds entries to the sheet 2.5-5
python -m burndown.create_new_sprint -r 2.5 -s 5 -p 99
python -m burndown.burndown -p 90
Plot the contents of data/burndown.xlsx
python -m burndown.plot_sprint_burndown -r 2.5 -s 5
Plot the contents of data/sprint_tasks.xlsx
and data/capacity.xlsx
.
Note that these spreadsheets are not generated by this package, but must contain sheets corresponding to the -r
and -s
arguments.
data/sprint_tasks.xlsx
must contain the following columns:
- Date Closed
- Original estimate
- Points
- Created
- category
- burned
- creep
- creep_category
- creep_date
data/capacity.xlsx
must contain the capacity in cell F11
.
Plotting can be done by
python -m burndown.plot_sprint -r 2.5 -s 5
python -m burndown.plot_sprint_trends
python -m burndown.plot_sprint_double_burndown -r 2.6 -s 4 -d 2022-04-15 2022-04-18