A Python API for boardgamegeek.com
pip install bgg-api
from boardgamegeek import BGGClient
bgg = BGGClient()
game = bgg.game("Monopoly")
print(game.year) # 1935
print(game.rating_average) # 4.36166
# Install dependencies
pip install -r requirements/develop.txt
# Install pre-commit hooks
pre-commit install
# Run tests
pytest .
# Run tests with tox
tox
# Bump version (patch, minor, major)
bump2version patch
# Push to github
git push --tags origin master