some days ago ive created a script to generate "Fake persons info".
iam not using anymore and would to share with you.
iam not using anymore and would to share with you.
Python:
from faker import Faker
# Create an instance of the Faker class
fake = Faker()
# Generate personal data for a person in the United States
name = fake.name()
address = fake.address()
email = fake.email()
phone_number = fake.phone_number()
job_title = fake.job()
tin = fake.ssn()
street_code = fake.zipcode()
# Print the personal data in bullet points
print("- Name: {}".format(name))
print("- Address: {}".format(address))
print("- Email: {}".format(email))
print("- Phone number: {}".format(phone_number))
print("- Job title: {}".format(job_title))
print("- TIN: {}".format(tin))
print("- Street code: {}".format(street_code))