Skip to content

Commit 2c92aa9

Browse files
authored
Add storage_options to read_html (2.1.0) (#785)
The argument has been added to pandas 2.1.0 in pandas-dev/pandas#52620. https://pandas.pydata.org/pandas-docs/version/2.1/reference/api/pandas.read_html.html
1 parent 3c2affd commit 2c92aa9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas-stubs/io/html.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ from pandas._typing import (
2222
HashableT4,
2323
HashableT5,
2424
ReadBuffer,
25+
StorageOptions,
2526
)
2627

2728
def read_html(
@@ -52,4 +53,5 @@ def read_html(
5253
displayed_only: bool = ...,
5354
extract_links: Literal["header", "footer", "body", "all"] | None = ...,
5455
dtype_backend: DtypeBackend | NoDefault = ...,
56+
storage_options: StorageOptions = ...,
5557
) -> list[DataFrame]: ...

0 commit comments

Comments
 (0)