tags:

views:

82

answers:

2

Hi, I am learning python for a while, now I like to learn python for web, using python as a back-end of website. where and how do I start learning this:

Example usages are : connecting database and retrieve and store information from forms

+3  A: 

You should check out Django, which is the most popular python web framework. It has a lot of features, such as an ORM and a template language, but it's pretty easy to get started and can be very simple to use.

eman
Thanks, any good tutorial or book you suggest for django?
srisar
I recommend the tutorial on the main website: http://docs.djangoproject.com/en/dev/intro/tutorial01/The docs on the site are good. And there is the free Django book: http://www.djangobook.com/
codeape
@srisar: Did you look at the Django site before asking? It has a tutorial that seems to be really obvious.
S.Lott
+2  A: 

While using a full framework like Django, Pylons or TurboGears is nice, you could also check out the more light-weight approaches.

For instance:

codeape
yea, this is kinda think i expected, light weight, good thanks
srisar