WebSockets¶
When defining WebSockets, you normally declare a parameter of type WebSocket
and
with it you can read data from the client and send data to it.
It is provided directly by Starlette, but you can import it from fastapi
:
from fastapi import WebSocket
Tip
When you want to define dependencies that should be compatible with both HTTP and
WebSockets, you can define a parameter that takes an HTTPConnection
instead of a
Request
or a WebSocket
.
fastapi.WebSocket
¶
WebSocket(scope, receive, send)
Bases: HTTPConnection
PARAMETER | DESCRIPTION |
---|---|
scope |
TYPE:
|
receive |
TYPE:
|
send |
TYPE:
|
Source code in starlette/websockets.py
22 23 24 25 26 27 28 |
|
url_for
¶
url_for(__name, **path_params)
PARAMETER | DESCRIPTION |
---|---|
__name |
TYPE:
|
**path_params |
TYPE:
|
Source code in starlette/requests.py
176 177 178 179 |
|
receive
async
¶
receive()
Receive ASGI websocket messages, ensuring valid state transitions.
Source code in starlette/websockets.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
|
send
async
¶
send(message)
Send ASGI websocket messages, ensuring valid state transitions.
PARAMETER | DESCRIPTION |
---|---|
message |
TYPE:
|
Source code in starlette/websockets.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
accept
async
¶
accept(subprotocol=None, headers=None)
PARAMETER | DESCRIPTION |
---|---|
subprotocol |
TYPE:
|
headers |
TYPE:
|
Source code in starlette/websockets.py
89 90 91 92 93 94 95 96 97 98 99 100 101 |
|
receive_text
async
¶
receive_text()
Source code in starlette/websockets.py
107 108 109 110 111 112 113 114 |
|
receive_bytes
async
¶
receive_bytes()
Source code in starlette/websockets.py
116 117 118 119 120 121 122 123 |
|
receive_json
async
¶
receive_json(mode='text')
PARAMETER | DESCRIPTION |
---|---|
mode |
TYPE:
|
Source code in starlette/websockets.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
iter_text
async
¶
iter_text()
Source code in starlette/websockets.py
141 142 143 144 145 146 |
|
iter_bytes
async
¶
iter_bytes()
Source code in starlette/websockets.py
148 149 150 151 152 153 |
|
iter_json
async
¶
iter_json()
Source code in starlette/websockets.py
155 156 157 158 159 160 |
|
send_text
async
¶
send_text(data)
PARAMETER | DESCRIPTION |
---|---|
data |
TYPE:
|
Source code in starlette/websockets.py
162 163 |
|
send_bytes
async
¶
send_bytes(data)
PARAMETER | DESCRIPTION |
---|---|
data |
TYPE:
|
Source code in starlette/websockets.py
165 166 |
|
send_json
async
¶
send_json(data, mode='text')
PARAMETER | DESCRIPTION |
---|---|
data |
TYPE:
|
mode |
TYPE:
|
Source code in starlette/websockets.py
168 169 170 171 172 173 174 175 |
|
close
async
¶
close(code=1000, reason=None)
PARAMETER | DESCRIPTION |
---|---|
code |
TYPE:
|
reason |
TYPE:
|
Source code in starlette/websockets.py
177 178 179 180 181 182 |
|
When a client disconnects, a WebSocketDisconnect
exception is raised, you can catch
it.
You can import it directly form fastapi
:
from fastapi import WebSocketDisconnect
fastapi.WebSocketDisconnect
¶
WebSocketDisconnect(code=1000, reason=None)
Bases: Exception
PARAMETER | DESCRIPTION |
---|---|
code |
TYPE:
|
reason |
TYPE:
|
Source code in starlette/websockets.py
16 17 18 |
|
WebSockets - additional classes¶
Additional classes for handling WebSockets.
Provided directly by Starlette, but you can import it from fastapi
:
from fastapi.websockets import WebSocketDisconnect, WebSocketState
fastapi.websockets.WebSocketDisconnect
¶
WebSocketDisconnect(code=1000, reason=None)
Bases: Exception
PARAMETER | DESCRIPTION |
---|---|
code |
TYPE:
|
reason |
TYPE:
|
Source code in starlette/websockets.py
16 17 18 |
|