Reader
Defines abstract reader behaviour.
Reader
¶
Bases: ABC
Abstract Reader class.
Source code in mkdocs/lakehouse_engine/packages/io/reader.py
__init__(input_spec)
¶
Construct Reader instances.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_spec |
InputSpec
|
input specification for reading data. |
required |
Source code in mkdocs/lakehouse_engine/packages/io/reader.py
read()
abstractmethod
¶
Abstract read method.
Returns:
| Type | Description |
|---|---|
DataFrame
|
A dataframe read according to the input specification. |