pip install clime python import clime class MyApp(clime.Command): def hello(self, name): print(f"Hello, {name}!") if __name__ == "__main__": clime.SimpleRouter(MyApp).route() python myapp.py hello John