uqfoundation/dill
serialize all of Python observed · 2026-08-28
Health v2 · maintenance only
76/100
- Activity 98
- Release rhythm 34
- Longevity 100
Flags: no_license
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.
- gap_med: 238.5
- age_days: 4814
- days_rel: 226
- days_push: 16
- n_releases_24m: 3
Adoption not part of the score
2448 stars · 191 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
Dill is a Python library that extends the standard pickle module to serialize nearly all Python object types, including lambdas, nested functions, classes, and entire interpreter sessions. It provides the same interface as pickle and is part of the pathos heterogeneous computing framework.
Use cases
- serialize python objects that pickle cannot handle
- save and restore a python interpreter session
- send python objects across the network as a byte stream
- pickle lambdas and nested functions
- extract source code from functions and classes
- diagnose pickling errors
When to choose
- you need to serialize functions, lambdas, classes, or other objects that standard pickle fails on
- you want to checkpoint and resume an interpreter session
- you need to pass python objects to multiprocessing or distributed workers
When to avoid
- you need secure deserialization of untrusted data - dill is not safe against maliciously constructed data
- you only need to pickle simple built-in types - standard pickle suffices
- you need to serialize frames, generators, or tracebacks - dill cannot pickle these
Facets
library · maturity active
serialization developer-tools data-science python cross-platform pickle interpreter-session byte-stream pathos
2 sources
- readme: https://github.com/uqfoundation/dill · fetched 2026-08-28 · 0353eec10072
- registry_pypi: https://pypi.org/pypi/dill/json · fetched 2026-08-29 · 3531dafc9c95
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| uqfoundation/dill | main | 76 |
For agents
markdown · JSON · MCP: product_card(name="uqfoundation/dill")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem