Skip to main content

Neutron Resonance Resolved Imaging Data Analysis System — Python bindings

Project description

NEREIDS

Neutron rEsonance REsolved Imaging Data Analysis System

DOI CI PyPI crates.io License Docs API

NEREIDS is a Rust-based library for neutron resonance imaging at the VENUS beamline, Spallation Neutron Source (SNS), Oak Ridge National Laboratory. It provides end-to-end analysis for time-of-flight neutron transmission imaging: input hyperspectral TOF data, output spatially resolved isotopic composition maps.

Features

  • R-matrix cross-sections -- Reich-Moore, Breit-Wigner (single- and multi-level), R-Matrix Limited (LRF=7), Coulomb channels
  • Unresolved Resonance Region -- energy-averaged Hauser-Feshbach cross-sections (width-fluctuation correction planned, not yet implemented)
  • Doppler broadening -- Free Gas Model (crystal-lattice model planned, not yet implemented)
  • Resolution broadening -- Gaussian (channel width + flight path) and tabulated instrument functions
  • ENDF nuclear data -- automatic retrieval and caching (ENDF/B-VIII.0 and VIII.1 from NNDC with IAEA fallback; JEFF-3.3, JENDL-5, TENDL-2023, and CENDL-3.2 from IAEA)
  • Spectrum fitting -- Levenberg-Marquardt and Poisson/KL divergence optimizers with analytical Jacobians
  • Spatial mapping -- parallel per-pixel fitting via rayon for 2D isotopic density maps
  • Detectability analysis -- energy-window optimization for trace element sensitivity
  • Python bindings -- full API via PyO3, pip-installable
  • Desktop GUI -- egui application with Guided and Studio modes

Installation

Python (recommended)

pip install nereids

Requires Python >= 3.10. Prebuilt wheels are available for Linux (x86_64), macOS (ARM), and Windows (x86_64).

Rust

Add individual crates to your Cargo.toml:

[dependencies]
nereids-core = "0.1"
nereids-endf = "0.1"
nereids-physics = "0.1"

GUI application

macOS (Homebrew):

brew tap ornlneutronimaging/nereids
brew install --cask nereids

macOS/Linux (pip):

pip install nereids-gui
nereids-gui

MCP server for AI agents

NEREIDS can run as a local Model Context Protocol server so AI agents can inspect neutron-resonance data, fit spectra, and run spatial density-map workflows through the Python bindings.

pip install "nereids[mcp]"
nereids-mcp

Example MCP client configuration:

{
  "mcpServers": {
    "nereids": {
      "command": "nereids-mcp"
    }
  }
}

The server exposes low-level physics tools (load_endf, compute_cross_sections, compute_transmission, detect_isotopes) and workflow tools for agent-driven processing:

  • extract_resonance_manifest(dataset_path) reads an sMCP-style manifest.
  • validate_resonance_dataset(dataset_path) checks data, isotope, and resolution configuration.
  • process_resonance_dataset(dataset_path) runs a single_spectrum or density_map workflow and writes compact .npz result artifacts.

Datasets can include manifest_intermediate.md, smcp_manifest.md, nereids_manifest.md, nereids_mcp.json, or analysis.json. Markdown manifests use frontmatter between --- delimiters; JSON frontmatter is supported without extra YAML dependencies.

See the MCP server guide for supported data kinds, manifest fields, NeXus histogram handling, and output artifacts.

Minimal spectrum manifest:

---
{
  "name": "venus-hf-spectrum",
  "tool": "nereids",
  "physics": "neutron-resonance",
  "analysis": {
    "mode": "single_spectrum",
    "data": {
      "kind": "counts_npz",
      "path": "aggregated_hf_120min.npz",
      "pc_ratio": 5.98
    },
    "isotopes": [
      {"isotope": "Hf-177", "endf_file": "Hf-177.endf", "initial_density": 1e-5}
    ],
    "fit": {"solver": "lm", "fit_domain": "transmission", "max_iter": 100},
    "resolution": {
      "kind": "gaussian",
      "flight_path_m": 25.0,
      "delta_t_us": 0.5,
      "delta_l_m": 0.005
    },
    "output": {"directory": "output"}
  }
}
---

