I have a list of emails about 10.000 Long, with incomplete emails id, due to data unreliability and would like to know how can I complete them using python.
sample emails:
xyz@gmail.co
xyz@gmail.
xyz@gma
xyz@g
I've tried using validate_email
package to filter out bad emails and have tried various regex patterns and I end up with xyz@gmail.com.co
similar to search and replace using sublime text. I think there is a better way to this than regex and would like to know.