| 1 |
Source: jsonpickle
|
| 2 |
Section: python
|
| 3 |
Priority: optional
|
| 4 |
Maintainer: John Paulett <john@paulett.org>
|
| 5 |
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
|
| 6 |
Build-Depends: cdbs (>= 0.4.49), debhelper (>= 7), python-support (>= 0.5.3), python (>= 2.4)
|
| 7 |
Standards-Version: 3.8.3
|
| 8 |
XS-Python-Version: >= 2.4
|
| 9 |
Vcs-Svn: svn://svn.debian.org/python-modules/packages/jsonpickle/trunk
|
| 10 |
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/jsonpickle/trunk/
|
| 11 |
Homepage: http://jsonpickle.github.com
|
| 12 |
|
| 13 |
Package: python-jsonpickle
|
| 14 |
Architecture: all
|
| 15 |
Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.4)
|
| 16 |
Suggests: python-simplejson
|
| 17 |
XB-Python-Version: ${python:Versions}
|
| 18 |
Description: Python library for serializing arbitrary object graphs into JSON
|
| 19 |
jsonpickle is a Python library for serialization and deserialization of
|
| 20 |
complex Python objects to and from JSON. The standard Python libraries for
|
| 21 |
encoding Python into JSON, such as the stdlib’s json, simplejson, and
|
| 22 |
demjson, can only handle Python primitives that have a direct JSON
|
| 23 |
equivalent (e.g. dicts, lists, strings, ints, etc.). jsonpickle builds on
|
| 24 |
top of these libraries and allows more complex data structures to be
|
| 25 |
serialized to JSON. jsonpickle is highly configurable and
|
| 26 |
extendable–allowing the user to choose the JSON backend and add additional
|
| 27 |
backends.
|
| 28 |
|