view pythonServer-legacy.py @ 2146:14a3089443b6

Error levels should be set before messing around with timezone, as that may trigger warnings on some systems
author Giulio Moro <giuliomoro@users.noreply.github.com>
date Sun, 06 Mar 2016 20:55:00 +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()