You can use the code directly. but the fake email address is not real email.I dont think this is usable like this is it ?
okey thanks dudeYou can use the code directly. but the fake email address is not real email.
nice thank you good workHow to generate fake mail and password with python?
Required libraries:
- pip install random-password-generator
- pip install Faker
Output:
Alan Perry
[email protected]
jp,8xdRVZd
Python:from faker import Faker fake = Faker() from password_generator import PasswordGenerator pwo = PasswordGenerator() pwo.minlen = 8 pwo.maxlen = 10 pwo.minuchars = 2 pwo.minlchars = 3 pwo.minnumbers = 1 name = fake.name() email = fake.email() password = pwo.generate() print(name,'\n',email,'\n',password)
thx man that help's me a lot.How to generate fake mail and password with python?
Required libraries:
- pip install random-password-generator
- pip install Faker
Output:
Alan Perry
[email protected]
jp,8xdRVZd
Python:from faker import Faker fake = Faker() from password_generator import PasswordGenerator pwo = PasswordGenerator() pwo.minlen = 8 pwo.maxlen = 10 pwo.minuchars = 2 pwo.minlchars = 3 pwo.minnumbers = 1 name = fake.name() email = fake.email() password = pwo.generate() print(name,'\n',email,'\n',password)
yea I already testedis this working?
yes it looks real email and only hotmail, yahoo and gmail domains are used.do the emails looks like someone's real email ?