1、使用函数
fire可以简单快速地实现命令功能。
$pythonhello.py HelloWorld! $pythonhello.py--name=Prodesire HelloProdesire! $pythonhello.py--help INFO:Showinghelpwiththecommand'hello.py----help'. NAME hello.py SYNOPSIS hello.py<flags> FLAGS --name=NAME
2、使用类
使用函数是最简单的方法,如果你想以更有组织的方式实现,比如使用类,fire 也是支持。
importfire classCalculator(object): """Asimplecalculatorclass.""" defdouble(self,number): return2*number deftriple(self,number): return3*number if__name__='__main__': fire.Fire(Calculator)
以上是python fire在函数和类别中的应用,希望对大家有所帮助。更多Python高级指路:高级python
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。