A modular text-to-SQL toolkit.
Project description
🐷 piglets
A modular library of text-to-SQL tools.
Status
piglets is currently an alpha-stage package. The API is expected to evolve before 1.0.
Get started
Install
venv
pip install piglets
uv
uv add piglets
Install the optional dependency for the model provider you use. For OpenAI:
venv
pip install "piglets[openai]"
uv
uv add "piglets[openai]"
Other provider extras include anthropic, google_genai, google_vertexai, bedrock, cohere, mistralai, groq, ollama, and openrouter.
Install the optional dependency for the database backend you use. For BigQuery:
venv
pip install "piglets[bigquery]"
uv
uv add "piglets[bigquery]"
Logical planning
Use gpt-5.2 to generate 3 logical plans from a natural language query.
from piglets import LogicalPlanner
# initialise a logical planner
logical_planner = LogicalPlanner('gpt-5.2')
# generate 3 logical plan samples and aggregate them
logical_plan = logical_planner.plan(
natural_language_query="What was the average number of piglets per week for Q4 2025?",
num_samples=3,
)
# print the aggregated logical plan
for i, step in enumerate(logical_plan.logical_steps):
print(f"Step {i + 1}: ")
print(step)
# inspect the candidate plans used to create the aggregate
print(f"Aggregated from {len(logical_plan.sample_plans)} sample plans.")
>>> Step 1:
>>> 1. Identify all piglet birth (or piglet addition) events with their event dates and piglet counts.
>>> Step 2:
>>> 2. Filter the events to the Q4 2025 date range (Oct 1, 2025 through Dec 31, 2025).
>>> Step 3:
>>> 3. Assign each event to a calendar week within that quarter using a consistent week definition (e.g., week starting Monday or Sunday).
>>> Aggregated from 3 sample plans.
...
Database connector
Use DatabaseConnector to inspect a database and return a typed schema. Pass either a SQLAlchemy URL, a connection string, or one of Piglets' helper URL classes.
from piglets import BigQueryURL, DatabaseConnector
database_connector = DatabaseConnector(
connection=BigQueryURL(
dataset="my_bigquery_dataset",
),
)
database = database_connector.get_database_schema()
print(database.name)
for table in database.tables:
print(table.name)
for column in table.columns:
print(f"- {column.name} ({column.data_type})")
BigQuery connections can include an explicit GCP project ID:
database_connector = DatabaseConnector(
connection=BigQueryURL(
project_id="my-gcp-project",
dataset="my_bigquery_dataset",
),
)
Supported databases
DatabaseConnector supports any database URL accepted by SQLAlchemy. Use URL for SQLAlchemy-native dialects and Piglets helper URL classes where the connection string has backend-specific parameters.
| Backend | Connection object | Install requirement | Notes |
|---|---|---|---|
| SQLAlchemy-supported databases | URL or a connection string |
Depends on the SQLAlchemy dialect and DBAPI driver | Use this for SQLite, PostgreSQL, MySQL, Oracle, SQL Server, and other standard SQLAlchemy dialects. |
| BigQuery | BigQueryURL |
piglets[bigquery] |
Uses GOOGLE_CLOUD_PROJECT_ID when project_id is omitted. |
| Snowflake | SnowflakeURL |
piglets[snowflake] |
Builds Snowflake URLs from explicit connection parameters. |
| DuckDB | DuckDBURL |
piglets[duckdb] |
Builds local or in-memory DuckDB URLs. |
| MotherDuck | MotherDuckURL |
piglets[duckdb] |
Builds MotherDuck URLs through the DuckDB SQLAlchemy dialect. |
For a SQLAlchemy-native database, create a standard SQLAlchemy URL:
from piglets import DatabaseConnector, URL
database_connector = DatabaseConnector(
connection=URL.create(
drivername="sqlite",
database="example.db",
),
)
database = database_connector.get_database_schema()
For a backend with a Piglets helper class, pass that URL object directly:
from piglets import DatabaseConnector, SnowflakeURL
database_connector = DatabaseConnector(
connection=SnowflakeURL(
account="my-account",
user="my-user",
password="my-password",
database="SNOWFLAKE_SAMPLE_DATA",
schema="TPCH_SF1",
),
)
database = database_connector.get_database_schema()
Dual-pathway pruning
Use Pruner to reduce a database schema with both preservation and deletion signals. The preservation pathway selects tables and columns that look useful for the query. The deletion pathway removes tables and columns that look irrelevant. dual_pathway_pruning() combines both paths into a final Database schema.
from piglets import BigQueryURL, DatabaseConnector, LogicalPlanner, Pruner
question = "Which tags saw the largest increase in average answer score from 2022 to 2023, considering only questions with at least 5 answers?"
logical_planner = LogicalPlanner("gpt-5.2")
logical_plan = logical_planner.plan(
natural_language_query=question,
num_samples=3,
)
database_connector = DatabaseConnector(
connection=BigQueryURL(
dataset="stack_overflow",
),
)
database = database_connector.get_database_schema()
pruner = Pruner(model_name="gpt-5.2")
pruned_database = pruner.dual_pathway_pruning(
natural_language_query=question,
database=database,
logical_plan=logical_plan,
)
print(pruned_database.export_as_string())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file piglets-0.1.13.tar.gz.
File metadata
- Download URL: piglets-0.1.13.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd350c067f8fd1ced31d59bfca29150992de46950d0099faa66fa3a88c11ffaa
|
|
| MD5 |
7469be77e00268ac7dd08fc8b701dd13
|
|
| BLAKE2b-256 |
1dec64a547556ccc513b73e886a281f600e33b2be6be793e48594247e2db269f
|
Provenance
The following attestation bundles were made for piglets-0.1.13.tar.gz:
Publisher:
publish.yml on mportdata/piglets
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piglets-0.1.13.tar.gz -
Subject digest:
dd350c067f8fd1ced31d59bfca29150992de46950d0099faa66fa3a88c11ffaa - Sigstore transparency entry: 1354798346
- Sigstore integration time:
-
Permalink:
mportdata/piglets@e717c697e6ab43c41e7a865b2aa40c19cf1e632d -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/mportdata
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e717c697e6ab43c41e7a865b2aa40c19cf1e632d -
Trigger Event:
push
-
Statement type:
File details
Details for the file piglets-0.1.13-py3-none-any.whl.
File metadata
- Download URL: piglets-0.1.13-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ce732dd02869ed3500c82b743d9085945f3110fdfde3eeb141fe8760fbec2f7
|
|
| MD5 |
09d3e1010fb23c43c3f896e9941da638
|
|
| BLAKE2b-256 |
8636da88c54ba85e121f999fbc5f27f90aa4251a47a3c4c473430f30756f2ff4
|
Provenance
The following attestation bundles were made for piglets-0.1.13-py3-none-any.whl:
Publisher:
publish.yml on mportdata/piglets
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
piglets-0.1.13-py3-none-any.whl -
Subject digest:
5ce732dd02869ed3500c82b743d9085945f3110fdfde3eeb141fe8760fbec2f7 - Sigstore transparency entry: 1354798388
- Sigstore integration time:
-
Permalink:
mportdata/piglets@e717c697e6ab43c41e7a865b2aa40c19cf1e632d -
Branch / Tag:
refs/tags/v0.1.13 - Owner: https://github.com/mportdata
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e717c697e6ab43c41e7a865b2aa40c19cf1e632d -
Trigger Event:
push
-
Statement type: