diff --git a/pandas/io/excel/_odfreader.py b/pandas/io/excel/_odfreader.py index f79417d11080d..3626ad4d26bd4 100644 --- a/pandas/io/excel/_odfreader.py +++ b/pandas/io/excel/_odfreader.py @@ -14,10 +14,8 @@ StorageOptions, ) from pandas.compat._optional import import_optional_dependency -from pandas.util._decorators import doc import pandas as pd -from pandas.core.shared_docs import _shared_docs from pandas.io.excel._base import BaseExcelReader @@ -27,7 +25,6 @@ from pandas._libs.tslibs.nattype import NaTType -@doc(storage_options=_shared_docs["storage_options"]) class ODFReader(BaseExcelReader["OpenDocument"]): def __init__( self, @@ -42,7 +39,15 @@ def __init__( ---------- filepath_or_buffer : str, path to be parsed or an open readable stream. - {storage_options} + storage_options : dict, optional + Extra options that make sense for a particular storage connection, + e.g. host, port, username, password, etc. For HTTP(S) URLs the + key-value pairs are forwarded to ``urllib.request.Request`` as + header options. For other URLs (e.g. starting with "s3://", and + "gcs://") the key-value pairs are forwarded to ``fsspec.open``. + Please see ``fsspec`` and ``urllib`` for more details, and for + more examples on storage options refer `here + `__. engine_kwargs : dict, optional Arbitrary keyword arguments passed to excel engine. """