Skip to content

Commit

Permalink
Merge pull request #105 from pogzyb/release/v1.1.9
Browse files Browse the repository at this point in the history
Release/v1.1.9
  • Loading branch information
pogzyb authored Nov 7, 2024
2 parents 4899649 + fb895bb commit 0e68ab3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion asyncwhois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"GeneralError",
"QueryError",
]
__version__ = "1.1.8"
__version__ = "1.1.9"


def whois(
Expand Down

0 comments on commit 0e68ab3

Please sign in to comment.