view pythonServer-legacy.py @ 1474:cb98283ece7e

Feature #1266: Checks for fragments fully played implemented
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Wed, 02 Dec 2015 12:05:08 +0000
parents bc074d4ee760
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()