views:

92

answers:

1

I've been learning Python and now I'd like to learn a Python-based web framework. I'm considering Google App Engine and Django. Which one should I choose? What are their unique features and learning curves?

+1  A: 

Google App Engine is an infrastructure on which you can "build and host apps." Though not a web app framework itself, it does provide a simple web app framework called webapp (partially built onto of another framework WebOb).

There are numerous, detailed posts on choosing a Python-based web app framework:

David Underhill