本文整理匯總了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()