forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_simple.py
More file actions
31 lines (22 loc) · 788 Bytes
/
server_simple.py
File metadata and controls
31 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# server_simple.py
from aiohttp import web
async def handle(request: web.Request) -> web.StreamResponse:
name = request.match_info.get("name", "Anonymous")
text = "Hello, " + name
return web.Response(text=text)
async def wshandle(request: web.Request) -> web.StreamResponse:
ws = web.WebSocketResponse()
await ws.prepare(request)
async for msg in ws:
if msg.type is web.WSMsgType.TEXT:
await ws.send_str(f"Hello, {msg.data}")
elif msg.type is web.WSMsgType.BINARY:
await ws.send_bytes(msg.data)
elif msg.type is web.WSMsgType.CLOSE:
break
return ws
app = web.Application()
app.add_routes(
[web.get("/", handle), web.get("/echo", wshandle), web.get("/{name}", handle)]
)
web.run_app(app)