annotate pythonServer-legacy.py @ 2122:cac0706b9a41

Added error check for empty file in save.php
author Giulio Moro <giuliomoro@users.noreply.github.com>
date Tue, 23 Feb 2016 14:18:25 +0000
parents d9b9f707f862
children
rev   line source
nickjillings@1315 1 import SimpleHTTPServer
nickjillings@1315 2 import SocketServer
nickjillings@1315 3
nickjillings@1315 4 PORT = 8080
nickjillings@1315 5
nickjillings@1315 6 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
nickjillings@1315 7
nickjillings@1315 8 httpd = SocketServer.TCPServer(("", PORT), Handler)
nickjillings@1315 9
nickjillings@1315 10 print "serving at port", PORT
nickjillings@1315 11 httpd.serve_forever()