Python 3 Http Server
A quick and simple way to start a webserver on the current directory with Python 3
using module http.server
1
python3 -m http.server 8000 --directory .`
Happy learning and keep practicing!
A quick and simple way to start a webserver on the current directory with Python 3
using module http.server
1
python3 -m http.server 8000 --directory .`
Happy learning and keep practicing!
Comments