Mercurial > hg > waet-hammond-1
view pythonServer-legacy.py @ 17:9da74cda0375
Ready to go
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 11 May 2016 13:32:54 +0100 |
parents | d2eb0e6ccaaf |
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()