We have a need to share a datastore across multiple app engine apps. (e.g. we would like to use Flask for our public API, but django for our internal Saas Product with different scaling needs as just one example).
Has anyone used the Cloud Datastore API to do something like this? Will I get the same performance (network latency, etc.) that I do normally in my app engine app, or does the HTTP layer route requests differently and introduce overhead?
Is there some other way to share a single datastore across multiple app engine apps? Does the modules functionality provide a separate 'main' entrypoint to allow for different python web frameworks?