python whois Windows 版
我尝试在 python 中获取 whois 。我用这个 http://code.google.com/p/pywhois/ 但它只能在linux下运行。可以在windows上运行吗?目前我收到错误(因为使用了内部linux命令whois)
I try to get whois in python. I use this
http://code.google.com/p/pywhois/
but it run only in linux. Is it posible to run it on windows? currently i get errors (because internal linux command whois used)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 上,就像在 Linux 上一样,如果未安装
whois
程序,pywhois 会给出错误。例如,您可以尝试此whois。当然,原因在于 pywhois/ init.py,第 11 行:
显然,这一行需要运行一些现有的、已安装的
whois
命令行程序(它接受要作为命令行参数进行查找的域) ,无论它运行在什么操作系统上。On Windows just like on Linux, pywhois gives an error if the
whois
program is not installed. You could try this whois, for example.The reason, of course, is in pywhois/init.py, line 11:
Clearly this line needs to run some existing, installed
whois
command-line program (which accepts the domain to look up as a commandline argument), whatever OS it's running on.您可以使用:
或使用
urllib
连接http://www.whois.net 并废弃内容。You could use :
Or use
urllib
to connect http://www.whois.net and scrap content.