Added gs and click TLDs

This commit is contained in:
Bobbi Webber-Manners 2020-06-19 01:19:27 -04:00
parent 9a95dd7e01
commit a78502c5ec
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@ import requests, sys
baseurl = ''
PORT = 8001
PORT = 80
def isFullyQualified(name):
tlds = [ '.com', '.org', '.net', '.gov', '.ca', '.io', '.uk']
tlds = [ '.com', '.org', '.net', '.gov', '.ca', '.uk', '.io', '.gs', '.click' ]
for t in tlds:
if name.endswith(t):
return True