我成功使用pythonwhois
(与pip install ...
一起安装)来检查.com域名的可用性:
import pythonwhois
for domain in ['aaa.com', 'bbb.com', ...]:
details = pythonwhois.get_whois(domain)
if 'No match for' in str(details): # simple but it works!
print domain
可是:
whois
服务器列入黑名单?
(我正在测试???mail.com
的可用性?
为a..z
) 问题:是否有更好的方法来检查可用性,而不是每个域执行一次whois
请求?
编辑:截至2017年11月,如果有人有兴趣启动电子邮件服务,则作业在9572秒内完成,here is the full list表格???mail.com
中所有可用的域名{{3}}!
答案 0 :(得分:1)
你应该并行化你正在做的事情。由于您的功能花费的大部分时间都在等待,您可以一次验证很多工作(不限于您的处理器数量)。例如:
import pythonwhois
from joblib import Parallel, delayed, cpu_count
n_jobs = 100 # works in parallel
def f(domain):
details = pythonwhois.get_whois(domain)
if 'No match for' in str(details): # simple but it works!
print(domain)
return domain
else:
return None
domains= ['aaa.com', 'bbb.com', 'ccc.com', 'bbbaohecraoea.com']
result = Parallel(n_jobs=n_jobs, verbose=10)(delayed(f)(domain) for domain in domains)
# create a list with the available domains
available_domains=[domains[idx] for idx,r in enumerate(result) if r!=None]
print(available_domains)
# Result
# ['bbbaohecraoea.com']