Created
August 5, 2021 07:35
-
-
Save AayushSameerShah/826ef8dd188cb93a97f62f9a81a7d37c to your computer and use it in GitHub Desktop.
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 pandas as pd | |
import io | |
import requests | |
url="https://raw.githubusercontent.com/cs109/2014_data/master/countries.csv" | |
s=requests.get(url).content | |
c=pd.read_csv(io.StringIO(s.decode('utf-8'))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment