Metadata-Version: 2.3
Name: arpespythontools
Version: 1.1.0
Summary: Explore, analyze, visualize Angle Resolved Photoemission Spectroscopy (ARPES) data.
Home-page: https://pranabdas.github.io/arpespythontools/
License: MIT
Keywords: python,data-analysis,matplotlib,materials-science,surface-science,condensed-matter-physics,photoelectron-spectroscopy,arpes
Author: Pranab Das
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: lint
Provides-Extra: notebook
Provides-Extra: test
Requires-Dist: astropy (>=6.0.1)
Requires-Dist: autopep8 (>=2.3.1) ; extra == "lint"
Requires-Dist: jupyterlab (>=4.3.4) ; extra == "notebook"
Requires-Dist: matplotlib (>=3.9.4)
Requires-Dist: numpy (>=1.26.4)
Requires-Dist: psutil (>=6.1.1) ; extra == "test"
Requires-Dist: scipy (>=1.13.1)
Project-URL: Documentation, https://pranabdas.github.io/arpespythontools/docs/
Project-URL: Repository, https://github.com/pranabdas/arpespythontools
Description-Content-Type: text/markdown

<h1 align="center">ARPES Python Tools</h1>

<p align="center">
  <a href="https://github.com/pranabdas/arpespythontools/actions/workflows/python-tests.yml"><img src="https://github.com/pranabdas/arpespythontools/actions/workflows/python-tests.yml/badge.svg" alt="Python tests status"></a>
  <a href="https://github.com/pranabdas/arpespythontools/actions/workflows/deploy-gh-pages.yml"><img src="https://github.com/pranabdas/arpespythontools/actions/workflows/deploy-gh-pages.yml/badge.svg" alt="Deploy gh-pages status"></a>
  <a href="https://github.com/pranabdas/arpespythontools/actions/workflows/publish.yml"><img src="https://github.com/pranabdas/arpespythontools/actions/workflows/publish.yml/badge.svg" alt="Deploy gh-pages status"></a>
  <a href="https://github.com/pranabdas/arpespythontools/blob/master/LICENSE"><img src="https://img.shields.io/github/license/sourcerer-io/hall-of-fame.svg?colorB=A31F34"></a>
  <a href="https://pypi.org/project/arpespythontools/"><img src="https://img.shields.io/github/v/release/pranabdas/arpespythontools.svg" alt="Latest Release"/></a>
</p>

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

## Quick start

Install latest stable version:
```console
pip install --upgrade arpespythontools
```

Import and start using:

```python
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/

