Skip to main content

Python bindings for SpecUtils using nanobind and scikit-build

Project description

Gamma Spectrum file utilities

SpecUtils is a library for reading, manipulating, and exporting spectrum files produced by RadioIsotope Identification Devices (RIIDs), Radiation Portal Monitors (RPMs), radiation search systems, Personal Radiation Detectors (PRDs), and many laboratory detection systems. It opens N42 (2006 and 2012 formats), SPE, SPC, CSV, TXT, PCF, DAT, and many more files; altogether much more than a 100 file format variants. This library lets you either programmatically access and/or modify the parsed information, or you can save it to any of 13 different formats, or create spectrum files from scratch.

This package is a Python wrapper around the C++ SpecUtils library, with the bindings created using nanobind. SpecUtils is primarily developed as part of InterSpec, but is also used by Cambio, and a number of other projects.

An example use is:

import SpecUtils

# Create a SpecFile object
spec = SpecUtils.SpecFile()

# Load a spectrum file
spec.loadFile("spectrum_file.n42", SpecUtils.ParserType.Auto)

# Or: load from a Python binary stream (uses Auto parser selection).
# The pseudo-filename is used to prioritize parsers (e.g., by extension).
with open("spectrum_file.n42", "rb") as f:
    spec.loadFileFromStream(f, "spectrum_file.n42")

# Get list of all individual records in the spectrum file
meass = spec.measurements() 
print( "There are", len(meass), "spectrum records." )

# Get first measurement
meas = meass[0]

# Get gamma counts, and the lower energy of each channel
counts = meas.gammaCounts()
energies = meas.channelEnergies()

# Get neutron counts
neutrons = meas.neutronCountsSum()

# Get start time
startime = meas.startTime()

# Print out CSV information of energies and counts
print( "StartTime: ", startime )
print( "Neutron counts: ", neutrons, "\n" )
print( "Energy (keV), Counts" )
for i in range(len(counts)):
    print( f"{energies[i]},{counts[i]}" )

For further examples, see the examples directory. To run the examples, run the following commands:

python test_python.py
python make_file_example.py
python make_html_plot.py /some/path/to/a/file.n42

Installation

You can install the package using pip like this:

mkdir my_venv
python -m venv my_venv

source my_venv/bin/activate
pip install SandiaSpecUtils

python
>>> import SpecUtils
>>> spec = SpecUtils.SpecFile()
>>> ...

Or instead, you can compile from source yourself, with something like:

git clone https://github.com/sandialabs/SpecUtils.git SpecUtils

# Optionsally make/use a virtual environment
mkdir my_venv
python3 -m venv my_venv
source my_venv/bin/activate  # Windows PowerShell: .\my_venv\Scripts\Activate.ps1

# Compile and install the bindings
pip install --use-feature=in-tree-build SpecUtils/bindings/python

# Use the package
python
>>> import SpecUtils

Support

Please create an issue on the SpecUtils GitHub repository, or email InterSpec@sandia.gov if you have any questions or problems.

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

sandiaspecutils-0.0.11.tar.gz (553.8 kB view details)

Uploaded Source

Built Distributions

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

sandiaspecutils-0.0.11-pp311-pypy311_pp73-win_amd64.whl (920.9 kB view details)

Uploaded PyPyWindows x86-64

