當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。