Python Whois模块错误

时间:2013-10-18 05:54:36

标签: python whois

我正在尝试在Windows Powershell上运行以下代码,但它会出现错误“模块无法调用”。

import whois
w = whois.whois('yahoo.com')

print w

我做错了什么?我甚至pip安装了whois模块。仍然没有区别。

请帮忙。

1 个答案:

答案 0 :(得分:0)

似乎whois documentation已过期;将行更改为

w = whois.query('yahoo.com')

您可以在互动终端(help(whois)之后)import whois查看更多最新文档。