如何使用 python 执行此命令并返回结果?

发布于 2024-09-05 06:21:42 字数 93 浏览 8 评论 0原文

$whois abc.com

我想使用 python 来执行此命令,然后将结果作为文本字符串给出。我怎样才能做到这一点?

$whois abc.com

I want to use python to hit this command, and then give the result as a String of text. How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

早乙女 2024-09-12 06:21:42

您可以使用 子进程,例如:

from subprocess import Popen, PIPE
output = Popen(["/usr/bin/whois", "abc.com"], stdout = PIPE).communicate()[0]

stdout = PIPE 参数强制将 stdout 写入临时管道而不是控制台(如果您不希望这样做,请删除 stdout 参数)。

You can use subprocess, for example:

from subprocess import Popen, PIPE
output = Popen(["/usr/bin/whois", "abc.com"], stdout = PIPE).communicate()[0]

The stdout = PIPE parameter forces stdout to be written to a temporary pipe instead of the console (if you don't want that, remove the stdout parameter).

少女的英雄梦 2024-09-12 06:21:42

子进程 就可以了。另一方面,whois 协议如此简单,我不明白为什么要这样做使用外部命令(并取决于其可用性)。只需打开到端口 43 的 TCP 连接,发送一行查询并读取响应。

subprocess is fine. On the other hand, the whois protocol is so simple that I do not see why to use an external command (and depend on its availability). Just open a TCP connection to port 43, send a one-line query and read the responses.

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