Skip to content

pranabdas/arpespythontools

Repository files navigation

ARPES Python Tools

Python tests status Deploy gh-pages status Latest Release

This python library helps you load, analyze and visualize ARPES data.

Quick start

Clone or download the repository:

git clone https://github.com/pranabdas/arpespythontools.git

Include path of parent arpespythontools folder (not required if you place it under your working directory) and import in your program:

import sys
sys.path.append("/parent/arpespythontools/path/")
import arpespythontools as arp

Use the modules:

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/

Development

Run tests locally:

python3 -m unittest tests.py