view pythonServer-legacy.py @ 1073:522a2ed8afa2

Scripts: generate_report.py: show which fragments not moved and played
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Fri, 04 Sep 2015 12:22:55 +0200
parents 30d5aa52b034
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()