How to read into JSON with Python? OSError: [Errno 36] File name too long:
I am using CircleCI,my credentilas are decoded at this step echo 'export SERVICE_ACCOUNT_DECODED="$(echo $SERVICE_ACCOUNT | base64 -di)"' >> $BASH_ENV Later I am using Python code service_account_file = json.dumps(os.environ['SERVICE_ACCOUNT_DECODED']) # Authenticate using the service account for Google Drive credentials = service_account.Credentials.from_service_account_file(service_account_file,…