about sockets in python #8
-
So I am very new to networking and I was using the Python Socket library to connect to a server that is supposed to give me time from the server. Here is the code used.
I do not understand why when you pass the information to python, print these strange numbers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It seems like you are trying to establish communication using |
Beta Was this translation helpful? Give feedback.
It seems like you are trying to establish communication using
websocket
, which the built-insocket
module would not be suited for out of the box (as it operates at a much lower level). You may wish to refer to this thread on how you might want to use websocket in Python instead. –metatoaster