728x90 모듈1 Python fire package fire 패키지는 Python에서의 모든 객체를 command line interface로 만들어 준다. python 객체(함수, 클래스, dictionary, list, tuple 모두다 호출이 가능하다) 함수 예시 import fire def hello(name="World"): return "Hello %s!" % name if __name__ == '__main__': fire.Fire(hello) 주의해야될 것은 다음의 코드를 fire.py로 똑같이 naming을 하면 안된다. 다른 이름으로 만들어줘야한다. python example.py # Hello World! python example.py --name=YONGJUN # Hello YONGJUN! python hello.py --help .. 2020. 10. 19. 이전 1 다음 728x90