Skip to main content

A Python library that simplifies serializing any Python object to JSON-friendly structures, gracefully handling circular references.

Project description

pyobjtojson banner

pyobjtojson

A lightweight Python library that simplifies the process of serializing any Python object into a JSON-friendly structure without getting tripped up by circular references. With built-in support for dataclasses, Pydantic (v1 & v2), and standard Python collections, pyobjtojson helps you convert your objects into a cycle-free, JSON-ready format for logging, storage, or data transfer.

Features

  • Automatic Circular Reference Detection Detects and replaces cyclical structures with "<circular reference>" to prevent infinite loops.
  • Broad Compatibility Works seamlessly with dictionaries, lists, custom classes, dataclasses, and Pydantic models (including both model_dump() from v2 and dict() from v1).
  • Extended Standard Types Support Native support for datetime, date, time, UUID, Decimal, bytes, Enum, Path, set, and frozenset.
  • Full Type Hints Support Complete type annotations for better IDE autocomplete, type checking with mypy, and improved code documentation.
  • Non-Intrusive Serialization No special inheritance or overrides needed. Uses reflection and standard Python methods (__dict__, asdict(), to_dict(), etc.) where available.
  • Easy to Integrate Just call obj_to_json() on your data structure—no additional configuration required.

DeepWiki Docs: https://deepwiki.com/carlosplanchon/pyobjtojson

Installation with uv:

uv add pyobjtojson

Quickstart

1. Basic Usage

from pyobjtojson import obj_to_json

# A simple dictionary with lists
data = {
    "key1": "value1",
    "key2": [1, 2, 3],
    "nested": {"inner_key": "inner_value"}
}

json_obj = obj_to_json(data)  # Using json.dumps kwargs

Output (example):

{
  "key1": "value1",
  "key2": [
    1,
    2,
    3
  ],
  "nested": {
    "inner_key": "inner_value"
  }
}

2. Handling Circular References

from pyobjtojson import obj_to_json

a = {"name": "A"}
b = {"circular": a}
a["b"] = b  # Creates a circular reference

obj_to_json(a, check_circular=True)  # check_circular is True by default.

Output:

{
  "name": "A",
  "b": {
    "circular": {
      "name": "A",
      "b": "<circular reference>"
    }
  }
}

3. Working with Dataclasses and Pydantic

from dataclasses import dataclass
from pydantic import BaseModel
from pyobjtojson import obj_to_json

@dataclass
class MyDataClass:
    title: str
    value: int

class MyModel(BaseModel):
    name: str
    age: int

dataclass_instance = MyDataClass(title="Test", value=123)
pydantic_instance = MyModel(name="Alice", age=30)

obj = {
    "dataclass": dataclass_instance,
    "pydantic": pydantic_instance
}

obj_to_json(obj)

Output:

{
  "dataclass": {
    "title": "Test",
    "value": 123
  },
  "pydantic": {
    "name": "Alice",
    "age": 30
  }
}

4. Standard Python Types

pyobjtojson now supports many standard Python types out of the box:

from datetime import datetime, date, time
from decimal import Decimal
from enum import Enum
from pathlib import Path
from uuid import UUID
from pyobjtojson import obj_to_json

class Status(Enum):
    ACTIVE = "active"
    INACTIVE = "inactive"

data = {
    "timestamp": datetime(2024, 1, 15, 10, 30, 45),
    "date": date(2024, 1, 15),
    "time": time(14, 30, 0),
    "id": UUID("12345678-1234-5678-1234-567812345678"),
    "price": Decimal("99.99"),
    "binary": b"Hello",
    "status": Status.ACTIVE,
    "path": Path("/home/user/file.txt"),
    "tags": {"python", "json", "api"}
}

obj_to_json(data)

Output:

{
  "timestamp": "2024-01-15T10:30:45",
  "date": "2024-01-15",
  "time": "14:30:00",
  "id": "12345678-1234-5678-1234-567812345678",
  "price": 99.99,
  "binary": "SGVsbG8=",
  "status": "active",
  "path": "/home/user/file.txt",
  "tags": ["api", "json", "python"]
}

Supported Standard Types:

  • datetime, date, time → ISO format strings
  • UUID → string representation
  • Decimal → float (default) or string (with decimal_as_float=False)
  • bytes, bytearray → base64 encoded strings
  • Enum → underlying value
  • Path → string representation
  • set, frozenset → sorted lists

API Reference

obj_to_json(obj, check_circular=True, decimal_as_float=True)

Returns a cycle-free structure (nested dictionaries/lists) that is JSON-serializable.

Parameters:

  • obj (Any): The object to serialize to JSON-like structures.
  • check_circular (bool, optional): If True (default), detect and mark circular references as "<circular reference>".
  • decimal_as_float (bool, optional): If True (default), convert Decimal to float. If False, convert to string for high precision.

Returns:

  • dict | list | Any: A JSON-serializable structure.

Type Hints

pyobjtojson is fully typed and passes strict mypy checking. This provides:

  • Better IDE Support: Autocomplete and inline documentation
  • Type Safety: Catch errors before runtime with mypy
  • Clear API: Type annotations serve as documentation
from typing import Any
from pyobjtojson import obj_to_json

# Your IDE will provide autocomplete and type checking
def serialize_data(data: dict[str, Any]) -> Any:
    return obj_to_json(
        data,
        check_circular=True,    # bool
        decimal_as_float=False  # bool
    )

To check types in your project:

mypy your_code.py

Contributing

Contributions, bug reports, and feature requests are welcome! Feel free to open an issue or submit a pull request.

License

MIT License

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

pyobjtojson-0.6.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

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

pyobjtojson-0.6-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file pyobjtojson-0.6.tar.gz.

File metadata

  • Download URL: pyobjtojson-0.6.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for pyobjtojson-0.6.tar.gz
Algorithm Hash digest
SHA256 85267e72a4fe2d2e6b26599662bb00ee92a5d7e03889b12fbfe477550f59b308
MD5 a8e208708f56cc230fd5451a87dda385
BLAKE2b-256 813729331a79add507338b982cdde7f528f76d61b309688dc020f33e278f0c9e

See more details on using hashes here.

File details

Details for the file pyobjtojson-0.6-py3-none-any.whl.

File metadata

  • Download URL: pyobjtojson-0.6-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for pyobjtojson-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 1335ad951e7e7199271729f1670ff972a1dd5b9c4331592ee1c3e3c11d856b85
MD5 1d996c0db82294accdf3d87293799e10
BLAKE2b-256 bccd510d4afbefd9c42d8acb0a9ea3323750eed74d4caa9c3a13f5d9d8f75113

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