blob: 546a09d69bde611adcf1a74e12ebb9ce6fc4f6ef [file] [log] [blame]
Georg Brandl3961f182008-05-05 20:53:39 +00001:mod:`json` --- JSON encoder and decoder
2========================================
Brett Cannon4b964f92008-05-05 20:21:38 +00003
4.. module:: json
Georg Brandl3961f182008-05-05 20:53:39 +00005 :synopsis: Encode and decode the JSON format.
Brett Cannon4b964f92008-05-05 20:21:38 +00006.. moduleauthor:: Bob Ippolito <bob@redivi.com>
7.. sectionauthor:: Bob Ippolito <bob@redivi.com>
8.. versionadded:: 2.6
9
Benjamin Peterson17e25d82011-02-27 15:09:14 +000010`JSON (JavaScript Object Notation) <http://json.org>`_ is a subset of JavaScript
Brett Cannon4b964f92008-05-05 20:21:38 +000011syntax (ECMA-262 3rd edition) used as a lightweight data interchange format.
12
Georg Brandl3961f182008-05-05 20:53:39 +000013:mod:`json` exposes an API familiar to users of the standard library
14:mod:`marshal` and :mod:`pickle` modules.
Brett Cannon4b964f92008-05-05 20:21:38 +000015
16Encoding basic Python object hierarchies::
Georg Brandlc62ef8b2009-01-03 20:55:06 +000017
Brett Cannon4b964f92008-05-05 20:21:38 +000018 >>> import json
19 >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
20 '["foo", {"bar": ["baz", null, 1.0, 2]}]'
21 >>> print json.dumps("\"foo\bar")
22 "\"foo\bar"
23 >>> print json.dumps(u'\u1234')
24 "\u1234"
25 >>> print json.dumps('\\')
26 "\\"
27 >>> print json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True)
28 {"a": 0, "b": 0, "c": 0}
29 >>> from StringIO import StringIO
30 >>> io = StringIO()
31 >>> json.dump(['streaming API'], io)
32 >>> io.getvalue()
33 '["streaming API"]'
34
35Compact encoding::
36
37 >>> import json
38 >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':'))
39 '[1,2,3,{"4":5,"6":7}]'
40
41Pretty printing::
42
43 >>> import json
44 >>> print json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)
45 {
Georg Brandlc62ef8b2009-01-03 20:55:06 +000046 "4": 5,
Brett Cannon4b964f92008-05-05 20:21:38 +000047 "6": 7
48 }
49
50Decoding JSON::
Georg Brandlc62ef8b2009-01-03 20:55:06 +000051
Brett Cannon4b964f92008-05-05 20:21:38 +000052 >>> import json
53 >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
54 [u'foo', {u'bar': [u'baz', None, 1.0, 2]}]
55 >>> json.loads('"\\"foo\\bar"')
56 u'"foo\x08ar'
57 >>> from StringIO import StringIO
58 >>> io = StringIO('["streaming API"]')
59 >>> json.load(io)
60 [u'streaming API']
61
62Specializing JSON object decoding::
63
64 >>> import json
65 >>> def as_complex(dct):
66 ... if '__complex__' in dct:
67 ... return complex(dct['real'], dct['imag'])
68 ... return dct
Georg Brandlc62ef8b2009-01-03 20:55:06 +000069 ...
Brett Cannon4b964f92008-05-05 20:21:38 +000070 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
71 ... object_hook=as_complex)
72 (1+2j)
73 >>> import decimal
74 >>> json.loads('1.1', parse_float=decimal.Decimal)
75 Decimal('1.1')
76
Georg Brandl3961f182008-05-05 20:53:39 +000077Extending :class:`JSONEncoder`::
Georg Brandlc62ef8b2009-01-03 20:55:06 +000078
Brett Cannon4b964f92008-05-05 20:21:38 +000079 >>> import json
80 >>> class ComplexEncoder(json.JSONEncoder):
81 ... def default(self, obj):
82 ... if isinstance(obj, complex):
83 ... return [obj.real, obj.imag]
84 ... return json.JSONEncoder.default(self, obj)
Georg Brandlc62ef8b2009-01-03 20:55:06 +000085 ...
Brett Cannon4b964f92008-05-05 20:21:38 +000086 >>> dumps(2 + 1j, cls=ComplexEncoder)
87 '[2.0, 1.0]'
88 >>> ComplexEncoder().encode(2 + 1j)
89 '[2.0, 1.0]'
90 >>> list(ComplexEncoder().iterencode(2 + 1j))
91 ['[', '2.0', ', ', '1.0', ']']
Georg Brandlc62ef8b2009-01-03 20:55:06 +000092
Brett Cannon4b964f92008-05-05 20:21:38 +000093
94.. highlight:: none
95
96Using json.tool from the shell to validate and pretty-print::
Georg Brandlc62ef8b2009-01-03 20:55:06 +000097
Brett Cannon4b964f92008-05-05 20:21:38 +000098 $ echo '{"json":"obj"}' | python -mjson.tool
99 {
100 "json": "obj"
101 }
102 $ echo '{ 1.2:3.4}' | python -mjson.tool
103 Expecting property name: line 1 column 2 (char 2)
104
105.. highlight:: python
106
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000107.. note::
Brett Cannon4b964f92008-05-05 20:21:38 +0000108
Georg Brandl3961f182008-05-05 20:53:39 +0000109 The JSON produced by this module's default settings is a subset of
Brett Cannon4b964f92008-05-05 20:21:38 +0000110 YAML, so it may be used as a serializer for that as well.
111
112
113Basic Usage
114-----------
115
116.. function:: dump(obj, fp[, skipkeys[, ensure_ascii[, check_circular[, allow_nan[, cls[, indent[, separators[, encoding[, default[, **kw]]]]]]]]]])
117
Georg Brandl3961f182008-05-05 20:53:39 +0000118 Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting
119 file-like object).
Brett Cannon4b964f92008-05-05 20:21:38 +0000120
Georg Brandl3961f182008-05-05 20:53:39 +0000121 If *skipkeys* is ``True`` (default: ``False``), then dict keys that are not
122 of a basic type (:class:`str`, :class:`unicode`, :class:`int`, :class:`long`,
123 :class:`float`, :class:`bool`, ``None``) will be skipped instead of raising a
124 :exc:`TypeError`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000125
Georg Brandl3961f182008-05-05 20:53:39 +0000126 If *ensure_ascii* is ``False`` (default: ``True``), then some chunks written
127 to *fp* may be :class:`unicode` instances, subject to normal Python
128 :class:`str` to :class:`unicode` coercion rules. Unless ``fp.write()``
129 explicitly understands :class:`unicode` (as in :func:`codecs.getwriter`) this
130 is likely to cause an error.
Brett Cannon4b964f92008-05-05 20:21:38 +0000131
Georg Brandl3961f182008-05-05 20:53:39 +0000132 If *check_circular* is ``False`` (default: ``True``), then the circular
133 reference check for container types will be skipped and a circular reference
134 will result in an :exc:`OverflowError` (or worse).
Brett Cannon4b964f92008-05-05 20:21:38 +0000135
Georg Brandl3961f182008-05-05 20:53:39 +0000136 If *allow_nan* is ``False`` (default: ``True``), then it will be a
137 :exc:`ValueError` to serialize out of range :class:`float` values (``nan``,
138 ``inf``, ``-inf``) in strict compliance of the JSON specification, instead of
139 using the JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).
Brett Cannon4b964f92008-05-05 20:21:38 +0000140
Georg Brandl3961f182008-05-05 20:53:39 +0000141 If *indent* is a non-negative integer, then JSON array elements and object
R David Murrayea8b6ef2011-04-12 21:00:26 -0400142 members will be pretty-printed with that indent level. An indent level of 0,
143 or negative, will only insert newlines. ``None`` (the default) selects the
144 most compact representation.
Brett Cannon4b964f92008-05-05 20:21:38 +0000145
Georg Brandl3961f182008-05-05 20:53:39 +0000146 If *separators* is an ``(item_separator, dict_separator)`` tuple, then it
147 will be used instead of the default ``(', ', ': ')`` separators. ``(',',
148 ':')`` is the most compact JSON representation.
Brett Cannon4b964f92008-05-05 20:21:38 +0000149
Georg Brandl3961f182008-05-05 20:53:39 +0000150 *encoding* is the character encoding for str instances, default is UTF-8.
Brett Cannon4b964f92008-05-05 20:21:38 +0000151
Georg Brandl3961f182008-05-05 20:53:39 +0000152 *default(obj)* is a function that should return a serializable version of
153 *obj* or raise :exc:`TypeError`. The default simply raises :exc:`TypeError`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000154
Georg Brandlfc29f272009-01-02 20:25:14 +0000155 To use a custom :class:`JSONEncoder` subclass (e.g. one that overrides the
Georg Brandl3961f182008-05-05 20:53:39 +0000156 :meth:`default` method to serialize additional types), specify it with the
Georg Brandldb949b82010-10-15 17:04:45 +0000157 *cls* kwarg; otherwise :class:`JSONEncoder` is used.
Brett Cannon4b964f92008-05-05 20:21:38 +0000158
Ezio Melotti6033d262011-04-15 07:37:00 +0300159 .. note::
160
161 Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol so
162 trying to serialize more objects with repeated calls to :func:`dump` and
163 the same *fp* will result in an invalid JSON file.
Brett Cannon4b964f92008-05-05 20:21:38 +0000164
Georg Brandl3961f182008-05-05 20:53:39 +0000165.. function:: dumps(obj[, skipkeys[, ensure_ascii[, check_circular[, allow_nan[, cls[, indent[, separators[, encoding[, default[, **kw]]]]]]]]]])
Brett Cannon4b964f92008-05-05 20:21:38 +0000166
Georg Brandl3961f182008-05-05 20:53:39 +0000167 Serialize *obj* to a JSON formatted :class:`str`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000168
Georg Brandl3961f182008-05-05 20:53:39 +0000169 If *ensure_ascii* is ``False``, then the return value will be a
170 :class:`unicode` instance. The other arguments have the same meaning as in
171 :func:`dump`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000172
173
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000174.. function:: load(fp[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])
Brett Cannon4b964f92008-05-05 20:21:38 +0000175
176 Deserialize *fp* (a ``.read()``-supporting file-like object containing a JSON
177 document) to a Python object.
178
Georg Brandl3961f182008-05-05 20:53:39 +0000179 If the contents of *fp* are encoded with an ASCII based encoding other than
180 UTF-8 (e.g. latin-1), then an appropriate *encoding* name must be specified.
181 Encodings that are not ASCII based (such as UCS-2) are not allowed, and
Georg Brandl49cc4ea2009-04-23 08:44:57 +0000182 should be wrapped with ``codecs.getreader(encoding)(fp)``, or simply decoded
Georg Brandl3961f182008-05-05 20:53:39 +0000183 to a :class:`unicode` object and passed to :func:`loads`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000184
185 *object_hook* is an optional function that will be called with the result of
Andrew M. Kuchling19672002009-03-30 22:29:15 +0000186 any object literal decoded (a :class:`dict`). The return value of
Georg Brandl3961f182008-05-05 20:53:39 +0000187 *object_hook* will be used instead of the :class:`dict`. This feature can be used
188 to implement custom decoders (e.g. JSON-RPC class hinting).
189
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000190 *object_pairs_hook* is an optional function that will be called with the
Andrew M. Kuchling19672002009-03-30 22:29:15 +0000191 result of any object literal decoded with an ordered list of pairs. The
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000192 return value of *object_pairs_hook* will be used instead of the
193 :class:`dict`. This feature can be used to implement custom decoders that
194 rely on the order that the key and value pairs are decoded (for example,
195 :func:`collections.OrderedDict` will remember the order of insertion). If
196 *object_hook* is also defined, the *object_pairs_hook* takes priority.
197
198 .. versionchanged:: 2.7
199 Added support for *object_pairs_hook*.
200
Georg Brandl3961f182008-05-05 20:53:39 +0000201 *parse_float*, if specified, will be called with the string of every JSON
202 float to be decoded. By default, this is equivalent to ``float(num_str)``.
203 This can be used to use another datatype or parser for JSON floats
204 (e.g. :class:`decimal.Decimal`).
205
206 *parse_int*, if specified, will be called with the string of every JSON int
207 to be decoded. By default, this is equivalent to ``int(num_str)``. This can
208 be used to use another datatype or parser for JSON integers
209 (e.g. :class:`float`).
210
211 *parse_constant*, if specified, will be called with one of the following
212 strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``,
213 ``'false'``. This can be used to raise an exception if invalid JSON numbers
214 are encountered.
Brett Cannon4b964f92008-05-05 20:21:38 +0000215
216 To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls``
Georg Brandldb949b82010-10-15 17:04:45 +0000217 kwarg; otherwise :class:`JSONDecoder` is used. Additional keyword arguments
218 will be passed to the constructor of the class.
Brett Cannon4b964f92008-05-05 20:21:38 +0000219
220
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000221.. function:: loads(s[, encoding[, cls[, object_hook[, parse_float[, parse_int[, parse_constant[, object_pairs_hook[, **kw]]]]]]]])
Georg Brandl3961f182008-05-05 20:53:39 +0000222
223 Deserialize *s* (a :class:`str` or :class:`unicode` instance containing a JSON
224 document) to a Python object.
225
226 If *s* is a :class:`str` instance and is encoded with an ASCII based encoding
227 other than UTF-8 (e.g. latin-1), then an appropriate *encoding* name must be
228 specified. Encodings that are not ASCII based (such as UCS-2) are not
229 allowed and should be decoded to :class:`unicode` first.
230
Georg Brandlc6301952010-05-10 21:02:51 +0000231 The other arguments have the same meaning as in :func:`load`.
Georg Brandl3961f182008-05-05 20:53:39 +0000232
233
Brett Cannon4b964f92008-05-05 20:21:38 +0000234Encoders and decoders
235---------------------
236
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000237.. class:: JSONDecoder([encoding[, object_hook[, parse_float[, parse_int[, parse_constant[, strict[, object_pairs_hook]]]]]]])
Brett Cannon4b964f92008-05-05 20:21:38 +0000238
Georg Brandl3961f182008-05-05 20:53:39 +0000239 Simple JSON decoder.
Brett Cannon4b964f92008-05-05 20:21:38 +0000240
241 Performs the following translations in decoding by default:
242
243 +---------------+-------------------+
244 | JSON | Python |
245 +===============+===================+
246 | object | dict |
247 +---------------+-------------------+
248 | array | list |
249 +---------------+-------------------+
250 | string | unicode |
251 +---------------+-------------------+
252 | number (int) | int, long |
253 +---------------+-------------------+
254 | number (real) | float |
255 +---------------+-------------------+
256 | true | True |
257 +---------------+-------------------+
258 | false | False |
259 +---------------+-------------------+
260 | null | None |
261 +---------------+-------------------+
262
263 It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as their
264 corresponding ``float`` values, which is outside the JSON spec.
265
Georg Brandl3961f182008-05-05 20:53:39 +0000266 *encoding* determines the encoding used to interpret any :class:`str` objects
267 decoded by this instance (UTF-8 by default). It has no effect when decoding
268 :class:`unicode` objects.
Brett Cannon4b964f92008-05-05 20:21:38 +0000269
Georg Brandl3961f182008-05-05 20:53:39 +0000270 Note that currently only encodings that are a superset of ASCII work, strings
271 of other encodings should be passed in as :class:`unicode`.
Brett Cannon4b964f92008-05-05 20:21:38 +0000272
273 *object_hook*, if specified, will be called with the result of every JSON
274 object decoded and its return value will be used in place of the given
Georg Brandl3961f182008-05-05 20:53:39 +0000275 :class:`dict`. This can be used to provide custom deserializations (e.g. to
Brett Cannon4b964f92008-05-05 20:21:38 +0000276 support JSON-RPC class hinting).
277
Raymond Hettinger91852ca2009-03-19 19:19:03 +0000278 *object_pairs_hook*, if specified will be called with the result of every
279 JSON object decoded with an ordered list of pairs. The return value of
280 *object_pairs_hook* will be used instead of the :class:`dict`. This
281 feature can be used to implement custom decoders that rely on the order
282 that the key and value pairs are decoded (for example,
283 :func:`collections.OrderedDict` will remember the order of insertion). If
284 *object_hook* is also defined, the *object_pairs_hook* takes priority.
285
286 .. versionchanged:: 2.7
287 Added support for *object_pairs_hook*.
288
Brett Cannon4b964f92008-05-05 20:21:38 +0000289 *parse_float*, if specified, will be called with the string of every JSON
Georg Brandl3961f182008-05-05 20:53:39 +0000290 float to be decoded. By default, this is equivalent to ``float(num_str)``.
291 This can be used to use another datatype or parser for JSON floats
292 (e.g. :class:`decimal.Decimal`).
Brett Cannon4b964f92008-05-05 20:21:38 +0000293
294 *parse_int*, if specified, will be called with the string of every JSON int
Georg Brandl3961f182008-05-05 20:53:39 +0000295 to be decoded. By default, this is equivalent to ``int(num_str)``. This can
296 be used to use another datatype or parser for JSON integers
297 (e.g. :class:`float`).
Brett Cannon4b964f92008-05-05 20:21:38 +0000298
299 *parse_constant*, if specified, will be called with one of the following
Georg Brandl3961f182008-05-05 20:53:39 +0000300 strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``,
301 ``'false'``. This can be used to raise an exception if invalid JSON numbers
302 are encountered.
Brett Cannon4b964f92008-05-05 20:21:38 +0000303
Georg Brandldb949b82010-10-15 17:04:45 +0000304 If *strict* is ``False`` (``True`` is the default), then control characters
305 will be allowed inside strings. Control characters in this context are
306 those with character codes in the 0-31 range, including ``'\t'`` (tab),
307 ``'\n'``, ``'\r'`` and ``'\0'``.
308
Brett Cannon4b964f92008-05-05 20:21:38 +0000309
310 .. method:: decode(s)
311
Georg Brandl3961f182008-05-05 20:53:39 +0000312 Return the Python representation of *s* (a :class:`str` or
313 :class:`unicode` instance containing a JSON document)
Brett Cannon4b964f92008-05-05 20:21:38 +0000314
315 .. method:: raw_decode(s)
316
Georg Brandl3961f182008-05-05 20:53:39 +0000317 Decode a JSON document from *s* (a :class:`str` or :class:`unicode`
318 beginning with a JSON document) and return a 2-tuple of the Python
319 representation and the index in *s* where the document ended.
Brett Cannon4b964f92008-05-05 20:21:38 +0000320
Georg Brandl3961f182008-05-05 20:53:39 +0000321 This can be used to decode a JSON document from a string that may have
322 extraneous data at the end.
Brett Cannon4b964f92008-05-05 20:21:38 +0000323
324
325.. class:: JSONEncoder([skipkeys[, ensure_ascii[, check_circular[, allow_nan[, sort_keys[, indent[, separators[, encoding[, default]]]]]]]]])
326
Georg Brandl3961f182008-05-05 20:53:39 +0000327 Extensible JSON encoder for Python data structures.
Brett Cannon4b964f92008-05-05 20:21:38 +0000328
329 Supports the following objects and types by default:
330
331 +-------------------+---------------+
332 | Python | JSON |
333 +===================+===============+
334 | dict | object |
335 +-------------------+---------------+
336 | list, tuple | array |
337 +-------------------+---------------+
338 | str, unicode | string |
339 +-------------------+---------------+
340 | int, long, float | number |
341 +-------------------+---------------+
342 | True | true |
343 +-------------------+---------------+
344 | False | false |
345 +-------------------+---------------+
346 | None | null |
347 +-------------------+---------------+
348
349 To extend this to recognize other objects, subclass and implement a
Georg Brandl3961f182008-05-05 20:53:39 +0000350 :meth:`default` method with another method that returns a serializable object
Brett Cannon4b964f92008-05-05 20:21:38 +0000351 for ``o`` if possible, otherwise it should call the superclass implementation
352 (to raise :exc:`TypeError`).
353
354 If *skipkeys* is ``False`` (the default), then it is a :exc:`TypeError` to
355 attempt encoding of keys that are not str, int, long, float or None. If
356 *skipkeys* is ``True``, such items are simply skipped.
357
Georg Brandl3961f182008-05-05 20:53:39 +0000358 If *ensure_ascii* is ``True`` (the default), the output is guaranteed to be
359 :class:`str` objects with all incoming unicode characters escaped. If
360 *ensure_ascii* is ``False``, the output will be a unicode object.
Brett Cannon4b964f92008-05-05 20:21:38 +0000361
362 If *check_circular* is ``True`` (the default), then lists, dicts, and custom
363 encoded objects will be checked for circular references during encoding to
364 prevent an infinite recursion (which would cause an :exc:`OverflowError`).
365 Otherwise, no such check takes place.
366
Georg Brandl3961f182008-05-05 20:53:39 +0000367 If *allow_nan* is ``True`` (the default), then ``NaN``, ``Infinity``, and
368 ``-Infinity`` will be encoded as such. This behavior is not JSON
369 specification compliant, but is consistent with most JavaScript based
370 encoders and decoders. Otherwise, it will be a :exc:`ValueError` to encode
371 such floats.
Brett Cannon4b964f92008-05-05 20:21:38 +0000372
Georg Brandl21946af2010-10-06 09:28:45 +0000373 If *sort_keys* is ``True`` (default ``False``), then the output of dictionaries
Brett Cannon4b964f92008-05-05 20:21:38 +0000374 will be sorted by key; this is useful for regression tests to ensure that
375 JSON serializations can be compared on a day-to-day basis.
376
Georg Brandl3961f182008-05-05 20:53:39 +0000377 If *indent* is a non-negative integer (it is ``None`` by default), then JSON
Brett Cannon4b964f92008-05-05 20:21:38 +0000378 array elements and object members will be pretty-printed with that indent
379 level. An indent level of 0 will only insert newlines. ``None`` is the most
380 compact representation.
381
Georg Brandl3961f182008-05-05 20:53:39 +0000382 If specified, *separators* should be an ``(item_separator, key_separator)``
383 tuple. The default is ``(', ', ': ')``. To get the most compact JSON
Brett Cannon4b964f92008-05-05 20:21:38 +0000384 representation, you should specify ``(',', ':')`` to eliminate whitespace.
385
386 If specified, *default* is a function that gets called for objects that can't
387 otherwise be serialized. It should return a JSON encodable version of the
388 object or raise a :exc:`TypeError`.
389
390 If *encoding* is not ``None``, then all input strings will be transformed
391 into unicode using that encoding prior to JSON-encoding. The default is
392 UTF-8.
393
394
395 .. method:: default(o)
396
397 Implement this method in a subclass such that it returns a serializable
398 object for *o*, or calls the base implementation (to raise a
399 :exc:`TypeError`).
400
401 For example, to support arbitrary iterators, you could implement default
402 like this::
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000403
Brett Cannon4b964f92008-05-05 20:21:38 +0000404 def default(self, o):
405 try:
Georg Brandl1379ae02008-09-24 09:47:55 +0000406 iterable = iter(o)
Brett Cannon4b964f92008-05-05 20:21:38 +0000407 except TypeError:
Georg Brandl1379ae02008-09-24 09:47:55 +0000408 pass
Brett Cannon4b964f92008-05-05 20:21:38 +0000409 else:
410 return list(iterable)
411 return JSONEncoder.default(self, o)
412
413
414 .. method:: encode(o)
415
Georg Brandl3961f182008-05-05 20:53:39 +0000416 Return a JSON string representation of a Python data structure, *o*. For
Brett Cannon4b964f92008-05-05 20:21:38 +0000417 example::
418
419 >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
420 '{"foo": ["bar", "baz"]}'
421
422
423 .. method:: iterencode(o)
424
425 Encode the given object, *o*, and yield each string representation as
Georg Brandl3961f182008-05-05 20:53:39 +0000426 available. For example::
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000427
Brett Cannon4b964f92008-05-05 20:21:38 +0000428 for chunk in JSONEncoder().iterencode(bigobject):
429 mysocket.write(chunk)