File: __init__.py

package info (click to toggle)
python-trio-websocket 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 432 kB
  • sloc: python: 2,900; makefile: 41; sh: 17
file content (21 lines) | stat: -rw-r--r-- 831 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# pylint: disable=useless-import-alias
from ._impl import (
    CloseReason as CloseReason,
    ConnectionClosed as ConnectionClosed,
    ConnectionRejected as ConnectionRejected,
    ConnectionTimeout as ConnectionTimeout,
    connect_websocket as connect_websocket,
    connect_websocket_url as connect_websocket_url,
    DisconnectionTimeout as DisconnectionTimeout,
    Endpoint as Endpoint,
    HandshakeError as HandshakeError,
    open_websocket as open_websocket,
    open_websocket_url as open_websocket_url,
    WebSocketConnection as WebSocketConnection,
    WebSocketRequest as WebSocketRequest,
    WebSocketServer as WebSocketServer,
    wrap_client_stream as wrap_client_stream,
    wrap_server_stream as wrap_server_stream,
    serve_websocket as serve_websocket,
)
from ._version import __version__ as __version__