I uploaded a file to Google spreadsheets (to make a publically accessible example IPython Notebook, with data) I was using the file in it\'s native form could be read into a
My approach is a bit different. I just used pandas.Dataframe() but obviously needed to install and import gspread. And it worked fine!
gsheet = gs.open("Name") Sheet_name ="today" wsheet = gsheet.worksheet(Sheet_name) dataframe = pd.DataFrame(wsheet.get_all_records())