blob: 7b69c241865f3e9d9bff493a48e5ed609d5d3ede [file] [log] [blame]
Christian Heimes90540002008-05-08 14:29:10 +00001:mod:`json` --- JSON encoder and decoder
2========================================
3
4.. module:: json
5 :synopsis: Encode and decode the JSON format.
6.. moduleauthor:: Bob Ippolito <bob@redivi.com>
7.. sectionauthor:: Bob Ippolito <bob@redivi.com>
Christian Heimes90540002008-05-08 14:29:10 +00008
Antoine Pitrou331624b2012-08-24 19:37:23 +02009`JSON (JavaScript Object Notation) <http://json.org>`_, specified by
10:rfc:`4627`, is a lightweight data interchange format based on a subset of
11`JavaScript <http://en.wikipedia.org/wiki/JavaScript>`_ syntax (`ECMA-262 3rd
12edition <http://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf>`_).
Christian Heimes90540002008-05-08 14:29:10 +000013
14:mod:`json` exposes an API familiar to users of the standard library
15:mod:`marshal` and :mod:`pickle` modules.
16
17Encoding basic Python object hierarchies::
Georg Brandl48310cd2009-01-03 21:18:54 +000018
Christian Heimes90540002008-05-08 14:29:10 +000019 >>> import json
20 >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
21 '["foo", {"bar": ["baz", null, 1.0, 2]}]'
Neal Norwitz752abd02008-05-13 04:55:24 +000022 >>> print(json.dumps("\"foo\bar"))
Christian Heimes90540002008-05-08 14:29:10 +000023 "\"foo\bar"
Benjamin Peterson2505bc62008-05-15 02:17:58 +000024 >>> print(json.dumps('\u1234'))
Christian Heimes90540002008-05-08 14:29:10 +000025 "\u1234"
Neal Norwitz752abd02008-05-13 04:55:24 +000026 >>> print(json.dumps('\\'))
Christian Heimes90540002008-05-08 14:29:10 +000027 "\\"
Neal Norwitz752abd02008-05-13 04:55:24 +000028 >>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
Christian Heimes90540002008-05-08 14:29:10 +000029 {"a": 0, "b": 0, "c": 0}
Benjamin Peterson2505bc62008-05-15 02:17:58 +000030 >>> from io import StringIO
Christian Heimes90540002008-05-08 14:29:10 +000031 >>> io = StringIO()
32 >>> json.dump(['streaming API'], io)
33 >>> io.getvalue()
34 '["streaming API"]'
35
36Compact encoding::
37
38 >>> import json
Éric Araujode579d42011-04-21 02:37:41 +020039 >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
Christian Heimes90540002008-05-08 14:29:10 +000040 '[1,2,3,{"4":5,"6":7}]'
41
42Pretty printing::
43
44 >>> import json
Ezio Melottid654ded2012-11-29 00:35:29 +020045 >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True,
46 ... indent=4, separators=(',', ': ')))
Christian Heimes90540002008-05-08 14:29:10 +000047 {
Georg Brandl48310cd2009-01-03 21:18:54 +000048 "4": 5,
Christian Heimes90540002008-05-08 14:29:10 +000049 "6": 7
50 }
51
52Decoding JSON::
Georg Brandl48310cd2009-01-03 21:18:54 +000053
Christian Heimes90540002008-05-08 14:29:10 +000054 >>> import json
55 >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
Benjamin Peterson2505bc62008-05-15 02:17:58 +000056 ['foo', {'bar': ['baz', None, 1.0, 2]}]
Christian Heimes90540002008-05-08 14:29:10 +000057 >>> json.loads('"\\"foo\\bar"')
Benjamin Peterson2505bc62008-05-15 02:17:58 +000058 '"foo\x08ar'
59 >>> from io import StringIO
Christian Heimes90540002008-05-08 14:29:10 +000060 >>> io = StringIO('["streaming API"]')
61 >>> json.load(io)
Benjamin Peterson2505bc62008-05-15 02:17:58 +000062 ['streaming API']
Christian Heimes90540002008-05-08 14:29:10 +000063
64Specializing JSON object decoding::
65
66 >>> import json
67 >>> def as_complex(dct):
68 ... if '__complex__' in dct:
69 ... return complex(dct['real'], dct['imag'])
70 ... return dct
Benjamin Peterson2505bc62008-05-15 02:17:58 +000071 ...
Christian Heimes90540002008-05-08 14:29:10 +000072 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
73 ... object_hook=as_complex)
74 (1+2j)
75 >>> import decimal
76 >>> json.loads('1.1', parse_float=decimal.Decimal)
77 Decimal('1.1')
78
79Extending :class:`JSONEncoder`::
Georg Brandl48310cd2009-01-03 21:18:54 +000080
Christian Heimes90540002008-05-08 14:29:10 +000081 >>> import json
82 >>> class ComplexEncoder(json.JSONEncoder):
83 ... def default(self, obj):
84 ... if isinstance(obj, complex):
85 ... return [obj.real, obj.imag]
86 ... return json.JSONEncoder.default(self, obj)
Benjamin Peterson2505bc62008-05-15 02:17:58 +000087 ...
Georg Brandl0bb73b82010-09-03 22:36:22 +000088 >>> json.dumps(2 + 1j, cls=ComplexEncoder)
Christian Heimes90540002008-05-08 14:29:10 +000089 '[2.0, 1.0]'
90 >>> ComplexEncoder().encode(2 + 1j)
91 '[2.0, 1.0]'
92 >>> list(ComplexEncoder().iterencode(2 + 1j))
Georg Brandl0bb73b82010-09-03 22:36:22 +000093 ['[2.0', ', 1.0', ']']
Georg Brandl48310cd2009-01-03 21:18:54 +000094
Christian Heimes90540002008-05-08 14:29:10 +000095
Ezio Melotti84e59aa2012-04-13 21:02:18 -060096.. highlight:: bash
Christian Heimes90540002008-05-08 14:29:10 +000097
98Using json.tool from the shell to validate and pretty-print::
Georg Brandl48310cd2009-01-03 21:18:54 +000099
Christian Heimes90540002008-05-08 14:29:10 +0000100 $ echo '{"json":"obj"}' | python -mjson.tool
101 {
102 "json": "obj"
103 }
Ezio Melotti84e59aa2012-04-13 21:02:18 -0600104 $ echo '{1.2:3.4}' | python -mjson.tool
Serhiy Storchakac510a042013-02-21 20:19:16 +0200105 Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
Christian Heimes90540002008-05-08 14:29:10 +0000106
Ezio Melotti84e59aa2012-04-13 21:02:18 -0600107.. highlight:: python3
Christian Heimes90540002008-05-08 14:29:10 +0000108
Georg Brandl48310cd2009-01-03 21:18:54 +0000109.. note::
Christian Heimes90540002008-05-08 14:29:10 +0000110
Antoine Pitrou331624b2012-08-24 19:37:23 +0200111 JSON is a subset of `YAML <http://yaml.org/>`_ 1.2. The JSON produced by
112 this module's default settings (in particular, the default *separators*
113 value) is also a subset of YAML 1.0 and 1.1. This module can thus also be
114 used as a YAML serializer.
Christian Heimes90540002008-05-08 14:29:10 +0000115
116
117Basic Usage
118-----------
119
Andrew Svetlov2ec53be2012-10-28 14:10:30 +0200120.. function:: dump(obj, fp, skipkeys=False, ensure_ascii=True, \
121 check_circular=True, allow_nan=True, cls=None, \
122 indent=None, separators=None, default=None, \
123 sort_keys=False, **kw)
Christian Heimes90540002008-05-08 14:29:10 +0000124
125 Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting
Antoine Pitrou15251a92012-08-24 19:49:08 +0200126 :term:`file-like object`).
Christian Heimes90540002008-05-08 14:29:10 +0000127
128 If *skipkeys* is ``True`` (default: ``False``), then dict keys that are not
Antoine Pitrou00d650b2011-01-21 21:37:32 +0000129 of a basic type (:class:`str`, :class:`int`, :class:`float`, :class:`bool`,
130 ``None``) will be skipped instead of raising a :exc:`TypeError`.
Christian Heimes90540002008-05-08 14:29:10 +0000131
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000132 The :mod:`json` module always produces :class:`str` objects, not
133 :class:`bytes` objects. Therefore, ``fp.write()`` must support :class:`str`
134 input.
135
Éric Araujo6f7aa002012-01-16 10:09:20 +0100136 If *ensure_ascii* is ``True`` (the default), the output is guaranteed to
137 have all incoming non-ASCII characters escaped. If *ensure_ascii* is
138 ``False``, these characters will be output as-is.
139
Christian Heimes90540002008-05-08 14:29:10 +0000140 If *check_circular* is ``False`` (default: ``True``), then the circular
141 reference check for container types will be skipped and a circular reference
142 will result in an :exc:`OverflowError` (or worse).
143
144 If *allow_nan* is ``False`` (default: ``True``), then it will be a
145 :exc:`ValueError` to serialize out of range :class:`float` values (``nan``,
146 ``inf``, ``-inf``) in strict compliance of the JSON specification, instead of
147 using the JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).
148
Raymond Hettingerb643ef82010-10-31 08:00:16 +0000149 If *indent* is a non-negative integer or string, then JSON array elements and
150 object members will be pretty-printed with that indent level. An indent level
R David Murrayd5315482011-04-12 21:09:18 -0400151 of 0, negative, or ``""`` will only insert newlines. ``None`` (the default)
152 selects the most compact representation. Using a positive integer indent
Petri Lehtinen72c6eef2012-08-27 20:27:30 +0300153 indents that many spaces per level. If *indent* is a string (such as ``"\t"``),
R David Murrayd5315482011-04-12 21:09:18 -0400154 that string is used to indent each level.
Christian Heimes90540002008-05-08 14:29:10 +0000155
Petri Lehtinen72b14262012-08-28 07:08:44 +0300156 .. versionchanged:: 3.2
157 Allow strings for *indent* in addition to integers.
158
Ezio Melottid654ded2012-11-29 00:35:29 +0200159 .. note::
160
161 Since the default item separator is ``', '``, the output might include
162 trailing whitespace when *indent* is specified. You can use
163 ``separators=(',', ': ')`` to avoid this.
164
Christian Heimes90540002008-05-08 14:29:10 +0000165 If *separators* is an ``(item_separator, dict_separator)`` tuple, then it
166 will be used instead of the default ``(', ', ': ')`` separators. ``(',',
167 ':')`` is the most compact JSON representation.
168
Christian Heimes90540002008-05-08 14:29:10 +0000169 *default(obj)* is a function that should return a serializable version of
170 *obj* or raise :exc:`TypeError`. The default simply raises :exc:`TypeError`.
171
Andrew Svetlov2ec53be2012-10-28 14:10:30 +0200172 If *sort_keys* is ``True`` (default: ``False``), then the output of
173 dictionaries will be sorted by key.
174
Georg Brandl1f01deb2009-01-03 22:47:39 +0000175 To use a custom :class:`JSONEncoder` subclass (e.g. one that overrides the
Christian Heimes90540002008-05-08 14:29:10 +0000176 :meth:`default` method to serialize additional types), specify it with the
Georg Brandld4460aa2010-10-15 17:03:02 +0000177 *cls* kwarg; otherwise :class:`JSONEncoder` is used.
Christian Heimes90540002008-05-08 14:29:10 +0000178
179
Andrew Svetlov2ec53be2012-10-28 14:10:30 +0200180.. function:: dumps(obj, skipkeys=False, ensure_ascii=True, \
181 check_circular=True, allow_nan=True, cls=None, \
182 indent=None, separators=None, default=None, \
183 sort_keys=False, **kw)
Christian Heimes90540002008-05-08 14:29:10 +0000184
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000185 Serialize *obj* to a JSON formatted :class:`str`. The arguments have the
186 same meaning as in :func:`dump`.
Christian Heimes90540002008-05-08 14:29:10 +0000187
Ezio Melotti60adf952011-04-15 07:37:00 +0300188 .. note::
189
Georg Brandl340d2692011-04-16 16:54:15 +0200190 Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol,
191 so trying to serialize multiple objects with repeated calls to
192 :func:`dump` using the same *fp* will result in an invalid JSON file.
193
Senthil Kumaranf2123d22012-03-17 00:40:34 -0700194 .. note::
195
196 Keys in key/value pairs of JSON are always of the type :class:`str`. When
197 a dictionary is converted into JSON, all the keys of the dictionary are
Terry Jan Reedy9cbcc2f2013-03-08 19:35:15 -0500198 coerced to strings. As a result of this, if a dictionary is converted
Senthil Kumaranf2123d22012-03-17 00:40:34 -0700199 into JSON and then back into a dictionary, the dictionary may not equal
200 the original one. That is, ``loads(dumps(x)) != x`` if x has non-string
201 keys.
Christian Heimes90540002008-05-08 14:29:10 +0000202
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000203.. function:: load(fp, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw)
Christian Heimes90540002008-05-08 14:29:10 +0000204
Antoine Pitrou15251a92012-08-24 19:49:08 +0200205 Deserialize *fp* (a ``.read()``-supporting :term:`file-like object`
206 containing a JSON document) to a Python object.
Christian Heimes90540002008-05-08 14:29:10 +0000207
Christian Heimes90540002008-05-08 14:29:10 +0000208 *object_hook* is an optional function that will be called with the result of
Benjamin Peterson25c95f12009-05-08 20:42:26 +0000209 any object literal decoded (a :class:`dict`). The return value of
Christian Heimes90540002008-05-08 14:29:10 +0000210 *object_hook* will be used instead of the :class:`dict`. This feature can be used
Antoine Pitrou331624b2012-08-24 19:37:23 +0200211 to implement custom decoders (e.g. `JSON-RPC <http://www.jsonrpc.org>`_
212 class hinting).
Christian Heimes90540002008-05-08 14:29:10 +0000213
Raymond Hettinger9b8d0692009-04-21 03:27:12 +0000214 *object_pairs_hook* is an optional function that will be called with the
Benjamin Peterson25c95f12009-05-08 20:42:26 +0000215 result of any object literal decoded with an ordered list of pairs. The
Raymond Hettinger9b8d0692009-04-21 03:27:12 +0000216 return value of *object_pairs_hook* will be used instead of the
217 :class:`dict`. This feature can be used to implement custom decoders that
218 rely on the order that the key and value pairs are decoded (for example,
219 :func:`collections.OrderedDict` will remember the order of insertion). If
220 *object_hook* is also defined, the *object_pairs_hook* takes priority.
221
222 .. versionchanged:: 3.1
Hirokazu Yamamotoae9eb5c2009-04-26 03:34:06 +0000223 Added support for *object_pairs_hook*.
Raymond Hettinger9b8d0692009-04-21 03:27:12 +0000224
Christian Heimes90540002008-05-08 14:29:10 +0000225 *parse_float*, if specified, will be called with the string of every JSON
226 float to be decoded. By default, this is equivalent to ``float(num_str)``.
227 This can be used to use another datatype or parser for JSON floats
228 (e.g. :class:`decimal.Decimal`).
229
230 *parse_int*, if specified, will be called with the string of every JSON int
231 to be decoded. By default, this is equivalent to ``int(num_str)``. This can
232 be used to use another datatype or parser for JSON integers
233 (e.g. :class:`float`).
234
235 *parse_constant*, if specified, will be called with one of the following
Hynek Schlawack9729fd42012-05-16 19:01:04 +0200236 strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``.
237 This can be used to raise an exception if invalid JSON numbers
Christian Heimes90540002008-05-08 14:29:10 +0000238 are encountered.
239
Hynek Schlawackf54c0602012-05-20 18:32:53 +0200240 .. versionchanged:: 3.1
Hynek Schlawack1203e832012-05-20 12:03:17 +0200241 *parse_constant* doesn't get called on 'null', 'true', 'false' anymore.
242
Christian Heimes90540002008-05-08 14:29:10 +0000243 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
Georg Brandld4460aa2010-10-15 17:03:02 +0000244 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
245 will be passed to the constructor of the class.
Christian Heimes90540002008-05-08 14:29:10 +0000246
247
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000248.. function:: loads(s, encoding=None, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw)
Christian Heimes90540002008-05-08 14:29:10 +0000249
Antoine Pitrou00d650b2011-01-21 21:37:32 +0000250 Deserialize *s* (a :class:`str` instance containing a JSON document) to a
251 Python object.
Christian Heimes90540002008-05-08 14:29:10 +0000252
Antoine Pitrou00d650b2011-01-21 21:37:32 +0000253 The other arguments have the same meaning as in :func:`load`, except
254 *encoding* which is ignored and deprecated.
Christian Heimes90540002008-05-08 14:29:10 +0000255
256
Antoine Pitrou331624b2012-08-24 19:37:23 +0200257Encoders and Decoders
Christian Heimes90540002008-05-08 14:29:10 +0000258---------------------
259
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000260.. class:: JSONDecoder(object_hook=None, parse_float=None, parse_int=None, parse_constant=None, strict=True, object_pairs_hook=None)
Christian Heimes90540002008-05-08 14:29:10 +0000261
262 Simple JSON decoder.
263
264 Performs the following translations in decoding by default:
265
266 +---------------+-------------------+
267 | JSON | Python |
268 +===============+===================+
269 | object | dict |
270 +---------------+-------------------+
271 | array | list |
272 +---------------+-------------------+
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000273 | string | str |
Christian Heimes90540002008-05-08 14:29:10 +0000274 +---------------+-------------------+
Georg Brandl639ce962009-04-11 18:18:16 +0000275 | number (int) | int |
Christian Heimes90540002008-05-08 14:29:10 +0000276 +---------------+-------------------+
277 | number (real) | float |
278 +---------------+-------------------+
279 | true | True |
280 +---------------+-------------------+
281 | false | False |
282 +---------------+-------------------+
283 | null | None |
284 +---------------+-------------------+
285
286 It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as their
287 corresponding ``float`` values, which is outside the JSON spec.
288
Christian Heimes90540002008-05-08 14:29:10 +0000289 *object_hook*, if specified, will be called with the result of every JSON
290 object decoded and its return value will be used in place of the given
291 :class:`dict`. This can be used to provide custom deserializations (e.g. to
292 support JSON-RPC class hinting).
293
Raymond Hettinger9b8d0692009-04-21 03:27:12 +0000294 *object_pairs_hook*, if specified will be called with the result of every
295 JSON object decoded with an ordered list of pairs. The return value of
296 *object_pairs_hook* will be used instead of the :class:`dict`. This
297 feature can be used to implement custom decoders that rely on the order
298 that the key and value pairs are decoded (for example,
299 :func:`collections.OrderedDict` will remember the order of insertion). If
300 *object_hook* is also defined, the *object_pairs_hook* takes priority.
301
302 .. versionchanged:: 3.1
Hirokazu Yamamotoae9eb5c2009-04-26 03:34:06 +0000303 Added support for *object_pairs_hook*.
Raymond Hettinger9b8d0692009-04-21 03:27:12 +0000304
Christian Heimes90540002008-05-08 14:29:10 +0000305 *parse_float*, if specified, will be called with the string of every JSON
306 float to be decoded. By default, this is equivalent to ``float(num_str)``.
307 This can be used to use another datatype or parser for JSON floats
308 (e.g. :class:`decimal.Decimal`).
309
310 *parse_int*, if specified, will be called with the string of every JSON int
311 to be decoded. By default, this is equivalent to ``int(num_str)``. This can
312 be used to use another datatype or parser for JSON integers
313 (e.g. :class:`float`).
314
315 *parse_constant*, if specified, will be called with one of the following
316 strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``,
317 ``'false'``. This can be used to raise an exception if invalid JSON numbers
318 are encountered.
319
Georg Brandld4460aa2010-10-15 17:03:02 +0000320 If *strict* is ``False`` (``True`` is the default), then control characters
321 will be allowed inside strings. Control characters in this context are
322 those with character codes in the 0-31 range, including ``'\t'`` (tab),
323 ``'\n'``, ``'\r'`` and ``'\0'``.
324
Christian Heimes90540002008-05-08 14:29:10 +0000325
326 .. method:: decode(s)
327
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000328 Return the Python representation of *s* (a :class:`str` instance
329 containing a JSON document)
Christian Heimes90540002008-05-08 14:29:10 +0000330
331 .. method:: raw_decode(s)
332
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000333 Decode a JSON document from *s* (a :class:`str` beginning with a
334 JSON document) and return a 2-tuple of the Python representation
335 and the index in *s* where the document ended.
Christian Heimes90540002008-05-08 14:29:10 +0000336
337 This can be used to decode a JSON document from a string that may have
338 extraneous data at the end.
339
340
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000341.. class:: JSONEncoder(skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, sort_keys=False, indent=None, separators=None, default=None)
Christian Heimes90540002008-05-08 14:29:10 +0000342
343 Extensible JSON encoder for Python data structures.
344
345 Supports the following objects and types by default:
346
347 +-------------------+---------------+
348 | Python | JSON |
349 +===================+===============+
350 | dict | object |
351 +-------------------+---------------+
352 | list, tuple | array |
353 +-------------------+---------------+
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000354 | str | string |
Christian Heimes90540002008-05-08 14:29:10 +0000355 +-------------------+---------------+
Georg Brandl639ce962009-04-11 18:18:16 +0000356 | int, float | number |
Christian Heimes90540002008-05-08 14:29:10 +0000357 +-------------------+---------------+
358 | True | true |
359 +-------------------+---------------+
360 | False | false |
361 +-------------------+---------------+
362 | None | null |
363 +-------------------+---------------+
364
365 To extend this to recognize other objects, subclass and implement a
366 :meth:`default` method with another method that returns a serializable object
367 for ``o`` if possible, otherwise it should call the superclass implementation
368 (to raise :exc:`TypeError`).
369
370 If *skipkeys* is ``False`` (the default), then it is a :exc:`TypeError` to
Georg Brandl639ce962009-04-11 18:18:16 +0000371 attempt encoding of keys that are not str, int, float or None. If
Christian Heimes90540002008-05-08 14:29:10 +0000372 *skipkeys* is ``True``, such items are simply skipped.
373
Benjamin Petersonc6b607d2009-05-02 12:36:44 +0000374 If *ensure_ascii* is ``True`` (the default), the output is guaranteed to
375 have all incoming non-ASCII characters escaped. If *ensure_ascii* is
376 ``False``, these characters will be output as-is.
Christian Heimes90540002008-05-08 14:29:10 +0000377
378 If *check_circular* is ``True`` (the default), then lists, dicts, and custom
379 encoded objects will be checked for circular references during encoding to
380 prevent an infinite recursion (which would cause an :exc:`OverflowError`).
381 Otherwise, no such check takes place.
382
383 If *allow_nan* is ``True`` (the default), then ``NaN``, ``Infinity``, and
384 ``-Infinity`` will be encoded as such. This behavior is not JSON
385 specification compliant, but is consistent with most JavaScript based
386 encoders and decoders. Otherwise, it will be a :exc:`ValueError` to encode
387 such floats.
388
Georg Brandl6a74da32010-08-22 20:23:38 +0000389 If *sort_keys* is ``True`` (default ``False``), then the output of dictionaries
Christian Heimes90540002008-05-08 14:29:10 +0000390 will be sorted by key; this is useful for regression tests to ensure that
391 JSON serializations can be compared on a day-to-day basis.
392
Petri Lehtinen72b14262012-08-28 07:08:44 +0300393 If *indent* is a non-negative integer or string, then JSON array elements and
394 object members will be pretty-printed with that indent level. An indent level
395 of 0, negative, or ``""`` will only insert newlines. ``None`` (the default)
396 selects the most compact representation. Using a positive integer indent
397 indents that many spaces per level. If *indent* is a string (such as ``"\t"``),
398 that string is used to indent each level.
399
400 .. versionchanged:: 3.2
401 Allow strings for *indent* in addition to integers.
Christian Heimes90540002008-05-08 14:29:10 +0000402
Ezio Melottid654ded2012-11-29 00:35:29 +0200403 .. note::
404
405 Since the default item separator is ``', '``, the output might include
406 trailing whitespace when *indent* is specified. You can use
407 ``separators=(',', ': ')`` to avoid this.
408
Christian Heimes90540002008-05-08 14:29:10 +0000409 If specified, *separators* should be an ``(item_separator, key_separator)``
410 tuple. The default is ``(', ', ': ')``. To get the most compact JSON
411 representation, you should specify ``(',', ':')`` to eliminate whitespace.
412
413 If specified, *default* is a function that gets called for objects that can't
414 otherwise be serialized. It should return a JSON encodable version of the
415 object or raise a :exc:`TypeError`.
416
Christian Heimes90540002008-05-08 14:29:10 +0000417
418 .. method:: default(o)
419
420 Implement this method in a subclass such that it returns a serializable
421 object for *o*, or calls the base implementation (to raise a
422 :exc:`TypeError`).
423
424 For example, to support arbitrary iterators, you could implement default
425 like this::
Georg Brandl48310cd2009-01-03 21:18:54 +0000426
Christian Heimes90540002008-05-08 14:29:10 +0000427 def default(self, o):
428 try:
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000429 iterable = iter(o)
Christian Heimes90540002008-05-08 14:29:10 +0000430 except TypeError:
Benjamin Petersone9bbc8b2008-09-28 02:06:32 +0000431 pass
Christian Heimes90540002008-05-08 14:29:10 +0000432 else:
433 return list(iterable)
Georg Brandl0bb73b82010-09-03 22:36:22 +0000434 return json.JSONEncoder.default(self, o)
Christian Heimes90540002008-05-08 14:29:10 +0000435
436
437 .. method:: encode(o)
438
439 Return a JSON string representation of a Python data structure, *o*. For
440 example::
441
Georg Brandl0bb73b82010-09-03 22:36:22 +0000442 >>> json.JSONEncoder().encode({"foo": ["bar", "baz"]})
Christian Heimes90540002008-05-08 14:29:10 +0000443 '{"foo": ["bar", "baz"]}'
444
445
446 .. method:: iterencode(o)
447
448 Encode the given object, *o*, and yield each string representation as
449 available. For example::
Georg Brandl48310cd2009-01-03 21:18:54 +0000450
Georg Brandl0bb73b82010-09-03 22:36:22 +0000451 for chunk in json.JSONEncoder().iterencode(bigobject):
Christian Heimes90540002008-05-08 14:29:10 +0000452 mysocket.write(chunk)
Antoine Pitrou331624b2012-08-24 19:37:23 +0200453
454
455Standard Compliance
456-------------------
457
458The JSON format is specified by :rfc:`4627`. This section details this
459module's level of compliance with the RFC. For simplicity,
460:class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and parameters other
461than those explicitly mentioned, are not considered.
462
463This module does not comply with the RFC in a strict fashion, implementing some
464extensions that are valid JavaScript but not valid JSON. In particular:
465
466- Top-level non-object, non-array values are accepted and output;
467- Infinite and NaN number values are accepted and output;
468- Repeated names within an object are accepted, and only the value of the last
469 name-value pair is used.
470
471Since the RFC permits RFC-compliant parsers to accept input texts that are not
472RFC-compliant, this module's deserializer is technically RFC-compliant under
473default settings.
474
475Character Encodings
476^^^^^^^^^^^^^^^^^^^
477
478The RFC recommends that JSON be represented using either UTF-8, UTF-16, or
479UTF-32, with UTF-8 being the default.
480
481As permitted, though not required, by the RFC, this module's serializer sets
482*ensure_ascii=True* by default, thus escaping the output so that the resulting
483strings only contain ASCII characters.
484
485Other than the *ensure_ascii* parameter, this module is defined strictly in
486terms of conversion between Python objects and
487:class:`Unicode strings <str>`, and thus does not otherwise address the issue
488of character encodings.
489
490
491Top-level Non-Object, Non-Array Values
492^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
493
494The RFC specifies that the top-level value of a JSON text must be either a
495JSON object or array (Python :class:`dict` or :class:`list`). This module's
496deserializer also accepts input texts consisting solely of a
497JSON null, boolean, number, or string value::
498
499 >>> just_a_json_string = '"spam and eggs"' # Not by itself a valid JSON text
500 >>> json.loads(just_a_json_string)
501 'spam and eggs'
502
503This module itself does not include a way to request that such input texts be
504regarded as illegal. Likewise, this module's serializer also accepts single
505Python :data:`None`, :class:`bool`, numeric, and :class:`str`
506values as input and will generate output texts consisting solely of a top-level
507JSON null, boolean, number, or string value without raising an exception::
508
509 >>> neither_a_list_nor_a_dict = "spam and eggs"
510 >>> json.dumps(neither_a_list_nor_a_dict) # The result is not a valid JSON text
511 '"spam and eggs"'
512
513This module's serializer does not itself include a way to enforce the
514aforementioned constraint.
515
516
517Infinite and NaN Number Values
518^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
519
520The RFC does not permit the representation of infinite or NaN number values.
521Despite that, by default, this module accepts and outputs ``Infinity``,
522``-Infinity``, and ``NaN`` as if they were valid JSON number literal values::
523
524 >>> # Neither of these calls raises an exception, but the results are not valid JSON
525 >>> json.dumps(float('-inf'))
526 '-Infinity'
527 >>> json.dumps(float('nan'))
528 'NaN'
529 >>> # Same when deserializing
530 >>> json.loads('-Infinity')
531 -inf
532 >>> json.loads('NaN')
533 nan
534
535In the serializer, the *allow_nan* parameter can be used to alter this
536behavior. In the deserializer, the *parse_constant* parameter can be used to
537alter this behavior.
538
539
540Repeated Names Within an Object
541^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
542
543The RFC specifies that the names within a JSON object should be unique, but
544does not specify how repeated names in JSON objects should be handled. By
545default, this module does not raise an exception; instead, it ignores all but
546the last name-value pair for a given name::
547
548 >>> weird_json = '{"x": 1, "x": 2, "x": 3}'
549 >>> json.loads(weird_json)
550 {'x': 3}
551
552The *object_pairs_hook* parameter can be used to alter this behavior.