谷歌开源了命令行接口库fire,安装直接pip instal file即可。
简单易用,对原有代码可以零改动实现命令行调用,简单明了
例子:
sr/bin/env python
import fire
class Example(object):
def hello(self, name='world'):
"""Says hello to the specified name."""
return 'Hello {name}!'.format(name=name)
def main():
fire.Fire(Example)
if __name__ == '__main__':
main()
当 Fire 函数运行时,我们的命令被执行。仅仅通过调用 Fire,现在我们可以把样本类当作命令行工具来使用。
$ ./example.py hello
Hello world!
$ ./example.py hello David
Hello David!
$ ./example.py hello --name=Google
Hello Google!