Skip to main content

High-level interpretation of ENDF-6 data

Project description

endf-userpy

High-level interpretation of ENDF-6 nuclear data files.

endf-userpy is a Python library that answers user-friendly questions about ENDF-6 nuclear data evaluations: "what is the cross section of the (n,2n) reaction on Fe-56?", "what is the energy spectrum of neutrons emitted from U-238 at 14 MeV?", "how much Co-60m is produced per (n,gamma) reaction on Co-59?".

The library does not parse ENDF-6 itself. It builds on endf_parserpy, which turns an ENDF-6 file into a nested Python dict (endf_dict). endf-userpy then walks that dict to reconstruct cross sections, yields, and differential distributions, hiding which MF section a piece of data lives in.

Status. This is an early alpha release. The public API is stabilising but may still change. See "Known limitations" below. Feedback by creating issues is appreciated.

Installation

pip install endf-userpy

Prebuilt wheels are available for cpython 3.9–3.13 on:

  • Linux x86_64 (manylinux_2_28)
  • macOS arm64 (>= 14.0)
  • macOS x86_64 (>= 15.0)
  • Windows AMD64

Other platforms or Python versions install from the sdist automatically and need a Fortran compiler (gfortran) on PATH.

Runtime dependencies (numpy, scipy, endf_parserpy) are pulled in automatically. Some examples additionally use matplotlib.

From source

git clone https://github.com/IAEA-NDS/endf-userpy
cd endf-userpy
pip install -e .

Requires gfortran on PATH. Windows users who prefer to build with the Intel Fortran compiler (ifx) can opt in by setting ENDF_USERPY_USE_IFX=1 in the environment before pip install.

Quick start

import numpy as np
from endf_parserpy import EndfParserFactory
from endf_userpy.quantities import (
    get_available_reactions,
    get_reaction_xs,
)

parser = EndfParserFactory.create()
endf_dict = parser.parsefile("tests/data/n-004_Be_009.endf")

print(get_available_reactions(endf_dict))
# ['(n,total)', '(n,n_0)', '(n,nonelas)', '(n,2n)', '(n,g)', ...]

eincs = np.array([0.0253, 1e3, 1e6, 1.4e7])  # eV
print(get_reaction_xs(endf_dict, "(n,total)", eincs))
# [6.154 6.144 3.341 1.528]   barn

Public API

All user-facing functions live in endf_userpy.quantities and take an endf_dict (already parsed) plus user-friendly string identifiers.

Function Returns What it does
get_available_reactions(endf_dict) list of reaction strings introspect a file
get_incident_energies(endf_dict, reaction) array tabulated Einc mesh for a channel
get_emission_energies(endf_dict, reaction, particle) array tabulated Eout mesh
get_reaction_xs(endf_dict, reaction, eincs) array cross section of a named channel
get_residual_production_xs(endf_dict, residual, eincs) array production of a specific residual nucleus, isomer-resolved
get_particle_production_xs(endf_dict, reaction, particle, eincs) array ejectile production cross section
get_particle_production_dxs_dE(endf_dict, reaction, particle, eincs, eouts) array dσ/dE energy spectrum of emitted particle
get_particle_production_dxs_dmu(endf_dict, reaction, particle, eincs, mus) array dσ/dΩ angular distribution
get_particle_production_ddxs(endf_dict, reaction, particle, eincs, eouts, mus) array d²σ/dE/dΩ double-differential

Reaction strings: "(n,total)", "(n,n_0)" (elastic), "(n,2n)", "(n,g)" (capture), "(n,p)", "(n,a)", etc. Particles: "n", "p", "d", "t", "h" (helium-3), "a" (alpha), "g" (gamma). Residual nuclei: "Z-Sym-A" (e.g. "27-Co-60") or "Sym-A" (e.g. "Co-60"), with optional isomer suffix g, m, m1, m2, ... ("Co-60m" = first metastable).

Examples

Seven runnable examples in examples/:

File What it shows
01_inspect_file.py discover what is in a file
02_reaction_xs.py cross sections of named channels with consistency check
03_particle_production_xs.py secondary-particle production from Fe-56
04_residual_production_isomers.py Co-58g/m and Co-60g/m via (n,2n) and (n,gamma)
05_emission_spectra_14mev.py classic 14 MeV neutron emission spectrum from U-238
06_ddx_uranium_14mev.py double-differential cross section heatmap
07_photonuclear_residuals.py (g,Nn) cascade on Au-197

Examples 1-2 use a small file shipped under tests/data/. Examples 3-7 each include the wget command to fetch the JENDL-5 file they need.

