I\'ve been trying to update a small Python library called libpynexmo to work with Python 3.
I\'ve been stuck on this function:
def send_request_json(
I met the problem as well and now it pass
import json import urllib.request as ur import urllib.parse as par html = ur.urlopen(url).read() print(type(html)) data = json.loads(html.decode('utf-8'))