The goal of this project is to learn and implement the best practices, in writing and maintaining a Python project. For this purpose, we use a simple Hangman game program, from the book "Invent Your Own Computer Games with Python".
After cloning the repository, you can run the game using the following command.
$ python3 hangman.py
You execute the tests, using the following command.
$ python3 -m unittest discover
For Python versions less than 3.3, the mock module needs to be installed to run the tests.