This is an example project demonstrating how to publish a python module tp PyPI
Run the following to install:
pip install helloworld-nik12from helloworld import say_hello
# Generate hello world
say_hello(name=None)
#Generate "Hello, Joe!"
say_hello("Joe")