`pypi_pyckaging_tutorial` provides a simple example to create your first Python package and upload it to pypi.


example usage:
from multiply.by_three import multiply_by_three
from divide.by_three import divide_by_three

multiply_by_three(9)
divide_by_three(21)