本文整理汇总了Python中doit.doit_cmd.DoitMain.get_commands方法的典型用法代码示例。如果您正苦于以下问题:Python DoitMain.get_commands方法的具体用法?Python DoitMain.get_commands怎么用?Python DoitMain.get_commands使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类doit.doit_cmd.DoitMain
的用法示例。
在下文中一共展示了DoitMain.get_commands方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_commands
# 需要导入模块: from doit.doit_cmd import DoitMain [as 别名]
# 或者: from doit.doit_cmd.DoitMain import get_commands [as 别名]
def get_commands(self):
# core doit commands
cmds = DoitMain.get_commands(self)
# load nikola commands
for name, cmd in self.nikola.commands.items():
cmds[name] = cmd
return cmds
示例2: get_commands
# 需要导入模块: from doit.doit_cmd import DoitMain [as 别名]
# 或者: from doit.doit_cmd.DoitMain import get_commands [as 别名]
def get_commands(self):
# core doit commands
cmds = DoitMain.get_commands(self)
# load nikola commands
for name, cmd in self.nikola.commands.items():
cmds[name] = cmd
# Hide run because Nikola uses build
cmds.pop('run')
return cmds
示例3: get_commands
# 需要导入模块: from doit.doit_cmd import DoitMain [as 别名]
# 或者: from doit.doit_cmd.DoitMain import get_commands [as 别名]
def get_commands(self):
cmds = DoitMain.get_commands(self)
my_cmd = MyCmd()
cmds[my_cmd.name] = my_cmd
return cmds