Created
March 30, 2020 10:41
-
-
Save sudevschiz/d09550f69a5ce13f4e91e3641d51aabb to your computer and use it in GitHub Desktop.
Raw data from api.covid19india.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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