DEV Community

Nicolas Castaño
Nicolas Castaño

Posted on

# I Created a Python Math Library: Matekit 🚀

Hi everyone 👋

I recently created Matekit, a modern Python mathematics library focused on making math tools simple and beginner-friendly.

It includes:

  • Basic math operations
  • Algebra utilities
  • Geometry formulas
  • Statistics functions
  • Matrix operations
  • Graphing with Matplotlib
  • Unit converters
  • Random generators
  • CLI support

Example:

from matekit import suma

print(suma(5, 3))
Enter fullscreen mode Exit fullscreen mode

Install:

pip install matekit
Enter fullscreen mode Exit fullscreen mode

Update:

pip install --upgrade matekit
Enter fullscreen mode Exit fullscreen mode

My goal is to build an easy and powerful open-source toolkit for students, developers, and anyone working with mathematics in Python.

Feedback and ideas are welcome 🚀

Top comments (0)