Python Google Sheets API
import json | |
import os | |
from google.oauth2 import service_account | |
service_account_info = json.loads(os.getenv('GSHEETS_AUTH')) | |
creds = service_account.Credentials.from_service_account_info( | |
service_account_info) | |
service = discovery.build('sheets', 'v4', credentials=creds) | |
# Do cool stuff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment