Yrouter-websockets
yrouter-websokets is a URL routing package for the websockets library. It's built on top of yrouter.
Example
import asyncio
import http
import websockets
from yrouter import route
from yrouter_websockets import router
async def home(ws):
await ws.send("In home")
async def hello_user(ws, username):
await ws.send(f"Hello {username}")
async def channel(ws, channel_id):
# Do some stuff with channel_id
routes = (
route("/", home),
route("hello/<str:username>/", hello_user),
route("channels/<int:channel_id>", channel),
)
async def main():
async with websockets.serve(router(routes), "localhost", 8765):
await asyncio.Future()
if __name__ == "__main__":
asyncio.run(main())
Release files for yrouter-websockets 0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| yrouter-websockets-0.2.tar.gz | 3.2 kB | Details |
Release files / yrouter-websockets-0.2.tar.gz
| Download URL | yrouter-websockets-0.2.tar.gz |
|---|---|
| Size | 3.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
13ba9f6f51fb946f269aef9fc54307ee55b57fca74cb383b6723723cf8dd9d85
|
|
BLAKE2b-256 checksum How to use checksums |
1153ed9ec2267778f731b065e87bf26873f0892a31598c3171251124c7a99282
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
|