mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-04 23:52:23 +00:00
14 lines
314 B
Python
14 lines
314 B
Python
![]() |
from __future__ import annotations
|
||
|
|
||
|
from typing import Sequence
|
||
|
|
||
|
from pandas._typing import FilePath, ReadBuffer
|
||
|
from pandas.core.frame import DataFrame
|
||
|
|
||
|
def read_excel(
|
||
|
io: FilePath | ReadBuffer[bytes],
|
||
|
sheet_name: None,
|
||
|
*,
|
||
|
header: int | Sequence[int] | None = ...,
|
||
|
) -> dict[str, DataFrame]: ...
|