Calpylus is a powerful calculus toolkit built in Python.
Project description
📐 Calpylus
Calpylus is a powerful and beginner-friendly Python library built for symbolic and visual calculus. Whether you're a student studying calculus, an educator building tools, or a developer creating math-powered apps — Calpylus has your back with expressive syntax, beautiful plotting, and a growing feature set.
Developed with ❤️ by Mohammad Mahfuz Rahman
✨ Features
- ✅ Symbolic Differentiation and Integration
- ✅ 2D Function Plotting (Matplotlib-based)
- ✅ 3D Surface Plotting (
graph3D) - ✅ Simple, intuitive API
- ✅ Built using
SymPyandMatplotlib
📦 Installation
Install directly from PyPI:
pip install calpylus
Or install from GitHub (for development):
pip install git+https://github.com/mahfuz0712/Calpylus.git
🧪 Quick Start
import matplotlib.pyplot as plt
from calpylus.calculus import Calculus as cl
# Define a function
f = "sin(x)"
g = "cos(x)"
# Plot 2D graphs
cl.graph(f)
cl.graph(g)
# Plot a 3D surface
cl.graph3D("sin(x)*cos(y)")
# Final blocking call to keep all windows open until closed manually
plt.show()
Differential & Integral Calculus
Symbolically differentiate an expression with respect to a variable.
cl.differentiate("x**2 + sin(x)")
# Output: 2*x + cos(x)
cl.differentiate(expr: str, variable='x')
Symbolically integrate an expression with respect to a variable.
cl.integrate("x**2")
# Output: x**3/3
cl.integrate(expr: str, variable='x')
Graphical View
Plots a 2D graph of a function of x.
cl.graph(expr: str)
cl.graph("x**2 + 2*x + 1")
3D Graph
Plots a 3D surface plot of a function in terms of x and y.
cl.graph3D(expr: str)
cl.graph3D("sin(x) * cos(y)")
🧠 Under the Hood
| Feature | Library Used |
|---|---|
| Symbolic Math | sympy |
| 2D/3D Plotting | matplotlib |
🤝 Contributing
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change or add.
To run locally:
git clone https://github.com/mahfuz0712/Calpylus.git
cd Calpylus
pip install -e .
📜 License
This project is licensed under the MIT License.
🙋 FAQ
Q: Can I use this library without knowing advanced calculus?
A: Yes! The library is designed to be intuitive and beginner-friendly.
Q: Will you add support for limits, series expansion, etc.?
A: Absolutely. These features are planned in future releases.
🌐 Links
“Mathematics is the music of reason.” — James Joseph Sylvester
Calpylus turns that music into code. 🎶
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file calpylus-0.0.5.tar.gz.
File metadata
- Download URL: calpylus-0.0.5.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe6f4f7651dc200ea10d1dcba522d0c11b1e60496916010083235d2c1c5e18d4
|
|
| MD5 |
ccefb9b7baa0275c151e93116e2dfb65
|
|
| BLAKE2b-256 |
464ac12e26d14ec57740727a01a81e037f982f5e4cfd22b8ab207fe3ee71412e
|
File details
Details for the file calpylus-0.0.5-py3-none-any.whl.
File metadata
- Download URL: calpylus-0.0.5-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e5a8f8553f3d579ee4296d21bebf48eb58552dffc1fc617344480421109b517
|
|
| MD5 |
c90c0fc8a8e06358fcbe149f9fe91a87
|
|
| BLAKE2b-256 |
08145a64683a98fbc38909c944497617820e5a77330b14bb1e53693c66b06c5f
|