Can I use PyMongo in the Google App Engine?

I am trying to use the MongoDB database from the Google App Engine service, what is possible? How to install PyMongo driver in Google App Engine? Thanks

+4
source share
3 answers

No, It is Immpossible. In the Runtime Environment section. In App Engine, you will need to use a datastore or "database service" with which you can access using HTTP calls.

You might want to check out TyphoonAE .

+4
source

This is not possible because you do not have access to network sockets in App Engine. Until you can access the database via HTTP, this is not possible.

+1
source

The Tam section successfully used the PyMongo driver in the standard Google App Engine Python application runtime without any problems. We just completed the official PyMongo tutorial and it worked.

+1
source

All Articles