Using Python to start a simple HTTP server that will provide a directory listing for the current directory.
Python 2
python -m SimpleHTTPServer 8000
Python 3
python3 -m http.server 8000
# port is 8000, can change it
Just another tech blog, also my personal blog. I'll be posting interesting articles about tech, programming and tricks, dev life, and any timely topics.
Using Python to start a simple HTTP server that will provide a directory listing for the current directory.
Python 2
python -m SimpleHTTPServer 8000
Python 3
python3 -m http.server 8000
# port is 8000, can change it
Comments
Post a Comment