【Python】SimpleHTTPServer

Posted by 西维蜀黍 on 2021-05-23, Last Modified on 2021-09-21

Python2

$ python -m SimpleHTTPServer
# or
$ python2 -m SimpleHTTPServer

Python3

$ python3 -m http.server

Reference