view pythonServer.py @ 1763:3496198d413c

Feature #1228: Added survey question box sizes
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Fri, 05 Jun 2015 13:26:31 +0100
parents abdbbe9a72c4
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()