need your help big time, i've been trying to figure this out and have tried urllib2 and others to try capturing the HttpError given when loading a non-existent sheet.
So here is the initial calling code
discoveryUrl = ('https://sheets.googleapis.com/$discovery/rest?''version=v4')
service = discovery.build('sheets', 'v4', http=http, discoveryServiceUrl=discoveryUrl)
result = service.spreadsheets().values().get(spreadsheetId=spreadsheetId, range=rangeName).execute()
values = result.get('values', [])
if not values:
print('No data found.')
tkMessageBox.showwarning("ERROR", "There is nothing on this page!")
LoadCSV()
else:
Okay so now. When I call a sheet which doesn't exist I want to handle the error and show a warning saying "No more sheets to try"
Here is the error:
HttpError: <HttpError 400 when requesting https://sheets.googleapis.com/v4/spreadsheets/(ID)/values/130%21A2%3AI?alt=json returned "Unable to parse range: 130!A2:I">
How can I handle this error to instead give a warning that the page doesn't exist and to terminate the program.
I see a
googleapiclient.errors.HttpError
when I use the sheets-api-quickstart. This works for me: