How can I replace double quotes with a backslash and double quotes in Python?
>>> s = \'my string with \"double quotes\" blablabla\' >>>
You should be using the json module. json.dumps(string). It can also serialize other python data types.
json.dumps(string)
import json >>> s = 'my string with "double quotes" blablabla' >>> json.dumps(s) <<< '"my string with \\"double quotes\\" blablabla"'