Generate simple markdown changelogs for GitHub repositories written in Python.
This package does two things:
- Given a GitHub org, repository, an initial git reference or date, use the GitHub GraphQL API to return a DataFrame of all issue and PR activity for this time period.
- A CLI to render this activity as markdown, suitable for generating changelogs or community updates.
Note: This is a really young tool so it might change a bit over time.
The easiest way to install this package is via pip
:
pip install github-activity
The easiest way to use github-activity
to generate activity markdown is to use
the command-line interface. It takes the following form:
github-activity [<org>/<repo>] --since <date or ref> --until <date or ref>
See the github-activity documentation for more information.