added auto port find

This commit is contained in:
William Falcon
2019-07-24 14:52:19 -04:00
parent 01c0d9a2d4
commit 4b2096d2c6
+10
View File
@@ -0,0 +1,10 @@
import socket
s = socket.socket()
host = socket.gethostname() # Get local machine name
port = 12910 # Reserve a port for your service.
s.bind((host, port)) # Bind to the port
s.listen(5) # Now wait for client connection.
while True:
c, addr = s.accept() # Establish connection with client.