pub(crate) fn py_simulate_ei_network<'py>(
py: Python<'py>,
n_exc: usize,
n_inh: usize,
w_ee: f64,
w_ei: f64,
w_ie: f64,
w_ii: f64,
p_conn: f64,
ext_rate: f64,
duration: f64,
dt: f64,
seed: u64,
) -> PyResult<Py<PyAny>>