views:

2332

answers:

2

I was looking into playing around with Python 3.0. My plan was to build a cutesy web-app in Django, but I don't think that Django support Python 3 at this stage (the last release was before Python 3 came out).

What Python web development frameworks out there currently support Python 3.0?

+3  A: 

Looks like QP 2.1 may be the First Python 3 Web Application Framework.

This is QP, a package for defining and running multiple web applications based on Durus for persistence, standard persistent Session and User classes, easy interactive database sessions, qpy for assembling html, and Quixote2-style forms and path traversal. QP makes it easier than ever to use these tools together.

gimel
+2  A: 

The Bottle framework supports Python 3.x through 2to3.

Tomas Sedovic