I am trying to integrate dialog flow lib with my application which is deployed on google app engine standard environment. Though I have installed Google core API dependency I get following error :
ImportError: No module named google.api_core
On digging about this issue, the answer which I can find is it doesn't work on a standard environment because of sandboxing. I am stuck at this, any help is appreciated.
File "dialogflow/__init__.py", line 17,
in <module> from dialogflow_v2 import AgentsClient File "dialogflow_v2/__init__.py", line 19,
in <module> from dialogflow_v2 import types File "dialogflow_v2/types.py", line 20,
in <module> from google.api_core.protobuf_helpers import get_messages File "/usr/lib/google-cloud-sdk/platform/google_appengine/google/appengine/tools/devappserver2/python/runtime/sandbox.py", line 1154,
in load_module raise ImportError('No module named %s' % fullname)
ImportError: No module named google.api_core