6 lines
108 B
Python
6 lines
108 B
Python
from socketIO_client import SocketIO
|
|
|
|
s = SocketIO('localhost', 8000)
|
|
del s
|
|
from time import sleep
|
|
sleep(3)
|