Hello World#

Summary: “hello_world” is a WNTR extension that demonstrates the file structure of a simple extension. See Contributing for more information on creating an extension.

Point of contact: Katherine Klise, kaklise


The Hello World extension contains a single function that returns “Hello World!”.

>>> import wntr.extensions.hello_world as hello_world

>>> output = hello_world.example_module.example_function()
>>> print(output)
Hello World!