I got this error in Google App Engine's Python, But I don't know how to fix,
I added into my project directory the following folders:
apiclient, gflags, httplib2, oauth2client, uritemplate
but I got always the same error
I got this error in Google App Engine's Python, But I don't know how to fix,
I added into my project directory the following folders:
apiclient, gflags, httplib2, oauth2client, uritemplate
but I got always the same error
This is a Community Wiki post of Jorvis' answer
The apiclient.discovery service is a part of the Google API Client Library. You can therefore install the Client Library using the provided command (e.g for Python):
pip install --upgrade google-api-python-client
This will solve the 'No module named ...' warning for any of the supported APIs.