當前位置: 首頁>>代碼示例>>Python>>正文


Python BaseHTTPServer.BaseHTTPRequestHandler方法代碼示例

本文整理匯總了Python中six.moves.BaseHTTPServer.BaseHTTPRequestHandler方法的典型用法代碼示例。如果您正苦於以下問題:Python BaseHTTPServer.BaseHTTPRequestHandler方法的具體用法?Python BaseHTTPServer.BaseHTTPRequestHandler怎麽用?Python BaseHTTPServer.BaseHTTPRequestHandler使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在six.moves.BaseHTTPServer的用法示例。


在下文中一共展示了BaseHTTPServer.BaseHTTPRequestHandler方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def __init__(self, multiplexer, name_to_plugin_dict, logdir, *args):
    self._multiplexer = multiplexer
    self._registered_plugins = name_to_plugin_dict
    self._logdir = logdir
    self._setup_data_handlers()
    BaseHTTPServer.BaseHTTPRequestHandler.__init__(self, *args) 
開發者ID:abhisuri97,項目名稱:auto-alt-text-lambda-api,代碼行數:8,代碼來源:handler.py

示例2: log_message

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def log_message(self, *args):
    """Logs message."""
    # By default, BaseHTTPRequestHandler logs to stderr.
    logging.info(*args)

  # @Override 
開發者ID:abhisuri97,項目名稱:auto-alt-text-lambda-api,代碼行數:8,代碼來源:handler.py

示例3: log_request

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def log_request(self, *args):
    """Does nothing."""
    # This is called by BaseHTTPRequestHandler.send_response() which causes it
    # to log every request. We've configured http.Respond() to only log
    # requests with >=400 status code.
    pass 
開發者ID:abhisuri97,項目名稱:auto-alt-text-lambda-api,代碼行數:8,代碼來源:handler.py

示例4: log_message

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def log_message(self, format, *args):
        """Log messages from the BaseHTTPRequestHandler class."""
        self.server.log_callback("BASE CLASS: {}".format(format % args)) 
開發者ID:Morgan-Stanley,項目名稱:testplan,代碼行數:5,代碼來源:server.py

示例5: get_options

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def get_options(cls):
        """
        Schema for options validation and assignment of default values.
        """
        return {
            Optional("host", default="localhost"): str,
            Optional("port", default=0): Use(int),
            Optional(
                "request_handler", default=HTTPRequestHandler
            ): lambda v: issubclass(v, http_server.BaseHTTPRequestHandler),
            Optional("handler_attributes", default={}): dict,
            Optional("timeout", default=5): Use(int),
            Optional("interval", default=0.01): Use(float),
        } 
開發者ID:Morgan-Stanley,項目名稱:testplan,代碼行數:16,代碼來源:server.py

示例6: __init__

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def __init__(self,
                 processor,
                 server_address,
                 inputProtocolFactory,
                 outputProtocolFactory=None,
                 server_class=BaseHTTPServer.HTTPServer):
        """Set up protocol factories and HTTP server.

        See BaseHTTPServer for server_address.
        See TServer for protocol factories.
        """
        if outputProtocolFactory is None:
            outputProtocolFactory = inputProtocolFactory

        TServer.TServer.__init__(self, processor, None, None, None,
                                 inputProtocolFactory, outputProtocolFactory)

        thttpserver = self

        class RequestHander(BaseHTTPServer.BaseHTTPRequestHandler):
            def do_POST(self):
                # Don't care about the request path.
                itrans = TTransport.TFileObjectTransport(self.rfile)
                otrans = TTransport.TFileObjectTransport(self.wfile)
                itrans = TTransport.TBufferedTransport(
                    itrans, int(self.headers['Content-Length']))
                otrans = TTransport.TMemoryBuffer()
                iprot = thttpserver.inputProtocolFactory.getProtocol(itrans)
                oprot = thttpserver.outputProtocolFactory.getProtocol(otrans)
                try:
                    thttpserver.processor.process(iprot, oprot)
                except ResponseException as exn:
                    exn.handler(self)
                else:
                    self.send_response(200)
                    self.send_header("content-type", "application/x-thrift")
                    self.end_headers()
                    self.wfile.write(otrans.getvalue())

        self.httpd = server_class(server_address, RequestHander) 
開發者ID:Aditmadzs,項目名稱:Protect4,代碼行數:42,代碼來源:THttpServer.py

示例7: __init__

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def __init__(self, multiplexer, logdir, *args):
    self._multiplexer = multiplexer
    self._logdir = logdir
    self._setup_data_handlers()
    BaseHTTPServer.BaseHTTPRequestHandler.__init__(self, *args) 
開發者ID:tobegit3hub,項目名稱:deep_image_model,代碼行數:7,代碼來源:handler.py

示例8: __init__

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def __init__(self, clusters, output_path, *args):
    self.clusters = clusters
    self.output_path = output_path
    BaseHTTPServer.BaseHTTPRequestHandler.__init__(self, *args) 
開發者ID:tensorflow,項目名稱:moonlight,代碼行數:6,代碼來源:kmeans_labeler_request_handler.py

示例9: __init__

# 需要導入模塊: from six.moves import BaseHTTPServer [as 別名]
# 或者: from six.moves.BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
def __init__(self,
                 processor,
                 server_address,
                 inputProtocolFactory,
                 outputProtocolFactory=None,
                 server_class=BaseHTTPServer.HTTPServer):
        if outputProtocolFactory is None:
            outputProtocolFactory = inputProtocolFactory
        TServer.TServer.__init__(self, processor, None, None, None,
                                 inputProtocolFactory, outputProtocolFactory)
        thttpserver = self
        class RequestHander(BaseHTTPServer.BaseHTTPRequestHandler):
            def do_POST(self):
                itrans = TTransport.TFileObjectTransport(self.rfile)
                otrans = TTransport.TFileObjectTransport(self.wfile)
                itrans = TTransport.TBufferedTransport(
                    itrans, int(self.headers['Content-Length']))
                otrans = TTransport.TMemoryBuffer()
                iprot = thttpserver.inputProtocolFactory.getProtocol(itrans)
                oprot = thttpserver.outputProtocolFactory.getProtocol(otrans)
                try:
                    thttpserver.processor.process(iprot, oprot)
                except ResponseException as exn:
                    exn.handler(self)
                else:
                    self.send_response(200)
                    self.send_header("content-type", "application/x-thrift")
                    self.end_headers()
                    self.wfile.write(otrans.getvalue())
        self.httpd = server_class(server_address, RequestHander) 
開發者ID:stya535,項目名稱:SOLO,代碼行數:32,代碼來源:THttpServer.py


注:本文中的six.moves.BaseHTTPServer.BaseHTTPRequestHandler方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。