In article <[email protected]>, Sarbjit singh <[email protected]> wrote:
> Hello All, > > I have been using Python as a scripting language for my office tasks. Now I > have been thinking of using (and learning as well) for web development. For > my tasks, I need to perform some tasks and report on the web. Now I have no > experience of web development with Python. So, I want to conform first > whether Python is best for web development. Python is my personal choice for > my automation works and I want to extend it for web development. > > REQUIREMENT: > I need to develop a html form which would take user input and perform some > operations (generate intermediate files) and report result on web. It's got a bit of a steep learning curve, but django might be what you're looking for. I would start with the tutorial: https://docs.djangoproject.com/en/1.5/intro/tutorial01/ and eventually work your way to class-based views and forms: https://docs.djangoproject.com/en/1.5/topics/class-based-views/generic-ed iting/ -- http://mail.python.org/mailman/listinfo/python-list
