Which python framework is best for web development in google app engine?
|
3
|
|
|
|
|
|
If you are looking for a full stack framework Django is probably what you are looking for. Here you can find an article about Running Django on Google App Engine. |
|||
|
|
|
Isn't Django recommended by Guido, which is now a Google employee? |
||
|
|
|
I want to know how to run the CherryPy web server in the Google App Engine, because I like it best, plus I want to know how to integrate the StringTemplate engine into the CherryPy web server so that I can use it there, too. I have used CherryPy stand-alone and with TurboGears. |
||
|
|
|
|
Like CodeSlayer said, google app engine have bundle some frameworks. but if you want to use it with others you can read this article
|
||
|
|
|
As has been said, Django is already there, but WebOb is also available there. You can build your own framework upon that (see the tutorial). |
||
|
|
|
|
I can recommend Django too. It has nice support by Google and community. Lots of examples and internal power of framework itself can save much time on coding. |
||
|
|
|
|
I would suggest Django as a good Python framework. There are some articles on Google which describe how you can use it with Google App Engine. It's already included in App Engine, so all you need to do is import the Django modules as normal. |
||
|
|
|
|
webapp is the framework which is bundled with google app engine. The webapp framework is already installed in the app engine environment and in the SDK, so you do not need to bundle it with your application code to use it. Besides webapp, app engine environment also supports Django, Pylons and web.py |
||
|
|
