Data/Schema Validation
Object Serialization & Validation
★ 4.7
DataFrame Validation
★ 4.7
pip install marshmallowpip install panderapip install marshmallowpip install panderaData engineers use Marshmallow to define schemas for API request/response objects and database records — deserializing raw JSON from external APIs into validated Python dicts, and serializing SQLAlchemy model instances back to JSON for downstream consumers. Marshmallow's nested schemas cleanly handle parent-child relationships common in data pipelines.
Data engineers use Pandera to add data quality gates to pandas pipelines — defining a `DataFrameSchema` that specifies expected column types, nullable rules, and value ranges, then decorating functions with `@pa.check_input` and `@pa.check_output` to validate DataFrames automatically at each pipeline stage without changing business logic.
Individual Tool Pages