Make a simple web server with one line of python code

python 2.7

python -m SimpleHTTPServer 端口号

pyhon3

python3 -m http.server 端口号


If the port number is not filled in, the default is 8000

Guess you like

Origin blog.csdn.net/lypgcs/article/details/78762801
Recommended