- Install Python3
- Create an virtual environment.
virtualenv -p python3 venv
- Activate the virtal environment.
source activate venv
- Install the required packages.
pip install -r requirements.txt
- Run the application.
python run.py
Here, there are two main Python Scripts run.py and engine.py
- run.py - this is the core part. I'm using Flask(web microframework), from here the invoked requests are get maintained.
- engine.py - here I'm making the API calls and filttering the json response that we get from the API call and returning the required data to the run.py