This python library helps you load, analyze and visualize ARPES data.
Install latest stable version:
pip install --upgrade arpespythontools
Import and start using:
import arpespythontools as arp
data, energy, angle = arp.load_ses_spectra("sample_spectrum.txt")
data_k, e_bin, k = arp.k_conv(data, energy, angle, 16.67)
Please find the detailed documentation here: https://pranabdas.github.io/arpespythontools/
Clone repository:
git clone https://github.com/pranabdas/arpespythontools
Install project in editable mode:
pip install -e .
Run tests locally:
python3 -m unittest discover tests