Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 736 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 736 Bytes

Small website to show real-time feed of Coronavirus (2019-nCov)

This website is based on data from here.

Install dependencies

pip install -r requirements.txt

Running the code

By default, the back end will fetch data from the remote URL but it is possible to use local data time series.

cd app/
python main.py

To use local data, create a folder time_series inside the app folder. Copy time series data (e.g. from here) into this new folder. After that modify variable USE_LOCAL to True and after, run the application with those commands:

cd app/
python main.py