Converts JSON formatted date to native Python objects. The keys in any JSON dict are transformed from camelcase to underscore separated words.
(body, charset="utf-8", **kwargs)
| 55 | |
| 56 | |
| 57 | def json_underscore(body, charset="utf-8", **kwargs): |
| 58 | """Converts JSON formatted date to native Python objects. |
| 59 | |
| 60 | The keys in any JSON dict are transformed from camelcase to underscore separated words. |
| 61 | """ |
| 62 | return _underscore_dict(json(body, charset=charset)) |
| 63 | |
| 64 | |
| 65 | @content_type("application/x-www-form-urlencoded") |
nothing calls this directly
no test coverage detected