Home

Published

- 1 min read

read google sheet from web to pandas python

img of read google sheet from web to pandas python

The solution for this is noted below

read google sheet from web to pandas python

Solution

   import pandas as pd
sheet_url = 'https://docs.google.com/spreadsheets/d/1XqOtPkiE_Q0dfGSoyxrH730RkwrTczcRbDeJJpqRByQ/edit#gid=0'
url_1 = sheet_url.replace('/edit#gid=', '/export?format=csv&gid=')
df=pd.read_csv(url_1)

Try other methods by searching on the site. That is if this doesn’t work