view pythonServer-legacy.py @ 1881:584efb7ec6b3

Hotfix: Added name attribute to XSD for audioelement nodes
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 08 Mar 2016 18:12:14 +0000
parents ade3acb0cee3
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()