Skip to main content

This Python package provides an extended JSON encoder class, `JSONSerializer`, that enables encoding of complex Python data types such as `datetime.datetime`, `datetime.date`, `datetime.time`, `bytes` and `uuid`. It also supports objects that have a `to_json` method, allowing for customizable JSON encoding.

Project description

Extended JSON Encoder

The json-advanced is Python package provides an extended JSON encoder class, JSONSerializer, that enables encoding of complex Python data types such as datetime.datetime, datetime.date, datetime.time, bytes and uuid. It also supports objects that have a to_json method, allowing for customizable JSON encoding.

Features

  • Datetime Handling: Automatically converts datetime.datetime, datetime.date, and datetime.time objects to their string representation.
  • UUID Encoding: Encodes uuid objects as uuid strings.
  • Bytes Encoding: Encodes bytes objects as base64 strings, prefixed with b64:.
  • Custom Object Support: Encodes any object that has a to_json method by calling that method.

Installation

You can install the package directly from source:

pip install json-advanced

Usage

To use the JSONSerializer in your project, you need to import it and use it with the standard json module's dump or dumps functions:

import json
import datetime
import uuid

from json_advanced.json_encoder import JSONSerializer

# Example object containing various complex data types
data = {
    "now": datetime.datetime.now(),
    "today": datetime.date.today(),
    "time": datetime.datetime.now().time(),
    "bytes_data": b"example bytes",
    "uuid": uuid.uuid4(),
}

# Serialize the object to a JSON string
json_string = json.dumps(data, cls=JSONSerializer)
print(json_string)

Extending the Serializer

If you have custom types that you want to serialize, you can extend JSONSerializer by overriding the default method. Ensure you call super().default(obj) for types you do not handle:

class MyCustomSerializer(JSONSerializer):
    def default(self, obj):
        if isinstance(obj, MyCustomType):
            return obj.custom_serialize()
        return super().default(obj)

Contributions

Contributions are welcome! Please open an issue or pull request on GitHub if you have suggestions or improvements.

License

This package is licensed under the MIT License - see the LICENSE file for details.

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_advanced-0.13.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

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

json_advanced-0.13.0-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file json_advanced-0.13.0.tar.gz.

File metadata

  • Download URL: json_advanced-0.13.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for json_advanced-0.13.0.tar.gz
Algorithm Hash digest
SHA256 0e8b9b28596e96b062460099d89d5d0dd9083c81e7eb351cbfb70fc82b6f2b08
MD5 c63673cd52550d63ab45d2451212480a
BLAKE2b-256 552130e167c777feb9a324df3cf1511928d293e10101194a5f74aba96fc3d81e

See more details on using hashes here.

File details

Details for the file json_advanced-0.13.0-py3-none-any.whl.

File metadata

  • Download URL: json_advanced-0.13.0-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for json_advanced-0.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 12dab918cacf0a101721da35136937f6a7560f42f002ffb352f91d6fd7204cf5
MD5 9c681b626fd15243a0e9378dd329d359
BLAKE2b-256 48fff06e1109020fab3ec44d8fb1c95be81554864d8a15bccfa49d8df435f9c4

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