You are provided with a scaffolded main.py and test_main.py. Your task is to fill it out and complete the Backend logic so that it works with the Frontend that has been provided.
Steps:
-
Add a virtual environment.
python -m venv env
-
Activate virtual environment
.\env\Scripts\activate.bat
-
After creating the venv typing
pip list
should result in 2 items -
Install all the requirements for the project.
pip install -r requirements.txt
-
Descriptions on how to fix the functions are provided in the readme.
-
Have fun :D
PS: To stop your virtual python environment, just type deactivate
in the command prompt.