1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Source: jsonpickle
Section: python
Priority: optional
Maintainer: John Paulett <john@paulett.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends: debhelper (>= 7.0.50), python-support (>= 0.5.3), python (>= 2.4)
Standards-Version: 3.8.3
XS-Python-Version: >= 2.4
Vcs-Svn: svn://svn.debian.org/python-modules/packages/jsonpickle/trunk
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/jsonpickle/trunk/
Homepage: http://jsonpickle.github.com
Package: python-jsonpickle
Architecture: all
Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
Suggests: python-simplejson
XB-Python-Version: ${python:Versions}
Description: Python library for serializing arbitrary object graphs into JSON
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 stdlib’s 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
extendable–allowing the user to choose the JSON backend and add additional
backends.
|