
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
A WebSocket Component for easily using WebSockets with API Star and Uvicorn
Easy WebSocket component for API Star and Uvicorn.
Simply use it like any other component on a route handler that will accept WebSocket connections
# With WebSocketAutoHook in event_hooks is the easiest usage,
# but see the Issues below about using WebSocketAutoHook
async def ws_handler(ws: WebSocket):
inbound_msg = await ws.recv()
...
await ws.send(outbound_msg)
# Without the WebSocketAutoHook
async def ws_handler(ws: WebSocket):
await ws.connect()
inbound_msg = await ws.recv()
...
await ws.send(outbound_msg)
await ws.close()
When used with the WebSocketAutoHook
the WebSocket will be connected before the handler
is called. When the handler returns or is ended due to error the WebSocket will be automatically
closed. See the Issues below concerning WebSocketAutoHook
.
pip install apistar-websocket
or for Pipenv users
pipenv install apistar-websocket
Here's a basic example of sending 100 numbers to the connected client and waiting
for a return message after each send. The WebSocket is connected and closed for us
by the WebSocketAutoHook
.
import json
from apistar import ASyncApp, Route
from websocket import WebSocket, WebSocketComponent, WebSocketAutoHook
async def welcome_ws(path: str, ws: WebSocket):
"""
A WebSocket endpoint used to play a terrible game of data ping pong.
"""
for i in range(100):
await ws.send(
json.dumps({
"msg": f"{path} is nice",
"count": i,
})
)
# We'll pretend we're playing ping pong
msg = await ws.receive()
routes = [
Route('/{+path}', 'GET', handler=welcome_ws, name='welcome_ws'),
]
event_hooks = [WebSocketAutoHook]
components = [WebSocketComponent()]
app = ASyncApp(
routes=routes,
components=components,
event_hooks=event_hooks,
)
if __name__ == '__main__':
main()
Same example as above, but without using the WebSocketAutoHook
. Here the handler
must manage the WebSocket connection itself and run as a standalone Route
to prevent
API Star from sending responses to the client.
import json
from apistar import ASyncApp, Route
from websocket import WebSocket, WebSocketComponent
async def welcome_ws(path: str, ws: WebSocket):
"""
A WebSocket endpoint used to subscribe to a stream of data.
"""
# finish the connection
await.connect()
for i in range(100):
await ws.send(
json.dumps({
"msg": f"{path} is nice",
"count": i,
})
)
# We'll pretend we're playing ping pong
msg = await ws.receive()
# close the connection
await ws.close()
# Must run the route standalone to prevent the attempt at an HTTP Response being sent
routes = [
Route('/{+path}', 'GET', handler=welcome_ws, name='welcome_ws', standalone=True),
]
components = [WebSocketComponent()]
app = ASyncApp(
routes=routes,
components=components,
)
if __name__ == '__main__':
main()
You have to run your API Star with Uvicorn for apistar-websocket
to work.
To run you app with debug on and automatically reloading the app on file changes, great for development, use:
uvicorn --log-level DEBUG --reload app:app
For a production environment start from the command:
uvicorn app:app
And adjust as needed, see uvicorn --help
for more options.
The cleanest way to use the component is without the WebSocketAutoHook
and as a standalone
route with the handler connecting and closing the WebSocket. This is because when a handler is
not used as a standalone route, the default, API Star will send an HTTP response after a handler
has finished. While this needed for regular HTTP requests, it is not for
WebSocket connections as they are already closed. You can use the WebSocketAutoHook
and your handlers will function as you expect.
But to prevent API Star from sending the HTTP response
WebSocketAutoHook
will raise an exception after closing the WebSocket to prevent the HTTP
response causing an error condition in API Star.
FAQs
WebSocket Component for API Star
We found that apistar-websocket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.