alpha
Login
or
Join now
thehale.dev
/
github-projects-burndown-chart
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
An easy-to-use burndown chart generator for GitHub Project Boards.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
github-projects-burndown-chart
/
src
/
github_projects_burndown_chart
/
at
main
5 folders
2 files
Joseph Hale
refactor: Remove unnecessary conditional
2y ago
ccefccb6
chart
refactor: Remove unnecessary conditional The Python standard library offers an `exist_ok` kwarg for `os.makedirs` which handles the case where directories already exist in the folder path. The resulting code is more elegant, and allows Python to potentially optimize the call at the OS level.
2 years ago
config
Add support for custom point calculators Different people will want to calculate the points for their burndown charts in different ways. This commit breaks a lot of cross module dependencies to add support for a custom `PointsCalculator` interface, which follows the Strategy design pattern for calculating the points over time to show on the burndown chart. Four calculators are made available by default (see `README.md`). Additional calculators may be added over time or by PR. Closes #23 by providing the `taiga` calculator.
4 years ago
discord
Add support for Discord Webhooks Burndown charts can now be posted to a Discord webhook! See the README.md for instructions.
4 years ago
gh
add support cards without a status
2 years ago
util
Add support for custom point calculators Different people will want to calculate the points for their burndown charts in different ways. This commit breaks a lot of cross module dependencies to add support for a custom `PointsCalculator` interface, which follows the Strategy design pattern for calculating the points over time to show on the burndown chart. Four calculators are made available by default (see `README.md`). Additional calculators may be added over time or by PR. Closes #23 by providing the `taiga` calculator.
4 years ago
__init__.py
refactor: Remove unnecessary conditional The Python standard library offers an `exist_ok` kwarg for `os.makedirs` which handles the case where directories already exist in the folder path. The resulting code is more elegant, and allows Python to potentially optimize the call at the OS level.
2 years ago
main.py
feat: Add `--filepath` CLI argument Enables exporting the rendered chart to a user-supplied filepath. Merge pull request #32 from KARASTA/feature/save-filepath
2 years ago