Skip to content

Instantly share code, notes, and snippets.

@amadeus
Created May 17, 2012 18:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amadeus/2720617 to your computer and use it in GitHub Desktop.
Save amadeus/2720617 to your computer and use it in GitHub Desktop.
A simple static asset python server
import SimpleHTTPServer
import SocketServer
PORT = 8888
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("", PORT), Handler)
print 'Serving at localhost:' + str(PORT)
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment