mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-20 13:10:42 +08:00
10 lines
300 B
Python
10 lines
300 B
Python
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. |