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