Python 快速搭建本地Server

Python
  • python2
python -m SimpleHTTPServer 8080
  • python3
python -m http.server 9999

http://localhost:8080/

评论