view pythonServer-legacy.py @ 1065:b2492aeafe8b

Scripts: show which and how many markers not clicked or moved; option to plot timelines against 'audioholder time' (default) or 'total test time' (previously the only possibility)
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Mon, 10 Aug 2015 18:45:45 +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()