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

Uploaded CPython 3.13Windows x86-64

endf_userpy-0.1.0a2-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.0a2-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.0a2-cp313-cp313-macosx_14_0_arm64.whl (877.6 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

endf_userpy-0.1.0a2-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.0a2-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.0a2-cp312-cp312-macosx_14_0_arm64.whl (877.6 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

endf_userpy-0.1.0a2-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.0a2-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.0a2-cp311-cp311-macosx_14_0_arm64.whl (877.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

endf_userpy-0.1.0a2-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.0a2-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.0a2-cp310-cp310-macosx_14_0_arm64.whl (877.9 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

endf_userpy-0.1.0a2-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.0a2-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.0a2-cp39-cp39-macosx_14_0_arm64.whl (877.7 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: endf_userpy-0.1.0a2.tar.gz
  • Upload date:
  • Size: 726.4 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.0a2.tar.gz
Algorithm Hash digest
SHA256 c49cb1273fa2abfedc2ce9e476744e275dc365e0a999d259333801a978815681
MD5 81f8de38bdb3a5db25a8835e80d6e9f0
BLAKE2b-256 32caa851ee4196ea7b7eac0404c643212b2c000c568e2b81777cb2a4cbb67681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12583d516421699885fe251a2d358b1c90a1569bdcf90551f508a3fe7e468f1d
MD5 6113d2061744677fef7fe40038355249
BLAKE2b-256 a16b7c01870131a47085ee6e17fd03c46a9e09f34f80003d3235ece7c2332eef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f31ac6299865b022a2fa1e01d0d2c6e097912b7e786bf58d15e6f4587a131ce
MD5 3a259634b0cd30d81119d7a2b4027492
BLAKE2b-256 9b24981a70053806f072b3426244fcd926aac1871a0ced8e05980fa373ff26ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 94b0f5b11f60da79d47093c3579b7194b0da6e8723bfd2d867121ddd0748c078
MD5 b5a3596c8c39f288a4045901d6f1cda2
BLAKE2b-256 f62fdb084e89a15135dcd84d8a1f63e7bc2bc9f5a1c19d311eaf50e0c729cbf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a48e53a860a34299e4ef837c29a31e7cdd539fa9be626a3a039916719120150e
MD5 b76d5079af05202dfd852f95664aae79
BLAKE2b-256 c1d10de069b5af2e322564a5f3cd00d1f4a0cb823251ccee2ac787752f5dc0f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 99cc14403f4fe2e9f3921f7a865ba2e378beb664538d7918c3aa7db5fecf47a8
MD5 a088cd134a1af2e3335b68a7b77a4f63
BLAKE2b-256 30c5de9dbe30362f6bd416151cdfbca690972cca42eae6db22390d2d1411b2d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ef86dd9a709933d7e414fdc32b94ba5cc10d1bb046e7bf3ef44b1cd56140362
MD5 53ca56bd34c7555272680863ab1c1bed
BLAKE2b-256 a0e7676e2edb5e18fdfaeabfed08d0c1924e20fa80d97608f40983241d4395ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d9a0848196be18aef9d2cde26ce0b82e9ae7c676e6abf0f628b5f9c7a7b05ee5
MD5 b6484fdd1c5e45264472856491f06e24
BLAKE2b-256 6084f33631a6c0c97cabb11fc1c7b3cb49f187a1c949cdb68ec818bd43c2204a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1b18082ba5c5a0fbda84c498c22c8c2ef422ccd2518f9ed61419264446b474ed
MD5 0ebba2a6c63e3641db92fb2fff4b09d3
BLAKE2b-256 f3c296f77ca17fb2869ea08377482845ff3e79aa1076e6fae08b62a8184b04ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09e5f88697cb1e34ebf91c9eb79a31478974e263968c8245f5dd665ab3591963
MD5 fee9a39091543ecba0dd7e8228f4e0fe
BLAKE2b-256 cc4181b5cc77194bc0cd8d46e13a8e06083c2f39f69352a6d2eb998178e95502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4af566ef46954892698a399d5735dabff00626c820957feafa4b2c6bdcafed6
MD5 2177facfdbec0045e8f30ce17d555f01
BLAKE2b-256 434b03bfe022a3d5bf396bc824c27f15ade28b6add0c7f6fd04999259a755415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 691f06a5e9cbb62e7008597c9679ebb2c85f64b296cddafdc545e24f3826214f
MD5 cfe066cabcd5be7825d39773dd37e368
BLAKE2b-256 48d03e31a6e0c8264dac1885dec21a647ae7b2facb8271fba311130d4d17324f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 30634fd0a587023917cbeb4659b10a710fa59fc274e8504f2ef615fb3451bfd0
MD5 dac91a635bdd2adc788bb62bf7811a0a
BLAKE2b-256 5d4a701556b6bf7cd054fabced35b75ab6926d8657c9001da16964e6a62219ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ac488a68791682a577f984388db88ba8bc0560d1227938de22064d0812dacf2
MD5 584fc807460ac0a16a56787591e22ec5
BLAKE2b-256 16f7e223354fc4693f8ea5b590115216659bebac664ab8ca1c84f051fe2b397f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ac1fab85f41c46627e1371c13e0fd984749ea077370ba9110503f06225a0438
MD5 0d889c99bec7a8270b694f591174c5b8
BLAKE2b-256 6d3f178c59ef187b213bc00b3680cf59e7c1058957212f551eb9470094a00a8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 465cd4cb2619bff4cd39da05652a8d0a970d853535946bbf8e696d314ac972e6
MD5 42327a264126b3dd4f2834a03f76c52d
BLAKE2b-256 3493af7b4b5b75d767de41eff7d335d4e8d937c5a683cac498b639a5925baa10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5da77ea2c7d0695e1e1800a1a4c14df5b7da1ecc44221ef4636e0d8af8e931db
MD5 8e41d1c0f188e5e042a36d397c1337f9
BLAKE2b-256 189ec0362d62949ab4ca9990b77a6550f4d4226d66027b7aa156d79e8fc67b52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b845b5a1287bf8fe4f1b233528b4e6774b6ac4ca1b8c261499c45cd2512c02f2
MD5 3396dcd55b2967d8324abd7919394e53
BLAKE2b-256 0605f55fe7a7bfe9811a4157cc6257ddcbad9c221a180945012d2d7631d9aa9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2b3d02b25d2927afa7f606f27842b815a6b8bd1b5e5c0710401c14a993110ad
MD5 b4bccbd12f787413db22765e49dd6613
BLAKE2b-256 b0c139c4780609b53a6842df9ee03b1108f00a90ed6d0cb1bd21b533658cb9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6a0a1d0367d9a0726c01fe6d350eefc44ccc834054a6522ddb7404d08110caf1
MD5 755e78c31a0063f42a6450f69f8ceffd
BLAKE2b-256 775737392b7e639298941a287216d4bebcf729f603f0ff2ba7117e82bfbe9c68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for endf_userpy-0.1.0a2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8eda6412842b36d5db81dec3aed501cf2fe0b24592dfc4bbed3aa10aa2e7e76d
MD5 ce29bc428e1c6d812175e5c027400cd0
BLAKE2b-256 771f65a8e1083a07965c495c75faf713c9e81d5e35ff227ccac552dbd6bcb7a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_userpy-0.1.0a2-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