Skip to content

Instantly share code, notes, and snippets.

@elliottcordo
Created February 5, 2015 02:24
Show Gist options
  • Save elliottcordo/e84aa38518f6a8f7dc61 to your computer and use it in GitHub Desktop.
Save elliottcordo/e84aa38518f6a8f7dc61 to your computer and use it in GitHub Desktop.
google spreadheets
import gspread
gc = gspread.login('[email protected]','xxx')
wks = gc.open("wanderlust categories").get_worksheet(0)
list_of_lists = wks.get_all_values()
for l in list_of_lists:
print l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment