-
Notifications
You must be signed in to change notification settings - Fork 10
Issues: TemuLinkHack/TemuHack
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
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
import random import string class TemuUserGenerator: def __init__(self): self.users = {} def generate_unique_age(self): age = random.randint(18, 65) while age in self.users.values(): age = random.randint(18, 65) return age def generate_unique_email(self): email = ''.join(random.choices(string.ascii_lowercase, k=8)) + "@temu.com" while email in self.users: email = ''.join(random.choices(string.ascii_lowercase, k=8)) + "@temu.com" return email def generate_unique_phone_number(self): phone_number = ''.join(random.choices(string.digits, k=10)) while phone_number in self.users.values(): phone_number = ''.join(random.choices(string.digits, k=10)) return phone_number
#3
opened Nov 8, 2023 by
DHoward93
ProTip!
What’s not been updated in a month: updated:<2025-01-21.