Skip to content

Installation

ravikiranpagidi edited this page Jun 17, 2026 · 1 revision

Installation

Core install

pip install great-generator

Install with a hyphen and import with an underscore:

import great_generator

Spark install

pip install great-generator[spark]

Use this when you want PySpark DataFrames or Spark-scale generation outside a managed Spark runtime.

Delta install

pip install great-generator[delta]

Delta support requires a Spark runtime configured for Delta Lake. Databricks Runtime usually includes Delta support. Open-source Spark may require additional configuration.

Development install

git clone https://github.com/ravikiranpagidi/great-generator.git
cd great-generator
python -m venv .venv
.venv\Scripts\activate
pip install -e ".[dev]"

Run checks:

ruff check .
black --check .
pytest
python -m build
python -m twine check dist/*

Clone this wiki locally