view pythonServer.py @ 936:5ad6a3102921

Console logs for moving slider, playback, stop audio and (when submitting) comments.
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Tue, 26 May 2015 12:16:57 +0100
parents
children e08f2b155d8b
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()