You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/integrations.rst
+30-30Lines changed: 30 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,36 @@ Integrations
3
3
4
4
Openapi-core integrates with your popular libraries and frameworks. Each integration offers different levels of integration that help validate and unmarshal your request and response data.
5
5
6
+
aiohttp.web
7
+
-----------
8
+
9
+
This section describes integration with `aiohttp.web <https://docs.aiohttp.org/en/stable/web.html>`__ framework.
10
+
11
+
Low level
12
+
~~~~~~~~~
13
+
14
+
You can use ``AIOHTTPOpenAPIWebRequest`` as an aiohttp request factory:
15
+
16
+
.. code-block:: python
17
+
18
+
from openapi_core import unmarshal_request
19
+
from openapi_core.contrib.aiohttp import AIOHTTPOpenAPIWebRequest
0 commit comments