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.4-pp310-pypy310_pp73-win_amd64.whl (872.6 kB view details)

Uploaded PyPyWindows x86-64

sandiaspecutils-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sandiaspecutils-0.0.4-pp39-pypy39_pp73-win_amd64.whl (872.7 kB view details)

Uploaded PyPyWindows x86-64

sandiaspecutils-0.0.4-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.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

sandiaspecutils-0.0.4-cp312-abi3-win_amd64.whl (875.3 kB view details)

Uploaded CPython 3.12+Windows x86-64

sandiaspecutils-0.0.4-cp312-abi3-win32.whl (807.7 kB view details)

Uploaded CPython 3.12+Windows x86

sandiaspecutils-0.0.4-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.4-cp312-abi3-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ i686

sandiaspecutils-0.0.4-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.4-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ i686

sandiaspecutils-0.0.4-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.4-cp311-cp311-win_amd64.whl (875.0 kB view details)

Uploaded CPython 3.11Windows x86-64

sandiaspecutils-0.0.4-cp311-cp311-win32.whl (808.6 kB view details)

Uploaded CPython 3.11Windows x86

sandiaspecutils-0.0.4-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.4-cp311-cp311-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sandiaspecutils-0.0.4-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.4-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.4-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.4-cp310-cp310-win_amd64.whl (874.5 kB view details)

Uploaded CPython 3.10Windows x86-64

sandiaspecutils-0.0.4-cp310-cp310-win32.whl (808.4 kB view details)

Uploaded CPython 3.10Windows x86

sandiaspecutils-0.0.4-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.4-cp310-cp310-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sandiaspecutils-0.0.4-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.4-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.4-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.4-cp39-cp39-win_amd64.whl (875.2 kB view details)

Uploaded CPython 3.9Windows x86-64

sandiaspecutils-0.0.4-cp39-cp39-win32.whl (809.0 kB view details)

Uploaded CPython 3.9Windows x86

sandiaspecutils-0.0.4-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.4-cp39-cp39-musllinux_1_2_i686.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sandiaspecutils-0.0.4-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.4-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.4-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.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56ddf9a6ac92d9877c3225f3379053490e0843788771509bb36fa83bb820c6ce
MD5 c30c22821cf13c4e013b1570f2b54b73
BLAKE2b-256 ecf1edc49d5c01f10e8bbe7643a12a0c459c334d4fdd4d0a7b56ed3ae535f7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a6e2a60080b5f97324633646e6a6b715c47c4984aa87823c73f5ece3639c083
MD5 6005d865ed37ffad264d3a5d41826c2f
BLAKE2b-256 c354247e6328fc82cb883448f4161369f913bcc46eecb4d8ee7d33500fca2ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c4792798998e3a242c755b7cc530dd0b1e89528d03b6159e29b9cb2cf0f8fab
MD5 2167aac47714b3492bc4e926b2b528ab
BLAKE2b-256 fe187351316ed0d63dd310e7fa9e626eb668bfefc90b507ed0edff85f011ba5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4d5518a6b43dbe08c18ceac4aa8f41688ab1d37116fa6b0a4e61c7012f441e6c
MD5 ae79e9d579c0d2e1320405d895d82626
BLAKE2b-256 49d82d58d7dd67d2d4905f434bbbf621e66e95247ba4e2d205b9204dcc7f5d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a74fc5de72597c28906dcac1b37d2f87ae6bf9045fb2649fd74a54fdbf07d3cf
MD5 6b40b136f6ed25e3699a58f7cd407821
BLAKE2b-256 11da29fefaed2792b62cf2e8877eda6ecfb30ac022b3cb1debd841f3ca791426

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f75d06a59752b6e8940582f42e12a1eb9c881ee08c3f223b5799782d7511ce46
MD5 98f5fd1e50b9760bd1e4fe8ad4835e27
BLAKE2b-256 06f5837597897efb118197555e3f29320ba68117f0ea6c09dded8961ec91d65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-cp312-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b9044db79b6ae4438dc11f331a23296794b1db107d42f0234a5df63cc7d99298
MD5 e074d9dcf1bb120470f924dab89bb0fe
BLAKE2b-256 798ea8ee40fcb61d20312adefab2ca36195b7ceb8969698e29454d9f040a42de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sandiaspecutils-0.0.4-cp312-abi3-win32.whl
  • Upload date:
  • Size: 807.7 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.4-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 60fc468c971bf68526365898f0217c06d6e0a88eba88238cafbb8d832a657afa
