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)
Python Sockets - Data is being sent way too fast
I'm using python sockets to send data across however whenever I'm sending data to the client, it seems to miss my data unless I'm debugging (which allows me to pause execution when needed).
Server sni...

Joy Singh
Votes: 0
Answers: 1
How to transfer data between two devices on a LAN using Python socket
I had made a code for a small server-client GUI to make a connection between two devices on a LAN
(its for a small game I am making) and when trying to connect the server and client when they both run...
Bakajanaino
Votes: 0
Answers: 0
Why not assign a variable instead of using `with .. as`?
I'm learning socket programming in Python, and saw that a person used this piece of code:
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind((HOST, PORT))
s.listen()
conn,...
Shastaz
Votes: 0
Answers: 0
Address already in use when restarting socket
I have the following Socket Server to run in a Raspberry.
I can connect to it, send commands and it replies the command.
Now I want that when I send the command RESET the Socket gets disconnected and ...

user2261062
Votes: 0
Answers: 1