Untitled

 avatar
unknown
plain_text
2 years ago
304 B
2
Indexable
subdomain_list = []
# loop through the list
for item in res:
    
    # extract the domain from the list item
    domain = item[2]
    # split the domain into subdomains
    # print all the subdomains except the top-level domain
    subdomain_list.append(domain.replace('*.',''))
len(set(subdomain_list))
Editor is loading...