Skip to main content

Json serialization extended to dates, numpy arrays, and more

Project description

json_np

Json for numpy, or if you prefer, json no problems!

Authors: Luca de Alfaro (luca@dealfaro.com) and Massimo Di Pierro (mdipierro@gmail.com)

This is a version of Json that can handle also:

  • Dates
  • Sets
  • numpy array
  • bytes

There are two ways to use it.

Basic Usage

import json_np
import numpy as np

a = np.array([3, 4, 5])
s = json_np.dumps(a)
aa = json_np.loads(s)

Here, we have applied json_np.dumps to a numpy array, but we could equally well have used a datetime, a dictionary, a list, etc (nesting of such types is allowed).

Class-Based Usage

You can also dump any object. All object attributes, except those whose name begins with underscore (_), will be serialized. Optionally, if serializable_only is True, only objects that are instances of Serializable, or that are dates, numpy arrays, will be serialized.

The deserialization happens in the same class, if:

  • the class can be loaded
  • the class initializer has no required arguments.

If any of these two conditions is not met, the deserialization happens using the Serializable class.

from json_np import Serializable

class C(object):

    def __init__(self, a=8):
        super().__init__()
        self.a = a # Serialized
        self._b = 32 # Not serialized

c = C("hello")
s = json_np.dumps(c)
cc = json_np.loads(s)

Obviously, you should ensure that C contains compatible fields when it is deserialized, in case the code changed in the meantime.

History

This package was originally developed by Luca and Massimo at Camio, for Python2. The work was open sourced. The package was later ported to Python 3. The authors thank Camio for allowing the open-sourcing of the code.

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_np-0.0.6.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

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

json_np-0.0.6-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file json_np-0.0.6.tar.gz.

File metadata

  • Download URL: json_np-0.0.6.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.11

File hashes

Hashes for json_np-0.0.6.tar.gz
Algorithm Hash digest
SHA256 57729862ec4587ce47fbbda135996e0b4f1da4abd95a90b916c6536d41f3e7f4
MD5 527b8922fb4a693b9898a0455f8c1fd8
BLAKE2b-256 ff8543aecfef9ff54e6d015956b679b1d3868147c03564325f0df467ec71a9b4

See more details on using hashes here.

File details

Details for the file json_np-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: json_np-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.11

File hashes

Hashes for json_np-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f4df28b89684fc81abc36803681ae44fa6ee34ae26049400686d0d69243f88fe
MD5 8786179fd91e58055cefb1a64ce22b8a
BLAKE2b-256 651cebe40e7b3b5a1e5429dafe83d1b2a7cc9a3b59cc09390f87381774095c57

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