Known limitations

  • No resonance reconstruction. MF2 (resolved/unresolved resonance parameters) is not reconstructed. For evaluations whose MF3 is empty in the resonance region, pre-process the file with NJOY RECONR and pass the PENDF file in.
  • DDX drops kinematic-delta channels. The double-differential API silently skips elastic and discrete-level inelastic channels because they cannot be represented on a continuous Eout grid. They appear in the 1D dσ/dE spectrum as sharp peaks instead.
  • Stubs. endf_userpy/discrete_quantities.py and endf_userpy/translation.py are work-in-progress sketches; do not rely on them.

Filing issues

github.com/IAEA-NDS/endf-userpy/issues

License and copyright

endf-userpy is distributed under the MIT license, see the LICENSE file for details.

Nothing in this license shall be construed as a waiver, either express or implied, of any of the privileges and immunities accorded to the IAEA by its Member States.

Copyright (c) 2026 International Atomic Energy Agency

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

endf_userpy-0.1.0a4.tar.gz (730.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

endf_userpy-0.1.0a4-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

endf_userpy-0.1.0a4-cp313-cp313-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

endf_userpy-0.1.0a4-cp313-cp313-macosx_11_0_arm64.whl (336.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

endf_userpy-0.1.0a4-cp313-cp313-macosx_10_13_x86_64.whl (341.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

endf_userpy-0.1.0a4-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

endf_userpy-0.1.0a4-cp312-cp312-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

endf_userpy-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl (336.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

endf_userpy-0.1.0a4-cp312-cp312-macosx_10_13_x86_64.whl (341.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

endf_userpy-0.1.0a4-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

endf_userpy-0.1.0a4-cp311-cp311-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

endf_userpy-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl (336.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

endf_userpy-0.1.0a4-cp311-cp311-macosx_10_9_x86_64.whl (341.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

endf_userpy-0.1.0a4-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

endf_userpy-0.1.0a4-cp310-cp310-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

endf_userpy-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl (336.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

endf_userpy-0.1.0a4-cp310-cp310-macosx_10_9_x86_64.whl (341.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

endf_userpy-0.1.0a4-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

endf_userpy-0.1.0a4-cp39-cp39-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

endf_userpy-0.1.0a4-cp39-cp39-macosx_11_0_arm64.whl (336.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

endf_userpy-0.1.0a4-cp39-cp39-macosx_10_9_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file endf_userpy-0.1.0a4.tar.gz.

File metadata

  • Download URL: endf_userpy-0.1.0a4.tar.gz
  • Upload date:
  • Size: 730.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_userpy-0.1.0a4.tar.gz
Algorithm Hash digest
SHA256 b279081e2d98308d791409ec26b99e0e693030afbb754869bc920af29114c705
MD5 cd0147db7d954cc8ed1ac552c10cebd2
BLAKE2b-256 0cf5c19283df387b32cda03a884ba5dc7b8acf60610b88c26b537206b1934e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4.tar.gz:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5919585a181e7fd2443200bd8c689d1dd0285bfcfeddcc28064b64b22d1fe967
MD5 85ef5b5336ef2a21121962d202a75b0b
BLAKE2b-256 d0449d6f787b01cf485f31f6f368a0b6e90297e4dfde96d5f5414add2f3fad10

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d58fcaa7d36f55cee137e3a0bed2c694d7709dff4c81b4f1bbb1eea1b70340f
MD5 c013c01ef6746d12b0f3b3c3703d8b54
BLAKE2b-256 1b6297f85abca5c759a81c6749c67b8405c3a43d42ea9d0c3279522208a8f115

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c9d014823df3bbf2a31f5f370123f9e64fdb6277beab3d4f82604bb23130c34
MD5 4146067ccc21f6ed78fefc280355bc5a
BLAKE2b-256 3b2f5be76d4b769e9be45905045c1a5159d3dd2c52daa610a92945ac0526a85d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1863a5d01b54910ab40321ce06a73330571c7ef80a7e2de557a5db876d40a10c
MD5 da0d77958240c53413ea451539aa71ea
BLAKE2b-256 1a0f1728d2caf2feb23d942ce8bd36312047e23d2281e3fe558f125bb0565a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2a60f40ae30044f6fd855e447560df8892371eab750a1018e12cbde9ccf5f7b
MD5 e4767905d4b86f5bbdbcebe67cb95b11
BLAKE2b-256 3ed2beedf58346c6b8f4a10ee77210b38fc84e5b1a0e101abd1961df214f6478

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 207a4e6169b0c647a941074fed50327902f917b782da67194e22f8191279fbe6
MD5 64ed2f39aee5ac1308c57530c499ea14
BLAKE2b-256 11d77efc1452d38102fc923cf2af528c18ff6afbf49de700c1ebeabc4bad6445

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f5f4fd9469207063dddb64ade4f4c40d2e367eb408701c47bc77e187e12ca2d
MD5 b84a5dc54708df25893e3fcb5577a787
BLAKE2b-256 4836d42fffd087b6a21f608427559f228fac27c3cf521179f5ee5e91404c49d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 361c24877e5d3e1a24a60e4e3049e6d7e262768574bdf9cb37cf435829bf997c
MD5 880583d212236c5ec66dfd30e598a4ed
BLAKE2b-256 719a415a19a255f4ddb273510686e33d31efaeec25616747dea34115a7833d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 059e4f902c5986f7cf7d38c330fab206a2a207d399aeaa7e9d6511502f0d9c51
MD5 c565c62defa4732728eac65ed8975336
BLAKE2b-256 4576c6063fc46bbedfae92794af381d21c5ece04d61ec925c849afeecd3a9d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a86aa879b626008b23203f552131bdb16d213e15a73ef56a6185ba88a7caaf5
MD5 01ed09d8d5fda3f3e8e36a2b6bd4cd24
BLAKE2b-256 038c65a5bc0047f6f1bdc093ee2aeac725ca8742ab5ed113e2f1b7e6b1383d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 039e86c486e6facae353017dc284addfb83e274a575f04a3750077250c3956c0
MD5 d5f18dd7a1d67b5cf566e65d7b86a2b9
BLAKE2b-256 882ead6e7e4f09d76657b71c5a8e740b15c890a522e0e0edc5b6e69ce6ad0c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 914ecccd12532159e8bd64b08e95e084fc9d1c057cac81152ca92614cbf24c6a
MD5 2c0f27fcfac82985d2b8e40bfab9f509
BLAKE2b-256 a948892019c156123238d50000d6e204aee17c7f0d23387688944692f6af403c

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0bce7608bde565c418a9ba128f7efe98f8a7694f2bed345d9b93558c925a9c0
MD5 8bc46805f9ee780cf322dfc226d121b0
BLAKE2b-256 fbcb4c69e40f6360131755cc181b00c2802df2780802c1bd224ef4b7f1ceb73d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26ff835da664f8d640f86a394c7d3f5041fd5a8201e23fdb94b535906c0f31d4
MD5 face4771ac14af59fd71172691903720
BLAKE2b-256 49f0bd42ab50353d414b2b9c97b5a1ee9a2a6eca74a31fd74a9b24ee356c29bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d200af070df70de3d0f1e0e2345b15b78e4b4dd5c96be80176f2b6aa9068d3
MD5 fd952e53678fa24fb0653ac527b31577
BLAKE2b-256 c2a6c81a7119dccb12b87b85f452b550a2e41208e35c912a72d817724652cc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5d181e8691fc306857280396e2d519ee1325c8d540d16d8251dc7cf6c56a670
MD5 41937909c701f01aba60d45bdfcc23c3
BLAKE2b-256 c63b1803befd7c971c867ef8e6138f4b9b6c51cb21bcb43e936016c3530655be

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 401df6097e1b335133d76b375ded7beeeffc2b01799ebda14cda53959698d812
MD5 62b2b8fab644bdf6aa0ed336c9107261
BLAKE2b-256 5ca3938a60120c1844966929c4bfb02c985e182cfbb66e92198f8db17155b6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22172462e9f778d873d3b4351d26a47b4492988e00c1ed56374013df0ad7cced
MD5 239ab0d5a2666eaee5df2ca9134cd7c4
BLAKE2b-256 b68ce15cd20384ccc36d07e9772485712167ac72a0b15bdb58aa05d2bd58e25a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c080a4dced374b42ddcae09796d93e477a189649036f7d65b7529fe83c86c94
MD5 b8cebfb3b7a99fb042092c92eb430de9
BLAKE2b-256 97f75513e784ee1c240aa0d0f56c67b23f339a99a88fa7a2c10a4f91f7720f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file endf_userpy-0.1.0a4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ddd693e8e0e4e37bbacc9e67fe39f41ac68c1edd99a2423790f1c745255641f
MD5 1de24c080d95f0eac5c787ab637535f3
BLAKE2b-256 12344324874035691f6550ac6fafb6fd5eea9b1f331a2073d371e1c4a304dca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on IAEA-NDS/endf-userpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page