Trying to make a script to read this json file and I having some erros while trying it.
urllib.request.urlopen("https://github.com/lutangar/cities.json/blob/master/cities.json") as url: data = json.load(url) print(data)
When I try to run, I'm having this error and I don't know how to fix it.
JSONDecodeError: Expecting value: line 8 column 1 (char 7)
I'm trying to open the link but I alwasy got an error message.