I want to scrape a Javascript line that contains JSON data in Python. For example:
AH4RSearch.listingsJSON = $.parseJSON('{"properties":[{"Price":3695,"PriceFormatted":"3,695","Street":"9251 E Bajada Road"}');
I understand that after I can get the content of $.parseJSON I can use json.loads to store it in JSON format, but how do I get this content from the Javascript line?
split()and slicing[start:end]