noirbizarre/json4humans

View on GitHub
docs/snippets/json/basic.py

Summary

Maintainability
A
2 hrs
Test Coverage
from json4humans import json

DATA = """
{
    "key": "value"
}
"""

# Loads data from string
data = json.loads(DATA)

# Manipulate using the native types interfaces
assert data["key"] == "value"

# Serialize with style preservation
assert json.dumps(data) == DATA