From source

git clone https://github.com/ornlneutronimaging/NEREIDS.git
cd NEREIDS
cargo build --workspace --release
cargo test --workspace --exclude nereids-python

Python bindings require maturin:

pip install maturin
maturin develop --release -m bindings/python/Cargo.toml

Quick Start (Python)

import numpy as np
import nereids

# Load ENDF resonance data
u238 = nereids.load_endf(92, 238)
fe56 = nereids.load_endf(26, 56)

# Energy grid (1-200 eV covers the strong U-238 resonances)
energies = np.linspace(1.0, 200.0, 5000)

# Forward model: transmission through a mixed sample
transmission = nereids.forward_model(
    energies,
    isotopes=[(u238, 0.005), (fe56, 0.01)],  # (data, areal density in at/barn)
    temperature_k=293.6,
)

# Spatial mapping with typed API
trans_3d = transmission[:, None, None] * np.ones((1, 4, 4))  # (n_e, ny, nx)
sigma_3d = np.full_like(trans_3d, 0.01)
data = nereids.from_transmission(trans_3d, sigma_3d)
result = nereids.spatial_map_typed(data, energies, [u238, fe56])

print(f"Converged: {result.n_converged}/{result.n_total} pixels")

See the examples/notebooks/ directory for 18 tutorial notebooks covering foundations, building blocks, workflows, and applications.

Architecture

NEREIDS is organized as a Rust workspace with layered crates:

endf-mat              ENDF MAT lookup tables (no deps of its own; used by core + endf)

nereids-core          Shared types, physical constants, isotope registry
    |
nereids-endf          ENDF file retrieval, parsing, resonance data
    |
nereids-physics       Cross-sections, broadening, transmission model
    |
nereids-fitting       LM and Poisson/KL optimizers
    |
nereids-io            TIFF/NeXus I/O, TOF normalization, rebinning
    |
nereids-pipeline      End-to-end orchestration, spatial mapping (rayon)
    |
    +-- nereids-python    PyO3 Python bindings (bindings/python)
    +-- nereids-gui       egui desktop application (apps/gui)
Crate Description
endf-mat ENDF MAT number lookup, element symbols, natural isotopic abundances
nereids-core Core types, physical constants, traits
nereids-endf ENDF file retrieval, caching, resonance parameter parsing
nereids-physics Cross-section calculation, broadening, transmission model
nereids-io TIFF/NeXus data I/O, VENUS normalization
nereids-fitting Optimization engine (LM, Poisson/KL)
nereids-pipeline End-to-end orchestration and spatial mapping
nereids-python PyO3 Python bindings for Jupyter
nereids-gui egui desktop application

Documentation

Troubleshooting

Log files

The NEREIDS desktop GUI (nereids-gui) writes daily-rotated log files to a platform-specific data directory, retaining the last 7 days. Each day's file is named nereids-gui.YYYY-MM-DD.log (UTC date):

Platform Log directory
macOS ~/Library/Application Support/NEREIDS/logs/
Linux ~/.local/share/NEREIDS/logs/ (honours $XDG_DATA_HOME)
Windows %APPDATA%\NEREIDS\logs\

From the running app, use Help → Open log folder (reveals today's log file in your platform's file manager) or Help → Copy log path to copy the full path to the clipboard.

The default log level is info. Override with the NEREIDS_LOG environment variable (or the standard RUST_LOG), e.g.:

NEREIDS_LOG=debug nereids-gui
NEREIDS_LOG="nereids_pipeline=trace,info" nereids-gui

NEREIDS_LOG takes precedence over RUST_LOG. Panics are captured to the log file with a backtrace before the process exits — please attach the relevant log file when reporting bugs.

