mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-03 07:05:20 +00:00

**Summary** Mechanical refactoring in preparation for adding (pre-chunk) `TableSplitter` in a PR stacked on this one.
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]: ...
|