Paste a Python dict - None, True/False, single quotes, tuples and all - and get valid JSON back.
A long single-line dict with single quotes, True/False/None and maybe a tuple or two - valid Python, invalid JSON.
Formatted JSON with double-quoted keys and the right literals, ready to drop into a request body, a fixture file or an API doc.
The usual reason people need this: the object exists only as text in a terminal.
Copying the dict out of the source file and rewriting the quotes and keywords by hand, one line at a time.
A JSON file with the same structure, produced in one step, so the fixture cannot drift from the dict it was taken from.
Keeps fixtures honest without a throwaway script.