Takes JSON formatted data, converting it into native Python objects
(body, charset="utf-8", **kwargs)
| 39 | |
| 40 | @content_type("application/json") |
| 41 | def json(body, charset="utf-8", **kwargs): |
| 42 | """Takes JSON formatted data, converting it into native Python objects""" |
| 43 | return json_converter.loads(text(body, charset=charset)) |
| 44 | |
| 45 | |
| 46 | def _underscore_dict(dictionary): |
no test coverage detected