Here you go,
Here is a python email generator
please thank me if you find this useful.
import random
import string
tlds = ['com', 'net', 'us']
name_file = open('woman-name.txt','r')
word_file = open('second-word.txt','r')
domain_file = open('domain-list.txt','r')
names =...