veriflow.datasources.base#

Module with the base class that all datasources should inherit from.

Classes

BaseDatasource(config)

Class to inherit from, defines the required methods and attributes.

BaseDatasourceConfig(*, import_adapter, ...)

Base config for a datasource config.

class veriflow.datasources.base.BaseDatasource(config)[source]#

Class to inherit from, defines the required methods and attributes.

Parameters:

config (BaseDatasourceConfig)

kind: str = ''#
config_class#

alias of BaseDatasourceConfig

supported_data_types: ClassVar[set[DataType]] = {}#
property data_type: DataType#

Whether the instance represents sim or obs data.

abstractmethod fetch_data()[source]#

Fetch data from datasource.

Return type:

Self

get_data()[source]#

Get cached data, or fetch and cache.

Return type:

Self

class veriflow.datasources.base.BaseDatasourceConfig(*, import_adapter, source, data_type, general, id_mapping=None, **extra_data)[source]#

Base config for a datasource config.

Specific config definitions should inherit from this base class.

Parameters:
import_adapter: str#
source: ", metadata=[MinLen(min_length=1)])]#
data_type: DataType#
general: Annotated[GeneralInfoConfig, SkipJsonSchema()]#
id_mapping: Annotated[IdMappingConfig, SkipJsonSchema()] | None#
property lead_times: LeadTimes | None#
property verification_period: TimePeriod#
property verification_period_on_frt: TimePeriod#
property verification_period_on_time: TimePeriod#