We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4899649 + fb895bb commit 0e68ab3Copy full SHA for 0e68ab3
README.md
@@ -50,6 +50,10 @@ pprint(parsed_dict)
50
...
51
"""
52
53
+# set `find_authoritative_server=False` to only query the TLD's whois server as specified in the IANA root db.
54
+# this will generally speed up execution times, but responses may not include complete information.
55
+query_string, parsed_dict = asyncwhois.whois("google.com", find_authoritative_server=False)
56
+
57
# support for IPv4, IPv6, and ASNs too
58
ipv4 = "8.8.8.8"
59
query_string, parsed_dict = asyncwhois.whois(ipv4)
asyncwhois/__init__.py
@@ -42,7 +42,7 @@
42
"GeneralError",
43
"QueryError",
44
]
45
-__version__ = "1.1.8"
+__version__ = "1.1.9"
46
47
48
def whois(
0 commit comments