Python搭建简易服务

179 阅读1分钟

1. Python搭建简易web服务器

    • Python2: python -m SimpleHTTPServer port 
    • Python3: python3 -m http.server port

2. Python搭建简易ftp服务

  pip3 install pyftpdlib
  python3 -m pyftpdlib -p 21
  ftp://localhost:21