1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
59
60
61
62
63
64
65
66
67
68
69
| import json
| import os
| from typing import (
| TYPE_CHECKING,
| Any,
| Awaitable,
| Callable,
| Iterable,
| Mapping,
| Protocol,
| Tuple,
| Union,
| )
|
| from multidict import CIMultiDict, CIMultiDictProxy, MultiDict, MultiDictProxy, istr
| from yarl import URL, Query as _Query
|
| Query = _Query
|
| DEFAULT_JSON_ENCODER = json.dumps
| DEFAULT_JSON_DECODER = json.loads
|
| if TYPE_CHECKING:
| _CIMultiDict = CIMultiDict[str]
| _CIMultiDictProxy = CIMultiDictProxy[str]
| _MultiDict = MultiDict[str]
| _MultiDictProxy = MultiDictProxy[str]
| from http.cookies import BaseCookie, Morsel
|
| from .web import Request, StreamResponse
| else:
| _CIMultiDict = CIMultiDict
| _CIMultiDictProxy = CIMultiDictProxy
| _MultiDict = MultiDict
| _MultiDictProxy = MultiDictProxy
|
| Byteish = Union[bytes, bytearray, memoryview]
| JSONEncoder = Callable[[Any], str]
| JSONDecoder = Callable[[str], Any]
| LooseHeaders = Union[
| Mapping[str, str],
| Mapping[istr, str],
| _CIMultiDict,
| _CIMultiDictProxy,
| Iterable[Tuple[Union[str, istr], str]],
| ]
| RawHeaders = Tuple[Tuple[bytes, bytes], ...]
| StrOrURL = Union[str, URL]
|
| LooseCookiesMappings = Mapping[str, Union[str, "BaseCookie[str]", "Morsel[Any]"]]
| LooseCookiesIterables = Iterable[
| Tuple[str, Union[str, "BaseCookie[str]", "Morsel[Any]"]]
| ]
| LooseCookies = Union[
| LooseCookiesMappings,
| LooseCookiesIterables,
| "BaseCookie[str]",
| ]
|
| Handler = Callable[["Request"], Awaitable["StreamResponse"]]
|
|
| class Middleware(Protocol):
| def __call__(
| self, request: "Request", handler: Handler
| ) -> Awaitable["StreamResponse"]: ...
|
|
| PathLike = Union[str, "os.PathLike[str]"]
|
|