second commit
This commit is contained in:
172
env/lib/python3.11/site-packages/websockets/__init__.py
vendored
Normal file
172
env/lib/python3.11/site-packages/websockets/__init__.py
vendored
Normal file
@ -0,0 +1,172 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import typing
|
||||
|
||||
from .imports import lazy_import
|
||||
from .version import version as __version__ # noqa: F401
|
||||
|
||||
|
||||
__all__ = [
|
||||
# .asyncio.client
|
||||
"connect",
|
||||
"unix_connect",
|
||||
# .asyncio.server
|
||||
"basic_auth",
|
||||
"broadcast",
|
||||
"serve",
|
||||
"unix_serve",
|
||||
# .client
|
||||
"ClientProtocol",
|
||||
# .datastructures
|
||||
"Headers",
|
||||
"HeadersLike",
|
||||
"MultipleValuesError",
|
||||
# .exceptions
|
||||
"ConcurrencyError",
|
||||
"ConnectionClosed",
|
||||
"ConnectionClosedError",
|
||||
"ConnectionClosedOK",
|
||||
"DuplicateParameter",
|
||||
"InvalidHandshake",
|
||||
"InvalidHeader",
|
||||
"InvalidHeaderFormat",
|
||||
"InvalidHeaderValue",
|
||||
"InvalidOrigin",
|
||||
"InvalidParameterName",
|
||||
"InvalidParameterValue",
|
||||
"InvalidState",
|
||||
"InvalidStatus",
|
||||
"InvalidUpgrade",
|
||||
"InvalidURI",
|
||||
"NegotiationError",
|
||||
"PayloadTooBig",
|
||||
"ProtocolError",
|
||||
"SecurityError",
|
||||
"WebSocketException",
|
||||
# .server
|
||||
"ServerProtocol",
|
||||
# .typing
|
||||
"Data",
|
||||
"ExtensionName",
|
||||
"ExtensionParameter",
|
||||
"LoggerLike",
|
||||
"StatusLike",
|
||||
"Origin",
|
||||
"Subprotocol",
|
||||
]
|
||||
|
||||
# When type checking, import non-deprecated aliases eagerly. Else, import on demand.
|
||||
if typing.TYPE_CHECKING:
|
||||
from .asyncio.client import connect, unix_connect
|
||||
from .asyncio.server import basic_auth, broadcast, serve, unix_serve
|
||||
from .client import ClientProtocol
|
||||
from .datastructures import Headers, HeadersLike, MultipleValuesError
|
||||
from .exceptions import (
|
||||
ConcurrencyError,
|
||||
ConnectionClosed,
|
||||
ConnectionClosedError,
|
||||
ConnectionClosedOK,
|
||||
DuplicateParameter,
|
||||
InvalidHandshake,
|
||||
InvalidHeader,
|
||||
InvalidHeaderFormat,
|
||||
InvalidHeaderValue,
|
||||
InvalidOrigin,
|
||||
InvalidParameterName,
|
||||
InvalidParameterValue,
|
||||
InvalidState,
|
||||
InvalidStatus,
|
||||
InvalidUpgrade,
|
||||
InvalidURI,
|
||||
NegotiationError,
|
||||
PayloadTooBig,
|
||||
ProtocolError,
|
||||
SecurityError,
|
||||
WebSocketException,
|
||||
)
|
||||
from .server import ServerProtocol
|
||||
from .typing import (
|
||||
Data,
|
||||
ExtensionName,
|
||||
ExtensionParameter,
|
||||
LoggerLike,
|
||||
Origin,
|
||||
StatusLike,
|
||||
Subprotocol,
|
||||
)
|
||||
else:
|
||||
lazy_import(
|
||||
globals(),
|
||||
aliases={
|
||||
# .asyncio.client
|
||||
"connect": ".asyncio.client",
|
||||
"unix_connect": ".asyncio.client",
|
||||
# .asyncio.server
|
||||
"basic_auth": ".asyncio.server",
|
||||
"broadcast": ".asyncio.server",
|
||||
"serve": ".asyncio.server",
|
||||
"unix_serve": ".asyncio.server",
|
||||
# .client
|
||||
"ClientProtocol": ".client",
|
||||
# .datastructures
|
||||
"Headers": ".datastructures",
|
||||
"HeadersLike": ".datastructures",
|
||||
"MultipleValuesError": ".datastructures",
|
||||
# .exceptions
|
||||
"ConcurrencyError": ".exceptions",
|
||||
"ConnectionClosed": ".exceptions",
|
||||
"ConnectionClosedError": ".exceptions",
|
||||
"ConnectionClosedOK": ".exceptions",
|
||||
"DuplicateParameter": ".exceptions",
|
||||
"InvalidHandshake": ".exceptions",
|
||||
"InvalidHeader": ".exceptions",
|
||||
"InvalidHeaderFormat": ".exceptions",
|
||||
"InvalidHeaderValue": ".exceptions",
|
||||
"InvalidOrigin": ".exceptions",
|
||||
"InvalidParameterName": ".exceptions",
|
||||
"InvalidParameterValue": ".exceptions",
|
||||
"InvalidState": ".exceptions",
|
||||
"InvalidStatus": ".exceptions",
|
||||
"InvalidUpgrade": ".exceptions",
|
||||
"InvalidURI": ".exceptions",
|
||||
"NegotiationError": ".exceptions",
|
||||
"PayloadTooBig": ".exceptions",
|
||||
"ProtocolError": ".exceptions",
|
||||
"SecurityError": ".exceptions",
|
||||
"WebSocketException": ".exceptions",
|
||||
# .server
|
||||
"ServerProtocol": ".server",
|
||||
# .typing
|
||||
"Data": ".typing",
|
||||
"ExtensionName": ".typing",
|
||||
"ExtensionParameter": ".typing",
|
||||
"LoggerLike": ".typing",
|
||||
"Origin": ".typing",
|
||||
"StatusLike": ".typing",
|
||||
"Subprotocol": ".typing",
|
||||
},
|
||||
deprecated_aliases={
|
||||
# deprecated in 9.0 - 2021-09-01
|
||||
"framing": ".legacy",
|
||||
"handshake": ".legacy",
|
||||
"parse_uri": ".uri",
|
||||
"WebSocketURI": ".uri",
|
||||
# deprecated in 14.0 - 2024-11-09
|
||||
# .legacy.auth
|
||||
"BasicAuthWebSocketServerProtocol": ".legacy.auth",
|
||||
"basic_auth_protocol_factory": ".legacy.auth",
|
||||
# .legacy.client
|
||||
"WebSocketClientProtocol": ".legacy.client",
|
||||
# .legacy.exceptions
|
||||
"AbortHandshake": ".legacy.exceptions",
|
||||
"InvalidMessage": ".legacy.exceptions",
|
||||
"InvalidStatusCode": ".legacy.exceptions",
|
||||
"RedirectHandshake": ".legacy.exceptions",
|
||||
"WebSocketProtocolError": ".legacy.exceptions",
|
||||
# .legacy.protocol
|
||||
"WebSocketCommonProtocol": ".legacy.protocol",
|
||||
# .legacy.server
|
||||
"WebSocketServer": ".legacy.server",
|
||||
"WebSocketServerProtocol": ".legacy.server",
|
||||
},
|
||||
)
|
Reference in New Issue
Block a user