Skip to content

Provider

πŸ€– AI-Generated Content

This documentation was generated with AI assistance and is still being audited. Some, or potentially a lot, of this information may be inaccurate. Learn more.

pyvider.components.provider

Provider implementation for pyvider-components.

This provides the reference implementation of a Pyvider provider, managing standard components for local file manipulation, HTTP data sources, and utility functions.

Classes

PyviderProvider

PyviderProvider()

Bases: BaseProvider

Reference implementation of a Pyvider provider.

Manages standard components for local file manipulation, HTTP data sources, and utility functions.

Source code in pyvider/components/provider.py
def __init__(self) -> None:
    super().__init__(metadata=ProviderMetadata(name="pyvider", version="0.1.0"))

Functions