Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For these pythonic web frameworks;

They looks similar, except a few minor differences like their url handling schemes. So it is very hard to choose one of them.

I want to learn from your experiences that which one more suits for a web application that is small in size, but need long term support (initial application is small but it is supposed to became larger over time) and why?

share|improve this question

1 Answer

up vote 28 down vote accepted

Flask is a new and a very active project with good documentation and guidelines for new development and plugins. Its community is quite large and Armin (the lead) is an A grade programmer. Hence it is definitely the better contender.

Web.py is an older and more mature project which is more a library than a framework. It's what we use for the Internet Archives Open Library website. The documentation is spotty but the code is rock solid and it's over the years accrued a lot of useful utilities into it.

The final decision is yours but for a new project, I'd go with Flask.

share|improve this answer
1  
+1 for the Flask documentation, not only about python stuff, but also about xhtml and html5 and hackers attacks (xss)...a MUST READ even if you'll not use Flaks ;) – abdel Oct 30 '11 at 17:39
2  
+1 for Web.py simplicity & RESTful design. – Locke Mar 18 '12 at 8:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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