python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to send continous data from server to client in Python?
I am building a server to send data to the client in Python. I would like to continuously send the time until the client closes the connection. So far, I have done :
For the server:
import socket
from...
Ian Kurtis
Votes: 0
Answers: 1
Python3:socket:TypeError: unsupported operand type(s) for +=: 'type' and 'bytes'
I am trying to use the python socket package to implement an echo server. But it continuously occurs the error: TypeError: unsupported operand type(s) for += 'type' and 'bytes', is there any errors in...
Mouad Idi
Votes: 0
Answers: 0
Window in tkinter on client side does not responding during sending music file through socket from server
server sent music file completely and sent the successful message at the end but the client stopes and doesnt work anymore
the client side is a GUI that was made with tkinter and I tryed this sending ...

Yazdan ZandiyeVakili
Votes: 0
Answers: 0
io.emit() didnot send the message to the connected clients ( in browser console)
Client side --> emitting the 'message' event
socket.emit("message", {
from: "Santosh",
to: "Leela",
text: "hey !Leela "
});
//server side --. lis...
santosh
Votes: 0
Answers: 1