ExcelDataWorkbook constructor

init

Initializes a new instance using the specified file path.

def __init__(self, file_path):
    ...
ParameterTypeDescription
file_pathstrThe full path to the Excel workbook file.

Exceptions

ExceptionDescription
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):
    ...
ParameterTypeDescription
streamio.RawIOBaseA stream containing the Excel workbook data.

See Also