📜  从参数解析器运行函数 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:27.050000             🧑  作者: Mango

代码示例1
FUNCTION_MAP = {'top20' : my_top20_func,
                'listapps' : my_listapps_func }

parser.add_argument('command', choices=FUNCTION_MAP.keys())

args = parser.parse_args()

func = FUNCTION_MAP[args.command]
func()