I have a json file with something like "key": "value1\value2". I can not make python read this file properly:
- If there is only one backslash, it refuses to parse it.
- If there are two (like
"key":"value1\\value2") the output also has two backslashes
I am using standard json module with loads/dumps functions
Could not find any information anywhere, other similar questions are irrelevant