A simple and efficient WHOIS lookup library for Python.
pip install whoisqueryfrom whoisquery import WhoisQuery
# Create a WHOIS lookup instance
whois = WhoisQuery("example.com")
#Get WHOIS data
data = whois.execute_whois()
print(data)whoisquery -d example.com- Performs WHOIS lookups for domain names
- Parses WHOIS output into structured data
- Extracts key information such as:
- Registration dates
- Domain status
- Nameservers
- Registrar information
- DNSSEC status
- Python 3.7 or higher
whoiscommand-line tool installed on the system
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a pull request.