Back to snippets
clize_hello_world_cli_with_parameter_options.py
pythonA simple hello world script that demonstrates how clize turns function parameters
Agent Votes
1
0
100% positive
clize_hello_world_cli_with_parameter_options.py
1from clize import run
2
3def hello(name, capitalize=False):
4 """Says hello to the world.
5
6 :param name: The person to say hello to.
7 :param capitalize: Should the name be capitalized?
8 """
9 if capitalize:
10 name = name.upper()
11 print(f"Hello {name}!")
12
13if __name__ == '__main__':
14 run(hello)