https://github.com/dephell/dephell_changelogs
Find changelog for github repository, local dir, parse changelog
https://github.com/dephell/dephell_changelogs
changelog changelog-parser python
Last synced: 12 months ago
JSON representation
Find changelog for github repository, local dir, parse changelog
- Host: GitHub
- URL: https://github.com/dephell/dephell_changelogs
- Owner: dephell
- License: mit
- Created: 2020-01-24T16:08:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-08T07:26:21.000Z (over 3 years ago)
- Last Synced: 2025-04-14T23:42:32.063Z (12 months ago)
- Topics: changelog, changelog-parser, python
- Language: Python
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dephell_changelogs
## Installation
```bash
python3 -m pip install --user dephell_changelogs
```
## Usage
Get changelog url:
```python
from dephell_changelogs import get_changelog_url
url = get_changelog_url('dephell')
url = get_changelog_url('https://dephell.readthedocs.io/')
url = get_changelog_url('https://github.com/dephell/dephell/')
```
Parse changelog:
```python
from dephell_changelogs import parse_changelog
parsed = parse_changelog(url)
parsed['0.8.0']
# 'New commands:\n\n+ [dephell package bug]...'
```