亚洲一区精品自拍_2021年国内精品久久_男同十八禁gv在线观看_免费观看a级性爱黄片

Article / 文章中心

Python編程:fire庫自動生成命令行接口

發(fā)布時間:2021-11-23 點擊數:676

命令行接口(Command Line Interface,簡稱CLI)

# -*- coding: utf-8 -*-  # @File    : fire_CLI_demo.py # @Date    : 2018-06-03  import fire  class Person(object):  def hello(self, name="world"):  print("hell %s"% name)  if __name__ == '__main__':  fire.Fire(Person)  # 運行命令: python fire_CLI_demo.py hello