# Kalika Python SDK

Python bindings for Kalika's local TypeScript SDK. The default backend calls the
TypeScript SDK through a Node/tsx subprocess, keeping the Python package free of
server requirements while preserving a Pythonic, SymPy-like surface.

```python
from kalika_sdk import KalikaClient, symbols, diff, integrate, solve

x = symbols("x")
client = KalikaClient()

print(diff(x**2, x))
print(integrate("sin(x)", x))
print(solve("2*x + 4 = 10", x))
```
