Python搭建简易服务 霍尔 2020-06-12 179 阅读1分钟 1. Python搭建简易web服务器Python2: python -m SimpleHTTPServer port Python3: python3 -m http.server port2. Python搭建简易ftp服务 pip3 install pyftpdlib python3 -m pyftpdlib -p 21 ftp://localhost:21