Home
last modified time | relevance | path

Searched refs:HTTPScope (Results 1 – 7 of 7) sorted by relevance

/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/middleware/
H A Dwsgi.py8 from ..typing import HTTPScope, Scope
37 self, scope: HTTPScope, receive: Callable, send: Callable argument
44 self, scope: HTTPScope, receive: Callable, send: Callable argument
53 self, scope: HTTPScope, receive: Callable, send: Callable argument
69 self, scope: HTTPScope, receive: Callable, spawn: Callable argument
107 def _build_environ(scope: HTTPScope, body: bytes) -> dict: argument
H A Dhttp_to_https.py6 from ..typing import ASGIFramework, HTTPScope, Scope, WebsocketScope, WWWScope
29 async def _send_http_redirect(self, scope: HTTPScope, send: Callable) -> None: argument
/dports/www/py-uvicorn/uvicorn-0.15.0/uvicorn/middleware/
H A Dwsgi.py15 HTTPScope,
21 def build_environ(scope: HTTPScope, message: ASGIReceiveEvent, body: bytes) -> Environ: argument
78 self, scope: HTTPScope, receive: ASGIReceiveCallable, send: ASGISendCallable argument
90 scope: HTTPScope, argument
H A Dproxy_headers.py17 HTTPScope,
50 scope = cast(Union[HTTPScope, WebSocketScope], scope)
/dports/www/py-asgiref/asgiref-3.4.1/asgiref/
H A Dtyping.py65 class HTTPScope(TypedDict): class
102 WWWScope = Union[HTTPScope, WebSocketScope]
103 Scope = Union[HTTPScope, WebSocketScope, LifespanScope]
/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/
H A Dtyping.py27 class HTTPScope(TypedDict): class
64 WWWScope = Union[HTTPScope, WebsocketScope]
65 Scope = Union[HTTPScope, WebsocketScope, LifespanScope]
/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/protocol/
H A Dhttp_stream.py10 from ..typing import ASGIFramework, ASGISendEvent, Context, HTTPResponseStartEvent, HTTPScope
48 self.scope: HTTPScope