Skip to main content

pygraph

Safe, fast, schema-evolvable Python object graph serialization powered by Rust.

Features

  • Drop-in pickle APIdumps/loads/dump/load with the same signatures
  • Zero arbitrary code execution — no __reduce__ or __setstate__ calls during deserialization
  • Schema versioning — migration hooks for evolving your data models
  • Zero-copy tensor support — NumPy and PyTorch integration
  • Rust-native performance — PyO3 bindings for speed
  • Pickle-compatible streamingPickler/Unpickler classes, PickleBuffer (PEP 574)
  • HMAC integrity — optional tamper detection on serialized data

Installation

pip install pygraph

For tensor support:

pip install pygraph[numpy]
pip install pygraph[torch]
pip install pygraph[all]

Quick Start

import pygraph

# Serialize
data = {"key": "value", "numbers": [1, 2, 3]}
encoded = pygraph.dumps(data)

# Deserialize
decoded = pygraph.loads(encoded)
assert decoded == data

Schema Evolution

Define versioned dataclasses and register migrations:

from dataclasses import dataclass
import pygraph

@dataclass
class User:
    name: str
    age: int
    email: str = ""
    __pygraph_version__ = 2

@pygraph.migrate(from_version=1, to_version=2, type_name="User")
def migrate_v1_to_v2(state: dict) -> dict:
    """V1 had 'name' + 'age', V2 adds 'email'."""
    state["email"] = ""
    state["__pygraph_version__"] = 2
    return state

How it works

  • Set __pygraph_version__ as a class attribute on your dataclass
  • Register migration functions with @pygraph.migrate(from_version=N, to_version=M, type_name="ClassName")
  • Migration functions receive a dict of the old state and return a dict with the new state
  • Chains of migrations are resolved automatically (e.g., v1 → v2 → v3)

Pickler / Unpickler

Use pickle-compatible streaming classes:

import pygraph
import io

# Streaming dump
buf = io.BytesIO()
pickler = pygraph.Pickler(buf, protocol=5)
pickler.dump({"data": [1, 2, 3]})

# Streaming load
buf.seek(0)
unpickler = pygraph.Unpickler(buf)
result = unpickler.load()

Security

pygraph never calls __reduce__, __setstate__, or any arbitrary code during deserialization. Only allowlisted types can be loaded.

# Restrict deserialization to specific types
pygraph.loads(data, allowlist={"builtins.dict", "builtins.list"})

Allowlisted types

By default, pygraph supports:

Type Notes
None, bool, int, float Primitives
str, bytes Strings and binary
list, tuple Sequences
dict Mappings
set, frozenset Sets
dataclasses Any @dataclass instance

Any type not in this list raises UnsafeTypeError unless added to the allowlist.

Integrity verification

key = b"my-secret-key"
encoded = pygraph.dumps(data, hmac_key=key)
decoded = pygraph.loads(encoded, hmac_key=key)  # raises HMACError if tampered

Benchmarks

Run the benchmark suite to compare pygraph vs pickle:

pytest benchmarks/ -v --benchmark-only

Development

# Install dev tools
pip install -e ".[dev]"

# Build the Rust extension
maturin develop

# Run tests
cargo nextest run
pytest tests/ -v

License

AGPL-3.0-only

Release files for pysafe-pickle 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for pysafe-pickle 1.0.0
File Interpreter ABI Platform
pysafe_pickle-1.0.0-cp310-abi3-win_amd64.whl CPython 3.10 abi3 Windows x86-64 Details
pysafe_pickle-1.0.0-cp310-abi3-manylinux_2_34_x86_64.whl CPython 3.10 abi3 Linux glibc 2.34+ x86-64 Details
pysafe_pickle-1.0.0-cp310-abi3-macosx_11_0_arm64.whl CPython 3.10 abi3 macOS 11.0+ ARM64 Details

Total release size: 683.8 kB

Release files / pysafe_pickle-1.0.0-cp310-abi3-win_amd64.whl

Download URL pysafe_pickle-1.0.0-cp310-abi3-win_amd64.whl
Size 160.4 kB
Tags CPython 3.10 Windows x86-64 abi3
SHA-256 checksum
How to use checksums
cce1825408b88f915af4f0818add82134aec80847f817fee5cf7fcbdd9ce9a9c
BLAKE2b-256 checksum
How to use checksums
3eb6651dd209d7f3bd07221ca2df27680d75fe3f2542c61b39a626487fea8195
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / pysafe_pickle-1.0.0-cp310-abi3-manylinux_2_34_x86_64.whl

Download URL pysafe_pickle-1.0.0-cp310-abi3-manylinux_2_34_x86_64.whl
Size 272.9 kB
Tags CPython 3.10 Linux glibc 2.34+ x86-64 abi3
SHA-256 checksum
How to use checksums
928b15f285041bfa1cad7a478137e97578fcdb5762701a41ed86031e1532f1ea
BLAKE2b-256 checksum
How to use checksums
26395bb98990af661095934dda8b0dd44f8b7003ebb2af36d77f60cccb90e324
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release files / pysafe_pickle-1.0.0-cp310-abi3-macosx_11_0_arm64.whl

Download URL pysafe_pickle-1.0.0-cp310-abi3-macosx_11_0_arm64.whl
Size 250.5 kB
Tags CPython 3.10 abi3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
65e6f0cc8289cdbf531e623df5ba4bea4bc1964195c0787f5a2c1b475f248460
BLAKE2b-256 checksum
How to use checksums
2a0007feafd27ea0a7e039517b57467fd76fd4675516e03bfe76a9a9cd756aa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 13, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.0

3 release files

1.0.1

3 release files

This release

1.0.0 This release

3 release files

0.1.0

6 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page