Jerry Thomas
Jerry Thomas is a time-series data pipeline runtime. It reads source data, maps it into ordered record streams, applies declarative transforms, and serves datasets for analysis or model training.
The runtime is iterator-first: streams are processed on demand, with explicit sorting, artifacts, observability, built-in transforms, and plugin entry points for custom loaders, parsers, mappers, and stream combiners.
Core assumptions
- Every canonical record carries a UTC
timeattribute. Mappers and combiners may return any timezone-aware representation; Jerry normalizes it before downstream processing.- Samples are grouped by
sample.cadence, plus optionalsample.keyssuch assecurity_id.partition_byis the complete identity of an independent record series. Datasetsample.keysselect which of those fields identify rows; remaining partition fields are appended to series IDs.
Why You Might Use It
- Materialize canonical time-series datasets from disparate sources.
- Preview and debug each stage of the pipeline without writing ad-hoc scripts.
- Export schema-aware Parquet tables for fast Pandas, Polars, and Arrow research, then reingest derived Parquet series through Jerry's normal validation.
- Enforce coverage/quality gates and publish metadata and scaler statistics for downstream ML teams.
- Extend the runtime with entry-point driven plugins for domain-specific I/O, mapping, combining, and custom operations.
- Consume final samples or bounded, metadata-ordered NumPy batches directly from Python.
Quick Start
From zero to a served dataset:
python -m pip install -U jerry-thomas
jerry demo create
cd demo
python -m pip install -e .
jerry serve --dataset demo --limit 3
The generated demo is a self-contained workspace. Scaffold commands do not
modify a parent jerry.yaml; add a dataset alias explicitly when you want to
integrate a generated project into another workspace.
Create Your Own Plugin + First Stream
jerry plugin create my-datapipeline --out lib/
cd lib/my-datapipeline
# Scaffold source YAML, DTO/parser, domain, mapper, and stream.
jerry inflow create
# Reinstall after commands that update entry points (pyproject.toml).
python -m pip install -e .
# Fill in the generated source and mapping templates, then serve.
jerry serve --limit 3
Import paths use the normalized package name: my_datapipeline for a
my-datapipeline distribution. Reinstall the plugin after scaffolding or
manually changing entry points.
Preview a Pipeline
jerry serve --preview <stage> stops at one stable boundary: input,
canonical, records, series, samples, or postprocess. Preview bypasses
split output so the selected stage can be inspected directly. Sequence
construction runs before dataset routing and should remain causal; scaling is
applied only when a full serve selects a fold output.
See the CLI reference for the exact value emitted at each boundary and Artifacts for split and scaler behavior.
CLI Cheat Sheet
Profile commands run enabled profiles by default. --profile <name> selects
that profile explicitly, including one configured with enabled: false.
jerry demo create: create the standalone demo plugin.jerry plugin create <name> --out lib/: create a plugin workspace.jerry inflow create: scaffold one source-backed stream end to end.jerry serve: stream enabled serve profiles.jerry build: build the series artifact, scaler statistics, and metadata.jerry inspect: run coverage, matrix, or custom inspection profiles.jerry materialize: write configured streams to durable.jsonlor gzip-compressed.jsonl.gzfiles.jerry clean [--yes] [--older-than <age>]: lists or removes stale sort spill directories. It does not delete materialized outputs.
Use jerry <command> --help for current flags and the
CLI reference for command behavior.
MLOps & Reproducibility
jerry buildbuilds deterministic series, scaler, and metadata artifacts. Builds are keyed by configuration and local-source snapshots, and skip work when nothing changed unless you pass--force.- Filesystem serve output is run-scoped under
<output-directory>/runs/<run_id>/dataset/. Normal profiles write<profile>.<ext>; split profiles write<profile>.<fold-id>.<role>.<ext>. - Versioning: tag the project config + plugin code in Git and pair with a data versioning tool like DVC for raw sources. With those inputs pinned, interim datasets and artifacts can be regenerated instead of stored.
Concepts
Workspace (jerry.yaml)
datasets: dataset aliases →project.yamlpaths (relative tojerry.yaml).default_dataset: which dataset project commands use when you omit--dataset/--project.plugin_root: where scaffolding commands write Python code (src/<package>/...) and where they look forpyproject.toml.
Plugin Package
These live under lib/<plugin>/src/<package>/:
dtos/*.py: DTO models (raw source shapes).parsers/*.py: raw -> DTO parsers (referenced by source YAML via entry point).domains/<domain>/model.py: domain record models.mappers/*.py: iterator mappings from parsed values to domain records.combiners/*.py: functions combining exact, as-of, or aligned domain records.loaders/*.py: optional custom loaders for inputs beyond built-in filesystem and HTTP transports.pyproject.toml: entry points for loaders, parsers, mappers, and combiners (rerunpip install -e lib/<plugin>after changes).
Source to Domain Record
- Built-in filesystem and HTTP transports read input through the configured
reader. Custom loaders handle other protocols. - A parser converts each row into a source-shaped DTO and may drop invalid rows.
- A mapper converts DTOs into canonical domain records shared by downstream
streams. Every record has a timezone-aware
timefield, which Jerry normalizes to UTC at the mapper boundary. - Custom loaders are for behavior such as pagination, authentication, or proprietary protocols. See Extending the runtime.
Transforms (Preprocess -> Ordered Stream -> Cross Section -> Series -> Sample)
- Preprocess transforms run on mapped domain records before ordering. Each transform operates on one record at a time. Configure source-backed streams under
preprocess:. - Ordered transforms run after ordering (dedupe, cadence enforcement, lag/lead, rolling, derive, fills). These operate across a sequence of records for a partition because they depend on sorted partition/time order and cadence. Configure streams under
transforms:. - Cross-sectional operations compare partitioned records at one exact
timestamp. Configure a dedicated stream under
cross_section:; Jerry restores canonical partition/time order before its ordinary transforms run. - Series shaping runs after stream regularization.
sequencecreates rolling windows;collectrequires a fixed number of values inside each sample-cadence bucket. Without either policy, a series must emit at most one value per bucket.scalemarks feature or target vectors that receive the selected dataset fold's scaler during full serving. Each target also declares its maximum elapsedhorizon, which time folds use to remove boundary samples whose future support reaches the next role. - Postprocess policies filter assembled samples by feature or target coverage. Configure them under
postprocess:indataset.yaml. - Transform lists contain flat, validated built-in operations. Each item has an
operationdiscriminator and that operation's fields. See the transform guide for the supported operations.
Glossary
- Source alias:
sources/*.yaml:id(referenced by source-backed streams underfrom.source). - Stream id:
streams/*.yaml:id(referenced bydataset.yamlunderstream:). - Sample key: sample identity: floored time plus optional
dataset.sample.keys. - Partition: complete identity of an independent record series, declared by
stream
partition_byand used as the state boundary for history-based transforms. - Series ID fields: partition fields not present in
dataset.sample.keys; these are appended to series IDs in partition order. - Group: sample cadence set by
dataset.sample.cadence. - Preview stage: stable semantic boundary selected with
jerry serve --preview <stage>. - Sort spill: ordered stages sort pickle-serializable values in bounded serialized buffers and spill temporary runs when the next value would exceed the configured buffer.
Documentation
- Configuration: config layout, precedence, and YAML reference.
- Data flow: the YAML reference chain from workspace to output.
- CLI: command behavior beyond
--help. - Transforms: preprocess, ordered, series, and postprocess stages.
- Artifacts: dependencies, freshness, splitting, and serving.
- Python integrations: final-sample and bounded model-batch iterators.
- Research workflow: export samples to Parquet, derive a series with Polars, and reingest it into Jerry.
- Extending: plugin entry points and contracts.
- Architecture: runtime and pipeline design.
Development
See CONTRIBUTING.md.
Release files for jerry-thomas 9.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jerry_thomas-9.0.0.tar.gz | 197.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| jerry_thomas-9.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 501.3 kB
Release files / jerry_thomas-9.0.0.tar.gz
| Download URL | jerry_thomas-9.0.0.tar.gz |
|---|---|
| Size | 197.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6600f0e947e187a69685835a310bd19551d15abfd3103aefae7fb6e2bfe0503d
|
|
BLAKE2b-256 checksum How to use checksums |
c5c71518e4289d46e336498d3cfe18decdab54e8e1131c361d8e28021e87196a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency logRelease files / jerry_thomas-9.0.0-py3-none-any.whl
| Download URL | jerry_thomas-9.0.0-py3-none-any.whl |
|---|---|
| Size | 304.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6f6d387510b1fb987ca51cc8ef0d67504586861412947e8f6fb571ddc40ef484
|
|
BLAKE2b-256 checksum How to use checksums |
bb9b5fa980ea1432f68966d7079869f71a97fb6c688acb980750aa0c0370ca57
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 3, 2026.
Transparency log