I'm trying to deploy a simple python Flask app to appengine which makes use of Google Datastore.
The problem is I cannot import the datastore library. The server gives a 500 error and the log says -
ImportError: cannot import name datastore
My import statement looks like this -
from google.cloud import datastore
I've tried packaging it in with the app inside the lib/
folder like a 3rd party library (as suggested here) but that didn't help either.