DNS/Whois Domain Information library
Wizard Domaininfo requires Python 3.6 or above.
To install Python 3.6, I recommend using pyenv
.
# install pyenv
git clone https://github.com/pyenv/pyenv ~/.pyenv
# setup pyenv (you should also put these three lines in .bashrc or similar)
export PATH="${HOME}/.pyenv/bin:${PATH}"
export PYENV_ROOT="${HOME}/.pyenv"
eval "$(pyenv init -)"
# install Python 3.6
pyenv install 3.6.12
# make it available globally
pyenv global system 3.6.12
With pip
:
python3.6 -m pip install wizard_domaininfo
With pipx
:
python3.6 -m pip install --user pipx
pipx install --python python3.6 wizard_domaininfo
=========
A WHOIS DNS retrieval and parsing library for Python.
None! All you need is the Python standard library. Optional RDAP WHOIS based lookups require requests and json libraries. Optional DNS lookups are based on aiodns library.
The whois legacy manual HTML version is also viewable here. The new manual for RDAP based whois and DNS is located here.
- 100% coverage of WHOIS/DNS formats.
- Accurate and complete data.
- Consistently functional parsing; constant tests to ensure the parser isn't accidentally broken.
- WHOIS data retrieval
- Able to follow WHOIS server redirects
- Won't get stuck on multiple-result responses from verisign-grs
- WHOIS data parsing
- Base information (registrar, etc.)
- Dates/times (registration, expiry, ...)
- Full registrant information (!)
- Nameservers
- Optional WHOIS data normalization
- Attempts to intelligently reformat WHOIS data for better (human) readability
- Converts various abbreviation types to full locality names
- Airport codes
- Country names (2- and 3-letter ISO codes)
- US states and territories
- Canadian states and territories
- Australian states
pwhois
, a simple WHOIS tool using pythonwhois- Easily readable output format
- Can also output raw WHOIS data
- ... and JSON.
- Automated testing suite for parse.py and legacy whois(non rdap based)
- Will detect and warn about any changes in parsed data compared to previous runs
- Guarantees that previously working WHOIS parsing doesn't unintentionally break when changing code
- Automated testing suite for rdap and aiodns is based on pytest
- Fast Asynchronous DNS lookups via c-ares aiodns library and helper methods in utils.py.
- Single call via DomainInfo class in domaininfo.py will get all available DNS/Whois via rdap and fallback to legacy whois as needed.
- Checks for WAFs(Cloudflare/Sucuri/Quic.Cloud)
- Check domain expiration.
- Check for or enumerate DKIM records and selectors.
- Check Whois Nameservers and DNS nameservers match.
- See here for all the class attributes.
- It doesn't work at all?
- It doesn't parse the data for a particular domain?
- There's an inaccuracy in parsing the data for a domain, even just a small one?
If any of those apply, don't hesitate to file an issue! The goal is 100% coverage, and we need your feedback to reach that goal.
This library may be used under the MIT License.
This library uses a number of third-party datasets for normalization:
airports.dat
: OpenFlights Airports Database (Open Database License 1.0, Database Contents License 1.0)countries.dat
: Country List (MIT license)countries3.dat
: ISO countries list (license unspecified)states_au.dat
: Part ofpythonwhois
(WTFPL/CC0)states_us.dat
: State Table (license unspecified, free reuse encouraged)states_ca.dat
: State Table (license unspecified, free reuse encouraged)
Be aware that the OpenFlights database in particular has potential licensing consequences; if you do not wish to be bound by these potential consequences, you may simply delete the airports.dat
file from your distribution. pythonwhois
will assume there is no database available, and will not perform airport code conversion (but still function correctly otherwise). This also applies to other included datasets.
Feel free to fork and submit pull requests (to the develop
branch)! If you change any parsing or normalization logic, ensure to run the full test suite before opening a pull request. Instructions for that are below.
Please note that this project uses tabs for indentation.
All commands are relative to the root directory of the repository.
Pull requests that do not include output from test_parse.py will be rejected!
pwhois --raw thedomain.com > test/data/thedomain.com
./pwhois -f test/data/thedomain.com/ .
(don't forget the dot at the end!)
Make sure to verify (using pwhois
or otherwise) that the WHOIS data for the domain is being parsed correctly, before marking it as correct!
python test_parse.py update thedomain.com
python test_parse.py run all
python test_parse.py run thedomain.com