Web development with Python 3.1

Diez B. Roggisch deets at nospam.web.de
Tue Oct 27 10:26:30 EDT 2009


Dotan Cohen wrote:

> Why the push to use a framework, and why the resistance from the OP?
> 
> Does the OP need to work with cookies or other http-specific features?
> In fact, other than cookies, what http-specific features exist?

declarative mapping of urls to code, of code to templates, abstracting away
the details of GET and POST, validating and decoding parameters, especially
if these become larger repetitive structures like several addresses of a
user, re-rendering invalid form-data, working with HTML or JSON as output,
managing transactions, providing a error-reporting-infrastructure

The list continues.


> Does 
> Python have a built-in framework for making available GET and POST
> variables?  Database queries should be no different than in other
> Python apps.

Yes, in the end of the day, it's all python.

Diez



More information about the Python-list mailing list