A simple wrapper for the crackwatch API (https://crackwatch.com/api)
To install pycrackwatch just run
pip install pycrackwatch
The tests are located inside the tests folder, to run them with pytest use
py.test tests
>>> import pycrackwatch
>>> games = pycrackwatch.getGames()
>>> cracks = pycrackwatch.getCracks()
>>> games[0].title
'F1 2018'
>>> cracks[0].title
'F1.2018-CODEX'To see more properties check models.py on the pycrackwatch folder.