pdschema
Validate pandas DataFrames against column contracts. Types, nullability, and per-cell checks. No cleaning or transforms.
Python 3.12+.
pip install pdschema
Quick example
import pandas as pd
from pdschema import Column, IsNonEmptyString, IsPositive, Range, Schema
df = pd.DataFrame(
{
"idx": [1, 2, 3],
"name": ["Alice", "Bob", "Charlie"],
"age": [25, 30, 35],
"score": [85.5, 92.0, 78.5],
}
)
schema = Schema(
[
Column("idx", int, nullable=False),
Column("name", str, nullable=False, validators=[IsNonEmptyString()]),
Column("age", int, validators=[IsPositive()]),
Column("score", float, validators=[Range(0, 100)]),
]
)
schema.validate(df)
Features
Two ways to define schemas — pass a list of Column objects, or declare them as class attributes:
class People(Schema):
idx = Column(dtype=int, nullable=False)
name = Column(dtype=str, nullable=False, validators=[IsNonEmptyString])
age = Column(dtype=int, validators=[IsPositive])
score = Column(dtype=float, validators=[Range(0, 100)])
Schema inference — start from a trusted DataFrame and tighten from there:
draft = Schema.infer_schema(df)
Strict mode — reject DataFrames with columns not in the schema:
Schema([Column("idx", int)], strict=True).validate(df)
Built-in validators — IsNonEmptyString, IsPositive, Range, Min, Max, GreaterThan, LessThan, Choice, Length, and more. All validators are extensible via the Validator abstract base class.
@pdfunction decorator — validate DataFrame inputs and outputs at function boundaries:
@pdfunction(arguments={"df": schema}, outputs={"result": output_schema})
def transform(df: pd.DataFrame) -> dict[str, pd.DataFrame]:
...
Clear error reporting — SchemaValidationError (also a ValueError) with one line per problem:
Schema validation failed:
Unexpected columns: ['extra']
Validation failed in 'age' at index 0: -1 (IsPositive)
Full walkthrough: docs/user/quickstart.md.
MIT. See LICENSE.
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 pdschema-0.2.1.tar.gz.
File metadata
- Download URL: pdschema-0.2.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f04982f5aa8e5e27b0baff1cdd8d36440e451bb9a4693c027757cee757667860
|
|
| MD5 |
df428486ae454edf4b3d827961233251
|
|
| BLAKE2b-256 |
88b48276e03312d3d38243895ce29e12568d47c5604174d5294be18dfb517b26
|
File details
Details for the file pdschema-0.2.1-py3-none-any.whl.
File metadata
- Download URL: pdschema-0.2.1-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b83bfab1eab7d20ef06417c87a4c47ca44ed4f1f58c66df27201655a31fee3fc
|
|
| MD5 |
07dd35240e2dee4e279df6a60d857bdd
|
|
| BLAKE2b-256 |
9208793d28cbaf6d5d33a02914a44086b8820325bc465dde95963d7314ede5c2
|