Skeleton for installing a python module from pip.
It's good to have a simple known working example.
This is a simple module which relies on one other module in order to achieve the dreaded Hello World.
Use at your own caution.
pip install git+https://github.com/drewaogle/py_for_pip.git
python3 -c "
from fancyhello import fancyhello
fancyhello()
"