sandiaspecutils-0.0.11-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sandiaspecutils-0.0.11-cp314-cp314t-win_amd64.whl (955.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

sandiaspecutils-0.0.11-cp314-cp314t-win32.whl (875.3 kB view details)

Uploaded CPython 3.14tWindows x86

sandiaspecutils-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sandiaspecutils-0.0.11-cp314-cp314t-macosx_10_15_universal2.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

sandiaspecutils-0.0.11-cp312-abi3-win_amd64.whl (921.8 kB view details)

Uploaded CPython 3.12+Windows x86-64

sandiaspecutils-0.0.11-cp312-abi3-win32.whl (852.6 kB view details)

Uploaded CPython 3.12+Windows x86

sandiaspecutils-0.0.11-cp312-abi3-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.11-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

sandiaspecutils-0.0.11-cp312-abi3-macosx_10_14_universal2.whl (2.3 MB view details)

Uploaded CPython 3.12+macOS 10.14+ universal2 (ARM64, x86-64)

sandiaspecutils-0.0.11-cp311-cp311-win_amd64.whl (922.2 kB view details)

Uploaded CPython 3.11Windows x86-64

sandiaspecutils-0.0.11-cp311-cp311-win32.whl (853.1 kB view details)

Uploaded CPython 3.11Windows x86

sandiaspecutils-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

sandiaspecutils-0.0.11-cp311-cp311-macosx_10_14_universal2.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.14+ universal2 (ARM64, x86-64)

sandiaspecutils-0.0.11-cp310-cp310-win_amd64.whl (922.1 kB view details)

Uploaded CPython 3.10Windows x86-64

sandiaspecutils-0.0.11-cp310-cp310-win32.whl (853.0 kB view details)

Uploaded CPython 3.10Windows x86

sandiaspecutils-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

sandiaspecutils-0.0.11-cp310-cp310-macosx_10_14_universal2.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.14+ universal2 (ARM64, x86-64)

sandiaspecutils-0.0.11-cp39-cp39-win_amd64.whl (922.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sandiaspecutils-0.0.11-cp39-cp39-win32.whl (853.4 kB view details)

Uploaded CPython 3.9Windows x86

sandiaspecutils-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

sandiaspecutils-0.0.11-cp39-cp39-macosx_10_14_universal2.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.14+ universal2 (ARM64, x86-64)

File details

Details for the file sandiaspecutils-0.0.11.tar.gz.

File metadata

  • Download URL: sandiaspecutils-0.0.11.tar.gz
  • Upload date:
  • Size: 553.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sandiaspecutils-0.0.11.tar.gz
Algorithm Hash digest
SHA256 284c60d79adc3ae794e435b0f9f0793459bebc80efbbe00d4815d5459b2fe4b8
MD5 97a5dc30e105a4d0176bb49bef2c533a
BLAKE2b-256 4c1020ea67c06480b9242f512d37ee7458885272ee82fa3206d36d47f92daffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11.tar.gz:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40036a391ad2a1721aa99330fe8b48061960336960d36e0c2dabfcc73246a9f4
MD5 a1e98d2a45f3130166255ddcc5418c61
BLAKE2b-256 3ac2f35377c0917d7b8baea076b6a9f60f0fafb5e0ce098ec5e7f0753e863dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a06cdff4479af3e81a94ac89d651da11598d30d78786df0585e7e8c7dde70b42
MD5 65e12e804b3014a226ade24cc7086c59
BLAKE2b-256 2e25787d52c56460d181f6a3b09be237435a18a3c0c20f9e94b708311555adc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 66816a349596b9a7a84ea8ac289e334030a27b8b74a361cc87c660c1dbd9885a
MD5 88253f659758deb33a886aab775a8924
BLAKE2b-256 147011afe2fc9580386e6c775c9ca4a896354b92de24198a97f15e9b2fea674f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b8b0ad82cee60dfd8f09da3e06cdc71c8b376f3faf49fcf951c8c943d723ae70
MD5 a86a71a72a6f2bc967df20eacfa9c896
BLAKE2b-256 f95df024fc930f0ea8b077a3f57fe6c459e63284a742913aa485eaba53a72915

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp314-cp314t-win32.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cd12d7564fa2022ee63eff2bae973fa4dc7b766a46f97785b8ed323c4123723
MD5 6d361cd02cdd085237a0de50cb4dc4b5
BLAKE2b-256 935d84ab7b9f27d294a020d3add72e195385454270ba35d81163b9d867def643

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fec41c01eaf0d67ac43a2bc36ea6ad735154e6d8c3d865328b88f5b79a389a3
MD5 acd51581d77319492443c0cae61194dc
BLAKE2b-256 0e7dfcab7d722397a9b649de0007ee974c8b4a6d9d4272309d9489e143bf606c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1361ada89b6e438e6cdd94f3b005023edfa4d4ef2839f9bd0dc03f017848a4c4
MD5 068de6649ea73dd9aa3d883c7b3889b7
BLAKE2b-256 8e9319bf25d3d3798805b84896dfabb8a1107b52176598b0504b15e64babbebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp312-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 bcb6d9c90d8a2a5f928d831334fa9b24e69f8d83331afdd6cad30dcb785ceb39
MD5 001761961f6bad9ba89aa3eda35e41e7
BLAKE2b-256 65251c2d1a477c0f6982192243a41690ee4664fa826043f9b4455b5709a0d9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp312-abi3-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp312-abi3-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 ae119fa67d3ca2cd090a8a1a240615770a2cda48a8ac73617263ca6ed74adbe3
MD5 ee0d617dbe0daefff28605d1040f2939
BLAKE2b-256 732a316c22d1bc0647a8214a171d48e9fa0182626d553a2e50385f2ca9cb4c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp312-abi3-win32.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7638fa936b6ee632b2d9d86b14e7ff5745f8fb6ba98d01b1f623f008fb09aeea
MD5 b23019dc79f44ad356a3b2592532bb5c
BLAKE2b-256 c5c942e082e81c1ee0edea3438981ba977e6ff275b0f0a0fb0c2085eca361171

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp312-abi3-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7b254662f11c5401b5741ca689c103070e3101dd87b170a98fb345afd3989ed
MD5 4db9903d154adcac9103cdf53d160a8a
BLAKE2b-256 978e256757d6e093a102dde49c656919ff0e96e6dbb1e634744d4f903d8fa144

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp312-abi3-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp312-abi3-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 b19bc2362308296029009e6eef38203fdc4be7cb787fc1d345135385221d5cec
MD5 2ea0432913e3d4ec22f9d4eadf216ad5
BLAKE2b-256 5d8d24045cb48762b3bf888da12c6bf225f4c61604f796de26512b2a1407d928

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp312-abi3-macosx_10_14_universal2.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4b03bed1be58667ac4d15656719bbc936077b9b21ad2010302fa410ea301b15
MD5 c2bf1e2a0c761d9853decc9b48e0d1a8
BLAKE2b-256 2fdca0304904b74c7b64ff915b5949c83a5732fada79e90755908628c84ebbd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f47f7a668f18d4f46c05a3ad05af47ab6f0f315385b836343cc51ab096df25b3
MD5 737da57674cc4d4efb01f9a33967a673
BLAKE2b-256 b1587745dd15a388155eeeb48963ad4033e727cc7f59c6128217f93f14a1cf4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp311-cp311-win32.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44d34eeee4b1dcbc77794fdb85e08fde59c208012f0a8960fb5f80f5bd72e526
MD5 ec76c86b2756a02a415abb14a8ff8c97
BLAKE2b-256 34cd6fff14e9bb1b0f701e8918c038ba8ba6674bf97a5ae5e5ac79dcd41b4648

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 605bdf11799ae07d2fe36ffd0f466bf9959e090aa715457f26091a105e13ed5e
MD5 9cdc88fdae036a8ad90f32da3204b56c
BLAKE2b-256 ec2a6e8ecaa62b38ed221e2154b22a09f00366205ff2a5627c3c506f8c40026a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 aee92927df1c422ab3d0e26302732ac61c3a2738422cf030ffada33804419799
MD5 84a61c451d454fed92124c1dc0a191d5
BLAKE2b-256 dd65309f3c236f32e69bcd39e58e5c096c124370738de3d467698a1ad522cdae

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp311-cp311-macosx_10_14_universal2.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e05ab9d73899ec01a6b4eb47c6387c66e35129c2103ebc77dcdad08122b0777
MD5 49497f2b09bc9f9657e98bb94cf53f43
BLAKE2b-256 b674f4faf0e7582ba9e6474a327a6f71873f29944d951823f27a984648c53806

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f84a56e9cdd227d875556e38caca037a4839a80cfd5d934f21b68c06ca1dac57
MD5 cfdb0f1132df7adcf82cfe2389ee6235
BLAKE2b-256 c003036ce9a241b3be96eca54708cdb69a49252e58ce8b4d1ed624e521888920

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp310-cp310-win32.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fc26dbe38ddb97064c0b926de6da19443ce61bab1190d40484d264dfa19f917
MD5 0e68fe33eb592c1c5fa9724ea53ad9f1
BLAKE2b-256 3edd4f1ff182b271050004ce736e885d41096af60ef2ad4db3d53bd86ef8b046

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a53ec30a1d432a23e8c3affb8161beae0c8c8f4804479ee4beda6bd160528e2
MD5 3e854c6cfbbd2baf9e4a50c0b1c0dcd8
BLAKE2b-256 6994da7a7d74c41b97f6036143eb346085df6c56615e59a3eaeb3acf2df72a21

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 e08619897e8699c729ae8bec9f5e8091c133ea52f2fef4a36f4612fd287644ef
MD5 f82ffec14df5a83fead529077b5e3a61
BLAKE2b-256 67e5f5a79f483ced7240f0f1a0aa582dc315031d10696c678feba37105d3a437

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp310-cp310-macosx_10_14_universal2.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 caa7d42e357269779525c28c7d7734d7b3b3cbb7415253038fc8269d0346bb74
MD5 5ab42425160d7a44299edf84c48a4c66
BLAKE2b-256 5d295530970236b197690a0b0d91debaf0cd5f00fdbc90f3ee71f92eb31711e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 766fe3526ccb438ad9a3a6e272d24227639553ca4248d72198cda66bd2b5529f
MD5 2dae9437b344aeccd7367863f7866d9a
BLAKE2b-256 857ee8fe856048d04138640ef91998a5be8a3c9973b69f3114b86e08ed3c419d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp39-cp39-win32.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fce4308b27f7f7f40e9eb632060771582ef46bd62edf8d92abd62d099c020c3
MD5 e1793faec9f183c44a560a5710c51752
BLAKE2b-256 2f235d88b3b38b5c4c4fb6eed0a95c843ada8e9a2904d31900bd3b012a615caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74b136a07bfc150799e4e68762fa5c3c3c50362a6788ba1ab772d7c2164d5bea
MD5 ba570fd3891ad8d957d8a441f9a56d52
BLAKE2b-256 13735541b287e4dc7441fe9677da3e49d6a1d37ca2cce56217df2f081b7dcb02

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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

File details

Details for the file sandiaspecutils-0.0.11-cp39-cp39-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.11-cp39-cp39-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 5679829555ac7411d21b2c91e290ae7d9b91e0d947f476a62fcde0abf6fefcab
MD5 6fa25732843114097a7185aa2fed982c
BLAKE2b-256 44cbd3a7f821b70888615f82e5124ccd179f238eb93ed3c3a5be7414adcdf960

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.11-cp39-cp39-macosx_10_14_universal2.whl:

Publisher: wheels.yml on sandialabs/SpecUtils

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