def hello_world()

in python-example-flask/main.py [0:0]


def hello_world():
    name = os.environ.get("NAME", "World")
    return f"Hello {name}!"