Skip to content

Instantly share code, notes, and snippets.

@dharma017
Created September 13, 2015 11:37
Show Gist options
  • Select an option

  • Save dharma017/2098791bab358d50babd to your computer and use it in GitHub Desktop.

Select an option

Save dharma017/2098791bab358d50babd to your computer and use it in GitHub Desktop.
Python http server

python 2.x

python -m SimpleHTTPServer 1234

python 3.x

python -m http.server

python 3.x

python -m http.server 1234

python 3.x , bind the server to a static ip address

python -m http.server 1234 --bind 127.0.0.1

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