15 lines
325 B
Python
15 lines
325 B
Python
|
from typing import Any
|
||
|
|
||
|
from pandas._typing import (
|
||
|
CompressionOptions,
|
||
|
FilePath,
|
||
|
ReadPickleBuffer,
|
||
|
StorageOptions,
|
||
|
)
|
||
|
|
||
|
def read_pickle(
|
||
|
filepath_or_buffer: FilePath | ReadPickleBuffer,
|
||
|
compression: CompressionOptions = "infer",
|
||
|
storage_options: StorageOptions = None,
|
||
|
) -> Any: ...
|