checkpointer adds code-aware caching to Python functions, maintaining correctness and speeding up execution as your code changes.
Project description
checkpointer ·

checkpointer
is a Python library offering a decorator-based API for memoizing (caching) function results with code-aware cache invalidation. It works with sync and async functions, supports multiple storage backends, and invalidates caches automatically when your code or dependencies change - helping you maintain correctness, speed up execution, and smooth out your workflows by skipping redundant, costly operations.
📦 Installation
pip install checkpointer
🚀 Quick Start
Apply the @checkpoint
decorator to any function:
from checkpointer import checkpoint
@checkpoint
def expensive_function(x: int) -> int:
print("Computing...")
return x ** 2
result = expensive_function(4) # Computes and stores the result
result = expensive_function(4) # Loads from the cache
🧠 How It Works
When you decorate a function with @checkpoint
and call it, checkpointer
computes a unique identifier that represents that specific call. This identifier is based on:
- The function's source code and all its user-defined dependencies,
- Global variables used by the function (if capturing is enabled or explicitly annotated),
- The actual arguments passed to the function.
checkpointer
then looks up this identifier in its cache. If a valid cached result exists, it returns that immediately. Otherwise, it runs the original function, stores the result, and returns it.
checkpointer
is designed to be flexible through features like:
- Support for decorated methods, correctly caching results bound to instances.
- Support for decorated async functions, compatible with any async runtime.
- Robust hashing, covering complex Python objects and large NumPy/PyTorch arrays via its internal
ObjectHash
. - Targeted hashing, allowing you to optimize how arguments and captured variables are hashed.
- Multi-layered caching, letting you stack decorators for layered caching strategies without losing cache consistency.
🚨 What Causes Cache Invalidation?
To ensure cache correctness, checkpointer
tracks two types of hashes:
1. Function Identity Hash (Computed Once Per Function)
This hash represents the decorated function itself and is computed once (usually on first invocation). It covers:
-
Function Code and Signature:
The actual logic and parameters of the function are hashed - but not parameter type annotations or formatting details like whitespace, newlines, comments, or trailing commas, which do not trigger invalidation. -
Dependencies:
All user-defined functions and methods that the decorated function calls or relies on, including indirect dependencies, are included recursively. Dependencies are identified by:- Inspecting the function's global scope for referenced functions and objects.
- Inferring from the function's argument type annotations.
- Analyzing object constructions and method calls to identify classes and methods used.
-
Exclusions:
Changes elsewhere in the module unrelated to the function or its dependencies do not cause invalidation.
2. Call Hash (Computed on Every Function Call)
Every function call produces a call hash, combining:
-
Passed Arguments:
Includes positional and keyword arguments, combined with default values. Changing defaults alone doesn't necessarily trigger invalidation unless it affects actual call values. -
Captured Global Variables:
Whencapture=True
or explicit capture annotations are used,checkpointer
includes referenced global variables in the call hash. Variables annotated withCaptureMe
are hashed on every call, causing immediate cache invalidation if they change. Variables annotated withCaptureMeOnce
are hashed only once per Python session, improving performance by avoiding repeated hashing. -
Custom Argument Hashing:
UsingHashBy
annotations, arguments or captured variables can be transformed before hashing (e.g., sorting lists to ignore order), allowing more precise or efficient call hashes.
💡 Usage
Once a function is decorated with @checkpoint
, you can interact with its caching behavior using the following methods:
-
expensive_function(...)
:
Call the function normally. This will compute and cache the result or load it from cache. -
expensive_function.rerun(...)
:
Force the original function to execute and overwrite any existing cached result. -
expensive_function.fn(...)
:
Call the undecorated function directly, bypassing the cache (useful in recursion to prevent caching intermediate steps). -
expensive_function.get(...)
:
Retrieve the cached result without executing the function. RaisesCheckpointError
if no valid cache exists. -
expensive_function.exists(...)
:
Check if a cached result exists without computing or loading it. -
expensive_function.delete(...)
:
Remove the cached entry for given arguments. -
expensive_function.reinit(recursive: bool = True)
:
Recalculate the function identity hash and recaptureCaptureMeOnce
variables, updating the cached function state within the same Python session.
⚙️ Configuration & Customization
The @checkpoint
decorator accepts the following parameters:
-
storage
(Type:str
orcheckpointer.Storage
, Default:"pickle"
)
Storage backend to use:"pickle"
(disk-based, persistent),"memory"
(in-memory, non-persistent), or a customStorage
class. -
directory
(Type:str
orpathlib.Path
orNone
, Default:~/.cache/checkpoints
)
Base directory for disk-based checkpoints (only for"pickle"
storage). -
capture
(Type:bool
, Default:False
)
IfTrue
, includes global variables referenced by the function in call hashes (except those excluded viaNoHash
). -
expiry
(Type:Callable[[datetime.datetime], bool]
ordatetime.timedelta
, Default:None
)
A custom callable that receives thedatetime
timestamp of a cached result. It should returnTrue
if the cached result is considered expired and needs recomputation, orFalse
otherwise. -
fn_hash_from
(Type:Any
, Default:None
)
Override the computed function identity hash with any hashable object you provide (e.g., version strings, config IDs). This gives you explicit control over the function's version and when its cache should be invalidated. -
when
(Type:bool
, Default:True
)
Enable or disable checkpointing dynamically, useful for environment-based toggling. -
verbosity
(Type:int
(0
,1
, or2
), Default:1
)
Controls the level of logging output fromcheckpointer
.0
: No output.1
: Shows when functions are computed and cached.2
: Also shows when cached results are remembered (loaded from cache).
🔬 Customize Argument Hashing
You can customize how arguments are hashed without modifying the actual argument values to improve cache hit rates or speed up hashing.
-
Annotated[T, HashBy[fn]]
:
Transform the argument viafn(argument)
before hashing. Useful for normalization (e.g., sorting lists) or optimized hashing for complex inputs. -
NoHash[T]
:
Exclude the argument from hashing completely, so changes to it won't trigger cache invalidation.
Example:
from typing import Annotated
from checkpointer import checkpoint, HashBy, NoHash
from pathlib import Path
import logging
def file_bytes(path: Path) -> bytes:
return path.read_bytes()
@checkpoint
def process(
numbers: Annotated[list[int], HashBy[sorted]], # Hash by sorted list
data_file: Annotated[Path, HashBy[file_bytes]], # Hash by file content
log: NoHash[logging.Logger], # Exclude logger from hashing
):
...
In this example, the hash for numbers
ignores order, data_file
is hashed based on its contents rather than path, and changes to log
don't affect caching.
🎯 Capturing Global Variables
checkpointer
can include captured global variables in call hashes - these are globals your function reads during execution that may affect results.
Use capture=True
on @checkpoint
to capture all referenced globals (except those explicitly excluded with NoHash
).
Alternatively, you can opt-in selectively by annotating globals with:
-
CaptureMe[T]
:
Capture the variable on every call (triggers invalidation on changes). -
CaptureMeOnce[T]
:
Capture once per Python session (for expensive, immutable globals).
You can also combine these with HashBy
to customize how captured variables are hashed (e.g., hash by subset of attributes).
Example:
from typing import Annotated
from checkpointer import checkpoint, CaptureMe, CaptureMeOnce, HashBy
from pathlib import Path
def file_bytes(path: Path) -> bytes:
return path.read_bytes()
captured_data: CaptureMe[Annotated[Path, HashBy[file_bytes]]] = Path("data.txt")
session_config: CaptureMeOnce[dict] = {"mode": "prod"}
@checkpoint
def process():
# `captured_data` is included in the call hash on every call, hashed by file content
# `session_config` is hashed once per session
...
🗄️ Custom Storage Backends
Implement your own storage backend by subclassing checkpointer.Storage
and overriding required methods.
Within storage methods, call_hash
identifies calls by arguments. Use self.fn_id()
to get function identity (name + hash/version), important for organizing checkpoints.
Example:
from checkpointer import checkpoint, Storage
from datetime import datetime
class MyCustomStorage(Storage):
def exists(self, call_hash):
fn_dir = self.checkpointer.directory / self.fn_id()
return (fn_dir / call_hash).exists()
def store(self, call_hash, data):
... # Store serialized data
return data # Must return data to checkpointer
def checkpoint_date(self, call_hash): ...
def load(self, call_hash): ...
def delete(self, call_hash): ...
@checkpoint(storage=MyCustomStorage)
def custom_cached_function(x: int):
return x ** 2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file checkpointer-2.14.5.tar.gz
.
File metadata
- Download URL: checkpointer-2.14.5.tar.gz
- Upload date:
- Size: 39.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
488ce77e0078849f06d7b12b70195e8aec83523913b9889aa6aaa34daff88ce0
|
|
MD5 |
b3caffd1dd310846fa1e16a9324db236
|
|
BLAKE2b-256 |
27a81af491ab252d83373535ae4785898e6e2b78974c4ee68dd9b45f2e40ba8a
|
File details
Details for the file checkpointer-2.14.5-py3-none-any.whl
.
File metadata
- Download URL: checkpointer-2.14.5-py3-none-any.whl
- Upload date:
- Size: 23.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b970960c99ddca5085e154af46a79896b3a77ac14eb371f4c869e1ca4d5004d0
|
|
MD5 |
2bd18a962d7dde3f2620c468d4b1729d
|
|
BLAKE2b-256 |
5d8694a2aff1c3352c558e7b3ed1b0f9b1f8b18b1f91081bbc40934790526cf1
|