Skip to content

common module

The common module contains common functions and classes used by the other modules.

hello_world(name)

Prints "Hello World!" to the console.

Source code in carbonarr/common.py
def hello_world(name):
    """Prints "Hello World!" to the console.
    """

    print("Hello World!"+" "+name)