-
Notifications
You must be signed in to change notification settings - Fork 4
Installation
ravikiranpagidi edited this page Jun 17, 2026
·
1 revision
pip install great-generatorInstall with a hyphen and import with an underscore:
import great_generatorpip install great-generator[spark]Use this when you want PySpark DataFrames or Spark-scale generation outside a managed Spark runtime.
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.
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/*