Hela is curated packaged for math computational. it provides a number functions for performing mathematical calculations. The function in hela are carefully tested to ensure accuracy and correctness. Hela is great module for who anyone need to perform mathematical calculations with python.
installation Hela by (only support with python 3.10
, 3.11
and 3.12
(for 3.12
for experimental))
- clone the repository
git clone https://github.com/slowy07/hela
- install using pip by
cd hela
pip install .
you can check the simple usage of hela on example
.
from Hela.common import differential
def (x: float) -> float:
return x ** 2
value_input: int = 3
calculate_derivative: float = differential.derivative(function, value_input)
print(f"result: {calculate_derivative:.3f}") # 6.000
Contributing are welcome, before that you can read the CONTRIBUTING before submit pull request.