python setup.py install
3dhangman
pip install -e ".[dev]"
pytest
>>> from hangman import GameSession
>>> session = GameSession.with_default_words()
>>> game = session.new()
>>> game.play('b')
False
>>> game.play('o')
True
>>> game
Game<['o', None, None, None, None], finished=False, attempts_left=4>