本文整理汇总了Python中tornado.options.options.config方法的典型用法代码示例。如果您正苦于以下问题:Python options.config方法的具体用法?Python options.config怎么用?Python options.config使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tornado.options.options
的用法示例。
在下文中一共展示了options.config方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse_command_line
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import config [as 别名]
def parse_command_line(extra_args_func=None):
"""Parse command line arguments for any Pyaiot application."""
if not hasattr(options, "config"):
define("config", default=None, help="Config file")
if not hasattr(options, "broker_host"):
define("broker_host", default="localhost", help="Broker host")
if not hasattr(options, "broker_port"):
define("broker_port", default=8000, help="Broker websocket port")
if not hasattr(options, "debug"):
define("debug", default=False, help="Enable debug mode.")
if not hasattr(options, "key_file"):
define("key_file", default=DEFAULT_KEY_FILENAME,
help="Secret and private keys filename.")
if extra_args_func is not None:
extra_args_func()
options.parse_command_line()
if options.config:
options.parse_config_file(options.config)
# Parse the command line a second time to override config file options
options.parse_command_line()
示例2: main
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import config [as 别名]
def main():
parse_command_line()
if options.config:
parse_config_file(options.config)
app = MainApplication()
app.listen(options.port)
tornado.ioloop.IOLoop.current().start()