import butterdb import json # For getting OAuth Credential JSON file see http://gspread.readthedocs.org/en/latest/oauth2.html # Ensure that the client_email has been granted privileges to any workbooks you wish to access. with open('SomeGoogleProject-2a31d827b2a9.json') as credentials_file: json_key = json.load(credentials_file) client_email = json_key['client_email'] private_key = str(json_key['p

