Skip to content

Instantly share code, notes, and snippets.

@phobologic
Created January 12, 2015 21:50
Show Gist options
  • Save phobologic/562139abebaeef6e54c6 to your computer and use it in GitHub Desktop.
Save phobologic/562139abebaeef6e54c6 to your computer and use it in GitHub Desktop.
import SimpleHTTPServer
import SocketServer
PORT = 8000
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("", PORT), Handler)
print "serving at port", PORT
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment