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?
feedback
|
|
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. | |||
|
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. | |||
|
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 | |||
|
feedback
|