Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to read csv file online into pandas

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')))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #read #csv #file #online #pandas
ADD COMMENT
Topic
Name
1+3 =