Skip to main content

Easily Extend the JSON Encoder with Custom Rules

Project description

Configurable JSON Encoder

By default, the json.Encoder class' logic can only be customized to a certain extent:

  • a 'default' method can be overwritten to encode objects that JSON can't serialize by default;
  • an 'encode' method can be overwritten to fully rewrite the encoding logic, which is powerful but can be hard to change if you need to change the specific behavior for a type in a nested structure;
  • an 'iterencode' method can be overwritten to handle the recursive behavior of the JSON encoder, but this method uses functions under the hood that are not defined as class methods but rather as functions in the encoder module (c_make_encoder and _make_iterencode), which thus can not be overwritten by class inheritance.

This module aims to help make adding custom rules to the JSON encoder easier, by injecting a middle layer ConfigurableJsonEncoder which essentially uses a copied and slightly modified version of _make_iterencode from the original module.

Some examples of things you can do with this module (see examples.py for the actual rules)

from examples import *

data = {
    'original': ['behavior'],
    'set': {1, 2, 3},
    'namedtuple': Letters('a', 'b', 'c'),
    "class": MyClass()
}
try:
    print(json.dumps(data))
except TypeError:
    ...  # Object of type set is not JSON serializable

# default behavior without type error:
print(json.dumps(data, default=str))
# {"original": ["behavior"], "set": "{1, 2, 3}", "namedtuple": ["a", "b", "c"], "class": "<__main__.MyClass object at 0x...>"}

# the same behavior as above
print(json.dumps(data, cls=DummyEncoder))
# {"original": ["behavior"], "set": "{1, 2, 3}", "namedtuple": ["a", "b", "c"], "class": "<__main__.MyClass object at 0x...>"}

# encodes set into a list:
print(json.dumps(data, cls=SetEncoder))
# {"original": ["behavior"], "set": [1, 2, 3], "namedtuple": ["a", "b", "c"], "class": "<__main__.MyClass object at 0x...>"}

# calls .tojson() which uses transform to output a string
print(json.dumps(data, cls=ToJSONEncoder))
# {"original": ["behavior"], "set": "{1, 2, 3}", "namedtuple": ["a", "b", "c"], "class": ["my", "data", "as", "json"]}

# converts namedtuple to a dictionary instead of a list (the default behavior)
print(json.dumps(data, cls=MyEncoder))
# {"original": ["behavior"], "set": [1, 2, 3], "namedtuple": {"a": "a", "b": "b", "c": "c"}, "class": {"my data": ["as", "a", "dict"]}}

Usage:

Simply extend ConfigurableJsonEncoder with a rules method that returns a JSONRule or None based on the input o (which is one unit in the nested data tree). Again, see examples.py for inspiration.

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

configurable_json-1.1.0.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

configurable_json-1.1.0-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file configurable_json-1.1.0.tar.gz.

File metadata

  • Download URL: configurable_json-1.1.0.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for configurable_json-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8f6122c6e57afb816b13aeec883bd779d30cb1eb6daed5fdc2fd34f344baabf3
MD5 7188e294d8fb6fc6dc332fb4d9737f82
BLAKE2b-256 d45f62f70e9ddb41227c4f722b1654730628028236ca8abe413249a2e8fe4bb4

See more details on using hashes here.

File details

Details for the file configurable_json-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for configurable_json-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da3cc918da63e76486dd08ed245ea7345cf318ec5babb056113222dbab5607fb
MD5 c58f1a55d90769d517811b15f4b50f84
BLAKE2b-256 6174587f36038da4bce7d9341e1eba2244d4c9b95fe295b8fe220f8fa4c0f77c

See more details on using hashes here.

Supported by

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