-
Notifications
You must be signed in to change notification settings - Fork 5
Quickstart
Ravi Kiran Pagidi edited this page Jun 28, 2026
·
3 revisions
The current schema-first quickstart is maintained at:
Quick Start with generate_from_schema
from great_generator import generate_from_schema
df = generate_from_schema(
{
"customer_id": "string",
"customer_name": "string",
"email": "string",
"age": "int",
"created_at": "datetime",
},
rows=1000,
)Use generate_domain later when you need ready-made related tables for a demonstration or learning exercise.
- Home
- Problem Statement
- Quick Start
- Generate Related Tables
- Query-Aware Generation
- Supported Schema Inputs
- Function Comparison
- Getting Started
- Plain Dictionary
- Rich Dictionary
- Pandas
- PySpark StructType
- Contracts and SQL DDL
- Schema Generation
- JSON Schema
- YAML Schema Profile