How to create multi-server sockets on one client in Python ? I am thinking about create a List of server socket and make the connection with non-blocking socket, but i don't find a good tutorial for that, thats why i came here, to ask for better solution or a guide for non-blocking socket.
Thank you !
Thank for the help, but i mean to something different, i have list of Servers Ip like that:
SERVER_IP = ['127.0.0.1', '127.0.0.2', '127.0.0.3', '127.0.0.4', '127.0.0.5', '127.0.0.6, '127.0.0.7']
I have one option to create a list of sockets by ip, and try to connect to every Ip Server, but i ask here if i have a different way to connect to all this Servers Ip without a list of sockets, something more convenient.
Thank you.