File: index.rst

package info (click to toggle)
jsonpickle 3.0.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,184 kB
  • sloc: python: 6,088; javascript: 654; makefile: 90; sh: 17
file content (101 lines) | stat: -rw-r--r-- 2,410 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
========================
jsonpickle Documentation
========================

``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 and simplejson 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.

.. contents::

jsonpickle Usage
================

.. automodule:: jsonpickle

Download & Install
==================

The easiest way to get jsonpickle is via PyPi_ with pip_::

    $ pip install -U jsonpickle

jsonpickle has no required dependencies (it uses the standard library's
:mod:`json` module by default).

You can also download or :ref:`checkout <jsonpickle-contrib-checkout>` the
latest code and install from source::

    $ python setup.py install

.. _PyPi: https://pypi.org/project/jsonpickle/
.. _pip: https://pypi.org/project/pip/
.. _download: https://pypi.org/project/jsonpickle/


API Reference
=============

.. toctree::

   api

Extensions
==========

.. toctree::

   extensions

Contributing
============

.. toctree::

   contrib

Contact
=======

Please join our `mailing list <https://groups.google.com/group/jsonpickle>`_.
You can send email to *jsonpickle@googlegroups.com*.

Check https://github.com/jsonpickle/jsonpickle for project updates.


Authors
=======

 * John Paulett - john -at- paulett.org - https://github.com/johnpaulett
 * David Aguilar - davvid -at- gmail.com - https://github.com/davvid
 * Theelx - https://github.com/Theelx
 * Dan Buch - https://github.com/meatballhat
 * Ian Schenck - https://github.com/ianschenck
 * David K. Hess - https://github.com/davidkhess
 * Alec Thomas - https://github.com/alecthomas
 * jaraco - https://github.com/jaraco
 * Marcin Tustin - https://github.com/marcintustin


Change Log
==========

.. toctree::
   :maxdepth: 2

   history

License
=======

jsonpickle is provided under a
`New BSD license <https://github.com/jsonpickle/jsonpickle/raw/main/COPYING>`_,

Copyright (C) 2008-2011 John Paulett (john -at- paulett.org)
Copyright (C) 2009-2021 David Aguilar (davvid -at- gmail.com)