Skip to main content

json encoder uses singledispatch pattern instead of JSONEncoder class overwrites

Project description

  • json encoder uses singledispatch pattern instead of JSONEncoder class overwrites.

  • No more json.dumps(data, cls=MyJSONEncoder) everywhere.

  • Comes with default serialization for time, date, datetime, UUID and Decimal

  • Easy to use, easy to change serialization behaviour

  • Not tight to any json implementation json, simplejson, ujson

  • It parse json float numbers into Decimal objects to prevent python float precision issues.

https://travis-ci.org/NZME/json-encoder.svg?branch=master

Installation

$ pip install json-encoder

Quick start

  • Use “json_encoder.json” instead of default python json:

    from json_encoder import json
    
    result = json.dumps(data)

Configuration

  • Chose json implementation:

    # simplejson library is used as default json implementation if present
    # otherwise standard python json implementation is used
    # to use other json implementation globally, do:
    
    import ujson
    from json_encoder import use_json_library
    
    use_json_library(ujson)
  • To change json implementation for concrete call do:

    from json_encoder import json
    import simplejson
    
    result = json.dumps(data, json=simplejson)
  • To make your object JSON serializable do:

    # example how to make python fraction object json serializable
    
    from fractions import Fraction
    from json_encoder.encoder import json_encoder
    
    @json_encoder.register(Fraction)
    def encode_fraction(obj):
        return '{}/{}'.format(obj.numerator, obj.denominator)
  • To overwrite JSON serializer behaviour defined in json_encoder.encoder:

    from uuid import UUID
    from six import text_type
    from json_encoder.encoder import json_encoder
    
    @json_encoder.register(UUID)
    def encode_uuid(obj):
        return text_type(obj).replace('-', '')

Requirements

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-encoder-0.4.3.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file json-encoder-0.4.3.tar.gz.

File metadata

  • Download URL: json-encoder-0.4.3.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for json-encoder-0.4.3.tar.gz
Algorithm Hash digest
SHA256 694b1edf032206be44a5a65196059a11938104a137579d07afbcf02a2d9b5cab
MD5 34c2943e66c2c06bdcc53570b19ea590
BLAKE2b-256 6e4143f1b171406f37aef4d3a4e92cfd6f53defcb2df2c222a9ac7f32afc0c22

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