我正在尝试在Windows Powershell上运行以下代码,但它会出现错误“模块无法调用”。
import whois
w = whois.whois('yahoo.com')
print w
我做错了什么?我甚至pip安装了whois模块。仍然没有区别。
请帮忙。
答案 0 :(得分:0)
似乎whois documentation已过期;将行更改为
w = whois.query('yahoo.com')
您可以在互动终端(help(whois)
之后)import whois
查看更多最新文档。