python-json-logger
python-json-logger copied to clipboard
Any way to replace double quotes with single quotes instead of quote escaping?
I'm wondering if there is a way to output strings substituted with single quotes:
{ ... "foo": "Foo(confidence_reason='MIL player's names are longer than MIN by 13.32%' confidence=NONE)" }
Instead of the escaped quotes (which is what happens currently:
{ ... "foo": "Foo(confidence_reason="MIL player's names are longer than MIN by 13.32%", confidence=NONE)" }
Thanks for the lovely library, use it daily