Writing your first web app using Python and Flask

Getting Started

Clone this repo!

git clone https://github.com/sayanchowdhury/mukti-flask-101.git

Create a local Python environment, this allows you to choose exactly what is and isn't included, and what version, in the Python stack for your application.

virtualenv python_env
. python_env/bin/activate

Install Flask

pip install -r requirements.txt