Skip to content

Instantly share code, notes, and snippets.

@kelliott121
Created June 30, 2016 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelliott121/eb318b4c62cc659f7849c569b27e81b8 to your computer and use it in GitHub Desktop.
Save kelliott121/eb318b4c62cc659f7849c569b27e81b8 to your computer and use it in GitHub Desktop.
import SimpleHTTPServer
import SocketServer
PORT = 80
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