本文整理汇总了Python中aiohttp.web.Application.update方法的典型用法代码示例。如果您正苦于以下问题:Python Application.update方法的具体用法?Python Application.update怎么用?Python Application.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aiohttp.web.Application
的用法示例。
在下文中一共展示了Application.update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: init
# 需要导入模块: from aiohttp.web import Application [as 别名]
# 或者: from aiohttp.web.Application import update [as 别名]
async def init(loop, args):
app = Application(debug=args['debug'])
app.update(args)
log_msg = app['f']['print']
app['clients'] = {}
app['tabs'] = {}
# TODO: Move session and task handling to proper places
app['sessions'] = []
app['tasks'] = []
app.router.add_route('*', '/{path:(?!status.json).*}', the_handler)
app.router.add_route('*', '/status.json', status_handler)
handler = app.make_handler()
srvs = [await loop.create_server(handler, app['proxy_hosts'], proxy_port) for proxy_port in app['proxy_ports']]
log_msg(
f'DevTools Proxy started at {app["proxy_hosts"]}:{app["proxy_ports"]}\n'
f'Use --remote-debugging-port={app["chrome_port"]} --remote-debugging-address={app["chrome_host"]} for Chrome',
)
return app, srvs, handler