Skip to content

Commit 0e68ab3

Browse files
authored
Merge pull request #105 from pogzyb/release/v1.1.9
Release/v1.1.9
2 parents 4899649 + fb895bb commit 0e68ab3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ pprint(parsed_dict)
5050
...
5151
"""
5252

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+
5357
# support for IPv4, IPv6, and ASNs too
5458
ipv4 = "8.8.8.8"
5559
query_string, parsed_dict = asyncwhois.whois(ipv4)

asyncwhois/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"GeneralError",
4343
"QueryError",
4444
]
45-
__version__ = "1.1.8"
45+
__version__ = "1.1.9"
4646

4747

4848
def whois(

0 commit comments

Comments
 (0)