Python_2_Examples_and_Notes/26_simplehttpserver.py

6 lines
179 B
Python
Raw Permalink Normal View History

2017-06-11 19:42:13 +00:00
# How to run it fast
# python -m SimpleHTTPServer 4444
# ...or start transiting to python 3!
# python3 -m http.server 4444
# pushd /serve/anotherdir ; python3 -m http.server 4444