0

I am very new to Python and I knew the basic programming in Python. Can anyone please tell me how to develop a web application in python. I want know what is the web server or localhost for python application( as wamp server in case of PHP).

Praseetha
  • 1
  • 2

2 Answers2

0

If you have worked your way through something such as Dive Into Python then have a look at the SimpleHTTPServer module for Python 2 or the httpserver module in Python 3.

Tony Williams
  • 613
  • 3
  • 18
0

A Web server is a program that, using the client/server model and the World Wide Web's Hypertext Transfer Protocol ( HTTP ), serves the files that form Web pages to Web users (whose computers contain HTTP clients that forward their requests).

There are several webservers which can be used for Python.Selecting the webservers play a crucial role as it can vary features from one server to another.

For Developing python applications tutorials are available at google,kindly have a thorough research before posting questions other than errors / exceptions.

More on webservers are available here.

Tharif
  • 13,794
  • 9
  • 55
  • 77