|
112 | 112 |
|
113 | 113 | engine : str, default None
|
114 | 114 | If io is not a buffer or path, this must be set to identify io.
|
115 |
| - Acceptable values are None or xlrd. |
| 115 | + Acceptable values are None, "xlrd", "openpyxl" or "odf". |
116 | 116 | converters : dict, default None
|
117 | 117 | Dict of functions for converting values in certain columns. Keys can
|
118 | 118 | either be integers or column labels, values are functions that take one
|
@@ -783,11 +783,12 @@ class ExcelFile:
|
783 | 783 | Parameters
|
784 | 784 | ----------
|
785 | 785 | io : string, path object (pathlib.Path or py._path.local.LocalPath),
|
786 |
| - file-like object or xlrd workbook |
787 |
| - If a string or path object, expected to be a path to xls or xlsx file. |
| 786 | + a file-like object, xlrd workbook or openpypl workbook. |
| 787 | + If a string or path object, expected to be a path to xls, xlsx or odf file. |
788 | 788 | engine : string, default None
|
789 | 789 | If io is not a buffer or path, this must be set to identify io.
|
790 |
| - Acceptable values are None or ``xlrd``. |
| 790 | + Acceptable values are None, ``xlrd``, ``openpyxl`` or ``odf``. |
| 791 | + Note that ``odf`` reads tables out of OpenDocument formatted files. |
791 | 792 | """
|
792 | 793 |
|
793 | 794 | from pandas.io.excel._odfreader import _ODFReader
|
|
0 commit comments