So Im making a WebSocket Server in Python for my own purposes and I need to decypher the data recieved from the network. it's all in some jibberjabbish, can anyone help me figure out what it means?
while True:
data = self.socket.recv(1024)
print bytes(data)
that's my current code, though it just returns some weird characters. How do you make this into normal text? I have read the other topic on it, but the answers didn't help (were specific to his weird PHP stuff) and the links were dead.