freebsd-ports/net/py-wsproto/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

11 lines
583 B
Text

A pure-Python implementation of a WebSocket protocol stack. It's written from
the ground up to be embeddable in whatever program you choose to use, ensuring
that you can communicate via WebSockets, as defined in RFC6455, regardless of
your programming paradigm.
This does not provide a parsing layer, a network layer, or any rules about
concurrency. Instead, it's a purely in-memory solution, defined in terms of data
actions and WebSocket frames. RFC6455 and Compression Extensions for WebSocket
via RFC7692 are fully supported.
See also: https://github.com/python-hyper/wsproto/