usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
577 B
14 lines
577 B
from tornado_py3 import escape as escape, httputil as httputil
|
|
from tornado_py3.log import access_log as access_log
|
|
from typing import Any, Dict, Text
|
|
from wsgiref.types import WSGIApplication as WSGIAppType
|
|
|
|
def to_wsgi_str(s: bytes) -> str: ...
|
|
|
|
class WSGIContainer:
|
|
wsgi_application: Any = ...
|
|
def __init__(self, wsgi_application: WSGIAppType) -> None: ...
|
|
def __call__(self, request: httputil.HTTPServerRequest) -> None: ...
|
|
@staticmethod
|
|
def environ(request: httputil.HTTPServerRequest) -> Dict[Text, Any]: ...
|
|
HTTPRequest = httputil.HTTPServerRequest
|
|
|