Server Reference¶
Request and Base Request¶
The Request object contains all the information about an incoming HTTP request.
BaseRequest is used for Low-Level
Servers (which have no applications, routers,
signals and middlewares). Request has an Request.app
and Request.match_info attributes.
A BaseRequest / Request are dict like objects,
allowing them to be used for sharing
data among Middlewares
and Signals handlers.
-
class
aiohttp.web.BaseRequest¶ -
version¶ HTTP version of request, Read-only property.
Returns
aiohttp.protocol.HttpVersioninstance.
-
method¶ HTTP method, read-only property.
The value is upper-cased
strlike"GET","POST","PUT"etc.
-
url¶ A
URLinstance with absolute URL to resource (scheme, host and port are included).Note
In case of malformed request (e.g. without
"HOST"HTTP header) the absolute url may be unavailable.
-
rel_url¶ A
URLinstance with relative URL to resource (contains path, query and fragment parts only, scheme, host and port are excluded).The property is equal to
.url.relative()but is always present.See also
A note from
url.
-
scheme¶ A string representing the scheme of the request.
The scheme is
'https'if transport for request handling is SSL,'http'otherwise.The value could be overridden by
clone().Read-only
strproperty.Changed in version 2.3: Forwarded and X-Forwarded-Proto are not used anymore.
Call
.clone(scheme=new_scheme)for setting up the value explicitly.See also
-
forwarded¶ A tuple containing all parsed Forwarded header(s).
Makes an effort to parse Forwarded headers as specified by RFC 7239:
- It adds one (immutable) dictionary per Forwarded
field-value, i.e. per proxy. The element corresponds to the data in the Forwardedfield-valueadded by the first proxy encountered by the client. Each subsequent item corresponds to those added by later proxies. - It checks that every value has valid syntax in general as specified
in RFC 7239#section-4: either a
tokenor aquoted-string. - It un-escapes
quoted-pairs. - It does NOT validate ‘by’ and ‘for’ contents as specified in RFC 7239#section-6.
- It does NOT validate
hostcontents (Host ABNF). - It does NOT validate
protocontents for valid URI scheme names.
Returns a tuple containing one or more
MappingProxyobjectsSee also
See also
- It adds one (immutable) dictionary per Forwarded
-
host¶ Host name of the request, resolved in this order:
- Overridden value by
clone()call. - Host HTTP header
socket.gtfqdn()
Read-only
strproperty.Changed in version 2.3: Forwarded and X-Forwarded-Host are not used anymore.
Call
.clone(host=new_host)for setting up the value explicitly.See also
- Overridden value by
-
remote¶ Originating IP address of a client initiated HTTP request.
The IP is resolved through the following headers, in this order:
- Overridden value by
clone()call. - Peer name of opened socket.
Read-only
strproperty.Call
.clone(remote=new_remote)for setting up the value explicitly.New in version 2.3.
See also
- Overridden value by
-
path_qs¶ The URL including PATH_INFO and the query string. e.g.,
/app/blog?id=10Read-only
strproperty.
-
path¶ The URL including PATH INFO without the host or scheme. e.g.,
/app/blog. The path is URL-unquoted. For raw path info seeraw_path.Read-only
strproperty.
-
raw_path¶ The URL including raw PATH INFO without the host or scheme. Warning, the path may be quoted and may contains non valid URL characters, e.g.
/my%2Fpath%7Cwith%21some%25strange%24characters.For unquoted version please take a look on
path.Read-only
strproperty.
-
query¶ A multidict with all the variables in the query string.
Read-only
MultiDictProxylazy property.
-
headers¶ A case-insensitive multidict proxy with all headers.
Read-only
CIMultiDictProxyproperty.
-
raw_headers¶ HTTP headers of response as unconverted bytes, a sequence of
(key, value)pairs.
-
keep_alive¶ Trueif keep-alive connection enabled by HTTP client and protocol version supports it, otherwiseFalse.Read-only
boolproperty.
-
transport¶ An transport used to process request, Read-only property.
The property can be used, for example, for getting IP address of client’s peer:
peername = request.transport.get_extra_info('peername') if peername is not None: host, port = peername
-
loop¶ An event loop instance used by HTTP request handling.
Read-only
asyncio.AbstractEventLoopproperty.New in version 2.3.
A multidict of all request’s cookies.
Read-only
MultiDictProxylazy property.
-
content¶ A
StreamReaderinstance, input stream for reading request’s BODY.Read-only property.
-
body_exists¶ Return
Trueif request has HTTP BODY,Falseotherwise.Read-only
boolproperty.New in version 2.3.
-
can_read_body¶ Return
Trueif request’s HTTP BODY can be read,Falseotherwise.Read-only
boolproperty.New in version 2.3.
-
has_body¶ Return
Trueif request’s HTTP BODY can be read,Falseotherwise.Read-only
boolproperty.Deprecated since version 2.3: Use
can_read_body()instead.
-
content_type¶ Read-only property with content part of Content-Type header.
Returns
strlike'text/html'Note
Returns value is
'application/octet-stream'if no Content-Type header present in HTTP headers according to RFC 2616
-
charset¶ Read-only property that specifies the encoding for the request’s BODY.
The value is parsed from the Content-Type HTTP header.
Returns
strlike'utf-8'orNoneif Content-Type has no charset information.
-
content_length¶ Read-only property that returns length of the request’s BODY.
The value is parsed from the Content-Length HTTP header.
Returns
intorNoneif Content-Length is absent.
-
http_range¶ Read-only property that returns information about Range HTTP header.
Returns a
slicewhere.startis left inclusive bound,.stopis right exclusive bound and.stepis1.The property might be used in two manners:
Attribute-access style (example assumes that both left and right borders are set, the real logic for case of open bounds is more complex):
rng = request.http_range with open(filename, 'rb') as f: f.seek(rng.start) return f.read(rng.stop-rng.start)
Slice-style:
return buffer[request.http_range]
-
if_modified_since¶ Read-only property that returns the date specified in the If-Modified-Since header.
Returns
datetime.datetimeorNoneif If-Modified-Since header is absent or is not a valid HTTP date.
-
if_unmodified_since¶ Read-only property that returns the date specified in the If-Unmodified-Since header.
Returns
datetime.datetimeorNoneif If-Unmodified-Since header is absent or is not a valid HTTP date.New in version 3.1.
-
if_range¶ Read-only property that returns the date specified in the If-Range header.
Returns
datetime.datetimeorNoneif If-Range header is absent or is not a valid HTTP date.New in version 3.1.
-
clone(*, method=..., rel_url=..., headers=...)¶ Clone itself with replacement some attributes.
Creates and returns a new instance of Request object. If no parameters are given, an exact copy is returned. If a parameter is not passed, it will reuse the one from the current request object.
Parameters: - method (str) – http method
- rel_url – url to use,
strorURL - headers –
CIMultiDictor compatible headers container.
Returns: a cloned
Requestinstance.
-
coroutine
read()¶ Read request body, returns
bytesobject with body content.Note
The method does store read data internally, subsequent
read()call will return the same value.
-
coroutine
text()¶ Read request body, decode it using
charsetencoding orUTF-8if no encoding was specified in MIME-type.Returns
strwith body content.Note
The method does store read data internally, subsequent
text()call will return the same value.
-
coroutine
json(*, loads=json.loads)¶ Read request body decoded as json.
The method is just a boilerplate coroutine implemented as:
async def json(self, *, loads=json.loads): body = await self.text() return loads(body)
Parameters: loads (callable) – any callable that accepts strand returnsdictwith parsed JSON (json.loads()by default).Note
The method does store read data internally, subsequent
json()call will return the same value.
-
coroutine
multipart()¶ Returns
aiohttp.multipart.MultipartReaderwhich processes incoming multipart request.The method is just a boilerplate coroutine implemented as:
async def multipart(self, *, reader=aiohttp.multipart.MultipartReader): return reader(self.headers, self._payload)
This method is a coroutine for consistency with the else reader methods.
Warning
The method does not store read data internally. That means once you exhausts multipart reader, you cannot get the request payload one more time.
See also
Changed in version 3.4: Dropped reader parameter.
-
coroutine
post()¶ A coroutine that reads POST parameters from request body.
Returns
MultiDictProxyinstance filled with parsed data.If
methodis not POST, PUT, PATCH, TRACE or DELETE orcontent_typeis not empty or application/x-www-form-urlencoded or multipart/form-data returns empty multidict.Note
The method does store read data internally, subsequent
post()call will return the same value.
-
coroutine
release()¶ Release request.
Eat unread part of HTTP BODY if present.
Note
User code may never call
release(), all required work will be processed byaiohttp.webinternal machinery.
-
-
class
aiohttp.web.Request¶ An request used for receiving request’s information by web handler.
Every handler accepts a request instance as the first positional parameter.
The class in derived from
BaseRequest, shares all parent’s attributes and methods but has a couple of additional properties:-
match_info¶ Read-only property with
AbstractMatchInfoinstance for result of route resolving.Note
Exact type of property depends on used router. If
app.routerisUrlDispatcherthe property containsUrlMappingMatchInfoinstance.
-
app¶ An
Applicationinstance used to call request handler, Read-only property.
-
config_dict¶ A
aiohttp.ChainMapProxyinstance for mapping all properties from the current application returned byappproperty and all its parents.See also
New in version 3.2.
Note
You should never create the
Requestinstance manually –aiohttp.webdoes it for you. Butclone()may be used for cloning modified request copy with changed path, method etc.-
Response classes¶
For now, aiohttp.web has three classes for the HTTP response:
StreamResponse, Response and FileResponse.
Usually you need to use the second one. StreamResponse is
intended for streaming data, while Response contains HTTP
BODY as an attribute and sends own content as single piece with the
correct Content-Length HTTP header.
For sake of design decisions Response is derived from
StreamResponse parent class.
The response supports keep-alive handling out-of-the-box if request supports it.
You can disable keep-alive by force_close() though.
The common case for sending an answer from
web-handler is returning a
Response instance:
async def handler(request):
return Response(text="All right!")
Response classes are dict like objects,
allowing them to be used for sharing
data among Middlewares
and Signals handlers:
resp['key'] = value
New in version 3.0: Dict-like interface support.
StreamResponse¶
-
class
aiohttp.web.StreamResponse(*, status=200, reason=None)¶ The base class for the HTTP response handling.
Contains methods for setting HTTP response headers, cookies, response status code, writing HTTP response BODY and so on.
The most important thing you should know about response — it is Finite State Machine.
That means you can do any manipulations with headers, cookies and status code only before
prepare()coroutine is called.Once you call
prepare()any change of the HTTP header part will raiseRuntimeErrorexception.Any
write()call afterwrite_eof()is also forbidden.Parameters: -
task¶ A task that serves HTTP request handling.
May be useful for graceful shutdown of long-running requests (streaming, long polling or web-socket).
-
set_status(status, reason=None)¶ -
reason value is auto calculated if not specified (
None).
-
keep_alive¶ Read-only property, copy of
Request.keep_aliveby default.Can be switched to
Falsebyforce_close()call.
-
force_close()¶ Disable
keep_alivefor connection. There are no ways to enable it back.
-
enable_compression(force=None)¶ Enable compression.
When force is unset compression encoding is selected based on the request’s Accept-Encoding header.
Accept-Encoding is not checked if force is set to a
ContentCoding.See also
-
chunked¶ Read-only property, indicates if chunked encoding is on.
Can be enabled by
enable_chunked_encoding()call.See also
-
enable_chunked_encoding()¶ Enables
chunkedencoding for response. There are no ways to disable it back. With enabledchunkedencoding eachwrite()operation encoded in separate chunk.Warning
chunked encoding can be enabled for
HTTP/1.1only.Setting up both
content_lengthand chunked encoding is mutually exclusive.See also
-
headers¶ CIMultiDictinstance for outgoing HTTP headers.
An instance of
http.cookies.SimpleCookiefor outgoing cookies.Warning
Direct setting up Set-Cookie header may be overwritten by explicit calls to cookie manipulation.
We are encourage using of
cookiesandset_cookie(),del_cookie()for cookie manipulations.
Convenient way for setting
cookies, allows to specify some additional properties like max_age in a single call.Parameters: - name (str) – cookie name
- value (str) – cookie value (will be converted to
strif value has another type). - expires – expiration date (optional)
- domain (str) – cookie domain (optional)
- max_age (int) – defines the lifetime of the cookie, in seconds. The delta-seconds value is a decimal non- negative integer. After delta-seconds seconds elapse, the client should discard the cookie. A value of zero means the cookie should be discarded immediately. (optional)
- path (str) – specifies the subset of URLs to
which this cookie applies. (optional,
'/'by default) - secure (bool) – attribute (with no value) directs the user agent to use only (unspecified) secure means to contact the origin server whenever it sends back this cookie. The user agent (possibly under the user’s control) may determine what level of security it considers appropriate for “secure” cookies. The secure should be considered security advice from the server to the user agent, indicating that it is in the session’s interest to protect the cookie contents. (optional)
- httponly (bool) –
Trueif the cookie HTTP only (optional) - version (int) – a decimal integer, identifies to which version of the state management specification the cookie conforms. (Optional, version=1 by default)
Warning
In HTTP version 1.1,
expireswas deprecated and replaced with the easier-to-usemax-age, but Internet Explorer (IE6, IE7, and IE8) does not supportmax-age.
Deletes cookie.
Parameters:
-
content_length¶ Content-Length for outgoing response.
-
content_type¶ Content part of Content-Type for outgoing response.
-
charset¶ Charset aka encoding part of Content-Type for outgoing response.
The value converted to lower-case on attribute assigning.
-
last_modified¶ Last-Modified header for outgoing response.
This property accepts raw
strvalues,datetime.datetimeobjects, Unix timestamps specified as anintor afloatobject, and the valueNoneto unset the header.
-
coroutine
prepare(request)¶ Parameters: request (aiohttp.web.Request) – HTTP request object, that the response answers. Send HTTP header. You should not change any header data after calling this method.
The coroutine calls
on_response_preparesignal handlers.
-
coroutine
write(data)¶ Send byte-ish data as the part of response BODY:
await resp.write(data)
prepare()must be invoked before the call.Raises
TypeErrorif data is notbytes,bytearrayormemoryviewinstance.Raises
RuntimeErrorifprepare()has not been called.Raises
RuntimeErrorifwrite_eof()has been called.
-
coroutine
write_eof()¶ A coroutine may be called as a mark of the HTTP response processing finish.
Internal machinery will call this method at the end of the request processing if needed.
After
write_eof()call any manipulations with the response object are forbidden.
-
Response¶
-
class
aiohttp.web.Response(*, body=None, status=200, reason=None, text=None, headers=None, content_type=None, charset=None)¶ The most usable response class, inherited from
StreamResponse.Accepts body argument for setting the HTTP response BODY.
The actual
bodysending happens in overriddenwrite_eof().Parameters: - body (bytes) – response’s BODY
- status (int) – HTTP status code, 200 OK by default.
- headers (collections.abc.Mapping) – HTTP headers that should be added to response’s ones.
- text (str) – response’s BODY
- content_type (str) – response’s content type.
'text/plain'if text is passed also,'application/octet-stream'otherwise. - charset (str) – response’s charset.
'utf-8'if text is passed also,Noneotherwise.
-
body¶ Read-write attribute for storing response’s content aka BODY,
bytes.Setting
bodyalso recalculatescontent_lengthvalue.Assigning
strtobodywill make thebodytype ofaiohttp.payload.StringPayload, which tries to encode the given data based on Content-Type HTTP header, while defaulting toUTF-8.Resetting
body(assigningNone) setscontent_lengthtoNonetoo, dropping Content-Length HTTP header.
-
text¶ Read-write attribute for storing response’s content, represented as string,
str.Setting
textalso recalculatescontent_lengthvalue andbodyvalueResetting
text(assigningNone) setscontent_lengthtoNonetoo, dropping Content-Length HTTP header.
WebSocketResponse¶
-
class
aiohttp.web.WebSocketResponse(*, timeout=10.0, receive_timeout=None, autoclose=True, autoping=True, heartbeat=None, protocols=(), compress=True, max_msg_size=4194304)¶ Class for handling server-side websockets, inherited from
StreamResponse.After starting (by
prepare()call) the response you cannot usewrite()method but should to communicate with websocket client bysend_str(),receive()and others.To enable back-pressure from slow websocket clients treat methods
ping(),pong(),send_str(),send_bytes(),send_json()as coroutines. By default write buffer size is set to 64k.Parameters: - autoping (bool) – Automatically send
PONGonPINGmessage from client, and handlePONGresponses from client. Note that server does not sendPINGrequests, you need to do this explicitly usingping()method. - heartbeat (float) – Send ping message every heartbeat seconds and wait pong response, close connection if pong response is not received. The timer is reset on any data reception.
- receive_timeout (float) – Timeout value for receive operations. Default value is None (no timeout for receive operation)
- compress (bool) – Enable per-message deflate extension support. False for disabled, default value is True.
- max_msg_size (int) –
- maximum size of read websocket message, 4
- MB by default. To disable the size limit use
0.
New in version 3.3.
The class supports
async forstatement for iterating over incoming messages:ws = web.WebSocketResponse() await ws.prepare(request) async for msg in ws: print(msg.data)
-
coroutine
prepare(request)¶ Starts websocket. After the call you can use websocket methods.
Parameters: request (aiohttp.web.Request) – HTTP request object, that the response answers. Raises: HTTPException – if websocket handshake has failed.
-
can_prepare(request)¶ Performs checks for request data to figure out if websocket can be started on the request.
If
can_prepare()call is success thenprepare()will success too.Parameters: request (aiohttp.web.Request) – HTTP request object, that the response answers. Returns: WebSocketReadyinstance.WebSocketReady.okisTrueon success,WebSocketReady.protocolis websocket subprotocol which is passed by client and accepted by server (one of protocols sequence fromWebSocketResponsector).WebSocketReady.protocolmay beNoneif client and server subprotocols are not overlapping.Note
The method never raises exception.
-
closed¶ Read-only property,
Trueif connection has been closed or in process of closing.CLOSEmessage has been received from peer.
-
close_code¶ Read-only property, close code from peer. It is set to
Noneon opened connection.
-
ws_protocol¶ Websocket subprotocol chosen after
start()call.May be
Noneif server and client protocols are not overlapping.
-
exception()¶ Returns last occurred exception or None.
-
coroutine
ping(message=b'')¶ Send
PINGto peer.Parameters: message – optional payload of ping message, str(converted to UTF-8 encoded bytes) orbytes.Raises: RuntimeError – if connections is not started or closing. Changed in version 3.0: The method is converted into coroutine
-
coroutine
pong(message=b'')¶ Send unsolicited
PONGto peer.Parameters: message – optional payload of pong message, str(converted to UTF-8 encoded bytes) orbytes.Raises: RuntimeError – if connections is not started or closing. Changed in version 3.0: The method is converted into coroutine
-
coroutine
send_str(data, compress=None)¶ Send data to peer as
TEXTmessage.Parameters: Raises: - RuntimeError – if connection is not started or closing
- TypeError – if data is not
str
Changed in version 3.0: The method is converted into coroutine, compress parameter added.
-
coroutine
send_bytes(data, compress=None)¶ Send data to peer as
BINARYmessage.Parameters: - data – data to send.
- compress (int) – sets specific level of compression for
single message,
Nonefor not overriding per-socket setting.
Raises: - RuntimeError – if connection is not started or closing
- TypeError – if data is not
bytes,bytearrayormemoryview.
Changed in version 3.0: The method is converted into coroutine, compress parameter added.
-
coroutine
send_json(data, compress=None, *, dumps=json.dumps)¶ Send data to peer as JSON string.
Parameters: - data – data to send.
- compress (int) – sets specific level of compression for
single message,
Nonefor not overriding per-socket setting. - dumps (callable) – any callable that accepts an object and
returns a JSON string
(
json.dumps()by default).
Raises: - RuntimeError – if connection is not started or closing
- ValueError – if data is not serializable object
- TypeError – if value returned by
dumpsparam is notstr
Changed in version 3.0: The method is converted into coroutine, compress parameter added.
-
coroutine
close(*, code=1000, message=b'')¶ A coroutine that initiates closing handshake by sending
CLOSEmessage.It is safe to call close() from different task.
Parameters: Raises: RuntimeError – if connection is not started
-
coroutine
receive(timeout=None)¶ A coroutine that waits upcoming data message from peer and returns it.
The coroutine implicitly handles
PING,PONGandCLOSEwithout returning the message.It process ping-pong game and performs closing handshake internally.
Note
Can only be called by the request handling task.
Parameters: timeout – timeout for receive operation.
timeout value overrides response`s receive_timeout attribute.
Returns: WSMessageRaises: RuntimeError – if connection is not started
-
coroutine
receive_str(*, timeout=None)¶ A coroutine that calls
receive()but also asserts the message type isTEXT.Note
Can only be called by the request handling task.
Parameters: timeout – timeout for receive operation.
timeout value overrides response`s receive_timeout attribute.
Return str: peer’s message content. Raises: TypeError – if message is BINARY.
-
coroutine
receive_bytes(*, timeout=None)¶ A coroutine that calls
receive()but also asserts the message type isBINARY.Note
Can only be called by the request handling task.
Parameters: timeout – timeout for receive operation.
timeout value overrides response`s receive_timeout attribute.
Return bytes: peer’s message content. Raises: TypeError – if message is TEXT.
-
coroutine
receive_json(*, loads=json.loads, timeout=None)¶ A coroutine that calls
receive_str()and loads the JSON string to a Python dict.Note
Can only be called by the request handling task.
Parameters: - loads (callable) – any callable that accepts
strand returnsdictwith parsed JSON (json.loads()by default). - timeout –
timeout for receive operation.
timeout value overrides response`s receive_timeout attribute.
Return dict: loaded JSON content
Raises: - TypeError – if message is
BINARY. - ValueError – if message is not valid JSON.
- loads (callable) – any callable that accepts
- autoping (bool) – Automatically send
See also
WebSocketReady¶
-
class
aiohttp.web.WebSocketReady¶ A named tuple for returning result from
WebSocketResponse.can_prepare().Has
boolcheck implemented, e.g.:if not await ws.can_prepare(...): cannot_start_websocket()
-
ok¶ Trueif websocket connection can be established,Falseotherwise.
See also
-
json_response¶
-
aiohttp.web.json_response([data, ]*, text=None, body=None, status=200, reason=None, headers=None, content_type='application/json', dumps=json.dumps)¶
Return Response with predefined 'application/json'
content type and data encoded by dumps parameter
(json.dumps() by default).
Application and Router¶
Application¶
Application is a synonym for web-server.
To get fully working example, you have to make application, register
supported urls in router and pass it to aiohttp.web.run_app()
or aiohttp.web.AppRunner.
Application contains a router instance and a list of callbacks that will be called during application finishing.
Application is a dict-like object, so you can use it for
sharing data globally by storing arbitrary
properties for later access from a handler via the
Request.app property:
app = Application()
app['database'] = await aiopg.create_engine(**db_config)
async def handler(request):
with (await request.app['database']) as conn:
conn.execute("DELETE * FROM table")
Although Application is a dict-like object, it can’t be
duplicated like one using Application.copy().
-
class
aiohttp.web.Application(*, logger=<default>, router=None, middlewares=(), handler_args=None, client_max_size=1024**2, loop=None, debug=...)¶ The class inherits
dict.Parameters: - logger –
logging.Loggerinstance for storing application logs.By default the value is
logging.getLogger("aiohttp.web") - router –
aiohttp.abc.AbstractRouterinstance, the system- creates
UrlDispatcherby default if router isNone.
Deprecated since version 3.3: The custom routers support is deprecated, the parameter will be removed in 4.0.
- middlewares –
listof middleware factories, see Middlewares for details. - handler_args – dict-like object that overrides keyword arguments of
Application.make_handler() - client_max_size – client’s maximum size in a request, in bytes. If a POST request exceeds this value, it raises an HTTPRequestEntityTooLarge exception.
- loop –
event loop
Deprecated since version 2.0: The parameter is deprecated. Loop is get set during freeze stage.
- debug – Switches debug mode.
-
router¶ Read-only property that returns router instance.
-
logger¶ logging.Loggerinstance for storing application logs.
-
loop¶ event loop used for processing HTTP requests.
-
debug¶ Boolean value indicating whether the debug mode is turned on or off.
-
on_response_prepare¶ A
Signalthat is fired at the beginning ofStreamResponse.prepare()with parameters request and response. It can be used, for example, to add custom headers to each response before sending.Signal handlers should have the following signature:
async def on_prepare(request, response): pass
-
on_startup¶ A
Signalthat is fired on application start-up.Subscribers may use the signal to run background tasks in the event loop along with the application’s request handler just after the application start-up.
Signal handlers should have the following signature:
async def on_startup(app): pass
See also
-
on_shutdown¶ A
Signalthat is fired on application shutdown.Subscribers may use the signal for gracefully closing long running connections, e.g. websockets and data streaming.
Signal handlers should have the following signature:
async def on_shutdown(app): pass
It’s up to end user to figure out which web-handlers are still alive and how to finish them properly.
We suggest keeping a list of long running handlers in
Applicationdictionary.See also
-
on_cleanup¶ A
Signalthat is fired on application cleanup.Subscribers may use the signal for gracefully closing connections to database server etc.
Signal handlers should have the following signature:
async def on_cleanup(app): pass
See also
Signals and
on_shutdown.
-
cleanup_ctx¶ A list of context generators for startup/cleanup handling.
Signal handlers should have the following signature:
async def context(app): # do startup stuff yield # do cleanup
New in version 3.1.
See also
-
add_subapp(prefix, subapp)¶ Register nested sub-application under given path prefix.
In resolving process if request’s path starts with prefix then further resolving is passed to subapp.
Parameters: - prefix (str) – path’s prefix for the resource.
- subapp (Application) – nested application attached under prefix.
Returns: a
PrefixedSubAppResourceinstance.
-
add_routes(routes_table)¶ Register route definitions from routes_table.
The table is a
listofRouteDefitems orRouteTableDef.The method is a shortcut for
app.router.add_routes(routes_table), see alsoUrlDispatcher.add_routes().New in version 3.1.
-
make_handler(loop=None, **kwargs)¶ Creates HTTP protocol factory for handling requests.
Parameters: - loop –
- event loop used
- for processing HTTP requests.
If param is
Noneasyncio.get_event_loop()used for getting default event loop.
Deprecated since version 2.0.
- tcp_keepalive (bool) – Enable TCP Keep-Alive. Default:
True. - keepalive_timeout (int) – Number of seconds before closing Keep-Alive
connection. Default:
75seconds (NGINX’s default value). - logger – Custom logger object. Default:
aiohttp.log.server_logger. - access_log – Custom logging object. Default:
aiohttp.log.access_logger. - access_log_class – class for access_logger. Default:
aiohttp.helpers.AccessLogger. Must to be a subclass ofaiohttp.abc.AbstractAccessLogger. - access_log_format (str) – Access log format string. Default:
helpers.AccessLogger.LOG_FORMAT. - max_line_size (int) – Optional maximum header line size. Default:
8190. - max_headers (int) – Optional maximum header size. Default:
32768. - max_field_size (int) – Optional maximum header field size. Default:
8190. - lingering_time (float) – maximum time during which the server
reads and ignore additional data coming from the client when
lingering close is on. Use
0for disabling lingering on server channel closing.
You should pass result of the method as protocol_factory to
create_server(), e.g.:loop = asyncio.get_event_loop() app = Application() # setup route table # app.router.add_route(...) await loop.create_server(app.make_handler(), '0.0.0.0', 8080)
Deprecated since version 3.2: The method is deprecated and will be removed in future aiohttp versions. Please use Application runners instead.
- loop –
-
coroutine
startup()¶ A coroutine that will be called along with the application’s request handler.
The purpose of the method is calling
on_startupsignal handlers.
-
coroutine
shutdown()¶ A coroutine that should be called on server stopping but before
cleanup().The purpose of the method is calling
on_shutdownsignal handlers.
-
coroutine
cleanup()¶ A coroutine that should be called on server stopping but after
shutdown().The purpose of the method is calling
on_cleanupsignal handlers.
Note
Application object has
routerattribute but has noadd_route()method. The reason is: we want to support different router implementations (even maybe not url-matching based but traversal ones).For sake of that fact we have very trivial ABC for
AbstractRouter: it should have onlyAbstractRouter.resolve()coroutine.No methods for adding routes or route reversing (getting URL by route name). All those are router implementation details (but, sure, you need to deal with that methods after choosing the router for your application).
- logger –
Server¶
A protocol factory compatible with
create_server().
Router¶
For dispatching URLs to handlers
aiohttp.web uses routers.
Router is any object that implements AbstractRouter interface.
aiohttp.web provides an implementation called UrlDispatcher.
Application uses UrlDispatcher as router() by default.
-
class
aiohttp.web.UrlDispatcher¶ Straightforward url-matching router, implements
collections.abc.Mappingfor access to named routes.Before running
Applicationyou should fill route table first by callingadd_route()andadd_static().Handler lookup is performed by iterating on added routes in FIFO order. The first matching route will be used to call corresponding handler.
If on route creation you specify name parameter the result is named route.
Named route can be retrieved by
app.router[name]call, checked for existence byname in app.routeretc.See also
-
add_resource(path, *, name=None)¶ Append a resource to the end of route table.
path may be either constant string like
'/a/b/c'or variable rule like'/a/{var}'(see handling variable paths)Parameters: Returns: created resource instance (
PlainResourceorDynamicResource).
-
add_route(method, path, handler, *, name=None, expect_handler=None)¶ Append handler to the end of route table.
- path may be either constant string like
'/a/b/c'or - variable rule like
'/a/{var}'(see handling variable paths)
Pay attention please: handler is converted to coroutine internally when it is a regular function.
Parameters: - method (str) –
HTTP method for route. Should be one of
'GET','POST','PUT','DELETE','PATCH','HEAD','OPTIONS'or'*'for any method.The parameter is case-insensitive, e.g. you can push
'get'as well as'GET'. - path (str) – route path. Should be started with slash (
'/'). - handler (callable) – route handler.
- name (str) – optional route name.
- expect_handler (coroutine) – optional expect header handler.
Returns: new
PlainRouteorDynamicRouteinstance.- path may be either constant string like
-
add_routes(routes_table)¶ Register route definitions from routes_table.
The table is a
listofRouteDefitems orRouteTableDef.New in version 2.3.
-
add_get(path, handler, *, name=None, allow_head=True, **kwargs)¶ Shortcut for adding a GET handler. Calls the
add_route()withmethodequals to'GET'.If allow_head is
True(default) the route for method HEAD is added with the same handler as for GET.If name is provided the name for HEAD route is suffixed with
'-head'. For examplerouter.add_get(path, handler, name='route')call adds two routes: first for GET with name'route'and second for HEAD with name'route-head'.
-
add_post(path, handler, **kwargs)¶ Shortcut for adding a POST handler. Calls the
add_route()withmethodequals to'POST'.
-
add_head(path, handler, **kwargs)¶ Shortcut for adding a HEAD handler. Calls the
add_route()withmethodequals to'HEAD'.
-
add_put(path, handler, **kwargs)¶ Shortcut for adding a PUT handler. Calls the
add_route()withmethodequals to'PUT'.
-
add_patch(path, handler, **kwargs)¶ Shortcut for adding a PATCH handler. Calls the
add_route()withmethodequals to'PATCH'.
-
add_delete(path, handler, **kwargs)¶ Shortcut for adding a DELETE handler. Calls the
add_route()withmethodequals to'DELETE'.
-
add_view(path, handler, **kwargs)¶ Shortcut for adding a class-based view handler. Calls the
add_route()withmethodequals to'*'.New in version 3.0.
-
add_static(prefix, path, *, name=None, expect_handler=None, chunk_size=256*1024, response_factory=StreamResponse, show_index=False, follow_symlinks=False, append_version=False)¶ Adds a router and a handler for returning static files.
Useful for serving static content like images, javascript and css files.
On platforms that support it, the handler will transfer files more efficiently using the
sendfilesystem call.In some situations it might be necessary to avoid using the
sendfilesystem call even if the platform supports it. This can be accomplished by by setting environment variableAIOHTTP_NOSENDFILE=1.If a gzip version of the static content exists at file path +
.gz, it will be used for the response.Warning
Use
add_static()for development only. In production, static content should be processed by web servers like nginx or apache.Parameters: - prefix (str) – URL path prefix for handled static files
- path – path to the folder in file system that contains
handled static files,
strorpathlib.Path. - name (str) – optional route name.
- expect_handler (coroutine) – optional expect header handler.
- chunk_size (int) –
size of single chunk for file downloading, 256Kb by default.
Increasing chunk_size parameter to, say, 1Mb may increase file downloading speed but consumes more memory.
- show_index (bool) – flag for allowing to show indexes of a directory, by default it’s not allowed and HTTP/403 will be returned on directory access.
- follow_symlinks (bool) – flag for allowing to follow symlinks from a directory, by default it’s not allowed and HTTP/404 will be returned on access.
- append_version (bool) – flag for adding file version (hash)
to the url query string, this value will
be used as default when you call to
StaticRoute.url()andStaticRoute.url_for()methods.
Returns: new
StaticRouteinstance.
-
coroutine
resolve(request)¶ A coroutine that returns
AbstractMatchInfofor request.The method never raises exception, but returns
AbstractMatchInfoinstance with:http_exceptionassigned toHTTPExceptioninstance.handlerwhich raisesHTTPNotFoundorHTTPMethodNotAllowedon handler’s execution if there is no registered route for request.Middlewares can process that exceptions to render pretty-looking error page for example.
Used by internal machinery, end user unlikely need to call the method.
Note
The method uses
Request.raw_pathfor pattern matching against registered routes.
-
resources()¶ The method returns a view for all registered resources.
The view is an object that allows to:
Get size of the router table:
len(app.router.resources())
Iterate over registered resources:
for resource in app.router.resources(): print(resource)
Make a check if the resources is registered in the router table:
route in app.router.resources()
-
routes()¶ The method returns a view for all registered routes.
-
named_resources()¶ Returns a
dict-liketypes.MappingProxyTypeview over all named resources.The view maps every named resource’s name to the
BaseResourceinstance. It supports the usualdict-like operations, except for any mutable operations (i.e. it’s read-only):len(app.router.named_resources()) for name, resource in app.router.named_resources().items(): print(name, resource) "name" in app.router.named_resources() app.router.named_resources()["name"]
-
Resource¶
Default router UrlDispatcher operates with resources.
Resource is an item in routing table which has a path, an optional unique name and at least one route.
web-handler lookup is performed in the following way:
- Router iterates over resources one-by-one.
- If resource matches to requested URL the resource iterates over own routes.
- If route matches to requested HTTP method (or
'*'wildcard) the route’s handler is used as found web-handler. The lookup is finished. - Otherwise router tries next resource from the routing table.
- If the end of routing table is reached and no resource /
route pair found the router returns special
AbstractMatchInfoinstance withAbstractMatchInfo.http_exceptionis notNonebutHTTPExceptionwith either HTTP 404 Not Found or HTTP 405 Method Not Allowed status code. RegisteredAbstractMatchInfo.handlerraises this exception on call.
User should never instantiate resource classes but give it by
UrlDispatcher.add_resource() call.
After that he may add a route by calling Resource.add_route().
UrlDispatcher.add_route() is just shortcut for:
router.add_resource(path).add_route(method, handler)
Resource with a name is called named resource. The main purpose of named resource is constructing URL by route name for passing it into template engine for example:
url = app.router['resource_name'].url_for().with_query({'a': 1, 'b': 2})
Resource classes hierarchy:
AbstractResource
Resource
PlainResource
DynamicResource
StaticResource
-
class
aiohttp.web.AbstractResource¶ A base class for all resources.
Inherited from
collections.abc.Sizedandcollections.abc.Iterable.len(resource)returns amount of routes belongs to the resource,for route in resourceallows to iterate over these routes.-
name¶ Read-only name of resource or
None.
-
canonical¶ Read-only canonical path associate with the resource. For example
/path/toor/path/{to}New in version 3.3.
-
coroutine
resolve(request)¶ Resolve resource by finding appropriate web-handler for
(method, path)combination.Returns: (match_info, allowed_methods) pair. allowed_methods is a
setor HTTP methods accepted by resource.match_info is either
UrlMappingMatchInfoif request is resolved orNoneif no route is found.
-
get_info()¶ A resource description, e.g.
{'path': '/path/to'}or{'formatter': '/path/{to}', 'pattern': re.compile(r'^/path/(?P<to>[a-zA-Z][_a-zA-Z0-9]+)$
-
-
class
aiohttp.web.Resource¶ A base class for new-style resources, inherits
AbstractResource.-
add_route(method, handler, *, expect_handler=None)¶ Add a web-handler to resource.
Parameters: - method (str) –
HTTP method for route. Should be one of
'GET','POST','PUT','DELETE','PATCH','HEAD','OPTIONS'or'*'for any method.The parameter is case-insensitive, e.g. you can push
'get'as well as'GET'.The method should be unique for resource.
- handler (callable) – route handler.
- expect_handler (coroutine) – optional expect header handler.
Returns: new
ResourceRouteinstance.- method (str) –
-
-
class
aiohttp.web.PlainResource¶ A resource, inherited from
Resource.The class corresponds to resources with plain-text matching,
'/path/to'for example.-
canonical¶ Read-only canonical path associate with the resource. Returns the path used to create the PlainResource. For example
/path/toNew in version 3.3.
-
-
class
aiohttp.web.DynamicResource¶ A resource, inherited from
Resource.The class corresponds to resources with variable matching, e.g.
'/path/{to}/{param}'etc.-
canonical¶ Read-only canonical path associate with the resource. Returns the formatter obtained from the path used to create the DynamicResource. For example, from a path
/get/{num:^\d+}, it returns/get/{num}New in version 3.3.
-
-
class
aiohttp.web.StaticResource¶ A resource, inherited from
Resource.The class corresponds to resources for static file serving.
-
canonical¶ Read-only canonical path associate with the resource. Returns the prefix used to create the StaticResource. For example
/prefixNew in version 3.3.
-
url_for(filename, append_version=None)¶ Returns a
URLfor file path under resource prefix.Parameters: - filename –
– a file name substitution for static file handler.
Accepts both
strandpathlib.Path.E.g. an URL for
'/prefix/dir/file.txt'should be generated asresource.url_for(filename='dir/file.txt') - append_version (bool) –
- – a flag for adding file version
- (hash) to the url query string for cache boosting
By default has value from an constructor (
Falseby default) When set toTrue-v=FILE_HASHquery string param will be added When set toFalsehas no impactif file not found has no impact
- filename –
-
-
class
aiohttp.web.PrefixedSubAppResource¶ A resource for serving nested applications. The class instance is returned by
add_subappcall.-
canonical¶ Read-only canonical path associate with the resource. Returns the prefix used to create the PrefixedSubAppResource. For example
/prefixNew in version 3.3.
-
url_for(**kwargs)¶ The call is not allowed, it raises
RuntimeError.
-
Route¶
Route has HTTP method (wildcard '*' is an option),
web-handler and optional expect handler.
Every route belong to some resource.
Route classes hierarchy:
AbstractRoute
ResourceRoute
SystemRoute
ResourceRoute is the route used for resources,
SystemRoute serves URL resolving errors like 404 Not Found
and 405 Method Not Allowed.
-
class
aiohttp.web.AbstractRoute¶ Base class for routes served by
UrlDispatcher.-
method¶ HTTP method handled by the route, e.g. GET, POST etc.
-
name¶ Name of the route, always equals to name of resource which owns the route.
-
resource¶ Resource instance which holds the route,
NoneforSystemRoute.
-
url_for(*args, **kwargs)¶ Abstract method for constructing url handled by the route.
Actually it’s a shortcut for
route.resource.url_for(...).
-
coroutine
handle_expect_header(request)¶ 100-continuehandler.
-
RouteDef and StaticDef¶
Route definition, a description for not registered yet route.
Could be used for filing route table by providing a list of route definitions (Django style).
The definition is created by functions like get() or
post(), list of definitions could be added to router by
UrlDispatcher.add_routes() call:
from aiohttp import web
async def handle_get(request):
...
async def handle_post(request):
...
app.router.add_routes([web.get('/get', handle_get),
web.post('/post', handle_post),
-
class
aiohttp.web.AbstractRouteDef¶ A base class for route definitions.
Inherited from
abc.ABC.New in version 3.1.
-
register(router)¶ Register itself into
UrlDispatcher.Abstract method, should be overridden by subclasses.
-
-
class
aiohttp.web.RouteDef¶ A definition of not registered yet route.
Implements
AbstractRouteDef.New in version 2.3.
Changed in version 3.1: The class implements
AbstractRouteDefinterface.-
path¶ Path to resource, e.g.
/path/to. Could contain{}brackets for variable resources (str).
-
handler¶ An async function to handle HTTP request.
-
-
class
aiohttp.web.StaticDef¶ A definition of static file resource.
Implements
AbstractRouteDef.New in version 3.1.
-
prefix¶ A prefix used for static file handling, e.g.
/static.
-
path¶ File system directory to serve,
strorpathlib.Path(e.g.'/home/web-service/path/to/static'.
-
kwargs¶ A
dictof additional arguments, seeUrlDispatcher.add_static()for a list of supported options.
-
-
aiohttp.web.get(path, handler, *, name=None, allow_head=True, expect_handler=None)¶ Return
RouteDeffor processingGETrequests. SeeUrlDispatcher.add_get()for information about parameters.New in version 2.3.
-
aiohttp.web.post(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingPOSTrequests. SeeUrlDispatcher.add_post()for information about parameters.New in version 2.3.
-
aiohttp.web.head(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingHEADrequests. SeeUrlDispatcher.add_head()for information about parameters.New in version 2.3.
-
aiohttp.web.put(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingPUTrequests. SeeUrlDispatcher.add_put()for information about parameters.New in version 2.3.
-
aiohttp.web.patch(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingPATCHrequests. SeeUrlDispatcher.add_patch()for information about parameters.New in version 2.3.
-
aiohttp.web.delete(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingDELETErequests. SeeUrlDispatcher.add_delete()for information about parameters.New in version 2.3.
-
aiohttp.web.view(path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processingANYrequests. SeeUrlDispatcher.add_view()for information about parameters.New in version 3.0.
-
aiohttp.web.static(prefix, path, *, name=None, expect_handler=None, chunk_size=256*1024, show_index=False, follow_symlinks=False, append_version=False)¶ Return
StaticDeffor processing static files.See
UrlDispatcher.add_static()for information about supported parameters.New in version 3.1.
-
aiohttp.web.route(method, path, handler, *, name=None, expect_handler=None)¶ Return
RouteDeffor processing requests that decided bymethod. SeeUrlDispatcher.add_route()for information about parameters.New in version 2.3.
RouteTableDef¶
A routes table definition used for describing routes by decorators (Flask style):
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/get')
async def handle_get(request):
...
@routes.post('/post')
async def handle_post(request):
...
app.router.add_routes(routes)
@routes.view("/view")
class MyView(web.View):
async def get(self):
...
async def post(self):
...
-
class
aiohttp.web.RouteTableDef¶ A sequence of
RouteDefinstances (implementsabc.collections.Sequenceprotocol).In addition to all standard
listmethods the class provides also methods likeget()andpost()for adding new route definition.New in version 2.3.
-
@get(path, *, allow_head=True, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringGETweb-handler.See
UrlDispatcher.add_get()for information about parameters.
-
@post(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringPOSTweb-handler.See
UrlDispatcher.add_post()for information about parameters.
-
@head(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringHEADweb-handler.See
UrlDispatcher.add_head()for information about parameters.
-
@put(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringPUTweb-handler.See
UrlDispatcher.add_put()for information about parameters.
-
@patch(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringPATCHweb-handler.See
UrlDispatcher.add_patch()for information about parameters.
-
@delete(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringDELETEweb-handler.See
UrlDispatcher.add_delete()for information about parameters.
-
@view(path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registeringANYmethods against a class-based view.See
UrlDispatcher.add_view()for information about parameters.New in version 3.0.
-
static(prefix, path, *, name=None, expect_handler=None, chunk_size=256*1024, show_index=False, follow_symlinks=False, append_version=False)¶ Add a new
StaticDefitem for registering static files processor.See
UrlDispatcher.add_static()for information about supported parameters.New in version 3.1.
-
@route(method, path, *, name=None, expect_handler=None)¶ Add a new
RouteDefitem for registering a web-handler for arbitrary HTTP method.See
UrlDispatcher.add_route()for information about parameters.
-
MatchInfo¶
After route matching web application calls found handler if any.
Matching result can be accessible from handler as
Request.match_info attribute.
In general the result may be any object derived from
AbstractMatchInfo (UrlMappingMatchInfo for default
UrlDispatcher router).
View¶
-
class
aiohttp.web.View(request)¶ Inherited from
AbstractView.Base class for class based views. Implementations should derive from
Viewand override methods for handling HTTP verbs likeget()orpost():class MyView(View): async def get(self): resp = await get_response(self.request) return resp async def post(self): resp = await post_response(self.request) return resp app.router.add_view('/view', MyView)
The view raises 405 Method Not allowed (
HTTPMethodNotAllowed) if requested web verb is not supported.Parameters: request – instance of Requestthat has initiated a view processing.-
request¶ Request sent to view’s constructor, read-only property.
Overridable coroutine methods:
connect(),delete(),get(),head(),options(),patch(),post(),put(),trace().-
See also
Running Applications¶
To start web application there is AppRunner and site classes.
Runner is a storage for running application, sites are for running application on specific TCP or Unix socket, e.g.:
runner = web.AppRunner(app)
await runner.setup()
site = web.TCPSite(runner, 'localhost', 8080)
await site.start()
# wait for finish signal
await runner.cleanup()
-
class
aiohttp.web.AppRunner(app, *, handle_signals=False, **kwargs)¶ A runner for
Application. Used with conjunction with sites to serve on specific port.Parameters: - app (Application) – web application instance to serve.
- handle_signals (bool) – add signal handlers for
signal.SIGINTandsignal.SIGTERM(Falseby default). - kwargs – named parameters to pass into
Application.make_handler().
-
app¶ Read-only attribute for accessing to
Applicationserved instance.
-
addresses¶ A
listof served sockets addresses.See
socket.getsockname()for items type.New in version 3.3.
-
coroutine
setup()¶ Initialize application. Should be called before adding sites.
The method calls
Application.on_startupregistered signals.
-
coroutine
cleanup()¶ Stop handling all registered sites and cleanup used resources.
Application.on_shutdownandApplication.on_cleanupsignals are called internally.
-
class
aiohttp.web.BaseSite¶ An abstract class for handled sites.
-
coroutine
start()¶ Start handling a site.
-
coroutine
stop()¶ Stop handling a site.
-
coroutine
-
class
aiohttp.web.TCPSite(runner, host=None, port=None, *, shutdown_timeout=60.0, ssl_context=None, backlog=128, reuse_address=None, reuse_port=None)¶ Serve a runner on TCP socket.
Parameters: - runner – a runner to serve.
- host (str) – HOST to listen on,
'0.0.0.0'ifNone(default). - port (int) – PORT to listed on,
8080ifNone(default). - shutdown_timeout (float) – a timeout for closing opened
connections on
BaseSite.stop()call. - ssl_context – a
ssl.SSLContextinstance for serving SSL/TLS secure server,Nonefor plain HTTP server (default). - backlog (int) –
a number of unaccepted connections that the system will allow before refusing new connections, see
socket.listen()for details.128by default. - reuse_address (bool) – tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to expire. If not specified will automatically be set to True on UNIX.
- reuse_port (bool) – tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows.
-
class
aiohttp.web.UnixSite(runner, path, *, shutdown_timeout=60.0, ssl_context=None, backlog=128)¶ Serve a runner on UNIX socket.
Parameters: - runner – a runner to serve.
- path (str) – PATH to UNIX socket to listen.
- shutdown_timeout (float) – a timeout for closing opened
connections on
BaseSite.stop()call. - ssl_context – a
ssl.SSLContextinstance for serving SSL/TLS secure server,Nonefor plain HTTP server (default). - backlog (int) –
a number of unaccepted connections that the system will allow before refusing new connections, see
socket.listen()for details.128by default.
-
class
aiohttp.web.SockSite(runner, sock, *, shutdown_timeout=60.0, ssl_context=None, backlog=128)¶ Serve a runner on UNIX socket.
Parameters: - runner – a runner to serve.
- sock –
socket.socketto listen. - shutdown_timeout (float) – a timeout for closing opened
connections on
BaseSite.stop()call. - ssl_context – a
ssl.SSLContextinstance for serving SSL/TLS secure server,Nonefor plain HTTP server (default). - backlog (int) –
a number of unaccepted connections that the system will allow before refusing new connections, see
socket.listen()for details.128by default.
Utilities¶
-
class
aiohttp.web.FileField¶ A
namedtupleinstance that is returned as multidict value byRequest.POST()if field is uploaded file.-
name¶ Field name
-
filename¶ File name as specified by uploading (client) side.
-
content_type¶ MIME type of uploaded file,
'text/plain'by default.
See also
-
-
aiohttp.web.run_app(app, *, host=None, port=None, path=None, sock=None, shutdown_timeout=60.0, ssl_context=None, print=print, backlog=128, access_log_class=aiohttp.helpers.AccessLogger, access_log_format=aiohttp.helpers.AccessLogger.LOG_FORMAT, access_log=aiohttp.log.access_logger, handle_signals=True, reuse_address=None, reuse_port=None)¶ A utility function for running an application, serving it until keyboard interrupt and performing a Graceful shutdown.
Suitable as handy tool for scaffolding aiohttp based projects. Perhaps production config will use more sophisticated runner but it good enough at least at very beginning stage.
The server will listen on any host or Unix domain socket path you supply. If no hosts or paths are supplied, or only a port is supplied, a TCP server listening on 0.0.0.0 (all hosts) will be launched.
Distributing HTTP traffic to multiple hosts or paths on the same application process provides no performance benefit as the requests are handled on the same event loop. See Server Deployment for ways of distributing work for increased performance.
Parameters: - app –
Applicationinstance to run or a coroutine that returns an application. - host (str) – TCP/IP host or a sequence of hosts for HTTP server.
Default is
'0.0.0.0'if port has been specified or if path is not supplied. - port (int) – TCP/IP port for HTTP server. Default is
8080for plain text HTTP and8443for HTTP via SSL (when ssl_context parameter is specified). - path (str) – file system path for HTTP server Unix domain socket. A sequence of file system paths can be used to bind multiple domain sockets. Listening on Unix domain sockets is not supported by all operating systems.
- sock (socket) – a preexisting socket object to accept connections on. A sequence of socket objects can be passed.
- shutdown_timeout (int) –
a delay to wait for graceful server shutdown before disconnecting all open client sockets hard way.
A system with properly Graceful shutdown implemented never waits for this timeout but closes a server in a few milliseconds.
- ssl_context –
ssl.SSLContextfor HTTPS server,Nonefor HTTP connection. - print – a callable compatible with
print(). May be used to override STDOUT output or suppress it. Passing None disables output. - backlog (int) – the number of unaccepted connections that the
system will allow before refusing new
connections (
128by default). - access_log_class – class for access_logger. Default:
aiohttp.helpers.AccessLogger. Must to be a subclass ofaiohttp.abc.AbstractAccessLogger. - access_log –
logging.Loggerinstance used for saving access logs. UseNonefor disabling logs for sake of speedup. - access_log_format – access log format, see Format specification for details.
- handle_signals (bool) – override signal TERM handling to gracefully exit the application.
- reuse_address (bool) – tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to expire. If not specified will automatically be set to True on UNIX.
- reuse_port (bool) – tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows.
New in version 3.0: Support access_log_class parameter.
Support reuse_address, reuse_port parameter.
New in version 3.1: Accept a coroutine as app parameter.
- app –
Constants¶
Middlewares¶
Normalize path middleware¶
-
aiohttp.web.normalize_path_middleware(*, append_slash=True, remove_slash=False, merge_slashes=True, redirect_class=HTTPMovedPermanently)¶ Middleware factory which produces a middleware that normalizes the path of a request. By normalizing it means:
- Add or remove a trailing slash to the path.
- Double slashes are replaced by one.
The middleware returns as soon as it finds a path that resolves correctly. The order if both merge and append/remove are enabled is:
- merge_slashes
- append_slash or remove_slash
- both merge_slashes and append_slash or remove_slash
If the path resolves with at least one of those conditions, it will redirect to the new path.
Only one of append_slash and remove_slash can be enabled. If both are
Truethe factory will raise anAssertionErrorIf append_slash is
Truethe middleware will append a slash when needed. If a resource is defined with trailing slash and the request comes without it, it will append it automatically.If remove_slash is
True, append_slash must beFalse. When enabled the middleware will remove trailing slashes and redirect if the resource is defined.If merge_slashes is
True, merge multiple consecutive slashes in the path into one.New in version 3.4: Support for remove_slash