ExcelDataWorkbook constructor
init
Initializes a new instance using the specified file path.
def __init__(self, file_path):
...
Parameter | Type | Description |
---|
file_path | str | The full path to the Excel workbook file. |
Exceptions
Exception | Description |
---|
RuntimeError(Proxy error(FileNotFoundException)) | Thrown when the specified file does not exist. |
init
Initializes a new instance of the class using the provided stream.
def __init__(self, stream):
...
Parameter | Type | Description |
---|
stream | io.RawIOBase | A stream containing the Excel workbook data. |
See Also