base
A package that contains base classes for CSV sources.
DemandSource
dataclass
Base class for the demand sources. This class in an abstract class that defines the interface for the demand CSV source.
Source code in src/volur/sdk/v1alpha2/sources/csv/base.py
__aiter__()
abstractmethod
DemandSource implements Asynchronous Iterator. This allows you to use any implementation of DemandSource as
Source code in src/volur/sdk/v1alpha2/sources/csv/base.py
__anext__()
abstractmethod
async
MaterialsSource
Base class for material sources.
This class in an abstract class that defines the interface for materials CSV source.
Source code in src/volur/sdk/v1alpha2/sources/csv/base.py
__aiter__()
abstractmethod
MaterialSource implements Asynchronous Iterator.
This allows you to use any implementation of MaterialSource as
example.py | |
---|---|
Source code in src/volur/sdk/v1alpha2/sources/csv/base.py
__anext__()
abstractmethod
async
You can fetch the next element in the asynchronous iterator.
ProductsSource
dataclass
Base class for the product sources. This class in an abstract class that defines the interface for the products CSV source.
Source code in src/volur/sdk/v1alpha2/sources/csv/base.py
__aiter__()
abstractmethod
ProductSource implements Asynchronous Iterator. This allows you to use any implementation of ProductsSource as