Lim Leong Kui
Results
1
comments of
Lim Leong Kui
This is a python client example: ```python import asyncio import socketio debug=False sio = socketio.AsyncSimpleClient( logger=debug, engineio_logger=debug, ) async def main(): await sio.connect( 'http://localhost:8000', socketio_path='/ws/socket.io', ) await sio.emit('join', {'room': 'aaaa'})...