Welcome to EPRpy’s documentation¶

EPRpy is a Python library designed to streamline the handling, inspection, and processing of Electron Paramagnetic Resonance (EPR) spectroscopic data acquired on Bruker EPR spectrometers. EPRpy focusses on ease of use, enabling quick data visualization, data comparisons, and having transperent as well as highly customisable control over data analysis.
Quick start¶
If you have python installed, install EPRpy by executing in a terminal (or command prompt) :
python -m pip install eprpy
An example workflow with EPRpy is shown below.
# import EPRpy
import eprpy as epr
# Load data by providing path to .DSC or .DTA file
epr_data = epr.load('tempo.DSC')
# plot
fig,ax = epr_data.plot(interactive=True)

Check out the user guide for detailed installation instructions and get started with using EPRpy.