🦮API walkthrough
Start with your DashArgos Query
Google Sheets
Pandas
import pandas as pd
# the document ID
DOC_ID = '10_Urfe_U-LuvydpxWozPtkEdh7tUNFFtMlmYitNapV0'
# turn this in to a URL that dumps a csv file
SHEET_URI = 'https://docs.google.com/spreadsheets/d/' + DOC_ID + '/gviz/tq?tqx=out:csv&sheet=some_sheet'
# thats it. pandas does the rest.
from_df = pd.read_csv(SHEET_URI)
Periodic Updates
Last updated