checkpointing

Persistent cache for Python functions.

See the documentation for each submodule for detail.

 1"""
 2**Persistent cache for Python functions.**
 3
 4See the documentation for each submodule for detail.
 5"""
 6
 7
 8from checkpointing.exceptions import CheckpointNotExist
 9from checkpointing.config import defaults
10from checkpointing.decorator import DecoratorCheckpoint, checkpoint
11from checkpointing.identifier import FuncCallIdentifierBase, AutoFuncCallIdentifier
12from checkpointing.cache import CacheBase, PickleFileCache
13from checkpointing._typing import ContextId, ReturnValue