Mercurial > hg > waet-hammond-1
annotate 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 |
rev | line source |
---|---|
giuliomoro@0 | 1 import SimpleHTTPServer |
giuliomoro@0 | 2 import SocketServer |
giuliomoro@0 | 3 |
giuliomoro@0 | 4 PORT = 8080 |
giuliomoro@0 | 5 |
giuliomoro@0 | 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler |
giuliomoro@0 | 7 |
giuliomoro@0 | 8 httpd = SocketServer.TCPServer(("", PORT), Handler) |
giuliomoro@0 | 9 |
giuliomoro@0 | 10 print "serving at port", PORT |
giuliomoro@0 | 11 httpd.serve_forever() |