load_pickle
-
Description: Reads a pickle file.
-
Parameters:
- path (
Union[str, Path]): The path to the pickle file.
- path (
-
Return Value:
- Any: The deserialized content.
-
Example:
from capybara.utils.files_utils import load_pickle
path = '/path/to/your/pickle'
data = load_pickle(path)
print(data)
# >>> {'key': 'value'}