I am trying to parse a json that I found in a website via python3.
This is the beginning of the snippet:
>>> jssnippet
'\n var staticImpressions = staticImpressions || {};\n staticImpressions[\'search_result_list\'] = [\n {\n "id": "16336937",...
This unfortunatelly failes:
data = json.loads(jssnippet, strict=False)
How can I access the variables in that list, e.g. id?
