本文整理匯總了Python中BaseHTTPServer.BaseHTTPRequestHandler.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python BaseHTTPRequestHandler.__init__方法的具體用法?Python BaseHTTPRequestHandler.__init__怎麽用?Python BaseHTTPRequestHandler.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BaseHTTPServer.BaseHTTPRequestHandler
的用法示例。
在下文中一共展示了BaseHTTPRequestHandler.__init__方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
# 或者: from BaseHTTPServer.BaseHTTPRequestHandler import __init__ [as 別名]
def __init__(self,parent=None):
ULObject.__init__(self,parent)
self.createAttribute("angle",float)
self.createAttribute("direction",int)
self.createAttribute("function",int)
self.createAttribute("length",int)
self.createAttribute("name",str)
self.createAttribute("net",str)
self.createAttribute("route",int)
self.createAttribute("swaplevel",int)
self.createAttribute("visible",int)
self.createAttribute("x",int)
self.createAttribute("y",int)
self.createAttribute("circles",[ULCircle])
self.createAttribute("contacts",[ULContact])
self.createAttribute("texts",[ULText])
self.createAttribute("wires",[ULWire])
示例2: __init__
# 需要導入模塊: from BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
# 或者: from BaseHTTPServer.BaseHTTPRequestHandler import __init__ [as 別名]
def __init__(self):
self.registry = CollectorRegistry()
self.prodstack = {}
with open(config['cache_file'], 'rb') as f:
self.prodstack = pickle.load(f)[0]
self.hypervisors = self.prodstack['hypervisors']
self.tenant_map = {t['id']: t['name'] for t in self.prodstack['tenants']}
self.flavor_map = {f['id']: {'ram': f['ram'], 'disk': f['disk'], 'vcpus': f['vcpus']}
for f in self.prodstack['flavors']}
self.aggregate_map = {}
self.services_map = {}
for s in self.prodstack['services']:
if s['binary'] == 'nova-compute':
self.services_map[s['host']] = s['status']
for agg in self.prodstack['aggregates']:
self.aggregate_map.update({i: agg['name'] for i in agg['hosts']})
示例3: __init__
# 需要導入模塊: from BaseHTTPServer import BaseHTTPRequestHandler [as 別名]
# 或者: from BaseHTTPServer.BaseHTTPRequestHandler import __init__ [as 別名]
def __init__(self, server_address, handler_class, config,
bind_and_activate=True):
# pylint: disable=super-init-not-called, non-parent-init-called
# Init just BaseServer, TCPServer creates a socket.
BaseServer.__init__(self, server_address, handler_class)
if isinstance(server_address, socket.socket):
# It's a bound and activates socket from systemd.
self.socket = server_address
bind_and_activate = False
else:
self.socket = socket.socket(self.address_family,
self.socket_type)
# copied from TCPServer
if bind_and_activate:
try:
self.server_bind()
self.server_activate()
except BaseException:
self.server_close()
raise
if self.socket.family == socket.AF_UNIX:
self.socket_file = self.socket.getsockname()
if 'consumers' not in config:
raise ValueError('Configuration does not provide any consumer')
self.config = config
if 'server_string' in self.config:
self.server_string = self.config['server_string']
self.auditlog = log.auditlog