Python <= 2.3python -c "import SimpleHTTPServer as s; s.test();" 8000
Python >= 2.4python -m SimpleHTTPServer 8000
Python 3.xpython -m http.server 8000
wget ip:port/文件名
python 开启http服务并下载文件
原文:https://www.cnblogs.com/hankyoon/p/12326115.html