I'd like to use Python to build a website with more than 100,000 PV each day. Now what I concern is to choose which web framework. I know lots of people use Django, and some people use web.py. Django seems powerful, and I also like the simplicity of web.py. Which framework should I use? (Please introduce the performance and the maintenance complexity, thanks!) Can web.py build complicated applications? Are there other frameworks better than these two?

link|improve this question

47% accept rate
Is this a legacy application with a new web frontend or something you're building from the ground up? – Joe Holloway Mar 11 '11 at 16:15
Did TurboGears ever materialize? I hear next to no buzz around it anymore. turbogears.org – Frank Hale Mar 11 '11 at 16:24
@Frank: I heard TG will merge with Pylons. – AndiDog Mar 11 '11 at 18:28
It seems more people are familiar with Django. Are there any people who know web.py? – flypen Mar 18 '11 at 6:30
This is a new application building from ground up. – flypen Mar 18 '11 at 6:34
feedback

3 Answers

up vote 4 down vote accepted

Django makes building complicated sites really simple. Before Django, I was messing around with PHP, and I was doing a really terrible job putting it together. Django leads you in the right direction with some good practices which makes your site really easy to maintain and update. I really like the ORM and how you can easily work with data from the database without having to write a single line of SQL. It makes development less of a slog.

I don't have any experience with web.py, and I can't compare the performance of the two. But you can't go wrong with Django at least.

link|improve this answer
feedback

Django is actually quite fast. Using caches and multiple DB backends is a doodle - you actually can utilize Django's predefined caching framework for one-line view caching or even template fragment caching. And of course - low-level cache API. And - it's fun!

In my experience - deployed under nginx and uWSGI, watched over by Supervisord, with the recently hot Celery task queueing package – Django is blazingly fast, easy to scale and configure and very reliable.

link|improve this answer
feedback

In case you haven't started yet, Give both frameworks a try. I started off with Django and moved to web.py.

Web.py is not that hard as one might think. In fact, I find it easier to work with than with Django!

Just my 2 cents.

EDIT: Also, this might help: http://www.aaronsw.com/weblog/rewritingreddit

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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