forked from mavieth/check-domains-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.py
executable file
·91 lines (67 loc) · 2.54 KB
/
check.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
from googlesearch import search
import whois
import time
domains = []
uniq_domains_list = []
available = []
unavailable = []
def get_domains():
with open('domains.txt', 'r+') as f:
for domain_name in f.read().splitlines():
# Convert to lowercase
domain_name = domain_name.lower()
# Collapse multiple words into one string
domain_name = domain_name.replace(" ", "")
# Accommodate plain words in the list
if (domain_name.endswith(".io") is False) and (domain_name.endswith(".com") is False):
domain_name = domain_name + ".com"
# Add the .com domain_name to the list
domains.append(domain_name)
# Also check for .io availability
if domain_name.endswith(".com"):
domain_name_io = domain_name.replace(".com", ".io")
domains.append(domain_name_io)
# Remove duplicates
for i in domains:
if i not in uniq_domains_list:
uniq_domains_list.append(i)
def check_domains():
uniq_domains_list.sort(reverse=True)
counter = 0
domain_details = None
for domain_name in uniq_domains_list:
if domain_name is not None and domain_name != '':
print("Checking {}".format(domain_name))
try:
domain_details = whois.whois(domain_name)
except whois.parser.PywhoisError as e:
# print("Exception: {}".format(e))
# pass
domain_details = None
counter = counter + 1
if domain_details is not None:
unavailable.append(domain_name)
else:
available.append(domain_name)
if counter >= 40:
# The whois servers will return "Exception: connect: Connection refused" if you lookup too many
# domain names using the same whois socket.
print("Stopping at 40 lookups. Break your list into smaller pieces and rerun.")
break
time.sleep(7)
def print_availability():
# print("-----------------------------")
# print("Unavailable Domains: ")
# print("-----------------------------")
#for un in unavailable:
#print(un)
print("\n")
print("-----------------------------")
print("Available Domains: ")
print("-----------------------------")
for av in available:
print(av)
if __name__ == "__main__":
get_domains()
check_domains()
print_availability()