本文整理汇总了Python中app.App.call方法的典型用法代码示例。如果您正苦于以下问题:Python App.call方法的具体用法?Python App.call怎么用?Python App.call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.App
的用法示例。
在下文中一共展示了App.call方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: from app import App [as 别名]
# 或者: from app.App import call [as 别名]
def run():
parser = argparse.ArgumentParser(description='Command line key-value store.',
add_help=False, )
parser.add_argument('action', metavar='action', nargs='*', help='action')
args = parser.parse_args()
# command = args or 'help'
if not args.action:
command = 'help'
else:
command = args.action[0]
application = App()
if not hasattr(application, command):
print (colored('Command `', ERROR_COLOR) +
colored(command, INFO_COLOR) +
colored('`not found, Did you mean `', ERROR_COLOR) +
colored(did_you_mean(command, App.SUPPORTED_COMMANDS), KEY_COLOR) +
colored('`', ERROR_COLOR))
else:
sub_commands = args.action[1:] if args.action else None
if sub_commands:
application.call(command, *sub_commands)
else:
application.call(command)