Totally not a microphone to the blaseball API
This is a python wrapper over blaseball's public APIs, including player/team/game fetches, as well as deserialization of the event stream.
pip install blaseball-mike
Full API documentation can be found at https://jmaliksi.github.io/blaseball-mike/
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
- Bump version in
setup.py
. Use [https://semver.org/ semver], ie fixes are a patch, new features are a minor, and breaking changes are a major. - Draft new release
- Name new tag with the version in
setup.py
. Add useful description. - Publishing will automatically kick off a github action to publish
- Bump version in
setup.py
. Use [https://semver.org/ semver], ie fixes are a patch, new features are a minor, and breaking changes are a major. - Delete
dist/*
andbuild/*
python3 setup.py sdist bdist_wheel
python3 -m twine upload -r pypi dist/*