命令行上的 Python 模块

发布于 2024-12-10 20:37:06 字数 115 浏览 1 评论 0原文

我刚刚发现可以在命令行中输入以下代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

ぇ气 2024-12-17 20:37:07

主要Python文档中,有SimpleHTTPServer 文档底部的注释。其他模块,例如 pdbtimeit 有类似的注释。

In the main Python documentation, there is a note at the bottom of the SimpleHTTPServer documentation. Other modules such as pdb and timeit have similar notes.

皇甫轩 2024-12-17 20:37:07

整个 -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.

为你鎻心 2024-12-17 20:37:07

主要是在来源本身。几乎没有任何文档可以以这种方式使用,而且并非所有文档都做任何有用的事情。

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.

み青杉依旧 2024-12-17 20:37:07

尝试使用:

python2 -m SimpleHTTPServer

或者在 Python 3 中:

python -m http.server

Try with:

python2 -m SimpleHTTPServer

Or in Python 3:

python -m http.server
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文