A simple changelog parser
Project description
Simple Changes
Simple Changes is a dead-simple changelog format that keeps track of changes and call them programmatically. The file format is dead-easy to follow, and you can use this package to parse the file and get information in the changelog. Simple Changes is used in Unscripted to parse the game's changelog and present the latest version information to players, but this library can be used anywhere.
Requirements
- Python 2.7+
- Poetry package manager (for building)
Getting started
Quick Start: Install on PyPI
Simple Changes is bundled in Unscripted, but you can install it into your projects anywhere from PyPI with pip:
pip install simplechanges
Install from source
To install Simple Changes from the source code, first clone the repository from GitHub via git clone
. You'll also need to install Poetry. In the root of the source, run the following commands:
- poetry install
- poetry build
The resulting wheel files will be available in the dist directory.
Syntax
- Comments are wrapped in
/*
and*/
. - Versions are denoted by square brackets:
[v1.0.0]
. - Notes are denoted with dashes in the beginning and end with a newline.
Note: To get the
latest
version to work in the parser, always place the latest version at the top of the file.
Example file
/*
Changelog Test
*/
[v1.0.1]
- Made a small bugfix.
[v1.0.0]
- Launched!
- I ate cheese.
Usage
Using the package is relatively easy. To get the latest version in the changelog, assuming the changelog builds up:
from simplechanges import SimpleChangesParser
changelog = SimpleChangesParser("changelog.changes")
changelog.parse()
version, notes = changelog.latest
After parsing, you also can browse for a specific version:
from simplechanges import SimpleChangesParser
changelog = SimpleChangesParser("changelog.changes")
changelog.parse()
version, notes = changelog.versions["v1.0.0"]
License
This code is licensed under the Mozilla Public License, v2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simplechanges-0.1.0.tar.gz
.
File metadata
- Download URL: simplechanges-0.1.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.5 Darwin/20.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffddee399a3906b479f019b6c915c3d80e506278c0475fd98f6243bba9fdc679 |
|
MD5 | 7b5606d634997c7efea314a479a01338 |
|
BLAKE2b-256 | 9e53dcfdad340664cb049980768a9aea8cfea5a8aae37c1fe0c697521a5fec1f |
File details
Details for the file simplechanges-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: simplechanges-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.5 Darwin/20.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0904c9d3368b015fe8282f51269d52678e7ebac1dc5109af14c5abe243c316a5 |
|
MD5 | ed39eb7e817e88e52305e5697c5ffa33 |
|
BLAKE2b-256 | 2af89bdd4f728ab8d9eeb19d2acb0f08c3c1cbf863ab3bf2c514b811a24ce406 |