Data structures#
WebSocket events#
- class websockets.frames.Frame(opcode, data, fin=True, rsv1=False, rsv2=False, rsv3=False)[source]#
WebSocket frame.
- opcode#
Opcode.
- Type:
Only these fields are needed. The MASK bit, payload length and masking-key are handled on the fly when parsing and serializing frames.
- class websockets.frames.Opcode(value)[source]#
Opcode values for WebSocket frames.
- CONT = 0#
- TEXT = 1#
- BINARY = 2#
- CLOSE = 8#
- PING = 9#
- PONG = 10#
- class websockets.frames.CloseCode(value)[source]#
Close code values for WebSocket close frames.
- NORMAL_CLOSURE = 1000#
- GOING_AWAY = 1001#
- PROTOCOL_ERROR = 1002#
- UNSUPPORTED_DATA = 1003#
- NO_STATUS_RCVD = 1005#
- ABNORMAL_CLOSURE = 1006#
- INVALID_DATA = 1007#
- POLICY_VIOLATION = 1008#
- MESSAGE_TOO_BIG = 1009#
- MANDATORY_EXTENSION = 1010#
- INTERNAL_ERROR = 1011#
- SERVICE_RESTART = 1012#
- TRY_AGAIN_LATER = 1013#
- BAD_GATEWAY = 1014#
- TLS_HANDSHAKE = 1015#
HTTP events#
- class websockets.http11.Request(path, headers, _exception=None)[source]#
WebSocket handshake request.
- headers#
Request headers.
- class websockets.http11.Response(status_code, reason_phrase, headers, body=None, _exception=None)[source]#
WebSocket handshake response.
- headers#
Response headers.
- class websockets.datastructures.Headers(*args, **kwargs)[source]#
Efficient data structure for manipulating HTTP headers.
A
list
of(name, values)
is inefficient for lookups.A
dict
doesn’t suffice because header names are case-insensitive and multiple occurrences of headers with the same name are possible.Headers
stores HTTP headers in a hybrid data structure to provide efficient insertions and lookups while preserving the original data.In order to account for multiple values with minimal hassle,
Headers
follows this logic:- When getting a header with
headers[name]
: if there’s no value,
KeyError
is raised;if there’s exactly one value, it’s returned;
if there’s more than one value,
MultipleValuesError
is raised.
- When getting a header with
When setting a header with
headers[name] = value
, the value is appended to the list of values for that header.When deleting a header with
del headers[name]
, all values for that header are removed (this is slow).
Other methods for manipulating headers are consistent with this logic.
As long as no header occurs multiple times,
Headers
behaves likedict
, except keys are lower-cased to provide case-insensitivity.Two methods support manipulating multiple values explicitly:
get_all()
returns a list of all values for a header;raw_items()
returns an iterator of(name, values)
pairs.
URIs#
- websockets.uri.parse_uri(uri)[source]#
Parse and validate a WebSocket URI.
- Parameters:
uri (str) – WebSocket URI.
- Returns:
Parsed WebSocket URI.
- Return type:
- Raises:
InvalidURI – if
uri
isn’t a valid WebSocket URI.
- class websockets.uri.WebSocketURI(secure, host, port, path, query, username=None, password=None)[source]#
WebSocket URI.
- username#
Available when the URI contains User Information.
- password#
Available when the URI contains User Information.