Also more a library then a framework.
Ask HN: What Web frameworks exist around Python?
11–20 of 32 posts
Re: Ask HN: What Web frameworks exist around Python?
#12Can do everything thingie: http://www.twistedmatrix.com
Re: Ask HN: What Web frameworks exist around Python?
#13Werkzeug - the anti-framework. It is more like a library and that's good as it allows you do things the way you like... http://werkzeug.pocoo.org/
[1] http://jinja.pocoo.org/2/ [2] http://www.sqlalchemy.org/ [3] http://bitbucket.org/jek/flatland/overview/
Re: Ask HN: What Web frameworks exist around Python?
#14Re: Ask HN: What Web frameworks exist around Python?
#15FWIW Guido settled on Django. I dont know if he has changed his mind since.
Re: Ask HN: What Web frameworks exist around Python?
#16At work we use Django and somewhat happy with it. In past I used to use web.py and I liked it.
Re: Ask HN: What Web frameworks exist around Python?
#17Re: Ask HN: What Web frameworks exist around Python?
#18http://webpy.org/ import web urls = ( '/(.*)', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self, name): if not name: name = 'world' return 'Hello, ' + name + '!' if __name__ == "__main__": app.run()
Re: Ask HN: What Web frameworks exist around Python?
#19web2py is the new up-and-comer.
zope is the grey-bearded veteran that nobody uses anymore.
twisted is more of a networking framework but people sometimes use it for web apps.
Re: Ask HN: What Web frameworks exist around Python?
#20The reason that there are so many frameworks is that writing one used to be a rite of passage for Python programmers. It was so easy to write your own. FWIW Guido settled on Django. I dont know if he has changed his mind since.