I'm trying to scrape data from http://apps.cu-citizenaccess.org/
It looks like they are trying to extract data from JSON, so I used code similar to that recommended in Scrapy, scrapping data inside a javascript.
My current code (using Python 3) is
jsonresponse = json.loads(response.body_as_unicode())
print(jsonresponse["val.restname"])
I was wondering whether it's an error in technique, or whether I should be doing else entirely?