Registry / serialization / paradict

paradict

JSON →
library0.0.16pypypi✓ verified 80d ago

Streamable multi-format serialization library for Python. Supports JSON, YAML, TOML, and custom formats with lazy loading and incremental parsing. Current version 0.0.16, early development, releases irregularly.

pip install paradict
INSTALL
IMPORT
SIG · PARADICT
P
paradict
serializationpythonv0.0.16
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Decoder
from paradict import Decoder
from paradict import Paradict
Encoder
from paradict import Encoder
from paradict import Paradict
decode
from paradict import decode
from paradict import Paradict

Create a Paradict instance, set a key, and serialize to JSON.

from paradict import Paradict p = Paradict() p['key'] = 'value' print(p.to_json()) # {"key": "value"}
Debug
Known issues
gotchaParadict does not validate schema or keys beyond basic type constraints; invalid types can raise unexpected errors.
fix
Ensure values are of supported types (str, int, float, bool, None, list, dict).
affects: all
gotchaThe library is early-stage (0.0.x) and may undergo breaking changes without deprecation warnings.
fix
Pin version in requirements (e.g., paradict>=0.0.16,<0.1.0) and test upgrades.
affects: <1.0.0
Upgrade
Version history
0.0.16latest on PyPI · released Dec 10, 2024
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
paradict — pip install paradict · libregistry