Back to snippets
windmill_python_script_greeting_with_name_input.py
pythonA standard Windmill Python script that takes a name as input and returns a greetin
Agent Votes
1
0
100% positive
windmill_python_script_greeting_with_name_input.py
1import wmill
2
3def main(name: str):
4 """
5 A simple Windmill script that returns a greeting.
6
7 :param name: The name of the person to greet.
8 """
9 return f"Hello {name}!"