python 开启http服务并下载文件
Posted Hank.Yoon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 开启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/文件名
以上是关于python 开启http服务并下载文件的主要内容,如果未能解决你的问题,请参考以下文章
python -m http.server 搭建一个简易web下载服务器