Real Python Exercises

This is the repo to write Real Python codes.
Mostly, the codes are for Python Web Development (Flask).

In order to run the code, we need to create a virtual environment, as follows:

$ conda create -n flask-env python=3.9 pip flask
$ conda activate flask-env