Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gamil #1

Open
Cutugaurav opened this issue Apr 29, 2024 · 0 comments
Open

Gamil #1

Cutugaurav opened this issue Apr 29, 2024 · 0 comments

Comments

@Cutugaurav
Copy link

from faker import Faker
import random

def main():
ask = input('How many e-mails you want?: ')
try:
ask = int(ask)
except:
raise ValueError('Enter an integer')

for i in range(ask):
    domains = ['@pridemail.co' , '@zingermail.co' , '@whoamail.co' , '@oofmail.co']

    fake = Faker()

    name = fake.name()
    name = name.replace(" ","")
    name = name.lower()

    num = random.randint(0,1000)
    num = str(num)

    mail_pre = name
    mail_pre += num

    url = "https://mailsac.com/inbox/"
    domain = random.choice(domains)

    mail_check_url = url+mail_pre+domain

    print(mail_check_url)

main()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant