TableInput
classView source ↗
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
method
View source ↗to_dictdef 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.