Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 1 | :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 Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 8 | |
| 9 | JSON (JavaScript Object Notation) <http://json.org> is a subset of JavaScript |
| 10 | syntax (ECMA-262 3rd edition) used as a lightweight data interchange format. |
| 11 | |
| 12 | :mod:`json` exposes an API familiar to users of the standard library |
| 13 | :mod:`marshal` and :mod:`pickle` modules. |
| 14 | |
| 15 | Encoding basic Python object hierarchies:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 16 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 17 | >>> import json |
| 18 | >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}]) |
| 19 | '["foo", {"bar": ["baz", null, 1.0, 2]}]' |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 20 | >>> print(json.dumps("\"foo\bar")) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 21 | "\"foo\bar" |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 22 | >>> print(json.dumps('\u1234')) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 23 | "\u1234" |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 24 | >>> print(json.dumps('\\')) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 25 | "\\" |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 26 | >>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True)) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 27 | {"a": 0, "b": 0, "c": 0} |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 28 | >>> from io import StringIO |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 29 | >>> io = StringIO() |
| 30 | >>> json.dump(['streaming API'], io) |
| 31 | >>> io.getvalue() |
| 32 | '["streaming API"]' |
| 33 | |
| 34 | Compact encoding:: |
| 35 | |
| 36 | >>> import json |
| 37 | >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':')) |
| 38 | '[1,2,3,{"4":5,"6":7}]' |
| 39 | |
| 40 | Pretty printing:: |
| 41 | |
| 42 | >>> import json |
Neal Norwitz | 752abd0 | 2008-05-13 04:55:24 +0000 | [diff] [blame] | 43 | >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 44 | { |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 45 | "4": 5, |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 46 | "6": 7 |
| 47 | } |
| 48 | |
| 49 | Decoding JSON:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 50 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 51 | >>> import json |
| 52 | >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 53 | ['foo', {'bar': ['baz', None, 1.0, 2]}] |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 54 | >>> json.loads('"\\"foo\\bar"') |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 55 | '"foo\x08ar' |
| 56 | >>> from io import StringIO |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 57 | >>> io = StringIO('["streaming API"]') |
| 58 | >>> json.load(io) |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 59 | ['streaming API'] |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 60 | |
| 61 | Specializing JSON object decoding:: |
| 62 | |
| 63 | >>> import json |
| 64 | >>> def as_complex(dct): |
| 65 | ... if '__complex__' in dct: |
| 66 | ... return complex(dct['real'], dct['imag']) |
| 67 | ... return dct |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 68 | ... |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 69 | >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}', |
| 70 | ... object_hook=as_complex) |
| 71 | (1+2j) |
| 72 | >>> import decimal |
| 73 | >>> json.loads('1.1', parse_float=decimal.Decimal) |
| 74 | Decimal('1.1') |
| 75 | |
| 76 | Extending :class:`JSONEncoder`:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 77 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 78 | >>> import json |
| 79 | >>> class ComplexEncoder(json.JSONEncoder): |
| 80 | ... def default(self, obj): |
| 81 | ... if isinstance(obj, complex): |
| 82 | ... return [obj.real, obj.imag] |
| 83 | ... return json.JSONEncoder.default(self, obj) |
Benjamin Peterson | 2505bc6 | 2008-05-15 02:17:58 +0000 | [diff] [blame] | 84 | ... |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 85 | >>> dumps(2 + 1j, cls=ComplexEncoder) |
| 86 | '[2.0, 1.0]' |
| 87 | >>> ComplexEncoder().encode(2 + 1j) |
| 88 | '[2.0, 1.0]' |
| 89 | >>> list(ComplexEncoder().iterencode(2 + 1j)) |
| 90 | ['[', '2.0', ', ', '1.0', ']'] |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 91 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 92 | |
| 93 | .. highlight:: none |
| 94 | |
| 95 | Using json.tool from the shell to validate and pretty-print:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 96 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 97 | $ echo '{"json":"obj"}' | python -mjson.tool |
| 98 | { |
| 99 | "json": "obj" |
| 100 | } |
| 101 | $ echo '{ 1.2:3.4}' | python -mjson.tool |
| 102 | Expecting property name: line 1 column 2 (char 2) |
| 103 | |
| 104 | .. highlight:: python |
| 105 | |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 106 | .. note:: |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 107 | |
| 108 | The JSON produced by this module's default settings is a subset of |
| 109 | YAML, so it may be used as a serializer for that as well. |
| 110 | |
| 111 | |
| 112 | Basic Usage |
| 113 | ----------- |
| 114 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 115 | .. function:: dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, **kw) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 116 | |
| 117 | Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting |
| 118 | file-like object). |
| 119 | |
| 120 | If *skipkeys* is ``True`` (default: ``False``), then dict keys that are not |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 121 | of a basic type (:class:`bytes`, :class:`str`, :class:`int`, |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 122 | :class:`float`, :class:`bool`, ``None``) will be skipped instead of raising a |
| 123 | :exc:`TypeError`. |
| 124 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 125 | The :mod:`json` module always produces :class:`str` objects, not |
| 126 | :class:`bytes` objects. Therefore, ``fp.write()`` must support :class:`str` |
| 127 | input. |
| 128 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 129 | If *check_circular* is ``False`` (default: ``True``), then the circular |
| 130 | reference check for container types will be skipped and a circular reference |
| 131 | will result in an :exc:`OverflowError` (or worse). |
| 132 | |
| 133 | If *allow_nan* is ``False`` (default: ``True``), then it will be a |
| 134 | :exc:`ValueError` to serialize out of range :class:`float` values (``nan``, |
| 135 | ``inf``, ``-inf``) in strict compliance of the JSON specification, instead of |
| 136 | using the JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``). |
| 137 | |
| 138 | If *indent* is a non-negative integer, then JSON array elements and object |
| 139 | members will be pretty-printed with that indent level. An indent level of 0 |
| 140 | will only insert newlines. ``None`` (the default) selects the most compact |
| 141 | representation. |
| 142 | |
| 143 | If *separators* is an ``(item_separator, dict_separator)`` tuple, then it |
| 144 | will be used instead of the default ``(', ', ': ')`` separators. ``(',', |
| 145 | ':')`` is the most compact JSON representation. |
| 146 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 147 | *default(obj)* is a function that should return a serializable version of |
| 148 | *obj* or raise :exc:`TypeError`. The default simply raises :exc:`TypeError`. |
| 149 | |
Georg Brandl | 1f01deb | 2009-01-03 22:47:39 +0000 | [diff] [blame] | 150 | To use a custom :class:`JSONEncoder` subclass (e.g. one that overrides the |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 151 | :meth:`default` method to serialize additional types), specify it with the |
| 152 | *cls* kwarg. |
| 153 | |
| 154 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 155 | .. function:: dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, **kw) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 156 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 157 | Serialize *obj* to a JSON formatted :class:`str`. The arguments have the |
| 158 | same meaning as in :func:`dump`. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 159 | |
| 160 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 161 | .. function:: load(fp, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 162 | |
| 163 | Deserialize *fp* (a ``.read()``-supporting file-like object containing a JSON |
| 164 | document) to a Python object. |
| 165 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 166 | *object_hook* is an optional function that will be called with the result of |
Benjamin Peterson | 25c95f1 | 2009-05-08 20:42:26 +0000 | [diff] [blame] | 167 | any object literal decoded (a :class:`dict`). The return value of |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 168 | *object_hook* will be used instead of the :class:`dict`. This feature can be used |
| 169 | to implement custom decoders (e.g. JSON-RPC class hinting). |
| 170 | |
Raymond Hettinger | 9b8d069 | 2009-04-21 03:27:12 +0000 | [diff] [blame] | 171 | *object_pairs_hook* is an optional function that will be called with the |
Benjamin Peterson | 25c95f1 | 2009-05-08 20:42:26 +0000 | [diff] [blame] | 172 | result of any object literal decoded with an ordered list of pairs. The |
Raymond Hettinger | 9b8d069 | 2009-04-21 03:27:12 +0000 | [diff] [blame] | 173 | return value of *object_pairs_hook* will be used instead of the |
| 174 | :class:`dict`. This feature can be used to implement custom decoders that |
| 175 | rely on the order that the key and value pairs are decoded (for example, |
| 176 | :func:`collections.OrderedDict` will remember the order of insertion). If |
| 177 | *object_hook* is also defined, the *object_pairs_hook* takes priority. |
| 178 | |
| 179 | .. versionchanged:: 3.1 |
Hirokazu Yamamoto | ae9eb5c | 2009-04-26 03:34:06 +0000 | [diff] [blame] | 180 | Added support for *object_pairs_hook*. |
Raymond Hettinger | 9b8d069 | 2009-04-21 03:27:12 +0000 | [diff] [blame] | 181 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 182 | *parse_float*, if specified, will be called with the string of every JSON |
| 183 | float to be decoded. By default, this is equivalent to ``float(num_str)``. |
| 184 | This can be used to use another datatype or parser for JSON floats |
| 185 | (e.g. :class:`decimal.Decimal`). |
| 186 | |
| 187 | *parse_int*, if specified, will be called with the string of every JSON int |
| 188 | to be decoded. By default, this is equivalent to ``int(num_str)``. This can |
| 189 | be used to use another datatype or parser for JSON integers |
| 190 | (e.g. :class:`float`). |
| 191 | |
| 192 | *parse_constant*, if specified, will be called with one of the following |
| 193 | strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``, |
| 194 | ``'false'``. This can be used to raise an exception if invalid JSON numbers |
| 195 | are encountered. |
| 196 | |
| 197 | To use a custom :class:`JSONDecoder` subclass, specify it with the ``cls`` |
| 198 | kwarg. Additional keyword arguments will be passed to the constructor of the |
| 199 | class. |
| 200 | |
| 201 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 202 | .. 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 Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 203 | |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 204 | Deserialize *s* (a :class:`bytes` or :class:`str` instance containing a JSON |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 205 | document) to a Python object. |
| 206 | |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 207 | If *s* is a :class:`bytes` instance and is encoded with an ASCII based encoding |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 208 | other than UTF-8 (e.g. latin-1), then an appropriate *encoding* name must be |
| 209 | specified. Encodings that are not ASCII based (such as UCS-2) are not |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 210 | allowed and should be decoded to :class:`str` first. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 211 | |
Georg Brandl | 8569e58 | 2010-05-19 20:57:08 +0000 | [diff] [blame] | 212 | The other arguments have the same meaning as in :func:`load`. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 213 | |
| 214 | |
| 215 | Encoders and decoders |
| 216 | --------------------- |
| 217 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 218 | .. class:: JSONDecoder(object_hook=None, parse_float=None, parse_int=None, parse_constant=None, strict=True, object_pairs_hook=None) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 219 | |
| 220 | Simple JSON decoder. |
| 221 | |
| 222 | Performs the following translations in decoding by default: |
| 223 | |
| 224 | +---------------+-------------------+ |
| 225 | | JSON | Python | |
| 226 | +===============+===================+ |
| 227 | | object | dict | |
| 228 | +---------------+-------------------+ |
| 229 | | array | list | |
| 230 | +---------------+-------------------+ |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 231 | | string | str | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 232 | +---------------+-------------------+ |
Georg Brandl | 639ce96 | 2009-04-11 18:18:16 +0000 | [diff] [blame] | 233 | | number (int) | int | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 234 | +---------------+-------------------+ |
| 235 | | number (real) | float | |
| 236 | +---------------+-------------------+ |
| 237 | | true | True | |
| 238 | +---------------+-------------------+ |
| 239 | | false | False | |
| 240 | +---------------+-------------------+ |
| 241 | | null | None | |
| 242 | +---------------+-------------------+ |
| 243 | |
| 244 | It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as their |
| 245 | corresponding ``float`` values, which is outside the JSON spec. |
| 246 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 247 | *object_hook*, if specified, will be called with the result of every JSON |
| 248 | object decoded and its return value will be used in place of the given |
| 249 | :class:`dict`. This can be used to provide custom deserializations (e.g. to |
| 250 | support JSON-RPC class hinting). |
| 251 | |
Raymond Hettinger | 9b8d069 | 2009-04-21 03:27:12 +0000 | [diff] [blame] | 252 | *object_pairs_hook*, if specified will be called with the result of every |
| 253 | JSON object decoded with an ordered list of pairs. The return value of |
| 254 | *object_pairs_hook* will be used instead of the :class:`dict`. This |
| 255 | feature can be used to implement custom decoders that rely on the order |
| 256 | that the key and value pairs are decoded (for example, |
| 257 | :func:`collections.OrderedDict` will remember the order of insertion). If |
| 258 | *object_hook* is also defined, the *object_pairs_hook* takes priority. |
| 259 | |
| 260 | .. versionchanged:: 3.1 |
Hirokazu Yamamoto | ae9eb5c | 2009-04-26 03:34:06 +0000 | [diff] [blame] | 261 | Added support for *object_pairs_hook*. |
Raymond Hettinger | 9b8d069 | 2009-04-21 03:27:12 +0000 | [diff] [blame] | 262 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 263 | *parse_float*, if specified, will be called with the string of every JSON |
| 264 | float to be decoded. By default, this is equivalent to ``float(num_str)``. |
| 265 | This can be used to use another datatype or parser for JSON floats |
| 266 | (e.g. :class:`decimal.Decimal`). |
| 267 | |
| 268 | *parse_int*, if specified, will be called with the string of every JSON int |
| 269 | to be decoded. By default, this is equivalent to ``int(num_str)``. This can |
| 270 | be used to use another datatype or parser for JSON integers |
| 271 | (e.g. :class:`float`). |
| 272 | |
| 273 | *parse_constant*, if specified, will be called with one of the following |
| 274 | strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``, ``'null'``, ``'true'``, |
| 275 | ``'false'``. This can be used to raise an exception if invalid JSON numbers |
| 276 | are encountered. |
| 277 | |
| 278 | |
| 279 | .. method:: decode(s) |
| 280 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 281 | Return the Python representation of *s* (a :class:`str` instance |
| 282 | containing a JSON document) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 283 | |
| 284 | .. method:: raw_decode(s) |
| 285 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 286 | Decode a JSON document from *s* (a :class:`str` beginning with a |
| 287 | JSON document) and return a 2-tuple of the Python representation |
| 288 | and the index in *s* where the document ended. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 289 | |
| 290 | This can be used to decode a JSON document from a string that may have |
| 291 | extraneous data at the end. |
| 292 | |
| 293 | |
Georg Brandl | cd7f32b | 2009-06-08 09:13:45 +0000 | [diff] [blame] | 294 | .. class:: JSONEncoder(skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, sort_keys=False, indent=None, separators=None, default=None) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 295 | |
| 296 | Extensible JSON encoder for Python data structures. |
| 297 | |
| 298 | Supports the following objects and types by default: |
| 299 | |
| 300 | +-------------------+---------------+ |
| 301 | | Python | JSON | |
| 302 | +===================+===============+ |
| 303 | | dict | object | |
| 304 | +-------------------+---------------+ |
| 305 | | list, tuple | array | |
| 306 | +-------------------+---------------+ |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 307 | | str | string | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 308 | +-------------------+---------------+ |
Georg Brandl | 639ce96 | 2009-04-11 18:18:16 +0000 | [diff] [blame] | 309 | | int, float | number | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 310 | +-------------------+---------------+ |
| 311 | | True | true | |
| 312 | +-------------------+---------------+ |
| 313 | | False | false | |
| 314 | +-------------------+---------------+ |
| 315 | | None | null | |
| 316 | +-------------------+---------------+ |
| 317 | |
| 318 | To extend this to recognize other objects, subclass and implement a |
| 319 | :meth:`default` method with another method that returns a serializable object |
| 320 | for ``o`` if possible, otherwise it should call the superclass implementation |
| 321 | (to raise :exc:`TypeError`). |
| 322 | |
| 323 | If *skipkeys* is ``False`` (the default), then it is a :exc:`TypeError` to |
Georg Brandl | 639ce96 | 2009-04-11 18:18:16 +0000 | [diff] [blame] | 324 | attempt encoding of keys that are not str, int, float or None. If |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 325 | *skipkeys* is ``True``, such items are simply skipped. |
| 326 | |
Benjamin Peterson | c6b607d | 2009-05-02 12:36:44 +0000 | [diff] [blame] | 327 | If *ensure_ascii* is ``True`` (the default), the output is guaranteed to |
| 328 | have all incoming non-ASCII characters escaped. If *ensure_ascii* is |
| 329 | ``False``, these characters will be output as-is. |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 330 | |
| 331 | If *check_circular* is ``True`` (the default), then lists, dicts, and custom |
| 332 | encoded objects will be checked for circular references during encoding to |
| 333 | prevent an infinite recursion (which would cause an :exc:`OverflowError`). |
| 334 | Otherwise, no such check takes place. |
| 335 | |
| 336 | If *allow_nan* is ``True`` (the default), then ``NaN``, ``Infinity``, and |
| 337 | ``-Infinity`` will be encoded as such. This behavior is not JSON |
| 338 | specification compliant, but is consistent with most JavaScript based |
| 339 | encoders and decoders. Otherwise, it will be a :exc:`ValueError` to encode |
| 340 | such floats. |
| 341 | |
| 342 | If *sort_keys* is ``True`` (the default), then the output of dictionaries |
| 343 | will be sorted by key; this is useful for regression tests to ensure that |
| 344 | JSON serializations can be compared on a day-to-day basis. |
| 345 | |
| 346 | If *indent* is a non-negative integer (it is ``None`` by default), then JSON |
| 347 | array elements and object members will be pretty-printed with that indent |
| 348 | level. An indent level of 0 will only insert newlines. ``None`` is the most |
| 349 | compact representation. |
| 350 | |
| 351 | If specified, *separators* should be an ``(item_separator, key_separator)`` |
| 352 | tuple. The default is ``(', ', ': ')``. To get the most compact JSON |
| 353 | representation, you should specify ``(',', ':')`` to eliminate whitespace. |
| 354 | |
| 355 | If specified, *default* is a function that gets called for objects that can't |
| 356 | otherwise be serialized. It should return a JSON encodable version of the |
| 357 | object or raise a :exc:`TypeError`. |
| 358 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 359 | |
| 360 | .. method:: default(o) |
| 361 | |
| 362 | Implement this method in a subclass such that it returns a serializable |
| 363 | object for *o*, or calls the base implementation (to raise a |
| 364 | :exc:`TypeError`). |
| 365 | |
| 366 | For example, to support arbitrary iterators, you could implement default |
| 367 | like this:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 368 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 369 | def default(self, o): |
| 370 | try: |
Benjamin Peterson | e9bbc8b | 2008-09-28 02:06:32 +0000 | [diff] [blame] | 371 | iterable = iter(o) |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 372 | except TypeError: |
Benjamin Peterson | e9bbc8b | 2008-09-28 02:06:32 +0000 | [diff] [blame] | 373 | pass |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 374 | else: |
| 375 | return list(iterable) |
| 376 | return JSONEncoder.default(self, o) |
| 377 | |
| 378 | |
| 379 | .. method:: encode(o) |
| 380 | |
| 381 | Return a JSON string representation of a Python data structure, *o*. For |
| 382 | example:: |
| 383 | |
| 384 | >>> JSONEncoder().encode({"foo": ["bar", "baz"]}) |
| 385 | '{"foo": ["bar", "baz"]}' |
| 386 | |
| 387 | |
| 388 | .. method:: iterencode(o) |
| 389 | |
| 390 | Encode the given object, *o*, and yield each string representation as |
| 391 | available. For example:: |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 392 | |
Christian Heimes | 9054000 | 2008-05-08 14:29:10 +0000 | [diff] [blame] | 393 | for chunk in JSONEncoder().iterencode(bigobject): |
| 394 | mysocket.write(chunk) |