From 1768e251b90eabefc661489595916f7bd0d0380a Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 25 Nov 2018 11:44:16 +0000 Subject: [PATCH] updates to asgi examples --- examples/asgi/README.rst | 7 +++---- examples/asgi/app.html | 0 examples/asgi/app.py | 1 + examples/asgi/latency.html | 0 examples/asgi/latency.py | 1 + examples/asgi/requirements.txt | 17 +++++++++-------- 6 files changed, 14 insertions(+), 12 deletions(-) mode change 100755 => 100644 examples/asgi/app.html mode change 100755 => 100644 examples/asgi/latency.html diff --git a/examples/asgi/README.rst b/examples/asgi/README.rst index f1ce6aa..4fe8af8 100644 --- a/examples/asgi/README.rst +++ b/examples/asgi/README.rst @@ -1,9 +1,8 @@ -Socket.IO aiohttp Examples +Socket.IO ASGI Examples ========================== This directory contains example Socket.IO applications that are compatible with -asyncio and the aiohttp framework. These applications require Python 3.5 or -later. +asyncio and the ASGI specification. app.py ------ @@ -36,4 +35,4 @@ or:: $ python latency.py You can then access the application from your web browser at -``http://localhost:8080``. +``http://localhost:5000``. diff --git a/examples/asgi/app.html b/examples/asgi/app.html old mode 100755 new mode 100644 diff --git a/examples/asgi/app.py b/examples/asgi/app.py index 0771d47..ab440e9 100755 --- a/examples/asgi/app.py +++ b/examples/asgi/app.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python import asyncio import uvicorn diff --git a/examples/asgi/latency.html b/examples/asgi/latency.html old mode 100755 new mode 100644 diff --git a/examples/asgi/latency.py b/examples/asgi/latency.py index d53b799..97c7268 100755 --- a/examples/asgi/latency.py +++ b/examples/asgi/latency.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python import uvicorn import socketio diff --git a/examples/asgi/requirements.txt b/examples/asgi/requirements.txt index 4892ab9..0c0b87c 100644 --- a/examples/asgi/requirements.txt +++ b/examples/asgi/requirements.txt @@ -1,8 +1,9 @@ -aiohttp==1.3.1 -async-timeout==1.1.0 -chardet==2.3.0 -multidict==2.1.4 -python-engineio -python_socketio -six==1.10.0 -yarl==0.9.2 +Click==7.0 +h11==0.8.1 +httptools==0.0.11 +python-engineio==3.0.0 +-e git+git@github.com:miguelgrinberg/python-socketio@b214380d056dbbfb08273ac482633254176cb847#egg=python_socketio +six==1.11.0 +uvicorn==0.3.21 +uvloop==0.11.3 +websockets==7.0