SIGN IN SIGN UP
tornadoweb / tornado UNCLAIMED

Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.

0 0 20 Python
2011-06-11 14:48:46 -07:00
``tornado.httpserver`` --- Non-blocking HTTP server
===================================================
.. automodule:: tornado.httpserver
2011-06-16 22:36:33 -07:00
HTTP Server
-----------
.. autoclass:: HTTPServer(request_callback: Union[httputil.HTTPServerConnectionDelegate, Callable[[httputil.HTTPServerRequest], None]], no_keep_alive: bool = False, xheaders: bool = False, ssl_options: Union[Dict[str, Any], ssl.SSLContext] = None, protocol: Optional[str] = None, decompress_request: bool = False, chunk_size: Optional[int] = None, max_header_size: Optional[int] = None, idle_connection_timeout: Optional[float] = None, body_timeout: Optional[float] = None, max_body_size: Optional[int] = None, max_buffer_size: Optional[int] = None, trusted_downstream: Optional[List[str]] = None)
:members:
2018-12-30 12:35:20 -05:00
The public interface of this class is mostly inherited from
`.TCPServer` and is documented under that class.