[Solved] Python socket server: listening to multiple clients [closed]
[ad_1] in short, you have 3 main options: open a thread per client, that spawns after you accept(), and the run a loop in this context, that does read() => …. => write() run a main loop that uses select() on clients after accept() for each, and handle dispatching yourself. best option – use an … Read more