Skip to content

Instantly share code, notes, and snippets.

@adammck
Created January 21, 2009 10:55
Show Gist options
  • Save adammck/49926 to your computer and use it in GitHub Desktop.
Save adammck/49926 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from BaseHTTPServer import HTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
HTTPServer(('', 8000), SimpleHTTPRequestHandler).serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment