Skip to content

Instantly share code, notes, and snippets.

@sudevschiz
Created March 30, 2020 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sudevschiz/d09550f69a5ce13f4e91e3641d51aabb to your computer and use it in GitHub Desktop.
Save sudevschiz/d09550f69a5ce13f4e91e3641d51aabb to your computer and use it in GitHub Desktop.
Raw data from api.covid19india.org
import requests
import pandas as pd
r = requests.get("https://api.covid19india.org/raw_data.json")
pdb = r.json()
df = pd.DataFrame.from_dict(pdb['raw_data'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment