vote up 8 vote down star
3

Which python framework is best for web development in google app engine?

flag

80% accept rate

8 Answers

vote up 7 vote down check

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.

link|flag
I don't think this answers the question very well. I'd like to see a few more options mentioned. In particular, what I want to know is what it takes to set the other options up such as Pylons and Turbo Gears. – allyourcode Nov 7 at 10:25
vote up -1 vote down

Isn't Django recommended by Guido, which is now a Google employee?

link|flag
Guido claims to be impartial as far as what framework you should use; however, this may just be a political move to avoid upsetting fans of other frameworks. It does seem that he has plugged Django more than the others. – allyourcode Nov 7 at 10:48
vote up 0 vote down

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.

link|flag
vote up 2 vote down

Like CodeSlayer said, google app engine have bundle some frameworks. but if you want to use it with others you can read this article
Running Django on Google App Engine
And if you need some IDE, these tutorials may help
Configuring Eclipse on Windows to Use With Google App Engine
Using Komodo Edit as an IDE for Google App Engine

link|flag
Pydev now has inbuilt support for app-engine projects – Casebash Nov 18 at 23:58
vote up 4 vote down

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).

link|flag
vote up 2 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
vote up 10 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.