The pandera_alchemy package bridges Pandera and SQLAlchemy, allowing users to define the structure of a database table using Pandera DataFrameModels or DataFrameSchemas and validate that the table has the expected structure with SQLAlchemy.
In modern data pipelines, ensuring that the structure of database tables matches the expected schema is crucial for maintaining data integrity and consistency. The pandera_alchemy package provides a seamless way to define and validate these structures, leveraging the power of Pandera for schema definitions and SQLAlchemy for database interactions.
To install the pandera_alchemy package as a dependency, retrieve it from the Python Package Index (PyPI) using pip or poetry.
pip install pandera_alchemyor
poetry add pandera_alchemyIf you want to contribute to the development of pandera_alchemy, you can clone the repository and set up a local development environment.
Clone the repository:
git clone https://github.com/TCRichards/pandera-alchemy.gitChange into the project directory:
cd pandera-alchemyCreate a virtual environment and install dependencies with poetry:
poetry installThis project is licensed under the MIT License. See the LICENSE file for details.
