Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Last active April 3, 2024 00:29
Show Gist options
  • Save jrichardsz/fdf33256a2f5e80b402e7626d605b824 to your computer and use it in GitHub Desktop.
Save jrichardsz/fdf33256a2f5e80b402e7626d605b824 to your computer and use it in GitHub Desktop.
http server snippets
## python 2
```
cd folder
python -m SimpleHTTPServer 8080
```
## python 3
```
cd folder
python -m http.server 8080
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment