本文整理汇总了Python中crossbar.controller.template.Templates.init方法的典型用法代码示例。如果您正苦于以下问题:Python Templates.init方法的具体用法?Python Templates.init怎么用?Python Templates.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crossbar.controller.template.Templates
的用法示例。
在下文中一共展示了Templates.init方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run_command_init
# 需要导入模块: from crossbar.controller.template import Templates [as 别名]
# 或者: from crossbar.controller.template.Templates import init [as 别名]
def run_command_init(options):
"""
Subcommand "crossbar init".
"""
from crossbar.controller.template import Templates
templates = Templates()
if not options.template in templates:
raise Exception("no node template '{}' - use the command 'crossbar templates' to list templates available".format(options.template))
if options.appdir is None:
options.appdir = '.'
else:
if os.path.exists(options.appdir):
raise Exception("app directory '{}' already exists".format(options.appdir))
try:
os.mkdir(options.appdir)
except Exception as e:
raise Exception("could not create application directory '{}' ({})".format(options.appdir, e))
else:
print("Crossbar.io application directory '{}' created".format(options.appdir))
options.appdir = os.path.abspath(options.appdir)
print("Initializing application template '{}' in directory '{}'".format(options.template, options.appdir))
templates.init(options.appdir, options.template)
# try:
# templates.init(options.appdir, options.template)
# except Exception as e:
# try:
# shutil.rmtree(options.appdir)
# except:
# pass
# raise e
print("Application template initialized")
print("\nTo start your node, run 'crossbar start --cbdir {}'".format(os.path.abspath(os.path.join(options.appdir, '.crossbar'))))
示例2: run_command_init
# 需要导入模块: from crossbar.controller.template import Templates [as 别名]
# 或者: from crossbar.controller.template.Templates import init [as 别名]
def run_command_init(options):
"""
Subcommand "crossbar init".
"""
from crossbar.controller.template import Templates
templates = Templates()
if options.template not in templates:
print("Huh, sorry. There is no template named '{}'. Try 'crossbar templates' to list the templates available.".format(options.template))
sys.exit(1)
if options.appdir is None:
options.appdir = '.'
else:
if os.path.exists(options.appdir):
raise Exception("app directory '{}' already exists".format(options.appdir))
try:
os.mkdir(options.appdir)
except Exception as e:
raise Exception("could not create application directory '{}' ({})".format(options.appdir, e))
else:
print("Crossbar.io application directory '{}' created".format(options.appdir))
options.appdir = os.path.abspath(options.appdir)
print("Initializing application template '{}' in directory '{}'".format(options.template, options.appdir))
get_started_hint = templates.init(options.appdir, options.template)
# try:
# templates.init(options.appdir, options.template)
# except Exception as e:
# try:
# shutil.rmtree(options.appdir)
# except:
# pass
# raise e
print("Application template initialized")
if get_started_hint:
print("\n{}\n".format(get_started_hint))
else:
print("\nTo start your node, run 'crossbar start --cbdir {}'\n".format(os.path.abspath(os.path.join(options.appdir, '.crossbar'))))
示例3: run_command_init
# 需要导入模块: from crossbar.controller.template import Templates [as 别名]
# 或者: from crossbar.controller.template.Templates import init [as 别名]
def run_command_init(options, **kwargs):
"""
Subcommand "crossbar init".
"""
log = make_logger()
from crossbar.controller.template import Templates
templates = Templates()
if options.template not in templates:
log.info(
"Huh, sorry. There is no template named '{options.template}'. Try 'crossbar templates' to list the templates available.",
options=options,
)
sys.exit(1)
if options.appdir is None:
options.appdir = "."
else:
if os.path.exists(options.appdir):
raise Exception("app directory '{}' already exists".format(options.appdir))
try:
os.mkdir(options.appdir)
except Exception as e:
raise Exception("could not create application directory '{}' ({})".format(options.appdir, e))
else:
log.info("Crossbar.io application directory '{options.appdir}' created", options=options)
options.appdir = os.path.abspath(options.appdir)
log.info("Initializing application template '{options.template}' in directory '{options.appdir}'", options=options)
get_started_hint = templates.init(options.appdir, options.template)
log.info("Application template initialized")
if get_started_hint:
log.info("\n{}\n".format(get_started_hint))
else:
log.info(
"\nTo start your node, run 'crossbar start --cbdir {cbdir}'\n",
cbdir=os.path.abspath(os.path.join(options.appdir, ".crossbar")),
)