JSON encoder that handles datetime, Decimal, UUID, dataclasses, and sets without crashing
Project description
philiprehberger-safe-json
JSON encoder that handles datetime, Decimal, UUID, dataclasses, and sets without crashing.
Install
pip install philiprehberger-safe-json
Usage
from philiprehberger_safe_json import dumps, loads
data = {
"created": datetime(2026, 3, 13, 12, 0, 0),
"price": Decimal("19.99"),
"id": UUID("12345678-1234-5678-1234-567812345678"),
"tags": {"beta", "release"},
}
json_string = dumps(data)
parsed = loads(json_string)
Datetime and Date
from datetime import datetime, date
from philiprehberger_safe_json import dumps
dumps({"timestamp": datetime(2026, 1, 15, 9, 30, 0)})
# '{"timestamp": "2026-01-15T09:30:00"}'
dumps({"day": date(2026, 1, 15)})
# '{"day": "2026-01-15"}'
Decimal
from decimal import Decimal
from philiprehberger_safe_json import dumps
dumps({"price": Decimal("9.99")})
# '{"price": 9.99}'
dumps({"price": Decimal("9.99")}, decimal_as_string=True)
# '{"price": "9.99"}'
UUID
from uuid import UUID
from philiprehberger_safe_json import dumps
dumps({"id": UUID("abcdef01-2345-6789-abcd-ef0123456789")})
# '{"id": "abcdef01-2345-6789-abcd-ef0123456789"}'
Dataclasses
from dataclasses import dataclass
from philiprehberger_safe_json import dumps
@dataclass
class User:
name: str
age: int
dumps({"user": User(name="Alice", age=30)})
# '{"user": {"name": "Alice", "age": 30}}'
Sets and Frozensets
from philiprehberger_safe_json import dumps
dumps({"tags": {"c", "a", "b"}})
# '{"tags": ["a", "b", "c"]}'
Bytes
from philiprehberger_safe_json import dumps
dumps({"data": b"hello"})
# '{"data": "aGVsbG8="}'
Enums
from enum import Enum
from philiprehberger_safe_json import dumps
class Color(Enum):
RED = "red"
BLUE = "blue"
dumps({"color": Color.RED})
# '{"color": "red"}'
Path
from pathlib import Path
from philiprehberger_safe_json import dumps
dumps({"file": Path("/home/user/data.txt")})
# '{"file": "/home/user/data.txt"}'
Using SafeJsonEncoder Directly
import json
from philiprehberger_safe_json import SafeJsonEncoder
json.dumps({"key": some_value}, cls=SafeJsonEncoder)
API
| Name | Description |
|---|---|
SafeJsonEncoder |
json.JSONEncoder subclass that handles datetime, date, Decimal, UUID, dataclass, set, frozenset, bytes, Enum, and Path |
SafeJsonEncoder.decimal_as_string |
Class attribute; when True, Decimal values serialize as strings instead of floats (default: False) |
dumps(obj, *, decimal_as_string=False, **kwargs) |
Serialize to JSON string using SafeJsonEncoder. Accepts all json.dumps keyword arguments |
loads(s, **kwargs) |
Deserialize a JSON string. Pass-through to json.loads for API symmetry |
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 philiprehberger_safe_json-0.1.1.tar.gz.
File metadata
- Download URL: philiprehberger_safe_json-0.1.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4be10ed46b88c3836417b57ef2397849b0beb0e22e5a7a168481ad83804a65f4
|
|
| MD5 |
a56eb2a573977644564c0309b2db818e
|
|
| BLAKE2b-256 |
83cb28db16291b29a068c181a609bb7b40e23cc4dc9a6be3856c5046242f110c
|
File details
Details for the file philiprehberger_safe_json-0.1.1-py3-none-any.whl.
File metadata
- Download URL: philiprehberger_safe_json-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59f3b57e5835561da1cc5b536b88c3e6c5d65d24b39cff153a713b868dde0a02
|
|
| MD5 |
29385c875a70d2214b3303dc05cbe665
|
|
| BLAKE2b-256 |
9c3e7cffe1845aa90c75ac75b24efcb95bf1bbe32d3a22acc282627081e78f54
|