Skip to main content

Extensible default function for JSONEncoder

Project description

Overview

Whilst looking about to see if anyone had proposed a __json__ protocol for Python, I found this article and it struck me as so simple and obviously right.

So, I decided to provide a lib to make it easier for everyone.

Usage

Just pass json_default.default as the default function when calling json.dump(s).

import json

from json_default import default

...

return json.dumps(mydata, default=default)

If you have more types you want to define serialisation for, just add them:

from json_default import default


@default.register(mytype):
def _(obj):
    ...

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

json_default-0.2.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

json_default-0.2-py2.py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 2 Python 3

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