My search uses double quotes so I really need '"this is my search"'
When I export to code python (or any other language), it will show:
q: ""this is my search"",
which is syntactically wrong.
Correct should be:
'"this is my search"'
single quotes wrapping the double quotes.