Taph creates objects that are guaranteed to be unchangeable, enabling predictable, pure functional programming patterns in Python.
Project description
Taph: Zero-Overhead Immutability for Python
Taph makes it easy to create deeply immutable objects in Python with zero runtime overhead and strong content-based hashing. Taph creates objects that are guaranteed to be unchangeable, enabling predictable, pure functional programming patterns in Python.
Taph's core value proposition: Fast & Reliable Immutability.
Core Features
- Zero-Overhead: Achieves immutability using Python's Method Resolution Order (MRO) and metaclass injection.
- Zero Dependencies: Core module built using the Python Standard Library.
- Simple & Fast: Clean APIs with excellent ergonomics.
- Memory Efficiency: Enforces
__slots__usage. - Deep Immutability: Recursively transforms nested mutable structures into immutable counterparts.
- Cryptographic Stability: Every object gets a deterministic content digest.
Usage
Taph provides 3 classes of immutable objects:
Recordfor instantiable data objectsManifestfor static constants.FrozenDictfor immutable mappings.
FrozenDict — Deeply Immutable Mapping
from taph import FrozenDict, freeze
# Create a deeply frozen, sorted dictionary
data = FrozenDict({"beta": 2, "alpha": 1, "gamma": 3})
# Lookup is executed via O(log N) bisection on raw byte digests
assert data["alpha"] == 1
# Underlying arrays are perfectly aligned and sorted
assert list(data) == ["alpha", "beta", "gamma"]
# Safe merging operations return new frozen instances
updated_data = data | {"delta": 4}
assert isinstance(updated_data, FrozenDict)
Record — Immutable Data Objects
from taph import Record
class User(Record):
__slots__ = ('user_id', 'username', 'email')
user_id: int
username: str
email: str
user = User(user_id=101, username="arch", email="arch@taph.io")
print(user.username)
print(user.hexdigest) # stable content hash
Supports keys(), items(), values(), get(), and __replace__() for safe updates.
Manifest — Static Constants
from taph import Manifest
class Config(Manifest):
__slots__ = ()
VERSION = "2.1.0"
DEBUG = False
TIMEOUT = 30
Non-instantiable. Perfect for configuration and constants.
FrozenDict — Immutable Mapping
from taph import FrozenDict, freeze
data = freeze({"a": [1, 2], "b": {"nested": True}})
assert isinstance(data["b"], FrozenDict)
Tools
from taph import freeze, thaw
# Deep freeze any structure
immutable = freeze({"items": [1, 2, 3]})
# Mutable copy
mutable = thaw(immutable)
Functional Style
Taph makes functional programming in Python safer and more predictable.
1. Pure Functions with Record
from taph import Record
class User(Record):
__slots__ = ('user_id', 'name', 'is_active')
user_id: int
name: str
is_active: bool = True
# Pure function - no side effects
def deactivate_user(user: User) -> User:
# Returns a new Record with updated value (copy-on-write)
return user.__replace__(is_active=False)
# Usage
user1 = User(user_id=101, name='Alice', is_active=True)
user2 = deactivate_user(user1)
print(user1.is_active) # → True
print(user2.is_active) # → False
assert user1 is not user2
2. Stateless Systems with Manifest
from taph import Manifest
class Config(Manifest):
__slots__ = ()
TIMEOUT_SECONDS = 30
SUPPORTED_METHODS = ('GET', 'POST')
API_VERSION = 'v2.1'
def is_request_valid(request_duration: int, method: str) -> bool:
# Totally predictable - depends only on inputs + immutable constants
if method not in Config.SUPPORTED_METHODS:
return False
return request_duration < Config.TIMEOUT_SECONDS
# Attempting to mutate constants will raise an error
# Config.TIMEOUT_SECONDS = 1 # Raises ImmutableError
Installation
pip install taph
License
Taph is licensed under the Apache License 2.0. See the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file taph-0.2.2-py3-none-any.whl.
File metadata
- Download URL: taph-0.2.2-py3-none-any.whl
- Upload date:
- Size: 47.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5da23ccc93249d41620a0e4ab237e5e525d474cee0b9cd7618591676b6b9f78
|
|
| MD5 |
42581cb04283737d8ee89dc7bcca517a
|
|
| BLAKE2b-256 |
9737841aa5347e9a7ff0185f1da8ac16b0bd8926b51175add567960955741f98
|