Citation

If you use NEREIDS in your research, please cite:

@software{nereids2026,
  author    = {Zhang, Chen and Bilheux, Jean-Christophe and Tang, Shiming and Bilheux, Hassina},
  title     = {{NEREIDS}: Neutron Resonance Resolved Imaging Data Analysis System},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.18973054},
  url       = {https://doi.org/10.5281/zenodo.18973054}
}

Contributing

See CONTRIBUTING.md for development setup, coding standards, and the PR process.

License

MIT. See LICENSE for details.

Copyright (c) 2025-2026, UT-Battelle, LLC (Oak Ridge National Laboratory).

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

nereids-0.2.2.tar.gz (848.1 kB view details)

Uploaded Source

Built Distributions

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

nereids-0.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp315-cp315t-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp315-cp315-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp314-cp314t-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp314-cp314-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.14Windows x86-64

nereids-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nereids-0.2.2-cp313-cp313-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86-64

nereids-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nereids-0.2.2-cp312-cp312-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86-64

nereids-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nereids-0.2.2-cp311-cp311-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.11Windows x86-64

nereids-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nereids-0.2.2-cp310-cp310-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.10Windows x86-64

nereids-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

nereids-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file nereids-0.2.2.tar.gz.

File metadata

  • Download URL: nereids-0.2.2.tar.gz
  • Upload date:
  • Size: 848.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2.tar.gz
Algorithm Hash digest
SHA256 4369b84f77d233e4fcbdaad5989c7720ed5d7eaa5fbe90ac114499093bdd6a85
MD5 3b9765f1508aca24706fde6c4baacb1f
BLAKE2b-256 e332d10af9decd095432422e21dded4c33f2a15a4f293fc35a0062e7132b1039

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2.tar.gz:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 849881feb360642c359e304a91e8d0296674d0858359a611cc7bbc7d0e3856ed
MD5 a8201b269b5663ef6a277a281e6e1c75
BLAKE2b-256 8c836ea4646bdb703638525e1f87119a67c36dda7b3eac883e350d53a66bba1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 745086be4df87b05185321432129b66212e9e91b7ac685637ccef6a729aa82a1
MD5 1cf2ed49b445e170338368a0eeeaa0f3
BLAKE2b-256 79a59aafa20e067c747ca23d68a4d26c22d87543b145136b2ad7ebf9a0ac82ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ff60b770749de052ac106aaad6fd7193019f4f00702d76511015940540a11e1
MD5 308086f11f172bc8b0b7dd5e4f258d4d
BLAKE2b-256 4855e4a7ef1407e14d1bba09e3b27df1bea427b8cdf7aca04f2521130db922df

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a32573dab0b75198d38863ce0e080afc1cb6348b76e9a37cca1a7b3d6911a01
MD5 afdb2495ce903a11a6747f7a83991ad8
BLAKE2b-256 bffba3989a520a01711cd16d7e1c3326d7d083bad6e0de83490f85c71111bd9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nereids-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c63598bd665dbd0166ab032d7d50063e07182476cbcec055ee8e0f44d8e3c338
MD5 676f549a7f907de120c0dd1aa01c5c75
BLAKE2b-256 cd1f59080c7bd6c0c1b75b79bbda0cac0a38c066ab3d36b3de187b5ab0f99396

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d89421f8183c58ebc759a7ff218f11e082d960a0a0caa5f01848f30b1dad6045
MD5 6fd96f48dc8d2adf2256aba922cd64bc
BLAKE2b-256 2618d1a402744899c1fd1bb0c9d9e174aeb6cc607a00ab9263b6fc1d70615349

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb8c7b82c8942ab6ed94141517dd9426e990d47c130906566b2ea77cdcfacd68
MD5 dad25956f1f486faa139201b5b4c3c7e
BLAKE2b-256 037277b1376652079e7e74f6e7787b532e9743748d0993ec3dc5d087c66165d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nereids-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b304393a8597ed8472b0da86476c2cad52028011a30b42ed20df6c283a534e54
MD5 523ada34da697d9839b8fe05bd90d42b
BLAKE2b-256 33fb820c2046138a78762c702b6b29ea3fd8773178e8e13b43cc13b2c1dffb3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b136c5d1b1bfcc7d92c65c85c77bc0d547dbc863abaac15ee7950626902f839e
MD5 106671beb30be6f3676f4df7be4b1f18
BLAKE2b-256 a5799ee7e70ca481906f1881451c4647fd7bd070f05288f5226bfd66c2af3065

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c469060f9aa14784b1a67ab806d80bd5b8b20cf897aff0879dc44b8992c61a3c
MD5 d3ee64ac53a621c74ffd6a0406c633d1
BLAKE2b-256 d9e4ffefec4befd4af9fbeae806f944fcaaafa618a1a0426ad5496307e844450

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nereids-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 422be7cf0fb8fcb8af4809da3ce83a80b016cebf0864cb4b5922a25806820a76
MD5 ea919b1d8ec5ec50754b60e6d0def29c
BLAKE2b-256 a6eb1326e6b10cd0fc4a098098c7fdae9c05f7df78f3a9e1d829a257b3aece86

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6865ff21d628d0e24c4f5c8ac0a9108500afdfaafa916527ac979f808d452a4a
MD5 dd70f37f4be995c409fac037b904ec81
BLAKE2b-256 e6dcfc74e4a84d600631fad8ed52f4d09462dda07f5fc8c34758259e7adbe1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28f25f5ad1d0c80c3168d39ef7191145aadb5609212b6e537084df1aa1868a0b
MD5 081603e556d5ee921bf8affd3f5995f2
BLAKE2b-256 751ec9a1fe9666346ba05a83170820a7cd741b3a85f4adbc057dc0ecee98b639

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nereids-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3835f20a10a1bcdace8952b210bc65cefc3c46f9dac5bc5d9cc38bcfa26f95a1
MD5 3078280b371521646f7f558f7ec46a9f
BLAKE2b-256 1cb71c250539e90d240d69b8f1434b5928f599c09b60f9c5bba991e5a67eb23a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 965287f97f026685e605b68e4a73540598e40f6ca7589b2910b86f668126493e
MD5 ca8caead2fcb6bf6cebe78d2794a5d15
BLAKE2b-256 c99b0b46d85fb683cd716b27d1da46cb70d405dc843bfa5e991fe6fdca47d4c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8da066346a3c4807c9131917d45b9dbf0636e5d4046af7932ae0ae84649537c0
MD5 28830bd25be415db3c2639c273117a31
BLAKE2b-256 ba684269d6a697053e97239c9b8c801b0828d31224a800e6c25aa132777a8de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nereids-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for nereids-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c7ae729ea11a9b35da80eacdca42802021308d666fcafd7c6a75dfa33ae01eea
MD5 8b9bea64f9e573434a58e3191fcd03ac
BLAKE2b-256 581321210800775b90348804064293c9ab4ba5b4858609ceb276f95d931b0274

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22cababeb5815d368a7bae72e5d75cdd188faa1c8e95875169630fed639a1823
MD5 b80813fcefb04a2aab07bb3779bd077a
BLAKE2b-256 047ebcc4063a99bfce42e7cc097a1c667457fde7ea55819c5b8a0e79366cca52

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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

File details

Details for the file nereids-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nereids-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa7e3ecc7bdb8e1721be46775fd09fefc714b173024a46dc87c2ebe2309cf423
MD5 9f1d3420b37e40e45243b7ab0c42574e
BLAKE2b-256 e3ba6e155758eb5d6559af31bf6edbd0929cdfff840e9b68408b1eb3daf446fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for nereids-0.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on ornlneutronimaging/NEREIDS

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