Ask Hacker News: What Python web framework should I use?
1–10 of 41 posts
Re: Ask Hacker News: What Python web framework should I use?
#2Re: Ask Hacker News: What Python web framework should I use?
#3If you learn Django, I'm sure you won't regret it. I don't think it's "huge" at all: it's compact and usable.
Re: Ask Hacker News: What Python web framework should I use?
#4Re: Ask Hacker News: What Python web framework should I use?
#5Re: Ask Hacker News: What Python web framework should I use?
#6PROS: * 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.
Re: Ask Hacker News: What Python web framework should I use?
#7pylons: didn't really like the lack of decorators, didn't seem to be an ORM of choice, docs looked weak although the wiki was well stocked with recipies
django: really well documented. Seemed to be HUGE and I felt intimidated by it. It wasn't clear to me I could strip it down to what I needed. Didn't seem very modular, you can only use the Django ORM and templating engine.
web.py: Far to simple for my needs, you need to build nearly everything from scratch, simple to learn because there is nothing there!
I chose Turbo Gears because it seemed easier to chose the components you want to use. The idea that the TurboGears community picks best of breed python components and integrated them really appealed to me. This is both good and bad but in general I think it's been good for the project.
A year later and I haven't been disappointed. The TG community is really friendly as well :) TG is working with the pylons team for the next version of TurboGears and I know there has been a lot of code sharing between the groups.
That's my 2p, good luck.
Re: Ask Hacker News: What Python web framework should I use?
#8django.
Btw, I should add that I'm asking from the perspective of somebody moving towards a Pythonic framework. I've spent the better part of today learning Python, and so far I love it!
Re: Ask Hacker News: What Python web framework should I use?
#9* A RSS-rewriting, caching "proxy" for the News.YC feed
* A search engine for 2 gigs of email, going back to 1995
* A customized CMS-like app
* And now, my blog, which I'm almost done writing; I keep making changes to the architecture.
TurboGears 2, which some have recommended, is being built on top of Pylons.
Re: Ask Hacker News: What Python web framework should I use?
#10I 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.
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