标签:simple tps 服务 get http服务 test http 下载文件 文件名
Python <= 2.3
python -c "import SimpleHTTPServer as s; s.test();" 8000
Python >= 2.4
python -m SimpleHTTPServer 8000
Python 3.x
python -m http.server 8000
wget ip:port/文件名
标签:simple tps 服务 get http服务 test http 下载文件 文件名
原文地址:https://www.cnblogs.com/hankyoon/p/12326115.html