ocas-py 0.20.1

Python bindings for oCAS
Documentation

Python bindings for oCAS.

The top-level Python module is named ocas (see pyproject.toml).

Quick start

import ocas

e = ocas.Expression("x^2 + 2*x + 1")
print(e.diff("x"))                 # derivative
print(e.simplify())

print(ocas.solve_diophantine(3, 5, 1))