Skip to main content

An implementation of the WebSocket Protocol (RFC 6455 & 7692)

Project description

rtd pypi-v pypi-pyversions pypi-l pypi-wheel

What is trio-websockets?

trio-websockets is a library for building WebSocket servers and clients in Python, based on trio, an asynchronous I/O framework.

Currently a work in progress. The status is:

  • The client-side works.

  • The server-side does not.

History of the library

The code is originally forked from aaugustin’s websockets library for asyncio, with the following changes:

  • Rip out all asyncio things, replace with trio.

  • Rip out the websocket protocol code, replace with wsproto.

What remains of the original websockets library itself?

  • Most of the remaining code seems to be additional error checking around connection state. Rather than a “trio.BrokenStreamError”, you will receive a ConnectionClosed exception when trying to write on a closed connection.

  • The same/very similar interface to websockets, which might be slightly more user-friendly than a raw wsproto connection (say, exposing attributes like .subprotocol, which wsproto passes along during the ConnectionEstablished event).

TODO

  • Port the server-side.

  • Make the examples run.

  • Make the tests run.

  • Support for curio.

  • Cleanup documentation and readme.

  • Experiment with a different architecture, using reader/writer tasks.

How to use it

Here’s a client that says “Hello world!”:

#!/usr/bin/env python

import trio
import trio_websockets

async def hello(uri):
    async with trio_websockets.connect(uri) as websocket:
        await websocket.send("Hello world!")

trio.run(hello, 'ws://localhost:8765')

And here’s an echo server (for Python ≥ 3.6):

#!/usr/bin/env python

import trio
import trio_websockets

async def echo(websocket, path):
    async for message in websocket:
        await websocket.send(message)

trio.run(trio_websockets.serve, echo, 'localhost', 8765)

Does that look good? Start here.

What else?

Bug reports, patches and suggestions welcome! Just open an issue or send a pull request.

trio-websockets is released under the BSD license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trio-websockets-0.2.tar.gz (34.7 kB view details)

Uploaded Source

File details

Details for the file trio-websockets-0.2.tar.gz.

File metadata

  • Download URL: trio-websockets-0.2.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for trio-websockets-0.2.tar.gz
Algorithm Hash digest
SHA256 8107e7dc42581c4c01c189a3f58b789f208dbce647e44d6f6caff343e2bd5081
MD5 3d9f25cc6614c7449efc0c44a7bb8d91
BLAKE2b-256 a08831c24c23c9be0c4a4a17c55a8369e8ee37390b8608bf0e0262131d38e792

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page