Skip to main content
Version: 0.9.2

TableInput

class TableInput(table: str | List[str])

Bases: Input

Categories: source

Class for managing the configuration of table-based data inputs.

Attributes: table (str | List[str]): The table(s) to load.

Methods: to_dict(): Converts the TableInput object to a dictionary.

Initializes the TableInput with the given tables. If multiple tables are provided, they must be provided as a list.

Parameters

parameter
tablestr | List[str]

The table(s) to load. If multiple tables are provided, they must be provided as a list.

Properties

property
tablestr | List[str]

The table(s) to load.

Methods

to_dict
def to_dict() -> dict

Converts the TableInput object to a dictionary with all the relevant information.

Returns:

dict: A dictionary with the relevant information of the Output object.