typedframes
⚠️ Project Status: Proof of Concept
typedframes(v0.4.1) is currently an experimental proof-of-concept. The core static analysis and mypy/Rust integrations work, but expect rough edges. The codebase prioritizes demonstrating the viability of static DataFrame column checking over production-grade stability.
A Rust-fast linter for pandas and polars DataFrames. Catches column errors at lint-time, and gates CI on how much of your codebase it can actually see — no schema classes required to start.
import pandas as pd
# Checker infers {order_id, amount, status} from usecols= — no schema class needed
orders = pd.read_csv("orders.csv", usecols=["order_id", "amount", "status"])
print(orders["amount"]) # ✓ OK
print(orders["revenue"]) # ✗ unknown-column — 'revenue' not in inferred column set
typedframes check src/ --fail-under=90
# src/pipeline.py:7:8: error[unknown-column] Column 'revenue' does not exist in inferred column set (defined at line 6)
# ✗ Found 1 error in 12 files (0.0s)
# ✗ DataFrame schema coverage 82.0% is below the required 90.0% (9/11 DataFrames had column info)
--fail-under=N is the same idea as a test-coverage or mypy type-coverage gate, applied to how many DataFrames
the checker can resolve columns for — see DataFrame Schema Coverage Thresholds.
Add BaseSchema classes later for cross-file awareness and IDE autocomplete — see Quick Start.
Table of Contents
- Why typedframes?
- Installation
- Quick Start
- Column Inference
- Static Analysis
- DataFrame Schema Coverage Thresholds
- Static Analysis Performance
- Type Safety With Multiple Backends
- Advanced Usage
- Comparison
- Pandera Integration
- Examples
- Philosophy
- FAQ
Why typedframes?
The problem: Many pandas bugs are column mismatches — you access a column that doesn't exist, pass a DataFrame missing a column a function needs, or make a typo. These errors only surface at runtime, often in production, and it's hard to know how much of a codebase is actually protected against them.
The solution: A fast standalone linter that infers column sets from your existing code (usecols=,
dtype=, method chains) and catches mismatches at lint-time — plus an opt-in coverage threshold so CI fails
when too much of the codebase is invisible to the checker. Add BaseSchema classes where you want cross-file
tracking and IDE autocomplete; they're a progressive enhancement, not a prerequisite.
What you get:
- ✅ Works without schema annotations - Column inference from
usecols=,dtype=, and method chains catches errors on unannotated code - ✅ CI gate via coverage threshold -
--fail-under=Nfails the build when too much of your codebase is invisible to the checker, the same way you'd gate on test coverage or a type checker's type-coverage number - ✅ Rust-fast - Milliseconds, not seconds, even on hundreds of files; fast enough for pre-commit hooks and CI (see benchmarks)
- ✅ Cross-file awareness - Add
BaseSchemaand typed return annotations to follow schemas across module boundaries - ✅ Refactor-safe access -
df[Schema.column_group.s].mean()(pandas) ordf.select(Schema.col.col)(polars) instead of scattered string literals - ✅ Works with pandas AND polars - Same schema API, native backend types
- ✅ Dynamic column matching - Regex-based ColumnSets for time-series data
- ✅ Zero runtime overhead - No validation, no slowdown
- ✅ Type-safe backends - Type checker knows pandas vs polars methods
Installation
pip install typedframes
or
uv add typedframes
The Rust-based checker is included — no separate install needed.
Quick Start
Run on existing code
The checker works from day one without any schema classes. Pass usecols= / columns= to your read calls and
column access is validated automatically — no schema classes needed:
import pandas as pd
# Checker infers {order_id, amount, status} from usecols=
orders = pd.read_csv("orders.csv", usecols=["order_id", "amount", "status"])
print(orders["amount"]) # ✓ OK
print(orders["revenue"]) # ✗ unknown-column — 'revenue' not in inferred set
typedframes check src/
# src/pipeline.py:7:8: error[unknown-column] Column 'revenue' does not exist in inferred column set (defined at line 6)
# ✗ Found 1 error in 12 files (0.0s)
See examples/features/multi_file_inference/ for a multi-file example with no BaseSchema
classes at all.
Define Your Schema (Once)
Add BaseSchema classes when you want cross-file awareness and IDE autocomplete. Schemas travel with function return
types across module boundaries — the checker validates call sites even in files that have no usecols= of their own.
Descriptors as a bridge: define once in Column(type=int), access as df[UserData.user_id.s] (pandas string
access) or df.select(UserData.revenue.col) (polars expression). Refactor by changing the descriptor definition —
all .s and .col references update automatically. No find-and-replace across string literals.
from typedframes import BaseSchema, Column, ColumnSet
class SalesData(BaseSchema):
date = Column(type=str)
revenue = Column(type=float)
customer_id = Column(type=int)
# Dynamic columns with regex
metrics = ColumnSet(type=float, members=r"metric_\d+", regex=True)
Use With Pandas
from typing import Annotated
import pandas as pd
# Annotate your variable — checker validates all column access below
df: Annotated[pd.DataFrame, SalesData] = pd.read_csv("sales.csv")
# String access — validated by the standalone checker
print(df["revenue"].sum())
print(df["profit"]) # ✗ unknown-column: Column 'profit' not in SalesData
# .s gives a refactor-safe string name from the descriptor
print(df[SalesData.revenue.s].sum()) # same as df['revenue'].sum()
# Type-safe function signature
def analyze(data: Annotated[pd.DataFrame, SalesData]) -> float:
data["revenue"] # ✓ Validated by checker
data["profit"] # ✗ unknown-column: 'profit' not in SalesData
return data[SalesData.revenue.s].mean()
Use With Polars
from typing import Annotated
import polars as pl
# Annotate your variable — checker validates pl.col() references too
df: Annotated[pl.DataFrame, SalesData] = pl.read_csv("sales.csv")
# pl.col() references are now validated by the standalone checker
print(df.filter(pl.col("revenue") > 1000))
print(df.select(pl.col("profit"))) # ✗ unknown-column: Column 'profit' not in SalesData
# .col gives a refactor-safe polars expression from the descriptor
filtered = df.filter(SalesData.revenue.col > 1000)
grouped = df.group_by("customer_id").agg(SalesData.revenue.col.sum())
Column Inference
The standalone checker works without any BaseSchema classes. It infers column sets directly from data
loading calls and method chains, so you get column validation even on completely unannotated code.
BaseSchema is a progressive enhancement: it adds cross-file awareness and IDE autocomplete, but the
checker catches real bugs from day one without it.
Inferred Schemas
When you pass usecols= (pandas) or schema= / columns= (polars), the checker builds an inferred column set
and validates all subscript access against it — no schema annotation required:
# Checker infers {user_id, email} from usecols= — no annotation needed
df = pd.read_csv("users.csv", usecols=["user_id", "email"])
print(df["user_id"]) # ✓ OK — in usecols
# print(df["age"]) # ✗ Error: 'age' not in inferred column set
The checker also propagates column sets through method chains. Row-preserving operations (filter, query,
head, tail, sort_values, dropna, fillna, ffill, bfill, reset_index) pass the column set through
unchanged. Structural operations update it:
from typing import Annotated
df: Annotated[pd.DataFrame, UserData] = pd.read_csv("users.csv")
# Subscript slice — inferred column set {user_id, email}
small = df[["user_id", "email"]]
# print(small["age"]) # ✗ Error: 'age' not in inferred column set
# rename() — old name removed, new name added
renamed = small.rename(columns={"email": "email_address"})
print(renamed["email_address"]) # ✓ OK
# drop() — column removed from inferred set
trimmed = df.drop(columns=["age"])
# print(trimmed["age"]) # ✗ Error: 'age' was dropped
# assign() — new column added to inferred set
augmented = df.assign(created_at="2024-01-01")
print(augmented["created_at"]) # ✓ OK
Inference Gaps and Warnings
untracked-dataframe — unannotated data ingestion (on by default)
When a DataFrame is loaded via pd.read_csv() without usecols= or a schema annotation, the checker
assumes an Unknown state, bypasses strict column validation on it (to avoid false positives on columns
it simply can't see), and flags the load itself as a warning-level diagnostic.
For permissive Exploratory Data Analysis (EDA) work where you don't want that noise yet, downgrade it to
a quiet info-level note with --lenient-ingest:
typedframes check src/ --lenient-ingest
By default, loading a DataFrame without a schema or usecols= produces:
df = pd.read_csv("users.csv")
# ⚠ untracked-dataframe: columns unknown at lint time; specify `usecols`/`columns`, or
# annotate the variable's type, e.g. `df: Annotated[pd.DataFrame, MySchema] = pd.read_csv(...)`
Fix option 1 — annotate with a schema:
from typing import Annotated
df: Annotated[pd.DataFrame, UserData] = pd.read_csv("users.csv")
Fix option 2 — pass usecols=:
df = pd.read_csv("users.csv", usecols=["user_id", "email"])
dropped-unknown-column — dropped column does not exist
Emitted when drop(columns=[...]) names a column that isn't in the inferred set:
from typing import Annotated
df: Annotated[pd.DataFrame, UserData] = pd.read_csv("users.csv")
trimmed = df.drop(columns=["nonexistent"])
# ⚠ dropped-unknown-column: Dropped column 'nonexistent' does not exist in UserData
Function Parameter Contracts
Beyond validating access at the point it happens, the checker infers a contract for any function's first parameter: every column the function needs, drawn from what its body accesses or — taking priority — from a schema annotation on the parameter itself. Calling that function with a DataFrame that doesn't satisfy the contract is caught at the call site, across files:
# transforms.py
def contact_label(customers):
return customers["name"] + customers["email"]
# pipeline.py
customers = load_customers(path) # inferred columns: {customer_id, name, region}
contact_label(customers)
# ✗ missing-column: 'customers' passed to contact_label (transforms.py:2) is missing
# column(s) {email} — available: {customer_id, name, region}, required: {email, name}
The contract is resolved transitively: if a function only forwards its parameter to other functions
(step1 = preprocess(df); step2 = enrich(step1)), the checker follows the chain and unions their
requirements, catching a missing column even when no single function in the chain touches it directly.
Column-list slices (df[["a", "b"]]) contribute to the contract too.
Known limitations:
- Cross-file delegate/schema resolution follows
from module import name, plainimport module+module.helper(df)attribute access, andfrom module import *wildcard imports. A dotted import with no alias (import a.b.c) only binds the first segment (a), matching Python's own binding rules, so a deeply nested submodule accessed without an alias is not tracked. - Contract inference is a single top-to-bottom pass over a function body, not full control-flow analysis.
Deeply nested control flow (nested
try/except,match, comprehensions) may under-report a function's true requirements. - A cycle in the delegate graph (mutually- or self-delegating helpers) contributes only each function's own direct requirements to the cycle, not the full transitive union — conservative rather than exhaustive.
- If two plainly-imported modules both define a same-named function, an attribute-style delegate call
(
module.helper(df)) resolves to whichever one is found first — the checker doesn't disambiguate by which module the call site actually used.
See Also
examples/features/inference_example.py— single-file walkthrough of all four inference scenarios with annotated ✓/✗ comments.examples/features/multi_file_inference/— multi-file project checked withtypedframes check examples/features/multi_file_inference/; noBaseSchemaanywhere. Includes a function parameter contract violation caught at the call site (missing-column).examples/features/multi_file_with_schema/— same scenario withBaseSchemaclasses; the checker follows schemas across module boundaries via the project index.- SQL / data-warehouse column inference — the column set is inferred from a query's
SELECTlist instead ofusecols=/columns=, including tracing the query back through a single-assignment variable or a.sqlfile, and dialect-aware identifier case folding (sql_dialectinpyproject.toml— see Project-level configuration):examples/sql_connectors/snowflake/,examples/sql_connectors/bigquery/,examples/sql_connectors/athena/,examples/sql_connectors/redshift/,examples/sql_connectors/databricks/,examples/sql_connectors/pyspark/,examples/sql_connectors/duckdb/,examples/sql_connectors/connectorx/,examples/sql_connectors/sqlalchemy/(Coreselect()and declarative models, not just raw SQL text),examples/sql_connectors/feast/(feature-store retrieval, registered as an open schema sinceentity_df's own columns aren't enumerable in general), andexamples/sql_connectors/azure_synapse/(Azure's closest analog to Athena, including T-SQL's[bracket-quoted]identifier convention). A wrapper function that case-folds a connector's result before returning it (.rename(columns=str.lower),df.columns = df.columns.str.lower()) is traced cross-file too — see docs/usage.md's "Supported column-set transforms".
Static Analysis
typedframes provides two ways to check your code:
Option 1: Standalone Checker (Fast)
# Blazing fast Rust-based checker
typedframes check src/
# Output (ty-style, auto-colored in terminals):
# src/analysis.py:23:8: error[unknown-column] Column 'profit' not in SalesData
# src/pipeline.py:56:8: error[unknown-column] Column 'user_name' not in UserData
# ✗ Found 2 errors in 47 files (0.0s)
Features:
- Catches column name errors
- Validates schema mismatches between functions
- Validates function parameter contracts across files, including transitively through chains of
helper functions (
missing-column) - Checks both pandas and polars code
- Significantly faster than mypy (see benchmarks below)
Use this for:
- Fast feedback during development
- CI/CD pipelines
- Pre-commit hooks
Configuration:
# Check specific files
typedframes check src/pipeline.py
# Check directory (builds cross-file index automatically)
typedframes check src/
# Fail on any error (for CI)
typedframes check src/ --strict
# JSON output
typedframes check src/ --output-format=json
# Skip cross-file index (single-file mode, faster for quick checks)
typedframes check src/ --no-index
# Suppress all warnings (untracked-dataframe, dropped-unknown-column)
typedframes check src/ --no-warnings
# Enforce minimum DataFrame schema coverage (see below)
typedframes check src/ --fail-under=90
# Show which DataFrames lack column info, per file
typedframes check src/ --coverage-report=term-missing
To suppress warnings project-wide, add to pyproject.toml:
[tool.typedframes]
enabled = true
warnings = false
Option 2: Mypy Plugin (Comprehensive)
# Add to pyproject.toml
[tool.mypy]
plugins = ["typedframes.mypy"]
# Or mypy.ini
[mypy]
plugins = typedframes.mypy
# Run mypy
mypy src/
Features:
- Full type checking across your codebase
- Catches column errors AND regular type errors
- IDE integration (VSCode, PyCharm)
- Works with existing mypy configuration
Use this for:
- Comprehensive type checking
- Integration with existing mypy setup
- IDE error highlighting
Supported Operations
The checker tracks schema changes through rename, drop, assign, select, pop,
insert, del, subscript assignment, merge, and concat. Row-passthrough operations
like filter, query, head, sort_values, and dropna are validated without schema
changes. Operations with runtime-dependent output (join, pivot, melt, groupby,
apply, etc.) are left untracked to avoid false positives.
See the full Method Matrix for the complete list of tracked, passthrough, and untracked operations, plus the error code reference.
DataFrame Schema Coverage Thresholds (Opt-In)
DataFrame schema coverage is the fraction of DataFrames typedframes check could
resolve column information for — the analogue of the "type coverage" reported by mypy,
pyright, and pyre, and unrelated to test coverage. That number is informational by
default. If you want it enforced — failing the run when too much of your code is
invisible to the checker — enable a threshold.
This is entirely opt-in. With no [tool.typedframes.coverage] table and no
--fail-under, nothing changes: no threshold, no exit-code difference.
Every supported key, at its default value:
[tool.typedframes.coverage]
# Master switch. Coverage enforcement is off unless this is true, so adding this
# table without setting it changes nothing.
enabled = false
# Minimum percentage of DataFrames that must have recognized column/schema info
# before `typedframes check` exits 1. Only consulted when `enabled = true`.
# Applies to every file not captured by a glob in [overrides] below.
fail_under = 100.0
# How much coverage detail to print after each check. One of:
# "summary" one line (the default, unchanged from before this feature)
# "term-missing" per-file table plus the DataFrame sites lacking column info
# "json" machine-readable document, for CI tooling
# Independent of `enabled` — a detailed report is useful without a gate, and
# vice versa. Overridden by `--coverage-report`.
report = "summary"
[tool.typedframes.coverage.overrides]
# Per-path glob overrides of `fail_under`, for holding legacy code to a lower bar
# than new code. Each glob is graded on its own files as a separate group, so a
# lenient legacy bucket can't drag down (or rescue) the rest of the project.
# Paths are matched project-relative: `**` spans any number of directories,
# `*` and `?` stay within one path segment.
# When several globs match one file the most specific wins — longest literal
# prefix before the first `*` or `?`. Files matching no glob use `fail_under`.
# "legacy/**" = 50.0
# "src/new_module/**" = 100.0
Prefer to keep pyproject.toml clean? The same settings work in a standalone
typedframes.toml at the project root, with the [tool.typedframes] prefix dropped
(the way ruff.toml drops [tool.ruff]):
# typedframes.toml
[coverage]
enabled = false
fail_under = 100.0
report = "summary"
[coverage.overrides]
# "legacy/**" = 50.0
If both files exist, typedframes.toml wins entirely — the two are never merged,
so exactly one file explains the whole configuration.
Seeing What's Missing
The default one-line DataFrame schema coverage summary tells you the ratio but not what
to fix. --coverage-report=term-missing names the DataFrames that cost you coverage:
typedframes check src/ --coverage-report=term-missing
Name Typed Total Cover Missing
---------------------------------------------
legacy/old.py 0 2 0% old_one:2, old_two:3
src/new.py 1 2 50% bad:3
---------------------------------------------
TOTAL 1 4 25%
Each Missing entry is variable:line — the assignment where the checker recognized a
DataFrame but couldn't resolve its columns. Fix those (add usecols=, name the columns
in the SELECT, or annotate the variable) and coverage rises.
For CI tooling, --coverage-report=json emits the same data as a document. Combine it
with --output-format=json and the coverage report is nested under a coverage key so
stdout stays a single valid JSON document:
typedframes check src/ --output-format=json --coverage-report=json
Notes:
- Coverage is a separate gate from
--strict.--strictfails on errors (correctness); a threshold fails on missing column information (completeness). Enabling one never implies the other. --fail-under=Nis a total override: it applies one threshold everywhere and ignores the config table, per-path overrides included. Handy for a one-off CI run.- A group with no recognized DataFrames passes: 0/0 means there was nothing to measure, not that something failed.
- A failed threshold exits 1 and is reported even under
--no-info— that flag silences the informational summary line, not a gate result.
Static Analysis Performance
Fast feedback reduces development time. The typedframes Rust binary provides near-instant column checking.
Benchmark results (20 runs, 3 warmup, caches cleared between runs): 2026-08-18 · Darwin 25.6.0 · arm · CPython 3.14.4 · 64GiB RAM · Great Expectations pinned @ 1.20.0
| Tool | Version | What it does | typedframes (13 files) | great_expectations (485 files) |
|---|---|---|---|---|
| typedframes | 0.4.1 | DataFrame column checker | 51ms ±918µs (IQR 1ms) | 219ms ±2ms (IQR 4ms) |
| ruff | 0.16.3 | Linter (no type checking) | 30ms ±764µs (IQR 922µs) | 233ms ±3ms (IQR 4ms) |
| ty | 0.0.72 | Type checker | 73ms ±1ms (IQR 2ms) | 810ms ±10ms (IQR 13ms) |
| pyrefly | 1.2.0 | Type checker | 104ms ±2ms (IQR 2ms) | 276ms ±9ms (IQR 14ms) |
| mypy | 2.3.1 | Type checker (no plugin) | 3.07s ±17ms (IQR 25ms) | 4.56s ±29ms (IQR 57ms) |
| mypy + typedframes | 2.3.1 | Type checker + column checker | 3.07s ±13ms (IQR 17ms) | 4.84s ±20ms (IQR 23ms) |
| pyright | 1.1.411 | Type checker | 781ms ±5ms (IQR 6ms) | 3.46s ±25ms (IQR 41ms) |
Run uv run python benchmarks/benchmark_checkers.py to reproduce.
The typedframes binary resolves column names within a file and, when a project index is present, across files too.
Run typedframes check src/ to build the index automatically and catch errors like df = load_users(); df["typo"]
even when load_users is defined in another module. Pass --no-index to skip the index and check each file in
isolation. Full type checkers (mypy, pyright, ty) analyze all Python types across your entire codebase. Use both: the
binary for fast iteration, mypy for comprehensive checking.
The standalone checker is built with ruff_python_parser for Python AST
parsing.
Note: ty (Astral) does not currently support mypy plugins, so use the standalone binary for column checking with ty.
Type Safety With Multiple Backends
typedframes uses native backend types to ensure complete type safety:
from typing import Annotated
import pandas as pd
import polars as pl
from typedframes import BaseSchema, Column
class UserData(BaseSchema):
user_id = Column(type=int)
email = Column(type=str)
# Pandas pipeline - type checker knows pandas methods
def pandas_analyze(df: Annotated[pd.DataFrame, UserData]) -> Annotated[pd.DataFrame, UserData]:
return df[df["user_id"] > 100] # ✓ Pandas syntax
# Polars pipeline - type checker knows polars methods
def polars_analyze(df: Annotated[pl.DataFrame, UserData]) -> Annotated[pl.DataFrame, UserData]:
return df.filter(pl.col("user_id") > 100) # ✓ Polars syntax
# Use native types throughout
df_pandas: Annotated[pd.DataFrame, UserData] = pd.read_csv("data.csv")
df_polars: Annotated[pl.DataFrame, UserData] = pl.read_csv("data.csv")
pandas_analyze(df_pandas) # ✓ OK
polars_analyze(df_polars) # ✓ OK
Advanced Usage
Merges, Joins, and Filters
Schema-typed DataFrames preserve their type through common operations:
Pandas:
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column
class UserSchema(BaseSchema):
user_id = Column(type=int)
email = Column(type=str)
class OrderSchema(BaseSchema):
order_id = Column(type=int)
user_id = Column(type=int)
total = Column(type=float)
# Schema preserved through filtering
def get_active_users(df: Annotated[pd.DataFrame, UserSchema]) -> Annotated[pd.DataFrame, UserSchema]:
return df[df["user_id"] > 100] # ✓ Validated by checker
# Schema preserved through merges
users: Annotated[pd.DataFrame, UserSchema] = pd.read_csv("users.csv")
orders: Annotated[pd.DataFrame, OrderSchema] = pd.read_csv("orders.csv")
merged = users.merge(orders, on=UserSchema.user_id.s)
Polars:
from typing import Annotated
import polars as pl
# Schema columns work in filter expressions
def filter_users(df: Annotated[pl.DataFrame, UserSchema]) -> pl.DataFrame:
return df.filter(pl.col("user_id") > 100)
# Schema columns work in join expressions
def join_data(
users: Annotated[pl.DataFrame, UserSchema],
orders: Annotated[pl.DataFrame, OrderSchema],
) -> pl.DataFrame:
return users.join(
orders,
left_on=UserSchema.user_id.s,
right_on=OrderSchema.user_id.s,
)
# Schema columns work in select expressions
def select_columns(df: Annotated[pl.DataFrame, UserSchema]) -> pl.DataFrame:
return df.select([UserSchema.user_id.s, UserSchema.email.s])
Dynamic Column Matching
Perfect for time-series data where column counts change. Regex ColumnSets document which columns belong
to a group and are validated by the static checker. The .s property gives you the list of column names
for explicit (non-regex) ColumnSets; for non-regex groups you can also use .cols() for polars expressions.
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column, ColumnSet, ColumnGroup
class SensorReadings(BaseSchema):
timestamp = Column(type=str)
# Explicit sensor columns — refactor-safe list access via .s
sensors = ColumnSet(type=float, members=["sensor_1", "sensor_2", "sensor_3"])
df: Annotated[pd.DataFrame, SensorReadings] = pd.read_csv("readings.csv")
df[SensorReadings.sensors.s].mean() # ✓ Expands to df[["sensor_1", "sensor_2", "sensor_3"]].mean()
For logical grouping across multiple ColumnSets:
class TimeSeriesData(BaseSchema):
timestamp = Column(type=str)
temperature = ColumnSet(type=float, members=["temp_1", "temp_2", "temp_3"])
pressure = ColumnSet(type=float, members=["pressure_1", "pressure_2"])
# Group for convenient access to all sensor columns
sensors = ColumnGroup(members=[temperature, pressure])
df: Annotated[pd.DataFrame, TimeSeriesData] = pd.read_csv("sensors.csv")
avg_temp = df[TimeSeriesData.temperature.s].mean()
all_readings = df[TimeSeriesData.sensors.s].describe()
Schema Composition
Compose upward — build bigger schemas from smaller ones via inheritance. Type checkers see all columns natively.
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column
# Start with the smallest useful schema
class UserPublic(BaseSchema):
user_id = Column(type=int)
email = Column(type=str)
name = Column(type=str)
# Extend it — never strip down
class UserFull(UserPublic):
password_hash = Column(type=str)
class Orders(BaseSchema):
order_id = Column(type=int)
user_id = Column(type=int)
total = Column(type=float)
# Combine via multiple inheritance
class UserOrders(UserPublic, Orders):
"""Type checkers see all columns from both parents."""
...
# Or use the + operator
UserOrdersDynamic = UserPublic + Orders
users: Annotated[pd.DataFrame, UserPublic] = pd.read_csv("users.csv")
orders: Annotated[pd.DataFrame, Orders] = pd.read_csv("orders.csv")
merged: Annotated[pd.DataFrame, UserOrders] = users.merge(orders, on=UserPublic.user_id.s)
Overlapping columns with the same type are allowed (common after merges). Conflicting types raise SchemaConflictError.
See examples/features/schema_algebra_example.py for a complete walkthrough.
Comparison
Feature Matrix (Static Analysis Focus)
Comprehensive comparison of pandas/DataFrame typing and validation tools. typedframes focuses on static analysis —catching errors at lint-time before your code runs.
| Feature | typedframes | Pandera | Great Expectations | strictly_typed_pandas | pandas-stubs | dataenforce | pandas-type-checks | StaticFrame | narwhals | dataframely | patito |
|---|---|---|---|---|---|---|---|---|---|---|---|
| Version tested | 0.4.1 | 0.32.1 | 1.20.0 | 0.3.7 | 3.0.5 | 0.1.2 | 1.1.3 | 5.1.1 | 2.24.0 | 3.0.0 | 0.8.6 |
| Analysis Type | |||||||||||
| When errors are caught | Static (lint-time) | Runtime | Runtime | Runtime | Static | Runtime | Runtime | Runtime | Runtime | Runtime | Runtime |
| Static Analysis (our focus) | |||||||||||
| Mypy plugin | ✅ Yes | ⚠️ Limited | ❌ No | ❌ No | ✅ Yes | ❌ No | ❌ No | ⚠️ Basic | ❌ No | ❌ No | ❌ No |
| Standalone checker | ✅ Rust (ms-scale) | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Column name checking | ✅ Yes | ⚠️ Limited | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Column type checking | ✅ Yes | ⚠️ Limited | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Typo suggestions | ✅ Yes | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Runtime Validation | |||||||||||
| Data validation | ❌ No | ✅ Excellent | ✅ Excellent | ✅ typeguard | ❌ No | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | ✅ Yes | ✅ Yes |
| Value constraints | ❌ No | ✅ Yes | ✅ Excellent | ❌ No | ❌ No | ❌ No | ❌ No | ✅ Yes | ❌ No | ✅ Yes | ✅ Yes |
| Schema Features | |||||||||||
| Column grouping | ✅ ColumnGroup | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Regex column matching | ✅ Yes | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No |
| Backend Support | |||||||||||
| Pandas | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ❌ Own | ✅ Yes | ❌ No | ⚠️ Limited |
| Polars | ✅ Yes | ✅ Yes | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ❌ Own | ✅ Yes | ✅ Yes (only) | ✅ Yes |
| DuckDB, cuDF, etc. | ❌ No | ❌ No | ✅ Spark, SQL | ❌ No | ❌ No | ❌ No | ❌ No | ❌ No | ✅ Yes | ❌ No | ❌ No |
| Project Status (Aug 2026) | |||||||||||
| Active development | ✅ Yes | ✅ Yes | ✅ Yes | ⚠️ Low | ✅ Yes | ❌ Inactive | ⚠️ Low | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Legend: ✅ Full support | ⚠️ Limited/Partial | ❌ Not supported
Tool Descriptions
-
Pandera (v0.32.1): Excellent runtime validation. Static analysis support exists but has limitations—column access via
df["column"]is not validated, and schema mismatches between functions may not be caught. -
strictly_typed_pandas (v0.3.7): Provides
DataSet[Schema]type hints for runtime validation via typeguard. Despite documentation implying mypy support, there is no mypy plugin — column access errors are not caught statically. No standalone checker. No polars support. -
pandas-stubs (v3.0.5): Official pandas type stubs. Provides API-level types but no column-level checking.
-
dataenforce (v0.1.2, the only release ever published): Runtime validation via decorator. Appears inactive/abandoned. Broken on every currently-supported Python version (3.11 through 3.14) due to removal of internal typing APIs (
typing._TypingEmpty) it depends on — confirmed working only as far back as Python 3.9. -
pandas-type-checks (v1.1.3): Runtime validation decorator. No static analysis.
-
StaticFrame (v5.1.1): Alternative immutable DataFrame library. Not compatible with pandas/polars — requires a full rewrite to StaticFrame's own API. Column access is still string-based; mypy does not catch column name typos. Type safety comes from immutability guarantees, not schema checking.
-
narwhals (v2.24.0): Compatibility layer that provides a unified API across pandas, polars, DuckDB, cuDF, and more. Solves a different problem—write-once-run-anywhere portability, not type safety. See Why Abstraction Layers Don't Solve Type Safety below.
-
Great Expectations (v1.20.0): Comprehensive data quality framework. Defines "expectations" (assertions) about data values, distributions, and schema properties. Excellent for runtime validation, data documentation, and data quality monitoring. No static analysis or column-level type checking in code. Supports pandas, Spark, and SQL backends.
-
dataframely (v3.0.0): Polars-only runtime validation library from Quantco. Schemas are defined as classes inheriting
dy.Schemawith typed descriptor fields (dy.String(),dy.Float64()) and@dy.rule()decorators for cross-column and group-level constraints. Returnsdy.DataFrame[Schema]generic types that give call-site narrowing to type checkers, but does not validate column subscript access inside function bodies, and (as of 3.0) that narrowing doesn't even survive a.filter()call — it returns a plainpl.DataFrame. 3.0 also removed thedy.Seriestype entirely; column access now returns a plainpl.Series. No lint-time or static analysis capability. Supports nullability, string constraints, numeric bounds, cross-column rules, soft validation, test data generation, and SQLAlchemy/PyArrow export. -
patito (v0.8.6): Runtime validation library using a Pydantic-style
patito.Modelclass. Polars is the primary backend; pandas is supported but works by converting to Polars via PyArrow (an undeclared dependency). No static analysis or standalone checker.
Type Checkers (Not DataFrame-Specific)
These are general Python type checkers. They don't validate DataFrame column names, but they can be used alongside typedframes for comprehensive type checking:
-
mypy (v2.3.1): The original Python type checker. typedframes provides a mypy plugin for column checking. See performance benchmarks.
-
ty (v0.0.72, Astral): New Rust-based type checker, faster than mypy on large codebases. Does not support mypy plugins—use typedframes standalone checker.
-
pyrefly (v1.2.0, Meta): Rust-based type checker from Meta, replacement for Pyre. Fast, but no DataFrame column checking.
-
pyright (v1.1.411, Microsoft): Type checker powering Pylance/VSCode. No mypy plugin support—use typedframes standalone checker.
Not Directly Comparable
These tools serve different purposes:
- pandas_lint: Lints pandas code patterns (performance, best practices). Does not check column names/types.
- pandas-vet: Flake8 plugin for pandas best practices. Does not check column names/types.
When to Use What
| Use Case | Recommended Tool |
|---|---|
| Static column checking (existing pandas/polars) | typedframes |
| Runtime data validation | Pandera |
| Both static + runtime | typedframes + to_pandera_schema() |
| Cross-library portability (write once, run anywhere) | narwhals |
| Data quality monitoring / pipeline validation | Great Expectations |
| Immutable DataFrames from scratch | StaticFrame |
| Pandas API type hints only | pandas-stubs |
Pandera Integration
Convert typedframes schemas to Pandera schemas for runtime validation. Define your schema once, get both static and runtime checking.
pip install typedframes[pandera]
from typedframes import BaseSchema, Column
from typedframes.pandera import to_pandera_schema
import pandas as pd
class UserData(BaseSchema):
user_id = Column(type=int)
email = Column(type=str)
age = Column(type=int, nullable=True)
# Convert to pandera schema
pandera_schema = to_pandera_schema(UserData)
# Validate data at runtime
df = pd.read_csv("users.csv")
validated_df = pandera_schema.validate(df) # Raises SchemaError on failure
The conversion maps:
Columntype/nullable/alias topa.Columndtype/nullable/nameColumnSetwith explicit members to individualpa.ColumnentriesColumnSetwith regex topa.Column(regex=True)allow_extra_columnsto pandera'sstrictmode
Examples
Basic CSV Processing
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column
class Orders(BaseSchema):
order_id = Column(type=int)
customer_id = Column(type=int)
total = Column(type=float)
date = Column(type=str)
def calculate_revenue(orders: Annotated[pd.DataFrame, Orders]) -> float:
return orders["total"].sum()
df: Annotated[pd.DataFrame, Orders] = pd.read_csv("orders.csv")
revenue = calculate_revenue(df)
Time Series Analysis
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column, ColumnSet, ColumnGroup
class SensorData(BaseSchema):
timestamp = Column(type=str)
temperature = ColumnSet(type=float, members=["temp_1", "temp_2", "temp_3"])
humidity = ColumnSet(type=float, members=["humidity_1", "humidity_2"])
all_sensors = ColumnGroup(members=[temperature, humidity])
df: Annotated[pd.DataFrame, SensorData] = pd.read_csv("sensors.csv")
# Clean, type-safe operations using .s for column name lists
avg_temp_per_row = df[SensorData.temperature.s].mean(axis=1)
all_readings_stats = df[SensorData.all_sensors.s].describe()
Multi-Step Pipeline
from typing import Annotated
import pandas as pd
from typedframes import BaseSchema, Column
class RawSales(BaseSchema):
date = Column(type=str)
product_id = Column(type=int)
quantity = Column(type=int)
price = Column(type=float)
class AggregatedSales(BaseSchema):
date = Column(type=str)
total_revenue = Column(type=float)
total_quantity = Column(type=int)
def aggregate_daily(df: Annotated[pd.DataFrame, RawSales]) -> Annotated[pd.DataFrame, AggregatedSales]:
result = (
df.groupby(RawSales.date.s)
.agg(
{
RawSales.price.s: "sum",
RawSales.quantity.s: "sum",
}
)
.reset_index()
)
result.columns = pd.Index(["date", "total_revenue", "total_quantity"])
return result # type: ignore[return-value]
# Type-safe pipeline
raw: Annotated[pd.DataFrame, RawSales] = pd.read_csv("sales.csv")
aggregated = aggregate_daily(raw)
# Type checker validates schema transformations
def analyze(df: Annotated[pd.DataFrame, AggregatedSales]) -> float:
df["total_revenue"] # ✓ OK
df["price"] # ✗ Error: 'price' not in AggregatedSales
return df[AggregatedSales.total_revenue.s].mean()
Polars Performance Pipeline
from typing import Annotated
import polars as pl
from typedframes import BaseSchema, Column
class LargeDataset(BaseSchema):
id = Column(type=int)
value = Column(type=float)
category = Column(type=str)
def efficient_aggregation(df: Annotated[pl.DataFrame, LargeDataset]) -> pl.DataFrame:
return df.filter(pl.col("value") > 100).group_by("category").agg(pl.col("value").mean())
# Polars handles large files efficiently
df: Annotated[pl.DataFrame, LargeDataset] = pl.read_csv("huge_file.csv")
result = efficient_aggregation(df)
Philosophy
Type Safety Over Validation
We believe static analysis catches bugs earlier and cheaper than runtime validation.
typedframes focuses on:
- ✅ Catching errors at lint-time
- ✅ Zero runtime overhead
- ✅ Developer experience
We explicitly don't focus on:
- ❌ Runtime data validation (use Pandera)
- ❌ Statistical checks (use Pandera)
- ❌ Data quality monitoring (use Great Expectations)
Important: An Annotated[pd.DataFrame, Schema] type annotation is a trust assertion, not a validation step.
It tells the type checker "this DataFrame conforms to this schema" without verifying the actual data. The linter catches
mistakes in your code (wrong column names, schema mismatches between functions), but it cannot verify that a CSV file
contains the expected columns. For runtime validation of external data, use
to_pandera_schema() to convert your typedframes schemas to Pandera schemas.
Native Backend Types
We use native Annotated[pd.DataFrame, Schema] and Annotated[pl.DataFrame, Schema] types because pandas and
polars have fundamentally different APIs. By annotating native objects rather than wrapping them in custom classes,
typedframes lets you use each library's full, native API while still getting schema-level type safety.
Trade-offs we avoid:
- ❌ Custom wrapper classes (you lose IDE completion for native methods)
- ❌ "Universal DataFrame" abstractions (you lose library-specific features)
- ❌ Lowest-common-denominator APIs
Why Abstraction Layers Don't Solve Type Safety
Tools like narwhals solve a different problem: writing portable code that runs on pandas, polars, DuckDB, cuDF, and other backends. This is useful for library authors who want to support multiple backends without maintaining separate codebases.
However, abstraction layers don't provide column-level type safety:
import narwhals as nw
def process(df: nw.DataFrame) -> nw.DataFrame:
# No static checking - "revenue" typo won't be caught until runtime
return df.filter(nw.col("revnue") > 100) # Typo: "revnue" vs "revenue"
The fundamental issue: Abstraction layers abstract over which library you're using, not what columns your data has. They can't know at lint-time whether "revenue" is a valid column in your DataFrame.
typedframes solves the orthogonal problem of schema safety:
from typing import Annotated
import polars as pl
from typedframes import BaseSchema, Column
class SalesData(BaseSchema):
revenue = Column(type=float)
def process(df: Annotated[pl.DataFrame, SalesData]) -> pl.DataFrame:
return df.filter(pl.col("revnue") > 100) # ✗ Error at lint-time: 'revnue' not in SalesData
Use narwhals when: You're writing a library that needs to work with multiple DataFrame backends.
Use typedframes when: You want to catch column name/type errors before your code runs.
Why No Built-in Validation?
Ideally, validation happens at the point of data ingestion rather than in Python application code. If you're validating DataFrames in Python, consider whether your data pipeline could enforce constraints earlier. Use Pandera for cases where runtime validation is genuinely necessary.
License
MIT License - see LICENSE
Roadmap
Shipped:
- Schema definition API
- Pandas support
- Polars support
- Mypy plugin
- Standalone checker (Rust)
- Explicit backend types
- Merge/join schema preservation
- Schema Composition (multiple inheritance,
SchemaA + SchemaB) - Column name collision warnings
- Pandera integration (
to_pandera_schema()) - Cross-file schema inference (project-level index,
--no-indexflag) - Aggressive column inference (untracked-dataframe/dropped-unknown-column warnings, method chain propagation)
- Function parameter contracts (
missing-column), resolved transitively across chains of helper functions and cross-file calls; schema-annotated parameters take priority over body-scanning - SQL / data-warehouse column inference (
SELECTlist parsing across Snowflake, BigQuery, Athena, Redshift, Databricks, PySpark, DuckDB, SQLAlchemy Core/ORM, Feast, and T-SQL/Synapse/Fabric dialects) - Jupyter notebook (
.ipynb) checking — code cells are checked directly, with errors reported asnotebook.ipynb:cell N:line:col
Planned:
- Opt-in data loading constraints -
Fieldclass with constraints (gt,ge,lt,le), strictly isolated tofrom_schema()ingestion boundaries
FAQ
Q: Do I need to choose between pandas and polars?
A: No. Define your schema once, use it with both. Just use Annotated[pd.DataFrame, Schema] or Annotated[pl.DataFrame, Schema] in your function signatures.
Q: Does this replace Pandera?
A: No, it complements it. Use typedframes for static analysis, and to_pandera_schema() to convert your schemas to
Pandera for runtime validation. See Pandera Integration.
Q: Is the standalone checker required? A: No. You can use just the mypy plugin, just the standalone checker, or both. They catch the same errors.
Q: What works without any plugin?
A: Any type checker (mypy, pyright, ty) understands Annotated[pd.DataFrame, Schema] as a plain pd.DataFrame —
no plugin or stubs needed for basic type checking. Column name validation (catching typos like df["revnue"] in
string-based access) still requires the standalone checker or mypy plugin.
Q: What about pyright/pylance users?
A: The mypy plugin doesn't work with pyright. Use the standalone checker (typedframes check) for column name
validation. Schema descriptor access (df[Schema.column]) works natively in pyright without any plugin.
Q: Do I need to write BaseSchema classes to get value?
A: No. The standalone checker works entirely from inference: usecols=/columns=/dtype= arguments on read
calls give it enough information to validate column access and propagate that knowledge through method chains
(rename, drop, assign, select, …). BaseSchema is a progressive enhancement that unlocks cross-file
awareness (schemas travel with function return types across module boundaries) and IDE autocomplete via
descriptors — but the checker catches real column errors from day one without it. See
examples/features/multi_file_inference/ for a complete demo with no schema classes.
Q: Does this work with existing pandas/polars code?
A: Yes. You can gradually adopt typedframes by adding schemas to new code. Existing code continues to work.
Start by adding usecols= to your read calls to get immediate column validation, then add BaseSchema
classes incrementally where cross-file tracking or autocomplete is most valuable.
Q: What if my column name conflicts with a pandas/polars method?
A: No problem. Since column access uses bracket syntax with schema descriptors (df[Schema.mean]), there is no conflict
with DataFrame methods (df.mean()). Both work independently.
Credits
Built by developers who believe DataFrame bugs should be caught at lint-time, not in production.
Inspired by the needs of ML/data science teams working with complex data pipelines.
Questions? Issues? Ideas? Open an issue
Ready to catch DataFrame bugs before runtime? pip install typedframes
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
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 typedframes-0.4.1.tar.gz.
File metadata
- Download URL: typedframes-0.4.1.tar.gz
- Upload date:
- Size: 176.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4856db301d2d4702cf2ba617d5da655aa129a17b4fead5435fa59ef794a0c9e
|
|
| MD5 |
b30cd16646fb0fac7215d4ef1afb9c45
|
|
| BLAKE2b-256 |
633d55599a63459c57010db137cc5bd78d601cd1741244d0dfa520ba67fc4637
|
Provenance
The following attestation bundles were made for typedframes-0.4.1.tar.gz:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1.tar.gz -
Subject digest:
d4856db301d2d4702cf2ba617d5da655aa129a17b4fead5435fa59ef794a0c9e - Sigstore transparency entry: 2516251349
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type:
File details
Details for the file typedframes-0.4.1-cp311-abi3-win_amd64.whl.
File metadata
- Download URL: typedframes-0.4.1-cp311-abi3-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e85791a9dc418438d4ad1368d2b02de5add5378873afcebd33e3708b4616048
|
|
| MD5 |
43fde8671b8b490be1fdc0a0432880b3
|
|
| BLAKE2b-256 |
e4c3b331cfc80cd38b38b5df727cc84a2669fce801aba85427cef60c5ed986ba
|
Provenance
The following attestation bundles were made for typedframes-0.4.1-cp311-abi3-win_amd64.whl:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1-cp311-abi3-win_amd64.whl -
Subject digest:
1e85791a9dc418438d4ad1368d2b02de5add5378873afcebd33e3708b4616048 - Sigstore transparency entry: 2516251426
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type:
File details
Details for the file typedframes-0.4.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typedframes-0.4.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca720293934ff17ece4c85a44bb3e41caf583dc1f462ff959ecef36f5b0703c2
|
|
| MD5 |
b776c3b216453ed7a0e1cafb683d09ee
|
|
| BLAKE2b-256 |
c21c6e38f911c56af06817b34371db971803c7925ebe4547ddd709247c440d4c
|
Provenance
The following attestation bundles were made for typedframes-0.4.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ca720293934ff17ece4c85a44bb3e41caf583dc1f462ff959ecef36f5b0703c2 - Sigstore transparency entry: 2516251378
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type:
File details
Details for the file typedframes-0.4.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typedframes-0.4.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8b6458e78cf6d466db353009727c5fbf8c77d27e710e749892ea084c3a15df8
|
|
| MD5 |
0b6024a8806db245e0e3bfd85186bf1f
|
|
| BLAKE2b-256 |
aa694772217babd0f0fdaa8d2f983d2bba8f41e15548422e37983bf3454ce1b2
|
Provenance
The following attestation bundles were made for typedframes-0.4.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b8b6458e78cf6d466db353009727c5fbf8c77d27e710e749892ea084c3a15df8 - Sigstore transparency entry: 2516251408
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type:
File details
Details for the file typedframes-0.4.1-cp311-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: typedframes-0.4.1-cp311-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c8d41be23668ed47e02cc20c6cd39c44c4652bd87d0682e80f9c2725ec6a86f
|
|
| MD5 |
06d2cf084479baca55555262492b30c9
|
|
| BLAKE2b-256 |
6848e50fa103025d1460ca4fd033961eac1f2ab2489b4a6892e28cb8178d0240
|
Provenance
The following attestation bundles were made for typedframes-0.4.1-cp311-abi3-macosx_11_0_arm64.whl:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1-cp311-abi3-macosx_11_0_arm64.whl -
Subject digest:
3c8d41be23668ed47e02cc20c6cd39c44c4652bd87d0682e80f9c2725ec6a86f - Sigstore transparency entry: 2516251397
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type:
File details
Details for the file typedframes-0.4.1-cp311-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typedframes-0.4.1-cp311-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8457d08ec794fadfc9ba5f4bb5cb4c4c1353a79f159a0f4a1090ebfdc87e27b5
|
|
| MD5 |
35a806095072ef960e20e0d1e482f080
|
|
| BLAKE2b-256 |
d599620ecbebfe6997d2012c1e4f263ad1d1873110fc374d102a5809011589af
|
Provenance
The following attestation bundles were made for typedframes-0.4.1-cp311-abi3-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on w-martin/typedframes
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
typedframes-0.4.1-cp311-abi3-macosx_10_12_x86_64.whl -
Subject digest:
8457d08ec794fadfc9ba5f4bb5cb4c4c1353a79f159a0f4a1090ebfdc87e27b5 - Sigstore transparency entry: 2516251435
- Sigstore integration time:
-
Permalink:
w-martin/typedframes@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/w-martin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9049461b2b7b3646ddcb4614d887aabd7eb36763 -
Trigger Event:
push
-
Statement type: