Skip to main content

A Python package for reading, writing, verifying and translating ENDF-6 files

Project description

endf-parserpy - an ENDF-6 toolkit for Python

PyPI version Python versions Tests Documentation

endf-parserpy is a Python package for reading and writing ENDF-6 files. This functionality in combination with Python's powerful facilities for data handling enables you to perform various actions on ENDF-6 files, such as:

  • Easily access any information
  • Modify, delete and insert data
  • Perform format validation
  • Convert to and from other file formats, such as JSON
  • Merge data from various ENDF-6 files into a single one
  • Read and write files bundling several materials (tapes)
  • Compare ENDF-6 files with meaningful reporting on differences
  • Construct ENDF-6 files from scratch

Many of these actions can also be performed from the command line through the endf-cli tool.

The support for the ENDF-6 format is comprehensive, and some special NJOY2016 output formats are supported as well. The package has been tested on the various sublibraries of the major nuclear data libraries, such as ENDF/B, JEFF, and JENDL. Files that bundle several materials — including PENDF tapes that repeat the same material at different temperatures — are supported both as plain lists of materials and through a lazy, memory-bounded EndfFile interface for large files.

Install endf-parserpy

This package is available on the Python Package Index and can be installed using pip:

python -m pip install endf-parserpy --upgrade

Documentation

The documentation is available online @readthedocs. See the README.md in the docs/ subdirectory for instructions on building the documentation locally.

Simple example

The following code snippet demonstrates how to read an ENDF-6 file, change the AWR variable in the MF3/MT1 section and write the modified data to a new ENDF-6 file:

from endf_parserpy import EndfParserFactory
parser = EndfParserFactory.create()
endf_dict = parser.parsefile('input.endf')
endf_dict[3][1]['AWR'] = 99.99
parser.writefile('output.endf', endf_dict)

Citation

If you want to cite this package, please use the following reference:

G. Schnabel, D. L. Aldama, R. Capote, "How to explain ENDF-6 to computers: A formal ENDF format description language", arXiv:2312.08249, DOI:10.48550/arXiv.2312.08249

License

This code is distributed under the MIT license augmented by an IAEA clause, see the accompanying license file for more information.

Copyright (c) International Atomic Energy Agency (IAEA)

Acknowledgments

Daniel Lopez Aldama made significant contributions to the development of this package. He debugged the ENDF-6 recipe files and helped in numerous discussions to convey a good understanding of the technical details of the ENDF-6 format that enabled the creation of this package.

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_parserpy-0.17.0.tar.gz (243.8 kB view details)

Uploaded Source

Built Distributions

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

endf_parserpy-0.17.0-cp314-cp314-win_arm64.whl (6.7 MB view details)

Uploaded CPython 3.14Windows ARM64

endf_parserpy-0.17.0-cp314-cp314-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14Windows x86-64

endf_parserpy-0.17.0-cp314-cp314-win32.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86

endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

endf_parserpy-0.17.0-cp313-cp313-win_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13Windows ARM64

endf_parserpy-0.17.0-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows x86-64

endf_parserpy-0.17.0-cp313-cp313-win32.whl (5.7 MB view details)

Uploaded CPython 3.13Windows x86

endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

endf_parserpy-0.17.0-cp312-cp312-win_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12Windows ARM64

endf_parserpy-0.17.0-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

endf_parserpy-0.17.0-cp312-cp312-win32.whl (5.7 MB view details)

Uploaded CPython 3.12Windows x86

endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl (12.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

endf_parserpy-0.17.0-cp311-cp311-win_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11Windows ARM64

endf_parserpy-0.17.0-cp311-cp311-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.11Windows x86-64

endf_parserpy-0.17.0-cp311-cp311-win32.whl (5.7 MB view details)

Uploaded CPython 3.11Windows x86

endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl (12.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl (12.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

endf_parserpy-0.17.0-cp310-cp310-win_arm64.whl (6.5 MB view details)

Uploaded CPython 3.10Windows ARM64

endf_parserpy-0.17.0-cp310-cp310-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.10Windows x86-64

endf_parserpy-0.17.0-cp310-cp310-win32.whl (5.7 MB view details)

Uploaded CPython 3.10Windows x86

endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl (12.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl (12.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

endf_parserpy-0.17.0-cp39-cp39-win_arm64.whl (6.5 MB view details)

Uploaded CPython 3.9Windows ARM64

endf_parserpy-0.17.0-cp39-cp39-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.9Windows x86-64

endf_parserpy-0.17.0-cp39-cp39-win32.whl (5.7 MB view details)

Uploaded CPython 3.9Windows x86

endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_aarch64.whl (12.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

endf_parserpy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl (12.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

endf_parserpy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file endf_parserpy-0.17.0.tar.gz.

File metadata

  • Download URL: endf_parserpy-0.17.0.tar.gz
  • Upload date:
  • Size: 243.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0.tar.gz
Algorithm Hash digest
SHA256 9b59e1524ac0051e3fe77c8967345379af8cb03e6e8e4b4d95461a86d53eb133
MD5 ea106c9aefb3673a5492d2437348d1c5
BLAKE2b-256 e515c5485b0af4affbb0959ffe19122998a82fa66fa352d919d37c3e2aa98dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0.tar.gz:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fea304e7578e0097c73a17005c508080d83f9275c1ef94123502946c8a7d43f9
MD5 404c093a3c9edf14259caece6e6f397a
BLAKE2b-256 73c4494b38b5d0ec69a730708c908a017dcbc87a9307e54defc22720685b3b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 23d98191eb8ac429ce377872b002f3f8f387f112e8be331ec347c96387ca03b0
MD5 fe0b59a173c8e2d056be693f3afb339c
BLAKE2b-256 6ff2e7bb098efbb95bf7df414087000dc2b06f8565233e34312eda559ce0e591

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b9cec413f78f0cd8b7c62b0cfdc7912b1707e62dfe9649d3e7a9491524a42c37
MD5 d2e7390097ded6e0583630521b5e5e6e
BLAKE2b-256 d59f993cda7a126245c2bd98bded96e36326dc9cbd5ce8e7f1c398775b15b8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 610a873085ba1e146feb112b1f2510c4d43896ff0285abf6ba549e22f148d0fc
MD5 057937613222a57e02918f903ae208fb
BLAKE2b-256 aa9de5f354073d2333cb575b251d62923c38212b3aea706bb2a4ad6f61e6ee69

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7714b15c3ffdb5b1660701e3bb0005c7a11058fd9c50a193dbb8be1cb5b093f
MD5 2115994ad524f5bbc9e147220e29d43a
BLAKE2b-256 6277960c445051d752aa75e1f58ee4ffc1ad10d1ba0deb9089560edaed6ade06

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23065425c5a5ab0a752426b67cec4dbb33576f55ac6afb8e0d724b6cacafb362
MD5 70e16f691f65fe08f3b174ce1bcd117e
BLAKE2b-256 b6956eada27cf965fc2db1d0c58bfdd2556ad227cba4e124e9730335075b8afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2903f3f5f41b95018a9445ad880a4153bd21e19b308fded6fd286889915a6467
MD5 90cb99f264a7e214978990c96e94269f
BLAKE2b-256 1e9c7f8a13063be4cf0d4202077cc9e97d0b5421b9e8025dcc48a2e13af8e529

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c29e1b84964b3453cf6e4f886b56cd0567341fe6a092e672e4c13239d6c0c31
MD5 ca8872019489b334e9c5f8370f491157
BLAKE2b-256 840a2ea566a5708df5f8a04e710f28d8dee6b8b7b7fd4ee47031a19c42f6dc3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c06c62f9351f92b11778505aee793ba281d6a41b04a776ed0f38ae244921ef5f
MD5 5f6e1347e8c71f7a71b0092a50f60742
BLAKE2b-256 d210a3f26fe5ccc4ccf4ba48e504e26fc10e2d4f06a90463ccead1d8921cad2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c0ffe27e6f562dce3b97c2d9f1137139dd98d7a7786ef2e981c617b97bd2fd3a
MD5 ab26e74e551da17490618b9987742a46
BLAKE2b-256 8af50520d731e7eb3161ac710b3618cc577151240cf7d8d57e21373870b8243e

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 30f145e9d1c54b9576ba7aa547e45e931af6202484812a0e4ead8eb1d59be905
MD5 3debdf256b2f5fdf5ee77336aabaadbc
BLAKE2b-256 74a7c44d79dfb86778a453871012fe468f6936ace799ef19fab3c2ba139a985a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2eed9ac3212103c0cb30637f6d03b7dbaf3bd12b7af0f9d9fcb2e8be385a6152
MD5 a36d466a1092b48d28847c06fa647332
BLAKE2b-256 41e44c70695f3f40e3e0891b931de81af902f260fd1c09aa629f0c6e276a771a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 998aa6731818ee99a7cf23f0841473a4fc43efb3f36f13e30f5b0d95a6e7fe33
MD5 ee2067faf950b84a88291a4234276710
BLAKE2b-256 953036bb854b3b7195623f35a07875c5f1721cd005e012901ec8f9aa943e1e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f553bc8b4af82e3045a5b5333a680632d3c7fbba5a7d1b18379b981b03a7b58e
MD5 2b60b519addc8b21c74c1bad5572ebe4
BLAKE2b-256 9910c6d7e11eefa55a5c02e870c9a310043d696e578eeeab951ab00ddfaea606

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59c468323e334d21656cbb5f741300ef66a8c57b7431f70e5bb58f7c44987348
MD5 9e1aa5f96c9ce523bd0861da792a7767
BLAKE2b-256 67d761d20705b40cc23da1aad44ce5f15278866f52d0136999dd6b61f19feb59

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84de5126fc18a7bab596c0a39be5f9f00502eb604d1d2668e229ecf46e204177
MD5 eb4fa0d23313ca8d958ac40536d11ea6
BLAKE2b-256 c6246a1f2a4c71ceec9e283085121860490f67bc6e5e6941354f38b1a908f305

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a270fb3a7486c2f1356efbaad141601053587be27288f31ae8f9d655c5633281
MD5 9971f9f3368a4f433cf57b9d89f9b9b3
BLAKE2b-256 649da9e379092665a2b788b4a27a1cf32559df597a8ff4862abaacef3d096e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c79d69be953d4fd92345e6c3a5013931e581a94d559e019cefe777dce48b77b
MD5 67d5fdbfaf0cd9bdd05e1099c293948e
BLAKE2b-256 99b08bdd5602442a115a6fd905b5094e9e053742c626478bf56fac76b09a2d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 df7542ac595dd12c14e662fdef7a733bbee3084bc4b77188995f011fba1fb5d9
MD5 e6bb1e060abcc44c5a53c6892fddaf5b
BLAKE2b-256 b2cb8adccc94e38cbb88d211a8b3535597788b584a7911f0848730908916fce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7d5b9bc6dd75022b07d2a91058e42c8c1234751f2a9bbc21850bf236c648f12
MD5 5ddb05e985ae1d52c6d25a78acd15c9b
BLAKE2b-256 4f0c29912c84e6390ef4f6db3f7bcdd657ba540cedf9ec9ac8407e08a85f12d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04344bc96c7e2e70af313fb610b7b228e371b171596f95f800d67a6ec2312007
MD5 e68fcc5373a09da66bf24905a3510485
BLAKE2b-256 fdb973a228e32109a0a469ac95f7285cbeb7acd317242970adcac1ce668dbb89

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e25c90ceb34d542db4faf1997bea48201b38991e9643988e9b867e9f0c88d2d0
MD5 54b1f19f3602d37efccda140f91f18a8
BLAKE2b-256 15f98c34d1526fc3aed50edac33e6d6b7eaec19cbf921190cc2c1e29a91db83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a5dd6ad9431e78133db09f18c40a450ba3337e9247be713f7a0082b237ab8e6
MD5 4ef50c58a8ff167bb693cf34bb9bf9e2
BLAKE2b-256 c146d44f538ee59525a11518279abd98d7f2e4b1a6a9f85b18ef4ac8391b9166

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bf952ac1ae9b6df6bef29580d382b759c22444e740d675e08d0291fdaf9ff94
MD5 2c02995b01635532e6145de0b5b68aa3
BLAKE2b-256 8be8461a9475537da96eb0ebfea62c0c9ec94fde047e0f5655246061ec7c45d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad2e7038e0b1a1d4d98fd73ff7d88518d8595ca16ffd44ef3125400915fd7312
MD5 d5b527dbf3f68938fa7a4f1bf9aff27d
BLAKE2b-256 b62b0ac0650a9ea1ed9a8495be2be63395d006cf8bb83d067332a077bf479ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0efe6d6b8d7dafb74768df0340bfefbb1e3e8384ce1c87df94fa81100f005544
MD5 5e8f0e4843fc844e87853cea22a98b73
BLAKE2b-256 12bdde360fff7a087e6e24ec6509d33ae4bb165210de4d8e18c7785f49243ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 88bb019a05d0cd3de2bcd56bb246af2641fe02ee40fbadcb00eb375f64ccdc94
MD5 505163943a32964709b51f1d0b62385c
BLAKE2b-256 33e57bbedc9b40a7505fe94b3eeef3fb277ff0ff86b032f0f217a8cd1deb03ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 15fa969f4b20cbfe94c9eb96ae011a442ad196641b71a1a2571536769ffae1f8
MD5 c324cdc4e385e78df2c07f961fd51b8a
BLAKE2b-256 a17f956cb41fbad9481ff26e32f6b8ef34ca0deb795d0391014259ab65d57786

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3cd55fd3ce82c5d352adeeae6de060b1759b3d73ad4755c100c84ed135f1a11e
MD5 27033b167334591339bbc6959ac50547
BLAKE2b-256 5ccd6a95eaf3ef7f591be382014c5bf37017f6ed3b527a15d31a3521259f3699

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 100e3a3843024907b0edd997726990d067c1c7518a7907e488b8e32ba252abac
MD5 e4143b81e1b2fc027fffb54463069acf
BLAKE2b-256 84c6d0be85bd18a9fece2df1b9aee332a9f49a8076daff39028c5797758c891d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c30920a2be648a67d30e35787c28489fa65511d1ea40b261bd28a1af344ac300
MD5 dfd1280201982c0bc4a37aceb83174c0
BLAKE2b-256 eb41113febb4f492098ec2dcfce4d7f442aec59acad986c511eb902dfbd23959

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4153c42732965381715d47d398a93f7bfc9846d6c54539aca557957eb962ff8d
MD5 9d946b71a33209904d80f3d5ab787c2f
BLAKE2b-256 0a810ba8cd1c10d286b78d4a1f8affd0eccf68822ec0afe89d5fd1268bb4a3c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d326a7df81a4d5f51377927909368057b1df8b76fcff01c0bd345d3b887a81a8
MD5 c18c4d1ac80e072a42151a31ba66ecf3
BLAKE2b-256 4d003cbda7d7c4b6bfbfe69f44b83b054e58ee8d57f9bee9cde79c208fc964c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4630efeb2ae2cd5682ecea27aef0949fe8cfbbc72eb4fc6a9533bc44c0a945f0
MD5 6dcb569d88b9df7dd8cb848efbde6332
BLAKE2b-256 84997c21677cf619ad76cc68ab134876c599d4dceb631b035542723694970132

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9d5fb7c697452542b530a2db1f80a7f52a5d9b44a8622d73087688610682b6
MD5 6d19b3939ccd31c598a70572c68fb7ec
BLAKE2b-256 70ced5fd27308d7a6f495d9c2fb2c155cebd5b1598776dbd6faecbf4b8046065

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3395416bd6b33e1b82a12405ba718751bce9b411462627602db9977b46369086
MD5 ebd8ad587c5161369b4adbd715e0476e
BLAKE2b-256 00cd7543cc9e8c23d59f9584b041438adf17d7193776d07a56dacf5b3a23898f

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 28c9e959f07c8f6f62a1f04995351f4a9b1f14a9b5a9f23fcf4347b316f5a446
MD5 6831a0f636d71444ae23df93dfcadf55
BLAKE2b-256 abc816ae52d9f92188dde6adc11c86847d748b1b4193e9fab32b209b0a762490

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b308d8fd57617312bbf4251809a25d29a9588adfbd58c42b616261952ddd5de4
MD5 0baf6aea08f5820edf7fc7dd112b1c6e
BLAKE2b-256 c42b6aa46bd68e5ec990496be9f15bb7c39aaa2f22537f4e3e3bae44c20f0343

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8446570cca2de870a764dfc4dd833ebed2ae254581fd01f13f4f0db5bdb7db7
MD5 fa3ad37d095e659e53e5a30ce483bbe9
BLAKE2b-256 d7f6429a24e09eedf2b71c2fe9b44b8c1e5860e11f705159a0c01bb075cbf9ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2a0e50ebc415e8d8442ead5b027a041b6728d3b05a1ec3ccf112a83dee8ea8f
MD5 b996979823339bb8073d608de444f8df
BLAKE2b-256 cd2b38c0ebbbe89406d0587bf19ad21419bc12494487a63789d25c813263feda

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1782953b3ace7b21cec2b91004461d443d3f1719532e50dc193ccceb111bfd35
MD5 40c452407329b2eff28f425483341197
BLAKE2b-256 8954443af525c494033ff489960b67127f68bcb7ab92bb404f68ac59fe635e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2f4440d1d6fd8ba58886db47d17c438800a0cd40e4496265176ea7d93445356
MD5 92e2bf4461b5700aaa7189c1571a9a1f
BLAKE2b-256 846101bf7685ccf94b9bce237a12a3d8d16c5698d6c783a9ca6c378d28b9a8ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11e05e5456987b7c50640611c244fcd9e2def3a076aa051c062dc69dd8b6662a
MD5 4f07f9c1b3c859c7f2fa60095752e1c0
BLAKE2b-256 24401a65394320b19c34b8d72a7bce356d756f40d8f7a484549eb21a771a3cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27c592cc42e77e358e7fca952d69bccfcf75e6896c5387b675cdcd72b0b5f849
MD5 8f8061b23c72d0414a6be7a8a9fb2a16
BLAKE2b-256 e9e146ef522718d570f22a799f6e730c5575898254a6e6d5b2753fae49332eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0116449fe0588a80e6d19d4f785729afb8dcb161bfefe2e67a9ee13b1bed0af
MD5 4f5e9f228213bf83b6936e6d4ef5e927
BLAKE2b-256 6e0b9d8a345ac16fa084269d775b95194ec1d0c08636544cbf7184e14d35f564

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 73d8f847deacd4f7bfed0a998fdf0f7b9ca839833d2b5e6320e132a18eb2c219
MD5 ec51d1fede003d59d944ebfed66f7963
BLAKE2b-256 aa2b0d9bf40af623073068a5481d43762b93d0a5e580dd65bfb87763efa7c2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-win_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92eca32f98ed87359bb554a6fad905aa08019f72dfabb2e3c9740d8f0fefb7e4
MD5 931f14ea5470b7e87bf46fb6b511c7f3
BLAKE2b-256 1933d4e2bac5ec596c614e0064bf249578dad83bf0d4bc971b6fbe00d9da57b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-win_amd64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: endf_parserpy-0.17.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a312850471e7c2ee42a4dfb7c23804a540277bb4b304b24ea766c040ac9ffecc
MD5 5ba65ee15a7e6fb6a5723eda0c0c3daa
BLAKE2b-256 644d849319b118d7e3e2c70fe1dc877c192bdd3f1507be4bebdaf92ecc1de9b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-win32.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c04e76c5dd3ecd6eb99c4cef320473523af9ec00dd44f67b7ba65148beb554fb
MD5 13cd5c9099dcfe85e8583f82beb5118a
BLAKE2b-256 59ca6b1f836fc089faa5bec407a9edd04125b09d74032a3be65304186cf450bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7705f7dbdf26b1e7af308b785a3600e990783a5ed0bf8495567df890e6fd6f13
MD5 00bf798e1cca9e98de767659083bec33
BLAKE2b-256 1966aa74f5bded231b5679a7b4fb1c3f947889212d41d4d6d97dc1a42f8c808d

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 462107da1c8ee60bcf73318d1f03fd3f5c2de9c6f6df0bd846412be12f3061da
MD5 05ef6cc4fb2747dab2e3aa608cc4bb32
BLAKE2b-256 4b326f15b2d03482a19a19e648ef836d836aab812f2f89d45af574c880d015dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 627f071f1745192f8bbc1758a4c748f95a765c4a0eec1b08b1faffea4786c11a
MD5 20117bdbf84d31fb4b91798c3ccd8792
BLAKE2b-256 15a6532775317d7680e38e5e21c07af255817447a8545840f8e35963135d8941

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c9b641ea9fed515a1fcc08ea153466dcd3becd679260e54e095086abc19aa83
MD5 5167254afc759f42d3d145744651c780
BLAKE2b-256 c00056323a2c390d05bdc4ad1a9ce990197e307ba183673ad7c51f86b0866f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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_parserpy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for endf_parserpy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ae1711e0d016178ea8dee434426ddb9059e01380b1a36413746b28f7733d649
MD5 e3efb490c206bed2fb894079319dd6ef
BLAKE2b-256 aa8a907721875eb51b69f66d873e0299323fd6b6be71a5b1decca01ffdf5d1b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for endf_parserpy-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish_package.yml on IAEA-NDS/endf-parserpy

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