This package provides a very simple example module with basic arithmetic operations.
You can install the package locally:
git clone https://github.com/hongtaoh/htpymodule
pip install .or through PyPI:
pip install htpymodulefrom htpymodule import add, subtract, multiply, divide
print(add(1, 2)) # Output: 3
print(subtract(5, 3)) # Output: 2
print(multiply(4, 2)) # Output: 8
print(divide(10, 2)) # Output: 5.0