About using eve for python framework in google engine

Just found out about a project called python-eve . Since I'm just starting out in python, this project seemed easy to start creating a python-based REST API. In this structure, there really are many functions out of the box, in particular HATEOAS, which I did not find a built-in method in the documentation google-app-engine. Anyway, can I use this infrastructure in google-app-engine? Or should I just ignore the engine application.

+4
source share
1 answer

Eve is a jar application, which means that wherever Flask works, Eve works ... at least in a good theory. Check out the following resources:

I personally have never tried to launch Eve on GAE, but the above resources seem to indicate that this is possible with minimal effort.

+2
source

All Articles