Python Caching Example

How to run

Clone the project

git clone git@github.com:jdheyburn/python-cache-example.git
cd python-cache-example

Create a virtual env, initialise it and download dependencies

python3 -m venv venv
. venv/bin/activate
pip3 install -r requirements.txt

Run the project

python3 -m flask run

Testing

To execute tests:

python3 -m unittest tests/test_app.py