A simple Flask-based API server for COVID-19 data.
This server is aimed to be hosted on Google Firebase. For this, you'll need to create a Firebase project and enable billing on the Google Cloud Platform.
Once that is done, clone the repository using (replace <username>
with the username of the user you're cloning from.):
git clone https://github.com/<username>/covid19api.git
Once cloned, generate a new private key from the Firebase console and download the file to the repository. This file should be named key.json
.
Also note the Web API Key of the project in the settings. Store this API key in the root of the repository in a file called api.key
.
Now you can deploy it to your GCP using the gcloud CLI.
To deploy, you can follow the instructions here.
Alternatively, click on the 'Run on Google Cloud' button below after creating a Firebase project and enabling a billing account for it.
Once the server is up and running on Firebase, it is ready to be sent requests to. The responses shall be in JSON format.
Note the URL you see for the server on the Firebase console -- this is the URL you will send the requests to. We'll refer to this URL as the base-url
. Replace base-url
in the below URLs with the actual URL.
Update the server's data base using:
<base-url>/update
Query all countries' data using:
<base-url>/api/v1/current
Query a specific country's data using (replace <string:country>
with the name of the country, for example: /api/v1/current/india):
<base-url>/api/v1/current/<string:country>
Update the server's time-series data:
<base-url>/api/v1/timeseries/update
Query time-series data for a country (replace <string:country>
with the name of the country, for example: /api/v1/timeseries/india):
<base-url>/api/v1/timeseries/<string:country>