This repository provides an API with up-to-date data about the Coronavirus (COVID-19) outbreak in Greece.
This project is performed by volunteers of COVID-19 Response Greece.
This API combines data from multiple sources. All data are fetched from here.
-
Johns Hopkins CSSE: https://systems.jhu.edu/research/public-health/ncov
-
National Public Health Organization (NPHO) of Greece: https://eody.gov.gr
-
Wikipedia: https://el.wikipedia.org/wiki/Πανδημία_του_κορονοϊού_στην_Ελλάδα_το_2020
-
World Health Organization: https://www.who.int
- Python 3
- Flask
python app.py
Example: Get the number of confirmed cases
Request:
curl -v localhost:5000/confirmed
Response:
{
"cases": [
{
"date": "2020-01-22",
"confirmed": 0
},
{
"date": "2020-01-23",
"confirmed": 0
},
...
]
}