socketserver module is to simplify writing network servers. BaseRequestHandler is the (abstract?) superclass of all request handler objects. handle() method. handle() | This method must be overwritten to perform all work which is expected from the server. |
request | The socket.socket object which is used by the server to communicate with the client. |
BaseServer is the (abstract?) superclass of all server objects in the socketserver module. TCPServer is http.server.HTTPServer.