Skip to content

Instantly share code, notes, and snippets.

@tovbinm
Forked from softprops/instantHTTP
Created April 20, 2011 06:59
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 tovbinm/930544 to your computer and use it in GitHub Desktop.
Save tovbinm/930544 to your computer and use it in GitHub Desktop.
One line Python Web server
python -m SimpleHTTPServer
@tovbinm
Copy link
Author

tovbinm commented Apr 20, 2011

Python 2.x:
python -m SimpleHTTPServer 8000

Python 3.x:
python -m http.server 8000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment