pythonasyncioeventletgeventlong-pollinglow-latencysocket-iosocketiosocketio-serverweb-serverwebsocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
507 B
20 lines
507 B
#!/usr/bin/env python
|
|
import uvicorn
|
|
|
|
import socketio
|
|
|
|
sio = socketio.AsyncServer(async_mode='asgi')
|
|
app = socketio.ASGIApp(sio, static_files={
|
|
'/': {'content_type': 'text/html', 'filename': 'latency.html'},
|
|
'/static/style.css': {'content_type': 'text/css',
|
|
'filename': 'static/style.css'},
|
|
})
|
|
|
|
|
|
@sio.on('ping_from_client')
|
|
async def ping(sid):
|
|
await sio.emit('pong_from_server', room=sid)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
uvicorn.run(app, host='127.0.0.1', port=5000)
|
|
|