From e7fb9a0d7d8fbbf5a9f8a9b9cc452e61c9ed4026 Mon Sep 17 00:00:00 2001 From: Joe Obarzanek Date: Thu, 7 Nov 2024 08:26:45 -0500 Subject: [PATCH 1/2] Update README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index af64cf8..66ec479 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,10 @@ pprint(parsed_dict) ... """ +# set `find_authoritative_server=False` to only query the TLD's whois server as specified in the IANA root db. +# this will generally speed up execution times, but responses may not include complete information. +query_string, parsed_dict = asyncwhois.whois("google.com", find_authoritative_server=False) + # support for IPv4, IPv6, and ASNs too ipv4 = "8.8.8.8" query_string, parsed_dict = asyncwhois.whois(ipv4) From fb895bb52a8f913ea87737a8abd0b10ae4561c95 Mon Sep 17 00:00:00 2001 From: Joe Obarzanek Date: Thu, 7 Nov 2024 08:26:59 -0500 Subject: [PATCH 2/2] Bump version --- asyncwhois/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asyncwhois/__init__.py b/asyncwhois/__init__.py index 8be353c..61b7dd6 100644 --- a/asyncwhois/__init__.py +++ b/asyncwhois/__init__.py @@ -42,7 +42,7 @@ "GeneralError", "QueryError", ] -__version__ = "1.1.8" +__version__ = "1.1.9" def whois(