MD5 8beecdddb8eacf1ac82836f04b9a9e03
BLAKE2b-256 22e38f5c83266519c6f337931ab562ae0fa3a8889cf3be1334f0024e64c312ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65f3fa8589d7d30b089d3a6b076e90305dd46172fe2497588d8ec18409e44669
MD5 0412532bd885944add67cd914a86e1b1
BLAKE2b-256 0e800765171876213667a17301c19901e83fb3c019c07cdd1c6a62d992a949f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8214b2d3a5408bb473c277dd108fbcc0de6b0484bd55195ab381b999f9a7ff47
MD5 fe330f6b5eb1dcd73e3767483711b892
BLAKE2b-256 a75f3475b01be0a19b66117830168c6ef3d84cf25fa765595a76a3a2d73fcbbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2e2d418ff418db16d61337d300e9765bcc82ade31397f1dd096cf164a300733
MD5 f96b91cfb2b7f7b5d6314b8fb947d815
BLAKE2b-256 606d26b1d9d933a89ff3ec79d04719a180ba2bf8841cda62c85b623413bcedf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce3918c1d2c560f4b79b188ac2c0e795955232e3aab4d54463a638821a53247e
MD5 39d7a27795c0ef6bc3771ff4798aa251
BLAKE2b-256 58a8e3a5362b443b66bb9d359dad67d1cc61f2ce2e6a17f2643f3988fdd87df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-cp312-abi3-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp312-abi3-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 75f6fd52da1354f020711873fa4e8236ee264afdfa09370fda5957d2662b42b1
MD5 677f85c07ece1dc847551790037dd36d
BLAKE2b-256 79c96b3d80d3797d21c9c0941d8958330e05794ebabcf5506ee6890f9332f453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a289c028d144af1c611ffb367499971d56b584be8af1154b3ae782e45daf923
MD5 2fac3e3fef47649340602c18fbcc1964
BLAKE2b-256 d286453537b61411437fa41828a25099af728509c28302c23b524dfa636cf94e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7bf8ab16f60c9fc6952cdd284641808703ecf0264466b3fb075ebb31cb32460d
MD5 b2c52398af4b14077cfdd3cd0d6ed652
BLAKE2b-256 aecd405ce87a8253e579acb6083849d014f7859430c7edeea8dea50a3affc84d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e214b3c043ac790106ef5486c447d2a386b000e5cd601a5e30aa0ebda740b7e
MD5 88013ed148390e26dd8ffaa75b20c256
BLAKE2b-256 b106901136406523af0bd8899ca053d6391aa17c1243a55a01983f3dd504b8ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d114b14d08df1030dd0fd5c3c64a17ef2f4621eccde8b564d8cec93b99641918
MD5 021fe1215589589ab237684920c62bdf
BLAKE2b-256 4978b20d8b03e5d1d99730ed6144b5900d15af66280c573e2e71a52cd0dbc06a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1144424d5ba0abc514c2a6439f288b7dd1863b26440f91c4220fd8c3bf66699c
MD5 3aa9a7acc369f5a3cd8cd79f292c48ed
BLAKE2b-256 851787161e58f01176d1208369f8cf74608d62100aaebf3c9f8e2c26863b93dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19b2c0219b660bca0fcd0a4055fec3fa13bb48c5a129ea0abdf314a187793811
MD5 0394718ea0df03369af47f20efd31adc
BLAKE2b-256 978612ad693b842942f6cddfe6ed4f02a362cd1d1f7b11d7e37ab6c26b285784

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 ace85adef7442f4d4c975500d6ab5e7ec8ab56c8fce6fc1cee53c29e71e0b10a
MD5 93c1dcb4720bb1d1e309d7b1ec5f6030
BLAKE2b-256 bd0b41313f25e705892add54f5b082822c6ac2bfdff39ba1677e9e3ee84454fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6f79149e703f06dd23e956b736ddefdae7fcd346575b377fd2cbc39b4bb6519
MD5 2915a03cbae67e3e1ae0de93fc1a1f52
BLAKE2b-256 02e895142ce5319a1de37b8a3f81e24388d6bd4cb1d8c68d5692d2317194cd00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dcf7c9a947ff3062b33dd77b42d748524617a76f92c05b1c2e8e171a9eb90cb8
MD5 05595ccb04a701ed9ab5fb5c8bd2ae8b
BLAKE2b-256 003e4d3a2a20992c5567e9138fcdde00fdff13ac974c13ee3a16be120e4a6791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac25253fed20fb6cec05a56779092b658b3ae10b6906ef09c665032698d6f558
MD5 1253bd16592c70dc3540879a74f290fc
BLAKE2b-256 06b70c42fa4b50e61fda9d1d9674c85786c6907b0803b92c043193250798b3e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3707671b21bf09fde070816369a548223c8fb396c8f6e841052f6ef195b175b
MD5 33e23b4c30de4d95fe2937849a19272b
BLAKE2b-256 aa285823bc56b87e025715fd572c019cf74b95a607a32c39bf1c96da43a8fd7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 334eebffe0701d25762ee626178e5e8f43bc3e8439d65389664e4e73605a393d
MD5 7d9de7e0a8e2c2cb4c5e23f59cc9f3f2
BLAKE2b-256 2fb45c69424b5efb978bdf3c3bb301ef6a478d480a957722ea1e004a580d313b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ec0401c4465ff7954bc2fae7061e37bea2975ec0d7ecaa3be603213305d0289
MD5 20ee974c9a808158e43ed19420e55055
BLAKE2b-256 d323c1585fbd394b30aac218a15a807ad1b7afcf4d3bec8f067f4bf81e30ba4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 dabde53b599f3901a58f81adffa14d4b0f8862c77309e03e50424e5dbce5d5bb
MD5 7d74119f2563c68076f4b7e0b001f0bf
BLAKE2b-256 59364626ca76f72e328a29ffc112894b991b80f85a72b1d88f93682d5154d7fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f0a68f4bf457a6ed4a020ddc692a8c423092df26c82c4a1e0f0f74ff3a46be0
MD5 9df427f6ef6ce18e7c795e90ba3ddb2b
BLAKE2b-256 4fa2f4d8b26875dcf701abdb4406cebc8c7d5ecd8a2f6e4b59f2dea266fde74f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: sandiaspecutils-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 809.0 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1699aeb18dece58ffe6e089fac4197238445167c2f4eb8d704038203b0b0f4a0
MD5 d8b61baab47793e58c07c06f7af0af48
BLAKE2b-256 c133905ca164521afeda5b1e3a7622869afc5d93bcf374900973e0e789e4d577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0e449a4e0a3629478c80941a19b305fb0fb05b6a3897a4b9811f94e177d2551
MD5 f1cd36833b3ec43f375df0403ad1546e
BLAKE2b-256 3082fe1d6c24a3ed717a73ee63f32f8a8c77201be9de23912f6a6df8e80d7363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cffd10edfc6f96fae8a82def5da9b9b078225b8fd1b46fb0aa5b3648efd5e004
MD5 ca3445f9c0c533cbde267148446cc593
BLAKE2b-256 e226f6786f769607c97f4bd878723a0c287e8bf35dcd3408a54302295f7b9d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b85eb58ba27b93a280931217fa33769e79f5508cab4fdf5ed8886145398dd8a9
MD5 df265179ab792d2ac9a3275e11a25c11
BLAKE2b-256 ab869573de23bf64043f5f029eb73393349c5adcd56ac74badb9872d4ef3ee2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ecd2133706111d3d001bbf767f7e26dd03208fa2f511e4c40e85c1a6c2fd888
MD5 aaf88e407ed45ffce99ee76594a3fd42
BLAKE2b-256 5dedfdc7d8b2a0b0db9d1dc1189e680746e174b98a19af3a7e80d94658545cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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.4-cp39-cp39-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for sandiaspecutils-0.0.4-cp39-cp39-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 6b2495e2ed460aadfeee5ae27bf81b62ba43db6461583fb62795b9d6850c322f
MD5 472b77145e027e9a620b33d81d0db8dd
BLAKE2b-256 61962e370c2ad19a2faa8a67c738c896ee07beb0ae1c0c465b6e2e23b4c8f731

See more details on using hashes here.

Provenance

The following attestation bundles were made for sandiaspecutils-0.0.4-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