pip install clime python import clime class MyApp(clime.Application): def __init__(self): super().__init__() self.add_command("hello", self.say_hello) def say_hello(self, name: str): if __name__ == "__main__": MyApp().start()