Skip to main content

Standardizing models

Project description

bollhav ⚽ 🌊

Model definition framework for data pipeline targets with multiple target implementations:


Installation

pip install bollhav

Model creation example

from bollhav import Model, ModelConfig, WriteMode, Database, PostgresColumn, PostgresType, TZInterval
import polars as pl

config = ModelConfig(
    name="orders",
    source_entity="raw.orders",
    table="orders",
    schema="public",
    database=Database.POSTGRES,
    columns=[
        PostgresColumn(name="id", data_type=PostgresType.BIGINT, primary_key=True, nullable=False),
        PostgresColumn(name="created_at", data_type=PostgresType.TIMESTAMPTZ, nullable=False),
        PostgresColumn(name="email", data_type=PostgresType.TEXT, nullable=True, sensitive=True),
    ],
    write_mode=WriteMode.APPEND,
    cron="0 3 * * *",
    partitioned_by="created_at",
)

def execute(interval: TZInterval) -> pl.DataFrame:
    return pl.read_database(
        f"SELECT * FROM {config.source_entity} WHERE created_at >= '{interval.since}' AND created_at < '{interval.until}'",
        connection=...,
    )

model = Model(model_config=config, execute=execute)

Parameters

Parameter Type Default Description
name str required Unique identifier for the model
source_entity str required Source table or view to read from
table str "" Destination table name
schema str "" Destination schema name
database Database None Target database. Required if columns is set
columns list[PostgresColumn | ParquetColumn] None Column definitions. Required if database is set
model_type ModelType TABLE TABLE or VIEW
write_mode WriteMode APPEND How to write data. VIEW requires ModelType.VIEW
tags set[str] None Labels for filtering
cron str None Cron expression. Automatically infers batch_size
enabled bool True Whether the model is active
debug bool False Enables debug mode
description str None Human-readable description
source_dsn str None DSN for the source connection
source_query str None Optional query to use instead of source_entity
partitioned_by str None Column name to partition by. Must exist in columns
begin datetime None Backfill start — must be UTC-aware
end datetime None Backfill end — must be UTC-aware
retries int None Retry count on failure
lookback int None Lookback window in batch units
tz_aware bool True Enforces UTC on begin/end
**kwargs Extra metadata. Callable values are resolved with non-callable kwargs as arguments

Computed attributes

Attribute Description
batch_size Inferred from cron if set, otherwise None
sensitive True if any column has sensitive=True
unique_columns Columns with unique=True — required for UPDATE_INSERT
partitioned_by_index True if partitioned_by is set

Write modes

Read more here

from bollhav import WriteMode

WriteMode.APPEND
WriteMode.OVERWRITE_INSERT  # requires partitioned_by
WriteMode.TRUNCATE_INSERT
WriteMode.UPDATE_INSERT     # requires at least one column with unique=True
WriteMode.VIEW              # requires ModelType.VIEW

UTC enforcement

When tz_aware=True (default), begin and end must be UTC-aware. Naive or non-UTC datetimes raise ValueError.

from datetime import datetime, timezone

model = Model(
    ...,
    begin=datetime(2025, 1, 1, tzinfo=timezone.utc),
    end=datetime(2025, 2, 1, tzinfo=timezone.utc),
)

model.extra # {"static": "production", "env": "env=production"}


## Batch intervals

`Model.get_batch_intervals` splits a `TZInterval` into sub-intervals driven by the model's cron expression. Useful for chunked backfills.

```python
from datetime import datetime, timezone
from bollhav.intervals import TZInterval

interval = TZInterval(
    since=datetime(2025, 1, 1, tzinfo=timezone.utc),
    until=datetime(2025, 1, 1, 3, 0, tzinfo=timezone.utc),
)

batches = model.get_batch_intervals(interval)
# With cron="0 * * * *":
# [TZInterval(00:00, 01:00), TZInterval(01:00, 02:00), TZInterval(02:00, 03:00)]

Pass cron_override to use a different cron expression without changing the model config:

batches = model.get_batch_intervals(interval, cron_override="*/15 * * * *")

Tag filtering

Tags are automatically populated at init time. By default name, schema, and "all" are added.

model = ModelConfig(name="orders", source_entity="raw.orders", schema="public")
model.tags  # {"orders", "public", "all"}

Control which tags are auto-added:

ModelConfig(..., name_add_to_tags=False, schema_add_to_tags=False, model_gets_all_tag=False)

Use match_models to discover and filter model instances from a folder by tag expression:

from bollhav.match_models import match_models

models = match_models(folder="src/models", tags="[orders|payments]")
models = match_models(folder="src/models", tags="[public&reporting]")
models = match_models(folder="src/models", tags="[public&(orders|payments)]")

Tag expression syntax

Syntax Meaning
[tag] model has tag
[a|b] model has a OR b
[a&b] model has a AND b
[a&(b|c)] model has a AND (b OR c)
[g1],[g2] matches g1 OR g2 (comma = outer OR)

Square brackets are required around every group. Only one level of parentheses is supported.


Testing

Tests use pytest. Run the full suite:

pytest tests/

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

bollhav-1.6.9.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bollhav-1.6.9-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file bollhav-1.6.9.tar.gz.

File metadata

  • Download URL: bollhav-1.6.9.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for bollhav-1.6.9.tar.gz
Algorithm Hash digest
SHA256 1201fcf4b6df08cc00a9f00e04857ef9e6c347585e4cc54cff08d4d85002ef13
MD5 513007b1c5fbe0ffd726449c20ec84d6
BLAKE2b-256 f702e005b28566b7f67b4f1858f9f42b5e79e5ed4f281f3d439ffe0950d32ed8

See more details on using hashes here.

File details

Details for the file bollhav-1.6.9-py3-none-any.whl.

File metadata

  • Download URL: bollhav-1.6.9-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for bollhav-1.6.9-py3-none-any.whl
Algorithm Hash digest
SHA256 cc7f5d007fa61c2c806fa08a75936119752053e4a29d93e250e16e0cfdebd547
MD5 108e03da259f5392d7c48511bfc63b6c
BLAKE2b-256 8d754185aea9f09e1b41baafc4e750e719412645fdfd68cbca91c626b03c682f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page