YNAB tree logoAustralian flag
It looks like you're located in Australia.
We have an Australian version of our website.

Please confirm your location and we’ll send you to the appropriate site!

Download 150k Valid Txt Apr 2026

def generate_data(num_lines): fake = Faker() with open('generated_data.txt', 'w') as f: for _ in range(num_lines): # Example: Generate a line with a name and email f.write(f"{fake.name()} {fake.email()}\n")

from faker import Faker import argparse