view pythonServer-legacy.py @ 614:ecca9c11d2f2 multiple-tests-concatenation

removed garbage
author Giulio Moro <giuliomoro@yahoo.it>
date Sun, 13 Mar 2016 15:33:36 +0000
parents e08f2b155d8b
children
line wrap: on
line source
import SimpleHTTPServer
import SocketServer

PORT = 8080

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler

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

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