- Python CLI program that filter API data by Start date and end date:
Use the package manager pip to install dependencies.
pip3 install -r requirements.txt
If there is no flags/command arguments passed all the data will be used
python3 app.py 2022-01-11 2022-01-14
by passing the flags/command arguments when running the CLI command, you filter date and have the graph visualise data for the range that is specified selected.
- To run logic unittests:
python3 -m unittest unit_test/test_logic.py
- To run networking layer unittests:
python3 -m unittest unit_test/test_api.py