Python library for serializing any arbitrary object graph into JSON https://github.com/jsonpickle/jsonpickle
Go to file
2024-07-22 10:40:30 +02:00
python-jsonpickle.spec automatic version update by autodist [release 3.2.2-1mamba;Sun Jul 21 2024] 2024-07-22 10:40:30 +02:00
README.md automatic update by autodist [release 0.6.1-1mamba;Sun Aug 25 2013] 2024-01-06 11:20:30 +01:00

python-jsonpickle

jsonpickle is a Python library for serialization and deserialization of complex Python objects to and from JSON.

The standard Python libraries for encoding Python into JSON, such as the stdlibs json, simplejson, and demjson, can only handle Python primitives that have a direct JSON equivalent (e.g. dicts, lists, strings, ints, etc.). jsonpickle builds on top of these libraries and allows more complex data structures to be serialized to JSON. jsonpickle is highly configurable and extendableallowing the user to choose the JSON backend and add additional backends.