Mercurial > hg > waet-hammond-1
view pythonServer-legacy.py @ 20:3cbb9e7a359c
Added bottom box for training
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Thu, 12 May 2016 18:39:26 +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()