Skip to main content

JSON encoder that handles datetime, Decimal, UUID, dataclasses, and sets without crashing

Project description

philiprehberger-safe-json

Tests PyPI version License

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

philiprehberger_safe_json-0.1.2.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

philiprehberger_safe_json-0.1.2-py3-none-any.whl (4.2 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_safe_json-0.1.2.tar.gz.

File metadata

File hashes

Hashes for philiprehberger_safe_json-0.1.2.tar.gz
Algorithm Hash digest
SHA256 73443e792a4e86c25e60b43cdf5b211cbffce8159f906c8f305edc7d44aeedc8
MD5 4159a54a8ecdcac9758cad81aa44d0f2
BLAKE2b-256 2d9a88b75578ac6562af006430c088f696fda14576565bf0cec98de69df8c731

See more details on using hashes here.

File details

Details for the file philiprehberger_safe_json-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_safe_json-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cae03c643ac72d1d46d689e17d9e53e9b8f15fed819066a14501a00dcd7e7225
MD5 5f8e51b07a8f572d1280290c7b7a1fe4
BLAKE2b-256 a6a56041cf2ea3cf63cf6782ea152f07c13478b73dfdc07c105ce32a3309ff51

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page