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(
Facing the same problem I solve it using decode()
... rawreply = connection.getresponse().read() reply = json.loads(rawreply.decode())