Miguel Grinberg
4 months ago
Failed to extract signature
20 changed files with
42 additions and
42 deletions
-
examples/client/async/fiddle_client.py
-
examples/client/sync/fiddle_client.py
-
examples/server/aiohttp/app.html
-
examples/server/aiohttp/app.py
-
examples/server/aiohttp/fiddle.py
-
examples/server/asgi/app.html
-
examples/server/asgi/app.py
-
examples/server/asgi/fiddle.py
-
examples/server/javascript/fiddle.js
-
examples/server/sanic/app.html
-
examples/server/sanic/app.py
-
examples/server/sanic/fiddle.py
-
examples/server/tornado/app.py
-
examples/server/tornado/fiddle.py
-
examples/server/tornado/templates/app.html
-
examples/server/wsgi/app.py
-
examples/server/wsgi/django_socketio/socketio_app/static/index.html
-
examples/server/wsgi/django_socketio/socketio_app/views.py
-
examples/server/wsgi/fiddle.py
-
examples/server/wsgi/templates/index.html
|
|
@ -10,8 +10,8 @@ async def connect(): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
async def disconnect(): |
|
|
|
print('disconnected from server') |
|
|
|
async def disconnect(reason): |
|
|
|
print('disconnected from server, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
|
|
@ -9,8 +9,8 @@ def connect(): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(): |
|
|
|
print('disconnected from server') |
|
|
|
def disconnect(reason): |
|
|
|
print('disconnected from server, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|
|
|
@ -70,8 +70,8 @@ async def connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
app.router.add_static('/static', 'static') |
|
|
@ -84,4 +84,4 @@ async def init_app(): |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
web.run_app(init_app()) |
|
|
|
web.run_app(init_app(), port=5000) |
|
|
|
|
|
@ -19,8 +19,8 @@ async def connect(sid, environ, auth): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('disconnected', sid) |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('disconnected', sid, reason) |
|
|
|
|
|
|
|
|
|
|
|
app.router.add_static('/static', 'static') |
|
|
@ -28,4 +28,4 @@ app.router.add_get('/', index) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
web.run_app(app) |
|
|
|
web.run_app(app, port=5000) |
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|
|
|
@ -88,8 +88,8 @@ async def test_connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.on('disconnect') |
|
|
|
def test_disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def test_disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
|
@ -17,8 +17,8 @@ async def connect(sid, environ, auth): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('disconnected', sid) |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('disconnected', sid, reason) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
|
@ -19,8 +19,8 @@ io.on('connection', socket => { |
|
|
|
hello: 'you' |
|
|
|
}); |
|
|
|
|
|
|
|
socket.on('disconnect', () => { |
|
|
|
console.log(`disconnect ${socket.id}`); |
|
|
|
socket.on('disconnect', (reason) => { |
|
|
|
console.log(`disconnect ${socket.id}, reason: ${reason}`); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|
|
|
@ -77,8 +77,8 @@ async def connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
app.static('/static', './static') |
|
|
|
|
|
@ -21,8 +21,8 @@ async def connect(sid, environ, auth): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('disconnected', sid) |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('disconnected', sid, reason) |
|
|
|
|
|
|
|
|
|
|
|
app.static('/static', './static') |
|
|
|
|
|
@ -75,8 +75,8 @@ async def connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
def main(): |
|
|
|
|
|
@ -24,8 +24,8 @@ async def connect(sid, environ, auth): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('disconnected', sid) |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('disconnected', sid, reason) |
|
|
|
|
|
|
|
|
|
|
|
def main(): |
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|
|
|
@ -94,8 +94,8 @@ def connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|
|
|
@ -78,5 +78,5 @@ def connect(sid, environ): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('Client disconnected') |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('Client disconnected, reason:', reason) |
|
|
|
|
|
@ -23,8 +23,8 @@ def connect(sid, environ, auth): |
|
|
|
|
|
|
|
|
|
|
|
@sio.event |
|
|
|
def disconnect(sid): |
|
|
|
print('disconnected', sid) |
|
|
|
def disconnect(sid, reason): |
|
|
|
print('disconnected', sid, reason) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
|
@ -11,8 +11,8 @@ |
|
|
|
socket.on('connect', function() { |
|
|
|
socket.emit('my_event', {data: 'I\'m connected!'}); |
|
|
|
}); |
|
|
|
socket.on('disconnect', function() { |
|
|
|
$('#log').append('<br>Disconnected'); |
|
|
|
socket.on('disconnect', function(reason) { |
|
|
|
$('#log').append('<br>Disconnected: ' + reason); |
|
|
|
}); |
|
|
|
socket.on('my_response', function(msg) { |
|
|
|
$('#log').append('<br>Received: ' + msg.data); |
|
|
|