Skip to main content

jsonpickle encodes/decodes any Python object to/from JSON

Reason this release was yanked:

Included breaking changes intended for v4.0.0

Project description

https://img.shields.io/pypi/v/jsonpickle.svg https://img.shields.io/pypi/pyversions/jsonpickle.svg https://readthedocs.org/projects/jsonpickle/badge/?version=latest Github Actions BSD

jsonpickle

jsonpickle is a library for the two-way conversion of complex Python objects and JSON. jsonpickle builds upon existing JSON encoders, such as simplejson, json, and ujson.

For complete documentation, please visit the jsonpickle documentation.

Bug reports and merge requests are encouraged at the jsonpickle repository on github.

Usage

The following is a very simple example of how one can use jsonpickle in their scripts/projects. Note the usage of jsonpickle.encode and decode, and how the data is written/encoded to a file and then read/decoded from the file.

import jsonpickle
from dataclasses import dataclass

@dataclass
class Example:
    data: str


ex = Example("value1")
encoded_instance = jsonpickle.encode(ex)
assert encoded_instance == '{"py/object": "__main__.Example", "data": "value1"}'

with open("example.json", "w+") as f:
    f.write(encoded_instance)

with open("example.json", "r+") as f:
    written_instance = f.read()
    decoded_instance = jsonpickle.decode(written_instance)
assert decoded_instance == ex

For more examples, see the examples directory on GitHub for example scripts. These can be run on your local machine to see how jsonpickle works and behaves, and how to use it. Contributions from users regarding how they use jsonpickle are welcome!

Why jsonpickle?

Data serialized with python’s pickle (or cPickle or dill) is not easily readable outside of python. Using the json format, jsonpickle allows simple data types to be stored in a human-readable format, and more complex data types such as numpy arrays and pandas dataframes, to be machine-readable on any platform that supports json. E.g., unlike pickled data, jsonpickled data stored in an Amazon S3 bucket is indexible by Amazon’s Athena.

Security

jsonpickle should be treated the same as the Python stdlib pickle module from a security perspective.

Install

Install from pip for the latest stable release:

pip install jsonpickle

Install from github for the latest changes:

pip install git+https://github.com/jsonpickle/jsonpickle.git

Numpy/Pandas Support

jsonpickle includes built-in numpy and pandas extensions. If you would like to encode sklearn models, numpy arrays, pandas DataFrames, and other numpy/pandas-based data, then you must enable the numpy and/or pandas extensions by registering their handlers:

>>> import jsonpickle.ext.numpy as jsonpickle_numpy
>>> import jsonpickle.ext.pandas as jsonpickle_pandas
>>> jsonpickle_numpy.register_handlers()
>>> jsonpickle_pandas.register_handlers()

Development

Use make to run the unit tests:

make test

pytest is used to run unit tests internally.

A tox target is provided to run tests using all installed and supported Python versions:

make tox

jsonpickle itself has no dependencies beyond the Python stdlib. tox is required for testing when using the tox test runner only.

The testing requirements are specified in setup.cfg. It is recommended to create a virtualenv and run tests from within the virtualenv.:

python3 -mvenv env3
source env3/bin/activate
pip install --editable '.[dev]'
make test

You can also use a tool such as vx to activate the virtualenv without polluting your shell environment:

python3 -mvenv env3
vx env3 pip install --editable '.[dev]'
vx env3 make test

If you can’t use a venv, you can install the testing packages as follows:

pip install .[testing]

jsonpickle supports multiple Python versions, so using a combination of multiple virtualenvs and tox is useful in order to catch compatibility issues when developing.

GPG Signing

Unfortunately, while versions of jsonpickle before 3.0.1 should still be signed, GPG signing support was removed from PyPi (https://blog.pypi.org/posts/2023-05-23-removing-pgp/) back in May 2023.

License

Licensed under the BSD License. See COPYING 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

jsonpickle-3.4.1.tar.gz (316.6 kB view details)

Uploaded Source

Built Distribution

jsonpickle-3.4.1-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

File details

Details for the file jsonpickle-3.4.1.tar.gz.

File metadata

  • Download URL: jsonpickle-3.4.1.tar.gz
  • Upload date:
  • Size: 316.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.9

File hashes

Hashes for jsonpickle-3.4.1.tar.gz
Algorithm Hash digest
SHA256 411d46e1f2e6eedeb15b4fb1e8b9e152bf710d1130432b61836005bc9240393d
MD5 3f40cbb123f51021f82d756ce256d03a
BLAKE2b-256 4eff793a1dbea3a68a71c3795cf09966829116d80d5133ddc8428fbdabdcaf44

See more details on using hashes here.

File details

Details for the file jsonpickle-3.4.1-py3-none-any.whl.

File metadata

  • Download URL: jsonpickle-3.4.1-py3-none-any.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.9

File hashes

Hashes for jsonpickle-3.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5ca9c9a3a2d8e0d72f72969cf3c8483b0bc1d7adf961379191a4e27d975ed823
MD5 7171c9df41116917f5116fbb277b31d9
BLAKE2b-256 d3c1c445eaae5ef3f536d5c8d274fb9868b0079f563f80a5af5d4586120f33c3

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