v0.1.3
What's new
New: aitaem.helpers module
A new module for user-facing convenience functions, distinct from the internal aitaem.utils plumbing.
New: load_csvs_to_duckdb
from aitaem.helpers import load_csvs_to_duckdb
connector = load_csvs_to_duckdb("data/events.csv", "events.duckdb")Loads a single CSV file or all top-level CSVs in a folder into a DuckDB file and returns a connected IbisConnector. Supports overwrite=True (default, replaces tables) and overwrite=False (appends rows).
Fixes
MetricSpec: unknown-fields check now usesdataclasses.fields()instead of a hard-coded set- README: removed stray
import ibisand updated CSV example to useload_csvs_to_duckdb