+ 1
How to use server in socket module in python?
when i use localhost for ip in socket module, it works in one device, but i want to use socket module in two or more device. please help me!
2 Answers
+ 1
Set up threading so your server can handle multiple requests. You could run a server on a computer and comunicate with multiple devices with client script and create seperate threads to handle each one.
0
ok. How to find and use a server?