我刚刚发现了以下可以输入命令行的代码:
python -m SimpleHTTPServer
我在哪里可以找到更多关于模块的文档以及我可以用它做些什么?
答案 0 :(得分:4)
在main Python documentation中,有a note at the bottom of the SimpleHTTPServer
documentation。 pdb
和timeit
等其他模块也有相似的注释。
答案 1 :(得分:1)
答案 2 :(得分:0)
主要是在源本身。几乎没有可以使用这种方式的文档,并且并非所有文档都有用。
答案 3 :(得分:0)
尝试:
python2 -m SimpleHTTPServer
或者在Python 3中:
python -m http.server