|
| 1 | +# Get Domain Name Information |
| 2 | + |
| 3 | +This page describes how to obtain domain information by using the WHOIS Python library. |
| 4 | + |
| 5 | +## Topics |
| 6 | + |
| 7 | +- [Background](#background) |
| 8 | +- [Use Case](#use-case) |
| 9 | +- [Prerequisites](#prerequisites) |
| 10 | +- [Usage](#usage) |
| 11 | + - [Validate Domain Name](#validate-domain-name) |
| 12 | + - [Get Domain Registrar](#get-domain-registrar) |
| 13 | + - [Get Domain Creation Date](#get-domain-creation-date) |
| 14 | + - [Get Domain Expiration Date](#get-domain-expiration-date) |
| 15 | + - [Get Domain Registration Email](#get-domain-registration-email) |
| 16 | + - [Get Domain Registration Location](#get-domain-registration-location) |
| 17 | + - [Get All Domain Registration Information](#get-all-domain-registration-information) |
| 18 | +- [Resources](#resources) |
| 19 | + |
| 20 | +## Background |
| 21 | + |
| 22 | +WHOIS is an Internet protocol for retrieving a record of domain name registration information. The [Python WHOIS package](https://pypi.org/project/python-whois/) uses Python to query and parse domain registration information. The registration information that can be obtained using the WHOIS Python library includes whether the domain is registered, the domain registrar, domain creation date, domain expiration date, and address of the domain owner. |
| 23 | + |
| 24 | +## Use Case |
| 25 | + |
| 26 | +The Python WHOIS package should be used when there is a need to obtain information about a domain name. The Python WHOIS package functions can be run individually to obtain specific domain name information or can be included within a larger Python program. |
| 27 | + |
| 28 | +## Prerequisites |
| 29 | + |
| 30 | +The Python WHOIS package must be installed to utilize the domain name lookup functions. The [latest version of Python 3](https://www.python.org/downloads/) is required to run the Python WHOIS package. The PIP3 Python package manager is required to install the Python WHOIS package. PIP3 is included with the latest version of Python 3. |
| 31 | + |
| 32 | +Use PIP3 to Install the Python WHOIS package by running the following in a terminal: |
| 33 | +``` |
| 34 | +pip3 install python-whois |
| 35 | +``` |
| 36 | + |
| 37 | +Use an import statement to install the Python WHOIS package at the beginning of the Python code: |
| 38 | +``` |
| 39 | +import whois |
| 40 | +``` |
| 41 | + |
| 42 | +## Usage |
| 43 | + |
| 44 | +Use the code below to complete each task using the WHOIS Python package. The information may not be filed with the domain registrar if a validated domain does not return the requested information. |
| 45 | + |
| 46 | +### Validate Domain Name |
| 47 | + |
| 48 | +Create the `check_registration` function using the Python WHOIS package to determine if a domain name is registered: |
| 49 | +``` |
| 50 | +def check_registration(domain_name): |
| 51 | + try: |
| 52 | + w = whois.whois(domain_name) |
| 53 | + except Exception: |
| 54 | + return False |
| 55 | + else: |
| 56 | + return bool(w.domain_name) |
| 57 | +``` |
| 58 | + |
| 59 | +Use the `check_registration` function to validate registration of a list of domains by using an if else statement: |
| 60 | +``` |
| 61 | +domains = [ |
| 62 | + "amazon.com", |
| 63 | + "github.com", |
| 64 | + "notadomain.com", |
| 65 | + "thisisntregistered.net" |
| 66 | +] |
| 67 | +
|
| 68 | +for domain in domains: |
| 69 | + print(domain, "is registered" if check_registration(domain) else "is not registered") |
| 70 | +``` |
| 71 | + |
| 72 | +### Get Domain Registrar |
| 73 | + |
| 74 | +Use the `check_registration` function to return the domain name registrar: |
| 75 | + |
| 76 | +``` |
| 77 | +domain_name = "github.com" |
| 78 | +if check_registration(domain_name): |
| 79 | + whois_info = whois.whois(domain_name) |
| 80 | + print("Domain registrar:", whois_info.registrar) |
| 81 | +``` |
| 82 | + |
| 83 | +### Get Domain Creation Date |
| 84 | + |
| 85 | +Use the `check_registration` function to return the domain name creation date: |
| 86 | +``` |
| 87 | +domain_name = "github.com" |
| 88 | +if check_registration(domain_name): |
| 89 | + whois_info = whois.whois(domain_name) |
| 90 | + print("Domain creation date:", whois_info.creation_date) |
| 91 | +``` |
| 92 | + |
| 93 | +### Get Domain Expiration Date |
| 94 | + |
| 95 | +Use the `check_registration` function to return the domain name expiration date: |
| 96 | + |
| 97 | +``` |
| 98 | +domain_name = "github.com" |
| 99 | +if check_registration(domain_name): |
| 100 | + whois_info = whois.whois(domain_name) |
| 101 | + print("Expiration date:", whois_info.expiration_date) |
| 102 | +``` |
| 103 | + |
| 104 | +### Get Domain Registration Email |
| 105 | + |
| 106 | +Use the `check_registration` function to return the domain name registration email address: |
| 107 | + |
| 108 | +``` |
| 109 | +domain_name = "github.com" |
| 110 | +if check_registration(domain_name): |
| 111 | + whois_info = whois.whois(domain_name) |
| 112 | +print("email addresses:", whois_info.emails) |
| 113 | +``` |
| 114 | + |
| 115 | +### Get Domain Registration Location |
| 116 | + |
| 117 | +Use the `check_registration` function to return the domain name registration location: |
| 118 | + |
| 119 | +``` |
| 120 | +domain_name = "github.com" |
| 121 | +if check_registration(domain_name): |
| 122 | + whois_info = whois.whois(domain_name) |
| 123 | + print("address:", whois_info.address) |
| 124 | + print("city:", whois_info.city) |
| 125 | + print("state:", whois_info.state) |
| 126 | + print("zip code:", whois_info.zipcode) |
| 127 | + print("country:", whois_info.country) |
| 128 | +``` |
| 129 | + |
| 130 | +### Get All Domain Registration Information |
| 131 | + |
| 132 | +Use the `check_registration` function to return all domain name registration information: |
| 133 | + |
| 134 | +``` |
| 135 | +domain_name = "github.com" |
| 136 | +if check_registration(domain_name): |
| 137 | + whois_info = whois.whois(domain_name) |
| 138 | + print(whois_info) |
| 139 | +``` |
| 140 | + |
| 141 | +## Resources |
| 142 | +- [Official Python Download](https://www.python.org/downloads/) |
| 143 | +- [Python WHOIS Package](https://pypi.org/project/python-whois/) |
0 commit comments