This is the Flyte SDK (v2) version of this plugin. The Flytekit version is available as flytekitplugins-pandera.
pandera
flyteplugins-pandera
flyteplugins-pandera adds support for pandera.typing.pandas.DataFrame, pandera.typing.polars.DataFrame / LazyFrame, and pandera.typing.pyspark_sql.DataFrame in Flyte v2.
pip install flyteplugins-panderaQuick Start(example, may need adjustment)
pip install flyteplugins-pandera
from flytekit import task, workflow
from flyteplugins.pandera import ValidationConfig, register_type_transformers
config = ValidationConfig(...)
@task
def my_task() -> None:
...
@workflow
def my_workflow() -> None:
my_task()Available Imports (2)
Configuration type for pandera.
from flyteplugins.pandera import ValidationConfig
Configuration type for pandera.
from flyteplugins.pandera import register_type_transformers
Dependencies
Related Plugins
Anthropic Claude
This plugin provides integration between Flyte and Anthropic's Claude API, enabling you to use Flyte tasks as tools for Claude agents.
Deck
This plugin provides additional renderers to improve task visibility within Flytekit.
Envd
envd is a command-line tool that helps you create the container-based development environment for AI/ML.
Flyte Interactive
FlyteInteractive plugin provides users' favorite interface to develop and debug a flyte task interactively. We support vscode, jupyter (WIP), and neovim (WIP).