Excel
ExcelToList
Bases: Node
Source code in dynamiq/nodes/transformers/excel.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
execute(input_data, config=None, **kwargs)
Transform an Excel file into a list of dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input_data |
ExcelToListTransformerInputSchema
|
input data for the tool, which includes the data from Excel file. |
required |
config |
RunnableConfig
|
Configuration for the runnable, including callbacks. |
None
|
**kwargs |
Additional arguments passed to the execution context. |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
dict[str, Any]: A dictionary containing list of data from Excel file. |
Source code in dynamiq/nodes/transformers/excel.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |