To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / pythonServer-legacy.py

History | View | Annotate | Download (216 Bytes)

1
import SimpleHTTPServer
2
import SocketServer
3

    
4
PORT = 8080
5

    
6
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
7

    
8
httpd = SocketServer.TCPServer(("", PORT), Handler)
9

    
10
print "serving at port", PORT
11
httpd.serve_forever()