This project contains the codes used for the mentorship I'm giving
You can clone this repository, the for each lesson given, you should access the respective directory, there it should contain the description for the exercise, and the incomplete version. After you have done you can validate with the complete version.
To help your journey, you can run the test files I've added to each lesso, see the next section on how to run the test files.
- Start the vitual env
$ python -m venv .
$ source ./bin/activate
- Installing dependencies
$ pip install -r requirements.txt
$ pip install -r requirements.test.txt
$ pytest -q ./lesson01
# or
$ ptw