Example of Simple Web Server Using Python
I may got the question wrong on my previous post.
So, here is how to make a simple web server using python in ubuntu.
That's all... Have fun coding
So, here is how to make a simple web server using python in ubuntu.
- Open up your ubuntu terminal and create the 'index.html' file like this:
<html>
<head><title>python.my sample</title></head>
<body>
<h1>python.my sample</h1>
<p>This is the simple html sample. Got it?</p>
<p>Visit <a href="http://coderstalk.blogspot.com">Coder's Talk blog</a></p>
</body>
</html> - In the same directory, create the python server and name it as 'pyserver.py' and enter the content like this:
import SimpleHTTPServer
import SocketServer
theport = 1234
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
pywebserver = SocketServer.TCPServer(("", theport), Handler)
print "Python based web server. Serving at port", theport
pywebserver.serve_forever() - Run the python code using this command:
$ python pyserver.py
- Open up your web browser and go to http://localhost:1234 and see your python web server running.
That's all... Have fun coding
Comments
python -m SimpleHTTPServer 1234