The analysis functions used in the Jupyter Notebooks were moved from separated files (i.e., inf_inj_time.py
, onset_functions.py
, onset_widgets.py
, read_swaves.py
) to the package SEPpy (PyPI entry).
In the course of this, all .py files became obsolote, but are kept for backwards compatibility.
Please install the latest version of SEPpy with pip install seppy
and change the imports in the Notebooks from:
from onset_functions import *
import onset_widgets as w
to:
from seppy.tools import Event, inf_inj_time
import seppy.tools.widgets as w
import datetime, os