Created
February 5, 2015 02:24
-
-
Save elliottcordo/e84aa38518f6a8f7dc61 to your computer and use it in GitHub Desktop.
google spreadheets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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