blob: 8a5bf15887bf1dab06c7426cfd1421150f8aed9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## Setup
### Create a Virtualenv
It is recommended that you create a [virtualenv](https://virtualenv.pypa.io/en/latest/) to separate project packages from your system Python installation.
$ virtualenv virtualenv
### Install Requirements
Install required packages using `pip`:
$ pip install -r requirements.txt
## Running
$ python app.py
|