@@ -16,14 +16,13 @@ def to_feather(df: DataFrame, path, storage_options: StorageOptions = None, **kw
1616 ----------
1717 df : DataFrame
1818 path : string file path, or file-like object
19-
2019 storage_options : dict, optional
2120 Extra options that make sense for a particular storage connection, e.g.
2221 host, port, username, password, etc., if using a URL that will
2322 be parsed by ``fsspec``, e.g., starting "s3://", "gcs://". An error
2423 will be raised if providing this argument with a local path or
2524 a file-like buffer. See the fsspec and backend storage implementation
26- docs for the set of allowed keys and values
25+ docs for the set of allowed keys and values.
2726
2827 .. versionadded:: 1.2.0
2928
@@ -106,6 +105,15 @@ def read_feather(
106105 Whether to parallelize reading using multiple threads.
107106
108107 .. versionadded:: 0.24.0
108+ storage_options : dict, optional
109+ Extra options that make sense for a particular storage connection, e.g.
110+ host, port, username, password, etc., if using a URL that will
111+ be parsed by ``fsspec``, e.g., starting "s3://", "gcs://". An error
112+ will be raised if providing this argument with a local path or
113+ a file-like buffer. See the fsspec and backend storage implementation
114+ docs for the set of allowed keys and values.
115+
116+ .. versionadded:: 1.2.0
109117
110118 Returns
111119 -------
0 commit comments