dump_pickle
-
Description
Write an object to a pickle file.
-
Parameters
- obj (
Any
): The object to write. - path (
Union[str, Path]
): The path to the pickle file.
- obj (
-
Example
import docsaidkit as D
data = {'key': 'value'}
D.dump_pickle(data, '/path/to/your/pickle')