Note: This is Python 3, there is no urllib2. Also, I\'ve tried using json.loads(), and I get this error:
TypeError: can\'t use a string pattern on a bytes-
Try this:
jsonResponse = json.loads(response.decode('utf-8'))