xarpes 0.2.4__py3-none-any.whl → 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,168 @@
1
+ Metadata-Version: 2.4
2
+ Name: xarpes
3
+ Version: 0.3.1
4
+ Summary: Extraction from angle resolved photoemission spectra
5
+ Author: xARPES Developers
6
+ Requires-Python: >=3.7.0
7
+ Description-Content-Type: text/markdown
8
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
9
+ Classifier: Programming Language :: Python :: 3
10
+ License-File: LICENSE
11
+ Requires-Dist: igor2>=0.5.8
12
+ Requires-Dist: jupyterlab
13
+ Requires-Dist: jupytext
14
+ Requires-Dist: matplotlib
15
+ Requires-Dist: numpy
16
+ Requires-Dist: scipy
17
+ Requires-Dist: lmfit
18
+ Requires-Dist: pyqt5
19
+ Requires-Dist: ipympl
20
+ Requires-Dist: ipykernel<6.32.0
21
+ Project-URL: Documentation, https://xarpes.github.io
22
+
23
+ # xARPES
24
+
25
+ ![xARPES](https://github.com/xARPES/xARPES/raw/main/logo/xarpes.svg)
26
+
27
+ Repository for the code xARPES &ndash; extraction of the self-energy and Eliashberg function from angle-resolved photoemission spectroscopy. The documentation can be found on [Read the Docs](https://xarpes.readthedocs.io), while the code is maintained on [GitHub](https://github.com/xARPES/xARPES). Instructions for installing the code and downloading the code are found below. An extensive description of the functionalities and examples is found at the [arXiv preprint](https://arxiv.org/abs/2508.13845).
28
+
29
+ # Warning
30
+
31
+ This project is currently undergoing **beta testing**. Some of the functionalities are in the process of being implemented. If you encounter any bugs, you can open an issue.
32
+
33
+ # Contributing
34
+
35
+ Contributions to the code are most welcome. xARPES is intended to co-develop alongside the increasing complexity of experimental ARPES data sets. Contributions can be made by forking the code and creating a pull request. Importing of file formats from different beamlines is particularly encouraged.
36
+
37
+ # Installation
38
+
39
+ xARPES installation can be divided into graphical package manager instructions, and command-line instructions for either conda or pip. With command-line instructions, an editable installation of xARPES can be created; on Windows, we strongly recommend Windows Powershell to do so. Here is a summary for the three options:
40
+ - via a graphical package manager (Anaconda Navigator, VS Code, PyCharm, Spyder, JupyterLab)
41
+ - via conda-forge, out-of-the-box or editable installation, sourcing the [conda-forge package](https://anaconda.org/conda-forge/xarpes).
42
+ - via Pip, out-of-the-box or editable installation, sourcing the [PyPI package](https://pypi.org/project/xarpes).
43
+
44
+ ## Graphical package manager installation
45
+
46
+ Most IDEs and scientific Python distributions include a GUI-based package manager.
47
+ These typically install from conda-forge (for conda environments) or PyPI (for venv/system Python).
48
+
49
+ ### Anaconda Navigator
50
+
51
+ 1. Open Anaconda Navigator
52
+ 2. Select or create an environment
53
+ 3. Set the package channel to conda-forge
54
+ 4. Search for “xarpes”
55
+ 5. Click Install
56
+
57
+ This installs the latest stable release from conda-forge.
58
+
59
+ ### PyCharm, VS Code, Spyder, or JupyterLab
60
+
61
+ These IDEs install from the active environment’s package source:
62
+ - conda environment → installs from conda-forge
63
+ - venv/system Python → installs from PyPI
64
+
65
+ ### Installation steps (generic)
66
+
67
+ 1. Open your IDE
68
+ 2. Select or create a Python environment
69
+ 3. Open the environment/package manager panel
70
+ 4. Search for “xarpes”
71
+ 5. Click Install
72
+
73
+ ## Conda Forge installation
74
+
75
+ Install xARPES inside a conda environment, either out of the box or as an editable.
76
+
77
+ ### Setting up a conda environment
78
+
79
+ Download and install Miniconda (see the [Miniconda installation page](https://docs.anaconda.com/free/miniconda/)).
80
+
81
+ Example for Linux:
82
+
83
+ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
84
+ bash Miniconda3-latest-Linux-x86_64.sh
85
+
86
+ Create and activate an environment:
87
+
88
+ conda create -n <my_env> -c defaults -c conda-forge
89
+ conda activate <my_env>
90
+
91
+ ### Installing xARPES
92
+
93
+ #### Option A — Out-of-the-box installation (from conda-forge)
94
+
95
+ conda install conda-forge::xarpes
96
+
97
+ #### Option B — Editable installation (GitHub)
98
+
99
+ First, clone the repository:
100
+
101
+ git clone git@github.com:xARPES/xARPES.git
102
+ cd xARPES
103
+
104
+ Then perform editable installation (this mixes conda and pip):
105
+
106
+ pip install -e .
107
+
108
+ ## Pip installation
109
+
110
+ Install xARPES using pip, either out of the box or as an editable.
111
+
112
+ ### Setting up a virtual environment
113
+
114
+ Install venv if necessary:
115
+
116
+ sudo apt install python3-venv
117
+
118
+ Create and activate a virtual environment:
119
+
120
+ python3 -m venv <my_venv>
121
+ source <my_venv>/bin/activate
122
+
123
+ Upgrade pip:
124
+
125
+ python3 -m pip install --upgrade pip
126
+
127
+ ### Installing xARPES
128
+
129
+ #### Option A — Out-of-the-box installation (PyPI)
130
+
131
+ python3 -m pip install xarpes
132
+
133
+ #### Option B — Editable installation (GitHub)
134
+
135
+ First, clone the repository:
136
+
137
+ git clone git@github.com:xARPES/xARPES.git
138
+ cd xARPES
139
+
140
+ Then perform editable installation:
141
+
142
+ pip install -e .
143
+
144
+ # Examples
145
+
146
+ After installation of xARPES, the `examples/` folder can be downloaded to the current directory:
147
+
148
+ python -c "import xarpes; xarpes.download_examples()"
149
+
150
+ # Execution
151
+
152
+ It is recommended to use JupyterLab to analyse data. JupyterLab is launched using:
153
+
154
+ jupyter lab
155
+
156
+ # Citation
157
+
158
+ If you have used xARPES for your research, please cite the following preprint:
159
+ [arXiv preprint 2508.13845](https://arxiv.org/abs/2508.13845).
160
+
161
+ # License
162
+
163
+ Copyright (C) 2025 xARPES Developers
164
+
165
+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3, as published by the Free Software Foundation.
166
+
167
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
168
+
@@ -0,0 +1,11 @@
1
+ xarpes/__init__.py,sha256=x5eFasQn7W7cyITlARGUMxIyKOrMxflwv5K4QaoPpzI,124
2
+ xarpes/constants.py,sha256=vQxxFeCdGIxMpdh5XGbeRbn7-HF1d5snWkR09d8spGc,587
3
+ xarpes/distributions.py,sha256=svzhvf994_5gndJA1M04SW4MVfHEVwiAumbhO5Jj22s,23434
4
+ xarpes/functions.py,sha256=gE76z-Y9UI1KNUUtADyLziLU1UJ43E1CHLDi_khj0bc,12007
5
+ xarpes/plotting.py,sha256=W-5WaKjBtg8PIxTypqja2R29mgWkQ844lgRWci0nhn0,5679
6
+ xarpes/spectral.py,sha256=qw0qSeYfaCc9C28cGe32QrI3mK64KNcoNTDkS5EplmM,78637
7
+ xarpes-0.3.1.dist-info/entry_points.txt,sha256=917UR-cqFTMMI_vMqIbk7boYSuFX_zHwQlXKcj9vlCE,79
8
+ xarpes-0.3.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
9
+ xarpes-0.3.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
10
+ xarpes-0.3.1.dist-info/METADATA,sha256=8czsD0vWVGcGu8oaROp8gzwx_O1eo8YhJ_ge2jtYsVY,5763
11
+ xarpes-0.3.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.9.0
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ xarpes_download_examples=xarpes.functions:download_examples
3
+
@@ -1,8 +0,0 @@
1
- __version__ = '0.2.2'
2
-
3
- from . import plotting
4
-
5
- from .band_map import *
6
- from .distributions import *
7
- from .functions import *
8
- from .plotting import *
xarpes/band_map.py DELETED
@@ -1,302 +0,0 @@
1
- # Copyright (C) 2024 xARPES Developers
2
- # This program is free software under the terms of the GNU GPLv3 license.
3
-
4
- # get_ax_fig_plt and add_fig_kwargs originate from pymatgen/util/plotting.py.
5
- # Copyright (C) 2011-2024 Shyue Ping Ong and the pymatgen Development Team
6
- # Pymatgen is released under the MIT License.
7
-
8
- # See also abipy/tools/plotting.py.
9
- # Copyright (C) 2021 Matteo Giantomassi and the AbiPy Group
10
- # AbiPy is free software under the terms of the GNU GPLv2 license.
11
-
12
- """The band map class and allowed operations on it."""
13
-
14
- import numpy as np
15
-
16
- from .plotting import get_ax_fig_plt, add_fig_kwargs
17
- from .functions import fit_leastsq
18
- from .distributions import fermi_dirac
19
-
20
- class MDCs():
21
- r"""
22
- """
23
- def __init__(self, intensities, angles, ekin, angular_resolution):
24
- self.intensities = intensities
25
- self.angles = angles
26
- self.ekin = ekin
27
- self.angular_resolution = angular_resolution
28
-
29
- # @add_fig_kwargs
30
- # def fit(self):
31
- # r"""
32
- # """
33
- # return 0
34
-
35
- # @add_fig_kwargs
36
- # def fit_fermi_edge(self, hnuminphi_guess, background_guess=0.0,
37
- # integrated_weight_guess=1.0, angle_min=-np.inf,
38
- # angle_max=np.inf, ekin_min=-np.inf,
39
- # ekin_max=np.inf, ax=None, **kwargs):
40
-
41
- @add_fig_kwargs
42
- def plot(self, ax=None, **kwargs):
43
- r"""
44
- """
45
- ax, fig, plt = get_ax_fig_plt(ax=ax)
46
-
47
- ax.scatter(self.angles, self.intensities)
48
-
49
- ax.set_xlabel('Angle ($\degree$)')
50
- ax.set_ylabel('Counts (-)')
51
-
52
- return fig
53
-
54
- class band_map():
55
- r"""Class for the band map from the ARPES experiment.
56
-
57
- Parameters
58
- ----------
59
- intensities : ndarray
60
- 2D array of counts for given (E,k) or (E,angle) pairs [counts]
61
- angles : ndarray
62
- 1D array of angular values for the abscissa [degrees]
63
- ekin : ndarray
64
- 1D array of kinetic energy values for the ordinate [eV]
65
- angular_resolution : float, None
66
- Angular resolution of the detector [degrees]
67
- energy_resolution : float, None
68
- Energy resolution of the detector [eV]
69
- temperature : float, None
70
- Temperature of the sample [K]
71
- hnuminphi : float, None
72
- Kinetic energy minus the work function [eV]
73
- hnuminphi_std : float, None
74
- Standard deviation of kinetic energy minus work function [eV]
75
- """
76
- def __init__(self, intensities, angles, ekin, energy_resolution=None,
77
- angular_resolution=None, temperature=None, hnuminphi=None,
78
- hnuminphi_std=None):
79
- self.intensities = intensities
80
- self.angles = angles
81
- self.ekin = ekin
82
- self.energy_resolution = energy_resolution
83
- self.angular_resolution = angular_resolution
84
- self.temperature = temperature
85
- self.hnuminphi = hnuminphi
86
- self.hnuminphi_std = hnuminphi_std
87
-
88
- @property
89
- def hnuminphi(self):
90
- r"""Returns the photon energy minus the work function in eV if it has
91
- been set, either during instantiation, with the setter, or by fitting
92
- the Fermi-Dirac distribution to the integrated weight.
93
-
94
- Returns
95
- -------
96
- hnuminphi : float, None
97
- Kinetic energy minus the work function [eV]
98
- """
99
- return self._hnuminphi
100
-
101
- @hnuminphi.setter
102
- def hnuminphi(self, hnuminphi):
103
- r"""Manually sets the photon energy minus the work function in eV if it
104
- has been set; otherwise returns None.
105
-
106
- Parameters
107
- ----------
108
- hnuminphi : float, None
109
- Kinetic energy minus the work function [eV]
110
- """
111
- self._hnuminphi = hnuminphi
112
-
113
- @property
114
- def hnuminphi_std(self):
115
- r"""Returns standard deviation of the photon energy minus the work
116
- function in eV.
117
-
118
- Returns
119
- -------
120
- hnuminphi_std : float
121
- Standard deviation of energy minus the work function [eV]
122
- """
123
- return self._hnuminphi_std
124
-
125
- @hnuminphi_std.setter
126
- def hnuminphi_std(self, hnuminphi_std):
127
- r"""Manually sets the standard deviation of photon energy minus the
128
- work function in eV.
129
-
130
- Parameters
131
- ----------
132
- hnuminphi_std : float
133
- Standard deviation of energy minus the work function [eV]
134
- """
135
- self._hnuminphi_std = hnuminphi_std
136
-
137
- def shift_angles(self, shift):
138
- r"""
139
- Shifts the angles by the specified amount in degrees. Used to shift
140
- from the detector angle to the material angle.
141
-
142
- Parameters
143
- ----------
144
- shift : float
145
- Angular shift [degrees]
146
- """
147
- self.angles = self.angles + shift
148
-
149
- def slice(self, angle_min, angle_max, energy_value):
150
- r"""
151
- Parameters
152
- ----------
153
- angle_min : float
154
- Minimum angle of integration interval [degrees]
155
- angle_max : float
156
- Maximum angle of integration interval [degrees]
157
-
158
- Returns
159
- -------
160
- angle_range : ndarray
161
- Array of size n containing the angular values
162
- energy_range : ndarray
163
- Array of size m containing the energy values
164
- mdcs :
165
- Array of size nxm containing the MDC intensities
166
- """
167
-
168
- energy_index = np.abs(self.ekin - energy_value).argmin()
169
- angle_min_index = np.abs(self.angles - angle_min).argmin()
170
- angle_max_index = np.abs(self.angles - angle_max).argmin()
171
-
172
- angle_range = self.angles[angle_min_index:angle_max_index + 1]
173
- energy_range = self.ekin[energy_index]
174
- mdcs = self.intensities[energy_index,
175
- angle_min_index:angle_max_index + 1]
176
-
177
- return mdcs, angle_range, energy_range, self.angular_resolution
178
-
179
- @add_fig_kwargs
180
- def plot_band_map(self, ax=None, **kwargs):
181
- r"""Plots the band map.
182
-
183
- Parameters
184
- ----------
185
-
186
- Other parameters
187
- ----------------
188
- **kwargs : dict, optional
189
- Additional arguments passed on to add_fig_kwargs. See the keyword
190
- table below.
191
-
192
- Returns
193
- -------
194
- fig : Matplotlib-Figure
195
- Figure containing the Fermi edge fit
196
- """
197
- ax, fig, plt = get_ax_fig_plt(ax=ax)
198
-
199
- Angl, Ekin = np.meshgrid(self.angles, self.ekin)
200
- mesh = ax.pcolormesh(Angl, Ekin, self.intensities, shading='auto',
201
- cmap=plt.get_cmap('bone').reversed())
202
- cbar = plt.colorbar(mesh, ax=ax)
203
-
204
- ax.set_xlabel('Angle ($\degree$)')
205
- ax.set_ylabel('$E_{\mathrm{kin}}$ (eV)')
206
-
207
- return fig
208
-
209
- @add_fig_kwargs
210
- def fit_fermi_edge(self, hnuminphi_guess, background_guess=0.0,
211
- integrated_weight_guess=1.0, angle_min=-np.inf,
212
- angle_max=np.inf, ekin_min=-np.inf,
213
- ekin_max=np.inf, ax=None, **kwargs):
214
- r"""Fits the Fermi edge of the band map and plots the result.
215
- Also sets hnuminphi, the kinetic energy minus the work function in eV.
216
- The fitting includes an energy convolution with an abscissa range
217
- expanded by 5 times the energy resolution standard deviation.
218
-
219
- Parameters
220
- ----------
221
- hnuminphi_guess : float
222
- Initial guess for kinetic energy minus the work function [eV]
223
- background_guess : float
224
- Initial guess for background intensity [counts]
225
- integrated_weight_guess : float
226
- Initial guess for integrated spectral intensity [counts]
227
- angle_min : float
228
- Minimum angle of integration interval [degrees]
229
- angle_max : float
230
- Maximum angle of integration interval [degrees]
231
- ekin_min : float
232
- Minimum kinetic energy of integration interval [eV]
233
- ekin_max : float
234
- Maximum kinetic energy of integration interval [eV]
235
- ax : Matplotlib-Axes / NoneType
236
- Axis for plotting the Fermi edge on. Created if not provided by
237
- the user.
238
-
239
- Other parameters
240
- ----------------
241
- **kwargs : dict, optional
242
- Additional arguments passed on to add_fig_kwargs. See the keyword
243
- table below.
244
-
245
- Returns
246
- -------
247
- fig : Matplotlib-Figure
248
- Figure containing the Fermi edge fit
249
- """
250
- ax, fig, plt = get_ax_fig_plt(ax=ax)
251
-
252
- min_angle_index = np.argmin(np.abs(self.angles - angle_min))
253
- max_angle_index = np.argmin(np.abs(self.angles - angle_max))
254
-
255
- min_ekin_index = np.argmin(np.abs(self.ekin - ekin_min))
256
- max_ekin_index = np.argmin(np.abs(self.ekin - ekin_max))
257
-
258
- energy_range = self.ekin[min_ekin_index:max_ekin_index]
259
-
260
- integrated_intensity = np.trapz(
261
- self.intensities[min_ekin_index:max_ekin_index,
262
- min_angle_index:max_angle_index], axis=1)
263
-
264
- fdir_initial = fermi_dirac(temperature=self.temperature,
265
- hnuminphi=hnuminphi_guess,
266
- background=background_guess,
267
- integrated_weight=integrated_weight_guess,
268
- name='Initial guess')
269
-
270
- parameters = np.array(
271
- [hnuminphi_guess, background_guess, integrated_weight_guess])
272
-
273
- extra_args = (self.energy_resolution)
274
-
275
- popt, pcov = fit_leastsq(parameters, energy_range, integrated_intensity,
276
- fdir_initial, extra_args)
277
-
278
- fdir_final = fermi_dirac(temperature=self.temperature,
279
- hnuminphi=popt[0], background=popt[1],
280
- integrated_weight=popt[2],
281
- name='Fitted result')
282
-
283
- self.hnuminphi = popt[0]
284
- self.hnuminphi_std = np.sqrt(np.diag(pcov))[0][0]
285
-
286
- ax.set_xlabel(r'$E_{\mathrm{kin}}$ (-)')
287
- ax.set_ylabel('Counts (-)')
288
- ax.set_xlim([ekin_min, ekin_max])
289
-
290
- ax.plot(energy_range, integrated_intensity, label='Data')
291
-
292
- ax.plot(energy_range, fdir_initial.convolve(energy_range,
293
- energy_resolution=self.energy_resolution),
294
- label=fdir_initial.name)
295
-
296
- ax.plot(energy_range, fdir_final.convolve(energy_range,
297
- energy_resolution=self.energy_resolution),
298
- label=fdir_final.name)
299
-
300
- ax.legend()
301
-
302
- return fig
@@ -1,122 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: xarpes
3
- Version: 0.2.4
4
- Summary: Extraction from angle resolved photoemission spectra
5
- Author: xARPES Developers
6
- Requires-Python: >=3.7.0
7
- Description-Content-Type: text/markdown
8
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
9
- Classifier: Programming Language :: Python :: 3
10
- Requires-Dist: igor2
11
- Requires-Dist: jupyterlab
12
- Requires-Dist: jupytext
13
- Requires-Dist: matplotlib
14
- Requires-Dist: numpy
15
- Requires-Dist: scipy
16
- Requires-Dist: lmfit
17
- Requires-Dist: xarray
18
- Requires-Dist: pyqt5
19
- Project-URL: Documentation, https://xarpes.github.io
20
-
21
- ![xARPES](https://xarpes.github.io/_images/xarpes.svg)
22
-
23
- Repository for the code xARPES &ndash; extraction from angle resolved photoemission spectra.
24
-
25
- This preliminary release can only be used to fit a Fermi edge. The complete functionality will be made available soon.
26
-
27
- # Installation
28
-
29
- xARPES can be installed with `pip`:
30
-
31
- python3 -m pip install xarpes
32
-
33
- Or with `conda`:
34
-
35
- conda install conda-forge::xarpes
36
-
37
- More detailed instructions for installing the development version, tested for recent Ubuntu and Debian GNU/Linux, are provided below.
38
-
39
- ## pip
40
-
41
- It is highly recommended to set up a pristine Python virtual environment. First, the `venv` module might have to be installed:
42
-
43
- sudo apt install python3-venv
44
-
45
- Afterwards, one can activate a virtual environment named `<my_venv>` using:
46
-
47
- python3 -m venv <my_venv>
48
-
49
- It has to be activated whenever installing/running xARPES:
50
-
51
- source <my_venv>/bin/activate
52
-
53
- It is recommended to upgrade `pip` to the latest version:
54
-
55
- python3 -m pip install --upgrade pip
56
-
57
- Finally, the installation can be performed:
58
-
59
- git clone git@github.com:xARPES/xARPES.git
60
- cd xARPES
61
- python3 -m pip install -e .
62
-
63
- ## conda
64
-
65
- The user is assumed to be in a pristine virtual environment provided by conda. First, download the required version for your operating system from <https://docs.anaconda.com/free/miniconda/>. For example:
66
-
67
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
68
-
69
- Start the installation:
70
-
71
- bash Miniconda3-latest-Linux-x86_64.sh
72
-
73
- Then scroll down the license agreement and answer `yes` to the following question:
74
-
75
- Do you accept the license terms? [yes|no]
76
-
77
- Also specify your installation location.
78
-
79
- It is convenient to also answer `yes` to the following, which will append new lines to your `~/.bashrc`:
80
-
81
- You can undo this by running `conda init --reverse $SHELL`? [yes|no]
82
-
83
- A conda base environment is then activated with `source ~/.bashrc` or by starting a new terminal session.
84
-
85
- Alternatively, you can answer `no` to the above question and activate conda whenever you need it:
86
-
87
- eval "$(<your_path>/miniconda3/bin/conda shell.<your_shell> hook)"
88
-
89
- Next, we install `conda-build` for developing xARPES (answer `y` to questions):
90
-
91
- conda install conda-build
92
-
93
- Finally, the following steps are executed for the installation &ndash; the `<my_env>` environment will have to be launched whenever running xARPES:
94
-
95
- git clone git@github.com:xARPES/xARPES.git
96
- cd xARPES
97
- conda create -n <my_env> -c defaults -c conda-forge --file requirements.txt
98
- conda activate <my_env>
99
- conda develop .
100
-
101
- Answer `y` to questions.
102
-
103
- # Examples
104
-
105
- Afer installation of xARPES, the `examples/` folder can be downloaded to the current directory with
106
-
107
- python3 -c "import xarpes; xarpes.download_examples()"
108
-
109
- # Execution
110
-
111
- It is recommended to use JupyterLab to analyse data. JupyterLab is launched using:
112
-
113
- jupyter lab
114
-
115
- # License
116
-
117
- Copyright (C) 2024 xARPES Developers
118
-
119
- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3, as published by the Free Software Foundation.
120
-
121
- This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
122
-
@@ -1,10 +0,0 @@
1
- xarpes/__init__.py,sha256=WD-CqxsgBL8lK0Cv_uMuRSprM2iV0mwJxclRvmgNxbU,149
2
- xarpes/band_map.py,sha256=jLmGJe7WmDGP7nV2ekEua5mzDZ6JuobZ9-XG7WM48YA,10402
3
- xarpes/distributions.py,sha256=mfh_OJPFXq1H1_SYtB3qLyxe4CJCl-aKhdNQkjIHBrE,15148
4
- xarpes/functions.py,sha256=mQxOh2CEPSDcjGxStBnpQXe3aJOdLkgrjsQacv1wXJs,4624
5
- xarpes/plotting.py,sha256=vGCF9-v1YzxdSRYMAkl0HwsZiG3eG_CWpf4WdZ4s3hU,5405
6
- xarpes/.ipynb_checkpoints/__init__-checkpoint.py,sha256=Xi1H3Jn5vt_8WQhSTRqb9hSBhv12fTXEnQrKVdkFGcw,148
7
- xarpes-0.2.4.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
8
- xarpes-0.2.4.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
9
- xarpes-0.2.4.dist-info/METADATA,sha256=WoXPKwGrRLQUMOskZv2QMx0vIcThcjl6J6yFKGBqck8,3910
10
- xarpes-0.2.4.dist-info/RECORD,,