Skip to content

Examples and Tutorials

Ravi Kiran Pagidi edited this page Jun 28, 2026 · 2 revisions

Examples and Tutorials

Start with your schema

from great_generator import generate_from_schema

df = generate_from_schema(
    "customer_id string, customer_name string, email string, age int, created_at timestamp",
    rows=1000,
)
df.to_parquet("customers.parquet", index=False)

See:

Custom related tables

Use Relationship-Aware Data Generation when your own tables need valid primary and foreign keys.

Ready-made demonstrations

Use generate_domain Examples for ecommerce, banking, healthcare, telecom, insurance, logistics, SaaS, and other prebuilt datasets.

Data quality and CDC

Clone this wiki locally