view pythonServer-legacy.py @ 1875:2fc9c1f1abb2

WAC16: Removed 'Ape Style 2D' from interface list. Renamed 'Ape Style' to 'APE'.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Mon, 29 Feb 2016 12:13:15 +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()