0
votes

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

1
If the solution provided by @KonstantinosG has helped you, please post it as the answer to this question as a reference to the rest of the community.Jordan

1 Answers

0
votes

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.