Ask Hacker News: What Python web framework should I use?
21–30 of 41 posts
Re: Ask Hacker News: What Python web framework should I use?
#22Re: Ask Hacker News: What Python web framework should I use?
#23If you want to be adventurous, you can also look at Werkzeug (a collection of WSGI utilities) and choose whatever ORM (SQLAlchemy, SQLObject, etc) and template system (Jinja, Mako, etc) you want.
Re: Ask Hacker News: What Python web framework should I use?
#24Re: Ask Hacker News: What Python web framework should I use?
#25Re: Ask Hacker News: What Python web framework should I use?
#26django. this isn't an even reasonable question to be asking.
Although I agree, Django is really your best choice here.
Re: Ask Hacker News: What Python web framework should I use?
#27I personally like web.py: PROS: * Light and fast, * Really flexible, * Really easy to learn, * Easy to install, * Nice error reports (mostly copied from Django), * No database ORM CONS: * No database ORM, just some helper functions: insert(...), update(...), select(...), etc. You must also build the DB tables by yourself. * Limited documentation.
I stopped using web.py after I had to correct Aaron when he recommended a 'session' implementation that had a massive gaping security hole. http://groups.google.com/group/webpy/browse_thread/thread/2f... If he couldn't spot that when he posted, I don't trust him to spot any other problems with web.py
Re: Ask Hacker News: What Python web framework should I use?
#28django.
Re: Ask Hacker News: What Python web framework should I use?
#29I personally like web.py: PROS: * Light and fast, * Really flexible, * Really easy to learn, * Easy to install, * Nice error reports (mostly copied from Django), * No database ORM CONS: * No database ORM, just some helper functions: insert(...), update(...), select(...), etc. You must also build the DB tables by yourself. * Limited documentation.
I am not sure it is by laziness, or it is purposely done to scare n00bs away from it.
It's a pitty when somebody takes the time to built a decent and useful framework, but just hinders its adoption, by not going the extra mile and providing good documentation.
Re: Ask Hacker News: What Python web framework should I use?
#30Just as a warning. Its not listed here, but stay away from Zope3/Plone for a while :).
I'm contemplating to skip Zope3 to learn Plone. I'm also tinkering with the idea of purchasing Plone 3 book by Martin Aspelli. I heard the book is good and it gives you enough information about Zope3 to learn Plone.