7 lines
121 B
Python
7 lines
121 B
Python
from socketIO_client import SocketIO, LoggingNamespace
|
|
|
|
socketIO = SocketIO('localhost', 3000)
|
|
|
|
socketIO.emit('toggle')
|
|
|