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)

# 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 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

sandiaspecutils-0.0.6-pp310-pypy310_pp73-win_amd64.whl (873.6 kB view details)

Uploaded PyPyWindows x86-64

sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-pp39-pypy39_pp73-win_amd64.whl (873.8 kB view details)

Uploaded PyPyWindows x86-64

sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-cp312-abi3-win_amd64.whl (875.6 kB view details)

Uploaded CPython 3.12+Windows x86-64

sandiaspecutils-0.0.6-cp312-abi3-win32.whl (812.4 kB view details)

Uploaded CPython 3.12+Windows x86

sandiaspecutils-0.0.6-cp312-abi3-musllinux_1_2_x86_64.whl (1.6 MB view details)

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

sandiaspecutils-0.0.6-cp312-abi3-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ i686

sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-cp312-abi3-macosx_10_14_universal2.whl (2.1 MB view details)

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

sandiaspecutils-0.0.6-cp311-cp311-win_amd64.whl (876.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sandiaspecutils-0.0.6-cp311-cp311-win32.whl (812.8 kB view details)

Uploaded CPython 3.11Windows x86

sandiaspecutils-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.6-cp311-cp311-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-cp311-cp311-macosx_10_14_universal2.whl (2.1 MB view details)

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

sandiaspecutils-0.0.6-cp310-cp310-win_amd64.whl (875.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sandiaspecutils-0.0.6-cp310-cp310-win32.whl (812.8 kB view details)

Uploaded CPython 3.10Windows x86

sandiaspecutils-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.6-cp310-cp310-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-cp310-cp310-macosx_10_14_universal2.whl (2.1 MB view details)

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

sandiaspecutils-0.0.6-cp39-cp39-win_amd64.whl (876.3 kB view details)

Uploaded CPython 3.9Windows x86-64

sandiaspecutils-0.0.6-cp39-cp39-win32.whl (813.2 kB view details)

Uploaded CPython 3.9Windows x86

sandiaspecutils-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sandiaspecutils-0.0.6-cp39-cp39-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

sandiaspecutils-0.0.6-cp39-cp39-macosx_10_14_universal2.whl (2.1 MB view details)

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

File details

Details for the file sandiaspecutils-0.0.6-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ee8ddd7bd8a54fa105fda4e5fbfb7ed6597930a5d822f32e4e6454c84aead68a
MD5 43d3dcc436d2518c578fa4f74cc832fc
BLAKE2b-256 3d0fac19d162b7f5e57b397f6ed6c1cbdfab5e5d784c5a660bd52509d028d8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp310-pypy310_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.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0d9498109919985b74ac8454b84c0d50bc8c834371597700110894f1c65b92e
MD5 92128780063be6d5ffb5937586b5af00
BLAKE2b-256 2bb8171a31865798438dcb6d2b35bb1a80a265117901b49a86a70899e736bcca

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01a13229d1943f9e59fbf7f8c13b1ee88fc8b1207a5b8c0389888fbf532a4fca
MD5 ebef7b5c9488e6a64d846c1e6528c058
BLAKE2b-256 93c34ba86c5f6eb44de9dfa35f6a713134b9b5ab9caf2ff35a62571d8835aea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.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.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 561474ee71b1723310dc292e1e2c929032461376aaa2b0ba57f20d7d098007e1
MD5 9e44d4161c05547d5fe7b29fd6cfb351
BLAKE2b-256 a02a41159efbf2c15931632af6407f2aa5d4ec24888363638c650b4d10eb1290

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp39-pypy39_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.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d2a7ddf06c7eae965c3a43579e857888ce2aac1845736fdf0e7ed5b109a7fb7
MD5 dabc9ccfe4e588f23e580df895847b2d
BLAKE2b-256 fe75b2bad74638738f24d60076a57e135730347027af864344f306afacff0faa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e989f6e285fbbe2762ad14473c0926b58e989fae593e2dac2eaa16167bdc9ccf
MD5 25d8357ff3150261e7208d6f19c306eb
BLAKE2b-256 e9e7240799efee12ef4f39be5dd653787e79fb6b33ca5fd5c3b02cf012ce8a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.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.6-cp312-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0c371dfd06ea6507ee794606de080c38b869bbdffc3306c6179c6a765c895015
MD5 6b0fe03b3331941d578fa08b66ad395f
BLAKE2b-256 557992d2104e3e02ca03b39f08ba4f0021ba8afbe330e7ec093939f0c92b2783

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp312-abi3-win32.whl.

File metadata

  • Download URL: sandiaspecutils-0.0.6-cp312-abi3-win32.whl
  • Upload date:
  • Size: 812.4 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 ceb3eae3f50e117a2e177a66a36cc3f866fdf0b6a4a14afe989acb8b227e30cc
MD5 cdb0faae89a70d4741d1d16bcafb59bb
BLAKE2b-256 e50c4d11d6e97bc8d38cdae62ea5f1c5d1658e18b449d6f2351c43f8cc6bb021

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 623f271c25bb0b43c65dd20f3eb9b09a57df11f3bb39a3c91568d7790dbfc936
MD5 2abeeac43d933612415aad7492df190d
BLAKE2b-256 6667eb7b3f8ebca5b5b9b07a8541b003be896bc435c6a1ff9db0ae92e6728f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp312-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9725b29b30c1d3b88451524fea9ff62feb12fa30a6d3f495cea9e8323b531990
MD5 008da6c7f3aec66edb1735dfe558fb02
BLAKE2b-256 11f6101ebc3869e55e37da4ba1bd9ea5f0ce277ff9a7cd66b8157b7d9acc12e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp312-abi3-musllinux_1_2_i686.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.6-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa1fce06bcf88a83d9ed59fd74577767a446334cd2fcf124be32ce18ec7b1222
MD5 aa57fca0bc6bd7898627584e528f7240
BLAKE2b-256 d87a381525edae7c933725e10aaeeded869006aecf2b34d8db6441e41c688cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_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.6-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ca6edfe0f0f0c7870cf555864a8161a5ba64a2049c60ce341048d8e9609ed38
MD5 666103e2c15ed7b9996c4ec6788d8fd6
BLAKE2b-256 f1fe834066a67b22a090785037284426ecd72272585bc89175bd85bf360dfb98

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.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.6-cp312-abi3-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp312-abi3-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 52bcdcba0d569a19a56248d1569bacc1c2a1b17de31b0e0b0d02a3fb0d6b982b
MD5 172ee4529a3cc16650ebd4589ab01b50
BLAKE2b-256 7eb9766329adb049fa22714c0419301e31a63c174488de518f9df0ec0a832ab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62fddfae7b25bef475bc6dbdbc065d0a28ab914f20362aea941befe98292f93a
MD5 e50e97d5ad8898eed6073f4f78bb722b
BLAKE2b-256 5d8752ea99c1ae21b677e27faf415e0db2921bc6c1c085b567d498eabac92d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0f2a5e1b70ad52a9036ab7cc2f345460105c3d6a63db1a62aad614fbfb9d818
MD5 812947a2bd1d935293018812db4865eb
BLAKE2b-256 205b1f96cbd1b5b2f8858d6af8835f4af75a84b174f7436273ca08f965798702

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0593aaa828f8a6b8610a42c5ee511ad294a363c4b82ecc0ecf82fd4e1d611b5e
MD5 fa248a4403db3480d218cccc60233491
BLAKE2b-256 489f545cae9e86cc0ee642f901d5163748f14770c9064fc9a67b7a2b7a2763e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f75762b42cc4acd52c6fc6089931e7aae588127936048f59f303c9614862b9c9
MD5 49467e47d86c99589c5fb2d865293b32
BLAKE2b-256 daaae4e015bf1a240dd36671fe016831cb1b9c4032086790b8c65fbbcd670a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp311-cp311-musllinux_1_2_i686.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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70428da47afcc7209982f15ae20548d0e0b84af88edc649c79a96f5731b41877
MD5 e898f2badbd1b241e70da47590670bcc
BLAKE2b-256 4095671a4ef04acf2514f4061601c9f6ee4ca7c675295855a13572e5c3b34df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 979cb8da2ad3e581f904fef6fb91c23c65a4432c4d22e9696815eed1cc6744bb
MD5 ff3f36f93055f8aca58c2edf0b530549
BLAKE2b-256 616b0024a186c4db19cd209e796761322c8756404b34a1d9e34bbe50f080f896

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.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.6-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 a5dcb772b6891d4f4f73adcebd8e81832443db5664923c395a538455f085e4ce
MD5 92628089483ba00fcb332ac51a667d05
BLAKE2b-256 87c19b5a5898a632a21dc66455c0d70dbd7fbfab0a9512844dc0b8772a57f853

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0d7674fb88bedd640ce24e63a53ff72b87edb8d1734f55d4995f56076fe3019
MD5 6d12baf8d168c9c05e04e9fce0638f9d
BLAKE2b-256 c05736141e705e1180a7723838540568de318d6e3a5b1b4aa78f5c791cd69eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3f8a1e2fe1aac92c0e87e15e4e1979ff7902f2d11b97e9f010a926ce0b7dd632
MD5 34009cb4c877e4d773caab5ea4764056
BLAKE2b-256 f2776abe27854b12804b4f1ba0f9dcd5a920b69b8278e6cc1aecfdec94a9f3c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9d881d21c051a5748cffb46dda9cc50411a930ae579bce75f71f7e477c8fe85
MD5 45d292491d7525e41e6691b12edaa53c
BLAKE2b-256 c62ee3939147397db3a5fa063974031b8a4ccd3c0e53aa660a7629f71506a4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 975c7f80ea079ca39abee4d06d0af8b9bb3576896529da9ba6862374e4d54511
MD5 8f10a2d91580704f265efc8f66ed3c3a
BLAKE2b-256 4f87760b68a4a5ee65708dd0275bee406501ae8f0c8b0a83392c16d89705f267

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp310-cp310-musllinux_1_2_i686.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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c129cf12999ae561610864bfcd26b59d7dc31b1147e175c134f00687ff6a6aa4
MD5 0cd642a3edfc2f5ffa2ffa4a3ce830a0
BLAKE2b-256 bcce65db5e132a3970c29d6318a814e3c642b4d398ec80a2e26364ea0356d593

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c9d1bad0d7684a1e8e888dd6b542e173fcad3c04440bf3ef4c32bf8d84ef793
MD5 03538ad5340cd6fb1d8b49aaad8a7d83
BLAKE2b-256 a1004be690dab8783f772ab250dbeca3eff18d421c61471b963cd00a98ffdb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.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.6-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 6b88483c8b2d4f9bdafea034bece2703f7f9f203f860b40db2a90212c220372f
MD5 a3b2efccc28727006b8bc2535dee6a19
BLAKE2b-256 0c81512d8b21a13714e650b0882e3aa3391e9539182438abb89a7497c9bfa355

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 275c80eb879355d71a3c1d4bc7244126614ba8e0c4954cc5685e043bc1c6adc0
MD5 daea4d726a40ae039a293a2a6b1907f8
BLAKE2b-256 96e58b88a328ec0a9000a0cd413b2f28c10d50e8e8dc9dcdfe16d4cb8c123be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: sandiaspecutils-0.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 813.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0af95bcdbdf6ecea34227ea684156240190ee081318f6bd193d11f6b486eeb47
MD5 7732dc5883f65dd17410d0861ae34192
BLAKE2b-256 14e88422ef7e4138ee3698125082c4e8638118941b715fc06e7b3697cbd0e4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30062c795ac733bb82e5c72459b2bbde830c166906a135a4b5c7c867ba3360c3
MD5 ae4466b48a0fc9a7c0adc9e8d180da1d
BLAKE2b-256 0fb4df01a3ac5d1cf37fd682e1b4d8eef409bf0e7eaedcf952548986518cf79f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f18cca1c199dc54c144f28b71159be18c705adc7546757b83d90f8932d24fa5b
MD5 7f8c61bf430ec0523afb645b995bde10
BLAKE2b-256 69345d9db5bbe5af20c98e07796d2a0ff53d0d9e4607570f0135405297f4c9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp39-cp39-musllinux_1_2_i686.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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2269cda1516f18694d314664c1b89d50e044fd7ce0e24b891ac7f6ca314cddd0
MD5 fd9b35e60a2d9da7424184b8960e4a90
BLAKE2b-256 1a321984eca62698bc0c86ce0664b94dd1b64c82a8af5d1e8f1fb7ef29458a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae5f3191eff7e766def50b8d63c1bf677b914dd37bc6d16345189ed18a6ea403
MD5 24c51feb5753e9834a40bed85eea44ce
BLAKE2b-256 ea661423250869256b4da8264b95c14d807d7c1e9e362652794fe01499aa536d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.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.6-cp39-cp39-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.6-cp39-cp39-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 0fccb1e92d881d3a6d4f56fdd0c1de3bbd6457572ce1ac627f5a2e266af52668
MD5 18c36f4bb64d4699961ceb96ed4d1597
BLAKE2b-256 dc5de0e45ccb5ddc1f279d6f2cb8061aea7f385d70aeda6e32cd2a42041f3b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.6-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page