14.5.5.11 HTTPHandler
The HTTPHandler class, located in the logging.handlers module, supports sending logging messages to a Web server, using either "GET" or "POST" semantics.
-
Returns a new instance of the HTTPHandler class. The
instance is initialized with a host address, url and HTTP method.
The host can be of the form
host:port
, should you need to use a specific port number. If no method is specified, "GET"is used.
- Sends the record to the Web server as an URL-encoded dictionary.
See About this document... for information on suggesting changes.