whois21
whois21 copied to clipboard
whois21 is a simple and easy to use python package that lets you easily query whois information of a domain/IP.
If I try to run this code from the network where whois port blocked, I don't get an Timeout error or any similar error. ``` import whois21 whois = whois21.WHOIS("google.com",timeout=10)...
This is a nice package, but it's unusable within the context of an AWS Lambda, because it tries to write data to disk, and lambda filesystems are read-only. I wonder...
Hello, I'm here again. The process of obtaining whois information is: get domain ->get whois server from iana ->get domain whois information, right? I'm not sure if I'm using the...