当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python clx.osi.whois.WhoIsLookupClient.whois用法及代码示例


用法:

whois(domains, arr2str=True)

用于访问给定域的已解析 WhoIs 数据的函数。

参数

  • domains(list) - 执行 whois 查询的域。
  • arr2str(boolean) - 将 WhoIs 查找响应对象转换为字符串列表。

返回

关于给定域的 WhoIs 信息。

返回类型

列表/对象

例子

>>> from clx.osi.whois import WhoIsLookupClient
>>> domains = ["nvidia.com"]
>>> client = WhoIsLookupClient()
>>> client.whois(domains)
[{'domain_name': 'NVIDIA.COM', 'registrar': 'Safenames Ltd', 'whois_server': 'whois.safenames.net'...}]

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 clx.osi.whois.WhoIsLookupClient.whois。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。