load_pickle
-
Description
Read a pickle file.
-
Parameters
- path (
Union[str, Path]
): The path to the pickle file.
- path (
-
Returns
- dict: The content of the pickle file.
-
Example
import docsaidkit as D
path = '/path/to/your/pickle'
data = D.load_pickle(path)
print(data)
# >>> {'key': 'value'}