python import pycli @pycli.command("greet") def greet_command(name): print(f"Hello, {name}!") if __name__ == "__main__": pycli.run()