I want to differentiate the following equation
from sympy import * init_printing() x, t, r, phi = symbols('x, t, r, phi')

The result is differentiated only on the left side. I would like it to be evaluated on both sides. Is this possible in a simple way?
I am currently doing the following:
Eq(eq.lhs.diff(t), eq.rhs.diff(t))
source share