Install & Compatibility
Where this runs
tested against v0.1.4 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 18.9MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.6s · import 0.000s · 19MB
17MB installed
● package 17MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
hydrate
✓ from hydraters import hydrate
✗ from hydraters import Hydrate
dehydrate
✓ from hydraters import dehydrate
strip_unmatched_markers
✓ from hydraters import strip_unmatched_markers
Basic usage: create a Hydrate instance with a class, then call .hydrate() on a dict.
from hydraters import Hydrate
# Define a simple class to hydrate
class Person:
def __init__(self, name: str, age: int):
self.name = name
self.age = age
# Create a Hydrate instance
hydrator = Hydrate(Person)
# Hydrate a dict into an instance
data = {"name": "Alice", "age": 30}
person = hydrator.hydrate(data)
print(person.name, person.age) # Alice 30
Upgrade
Version history
0.1.4latest on PyPI · released May 27, 2026
Audit
Dependencies
No dependency data recorded yet.