tags:

views:

87

answers:

4

I think I'm gonna start learning Python web development from scratch. So if someone knows good tutorials on this, please post links.

+2  A: 

Django is a toolkit for writing web applications Python.

The Django Tutorial might be a good place to start.

Robert Christie
+4  A: 

Assuming you mean "learn from scratch" and not "build from scratch", these are books for popular frameworks:

There are many others, so do some searching around.

Alex Brasetvik
+2  A: 

You have a couple of choices, just to name a few:

Frameworks

Standards

Further reading

Example of a web application written with the webpy framework:

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()
The MYYN