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
2009-12-20 15:22:41
+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
2009-12-20 15:23:28
+2
A:
You have a couple of choices, just to name a few:
Frameworks
- Werkzeug / Screencast (building a wiki)
- Django / Screencasts ..
- web.py (a minimalistic framework)
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
2009-12-20 15:24:45
