Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1068:8eb0c24ea50a
Scripts: timeline view of marker movements
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Tue, 11 Aug 2015 20:49:34 +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()