Data scraper for covid-19 data
The aim of this project is to scrape publicly available covid-19 data and provide it in form of a HTTP Rest API
This project runs on python 3.7+. You can find installation instructions here
docker run -p 5000:5000 r0b0t/covid19-scraper
It is recommended that you create a virtual environment to manage the pythondependencies for this project. You can either use virtualenv or virtualenvwrapper or any other recommended dependency management tool for python.
- Activate your environment
- Navigate to the root of this project and install dependencies
pip install -r requirements.text
- Make a
.env
file in the root of the project and copy the contents of.env-example
, replacing the values with your own specific values - Run the application.
python app.py
Antonio Maina – @__r0b0t__ – antoniomainakn@gmail.com
Distributed under the MIT license. See LICENSE
for more information.
- Fork the project
- Create your feature branch from the develop branch(
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request