命令行上的 Python 模块
我刚刚发现可以在命令行中输入以下代码:
python -m SimpleHTTPServer
在哪里可以找到有关模块的更多文档以及我可以用它做什么?
I just found out about the following code I can enter into the command line:
python -m SimpleHTTPServer
Where can I find more documentation about the modules and what I can do with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在主要Python文档中,有
SimpleHTTPServer
文档底部的注释。其他模块,例如pdb
和timeit
有类似的注释。In the main Python documentation, there is a note at the bottom of the
SimpleHTTPServer
documentation. Other modules such aspdb
andtimeit
have similar notes.整个
-m
命令行功能已记录在 此处和此处。您可以将它用于您自己的模块。如前所述,对于各个标准库模块,最好查阅其源代码。The overall
-m
command line feature is documented here and here. You can use it for you own modules. As noted, for individual standard lib modules it's best to consult their source code.主要是在来源本身。几乎没有任何文档可以以这种方式使用,而且并非所有文档都做任何有用的事情。
Mostly in the source itself. There is almost no documentation on which can be used this way, and not all of them do anything useful.
尝试使用:
或者在 Python 3 中:
Try with:
Or in Python 3: