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.0a3.tar.gz (728.9 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.0a3-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

endf_userpy-0.1.0a3-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.0a3-cp313-cp313-macosx_15_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

endf_userpy-0.1.0a3-cp313-cp313-macosx_14_0_arm64.whl (879.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

endf_userpy-0.1.0a3-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.0a3-cp312-cp312-macosx_15_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

endf_userpy-0.1.0a3-cp312-cp312-macosx_14_0_arm64.whl (879.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

endf_userpy-0.1.0a3-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.0a3-cp311-cp311-macosx_15_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

endf_userpy-0.1.0a3-cp311-cp311-macosx_14_0_arm64.whl (880.0 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

endf_userpy-0.1.0a3-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.0a3-cp310-cp310-macosx_15_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

endf_userpy-0.1.0a3-cp310-cp310-macosx_14_0_arm64.whl (880.0 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

endf_userpy-0.1.0a3-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.0a3-cp39-cp39-macosx_15_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

endf_userpy-0.1.0a3-cp39-cp39-macosx_14_0_arm64.whl (879.9 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: endf_userpy-0.1.0a3.tar.gz
  • Upload date:
  • Size: 728.9 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.0a3.tar.gz
Algorithm Hash digest
SHA256 d1c2b360bcdf46cd4854b8398923e720d18f086aee25fd451f52079f58d3b376
MD5 f9d95b5aeeeb07f1c1c3490ac1336ecf
BLAKE2b-256 34c79356b46ac4dfa5acad5fbc07633ca8177dd6ead3674042f193466a8e246f

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3.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.0a3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41aa25724bd76bc6a7e3e53099fc2851483b0168cf1eba7caddeb70a358b8456
MD5 f8e33805b6458f121bafeebfa9ff40cd
BLAKE2b-256 667f6fdf70b29b25780c3115436ec3237bf3c2e5f237877e8ea07ffa89042a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db0b7bf082cdb2a589f3e9ea58df2ddfb94cc1db35774fc1b960328124c20d35
MD5 d0b9b6657743b47c0464638c9acfb6ed
BLAKE2b-256 337003351f13b83aa59518ba5413d973d4951f75df2a40c3e19a81a1f2260b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7d962ea97378659377ae764676a0fec9408fe9908efc9de2daa198b51d61c1f0
MD5 68c4b4d894a2b7ed42529f5af2912af2
BLAKE2b-256 338e610316c7733f70f8ab0ee8a5ae646b6e5f4a26ebf2c62c1e97b9cd5295b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp313-cp313-macosx_15_0_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.0a3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b0e2f06cc917bacb517a23d5fa43228e71791aa8db58ecc7733e6551b86d5c39
MD5 cd1b44a062639eb313654ff68deae267
BLAKE2b-256 e5b429db6a711e0b897958e9d82608c0c82daf2fb23832d94ff431067737f00e

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp313-cp313-macosx_14_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.0a3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6bd54bb41293c7dbe52b24c40e40e599b345131a5d5ca9ea534987fb86b7a93b
MD5 d6ae0b1c1d607f32efbe35c678285e4c
BLAKE2b-256 7f0e4d4bc2a01b5d8aaa7778898cd29f26980063259ed66fcae828e06eac646c

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c22e7ec6ae7abc94a221e24e7bfd77234e351124167b897d86404455fcd607ca
MD5 41077cd6420cdb23b79fd57a9faccda7
BLAKE2b-256 da3f1317a93945745c03ec3fe12d3a0ec8d6667f08eeaba5a979b1efd7c76a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b937e6edbe9cb44bc0bb6204c17d56485eb6809d077950381a57f0ceea098ffa
MD5 d28f7b87b121e70168ceb26c39bbda58
BLAKE2b-256 077f1185266fdf196b3df9fccaa9a9c5f67c70fa935606b5e75ea1c597f7910a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp312-cp312-macosx_15_0_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.0a3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7d1512c2afb05b421ec6ae253613fb587bb911ebd324754dfb7a17c2e79b8bba
MD5 a402ce14f9bd8fe39bf3759b7541bdc1
BLAKE2b-256 2f5d343e708241630e406a3393d33fe693826bdb677f66e2a0edeec0b97f577b

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp312-cp312-macosx_14_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.0a3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdd369c43e05545024b2c67ad0b711e7a4fe8784da02ca9a20fbf4337f303510
MD5 6456dd81b0375aa033887ef8475377c6
BLAKE2b-256 e86e6123e0789d368400c452b4bae73c1cb97dc13b0331d804b3a465830f55cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 343bf573a1543edb982a0d4fe7958a5d6863c3080e07c7a49bc76d6e88404c00
MD5 002b1a72155800790ddb5ef73ca37edb
BLAKE2b-256 2b943cae0b53f1357e3db385d139074dec710139ae5d2d5b2711e13e02d56729

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 86636561a6f76dd82a37762f6ae8aff89557a11a0e03b6c8360cf9e00f4facbd
MD5 fa2a42048d9f9d9a6c1b97d1c4c59793
BLAKE2b-256 11428eb991d19a099db344c3ea5f705310003bcd2740e652e9b1f071c896fc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp311-cp311-macosx_15_0_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.0a3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 de98527611327f9489825d0a151f491c7c7a59548e64c8d7c2f68f5d6bb95e4c
MD5 c49d54bb648a9c28264c695318566470
BLAKE2b-256 086cb3027893d80d5d99f0f6427418b02667958c508bc2528273ce5d37a4e296

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp311-cp311-macosx_14_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.0a3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65f4ddb2cf1a8baf8b4cb626e46cb65e70abed5c5827ea1a871c319affe7ce26
MD5 dfc6a872708fe4578daee91da221bad6
BLAKE2b-256 f26ebbeab36c80c00393308c1eaba9c95dab8103dce183d4f9fddbca0925afc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31528d162a6484150253e724556e5421d00aed1276e6ed75a0c9f4b793d5214c
MD5 df036946d698c9d6782925cc5aca2596
BLAKE2b-256 df86a4b978dc965afe41577ae79748a65c2f11276929be0023a8eb95efd4cf66

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 917cf551d8edd78176a9c0b9e2f50772874ee7974ffee3f3ff5e7775c9eb5432
MD5 466fda9a5692e496f404e707bd72f60d
BLAKE2b-256 b534f6a586c2ef2baa82b51a72d9c499865341e7cd10ed164b4ac64e36555d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp310-cp310-macosx_15_0_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.0a3-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cf215d4da1d45621aa3871e7d839e596bbcdeb101299452f0025e25ffb936ee6
MD5 b943de667120f37f1ca26ab58cdb19cd
BLAKE2b-256 07efab05dc305831a3d02084aa70d739f7fc1e085c84468b469f4d797334a11f

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp310-cp310-macosx_14_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.0a3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dde040f98c8657ea315d4e50ff81da12846d2905678985a0fb5be78ebda4e0ba
MD5 dc61ebdca391179710bc2d9316e1be74
BLAKE2b-256 737fd17ad08c011c91051bda1b7d0bc199773cbb613bb6bbba8ab63a02c24378

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be5c7e028fd27aaeeb0af69348bccb471c53f0c7664f0ce869878a7554b029ef
MD5 fe2ab80a9c6dacb3552c193716224d56
BLAKE2b-256 f3cb0854ac13a9990d7b889e8fa0c0cd1211fb794c53c3efffcb074113a4c90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-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.0a3-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6a46dc03a7f2f886accddc78e9c53726a1dafc1340fb4bef34ee3641302769d0
MD5 cdfe9ea9e27df8dc88ab4e4643bdee72
BLAKE2b-256 90cc0d128bc0fd2585e177d9baed78c2714ecd8a31769b0922831ced16c1feef

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp39-cp39-macosx_15_0_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.0a3-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for endf_userpy-0.1.0a3-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 99d02a114944fa13bac8cfa63f5e1b40dc7fcb97fa61200c175dca70b8d7be7a
MD5 91903cbb6a9e189cf9be280ddaea81a1
BLAKE2b-256 dfd9b1c4e90b0aaf456a87759df69fd239c91575a7fb294d8d33c1a02cb29af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a3-cp39-cp39-macosx_14_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.

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