I am using python module ( validate_email ).
from validate_email import validate_email
result=open('output.tsv','w')
f=open('input.csv','r')
y=[]
result.write('Email_address\tEmail_validation\n')
for i in f:
y.append(i.replace('\n',''))
for j in range(len(y)):
val=validate_email('%s'%y[j], verify=True)
result.write('%s\t%s\n'%(y[j],val))
print y[j],val
In that the input.csv file contains the list of email Id's to check.
After the for loop the result will be written in output file.
Problems:
- Some time the script raise the Time out error
raise TimeoutError, 'Timeout'
My input file contains 300 email Id's.
- The output file was writing only the results of 120 emails. but on that time the program is still running upto 300 requests ( emails).
As an more optimized way instead of
range(len(y))
you can just usey
in yourfor
loop : because that every indexing orlen
hasO(n)
order and you are using3
indexing in the loop also you havelen(y)
too . Just usein
operation :