2.1.8.8 Sympy. Time used: 0.195 (sec). Leaf size: 15
from sympy import * 
t = symbols("t") 
b = symbols("b") 
x = Function("x") 
ode = Eq(-b*exp(x(t)) + Derivative(x(t), t),0) 
ics = {x(0): 1} 
dsolve(ode,func=x(t),ics=ics)
 
\begin{gather*} \begin {aligned} x{\left (t \right )} = \log {\left (- \frac {1}{b t - e^{-1}} \right )} \end {aligned} \end{gather*}
Python version: 3.12.3 (main, Aug 14 2025, 17:47:21) [GCC 13.3.0] 
Sympy version 1.14.0
 
classify_ode(ode,func=x(t)) 
 
('separable', '1st_exact', '1st_power_series', 'lie_group', 'separable_Integral', '1st_exact_Integral')