Skip to main content

Python bindings for the scinumtools3 C++ core

Project description

SciNumTools3 for Python

PyPI version Python License: MIT

Unit-safe quantities, runtime expressions, and validated scientific parameters for Python.

SciNumTools3 helps eliminate hidden assumptions in scientific software by providing:

  • ✅ Physical quantities with units
  • ✅ Automatic unit conversion
  • ✅ Runtime expression evaluation
  • ✅ Validated input parameters
  • ✅ Structured scientific configuration files
  • ✅ Consistent parameter handling across simulation and analysis workflows

Relationship to the C++ Core

scinumtools3 is the official Python binding for the SciNumTools3 C++ project.

The Python package exposes the same core concepts used by the C++ implementation, including:

  • Physical Units & Quantities (PUQ)
  • Dimensional Input Parameters (DIP)
  • Runtime expression evaluation
  • Unit-aware validation and conversion

This enables consistent parameter definitions and unit handling across Python analysis workflows and C++ simulation codebases.

C++ Project

The underlying C++ implementation is available on GitHub:

https://github.com/vrtulka23/scinumtools3

The C++ project serves as the reference implementation and provides high-performance support for scientific computing, numerical simulations, and HPC workflows.


Installation

Install directly from PyPI:

pip install scinumtools3

PyPI package:

https://pypi.org/project/scinumtools3/


Why SciNumTools3?

Scientific workflows frequently suffer from:

  • inconsistent unit handling
  • manual conversion mistakes
  • duplicated parameter definitions
  • missing validation
  • configuration drift between simulation and analysis code

SciNumTools3 provides a unified framework for defining, validating, and evaluating scientific parameters while preserving physical units throughout calculations.


Core Features

Physical Quantities

Create quantities with physical units and perform automatic conversions:

from scinumtools3.puq import Quantity

length = Quantity("1*m")
length = length.convert("km")

print(length)
# 1e-3*km

Unit-Aware Arithmetic

from scinumtools3.puq import Quantity

distance = Quantity("1000*m")
time = Quantity("100*s")

velocity = distance / time

print(velocity)
# 10*m*s-1

Validated Parameters (DIP)

Define scientific parameters with units, constraints, and dependencies.

from scinumtools3.dip import DIP

dip = DIP()

dip.add_string("temperature float = 300 K")
dip.add_string("pressure float = 1 atm")

env = dip.parse()

Example parameter specification:

simulation

  timestep float = 0.5 fs
    !condition ({?} > 0.0 fs)

  temperature float = 300 K
    !condition ({?} > 0 K)

  pressure float = 1 atm

  steps int = 1000000
    !condition ({?} > 1)

  duration float = ( {?simulation.timestep} * {?simulation.steps} )

  ensemble string = "NPT"
    !options ["NVE", "NVT", "NPT"]

Domain-Specific Languages

SciNumTools3 is built around two scientific DSLs.

PUEL — Physical Units Expression Language

A concise language for representing physical quantities, units, dimensions, uncertainties, and arrays.

Examples:

ESU_erg
m2*kg*s-2
kg2*ms3:2*cm
1.346591(30)e27*kg
[2,3,4,5]*km

PUEL powers:

  • quantity parsing
  • dimensional analysis
  • unit conversions
  • unit-aware calculations

DIPL — Dimensional Input Parameter Language

A declarative language for defining scientific parameters with:

  • types
  • units
  • constraints
  • dependencies
  • validation rules

This allows scientific applications to maintain a single source of truth for configuration and input validation.


Quick Example

from scinumtools3.puq import Quantity
from scinumtools3.dip import DIP

# Unit conversion
length = Quantity("1*m")
length = length.convert("km")

print(length)
# 1e-3*km

# Validated parameters
dip = DIP()

dip.add_string("foo int m")
dip.add_string("foo = 3 km")

env = dip.parse()

print(env.nodes[0])
# 3000 m

Documentation

Full documentation, API reference, language specifications, and examples:

https://vrtulka23.github.io/scinumtools3/

Documentation includes:

  • Python API reference
  • PUEL specification
  • DIPL specification
  • Tutorials and examples

Typical Use Cases

  • Scientific computing
  • Physics simulations
  • Engineering applications
  • Data analysis pipelines
  • Research software
  • Hybrid Python/C++ workflows
  • Unit-safe parameter management

Contributing

Contributions are welcome.

git clone https://github.com/vrtulka23/scinumtools3.git
cd scinumtools3

Please open an issue or pull request for bug fixes, improvements, or new features.


License

SciNumTools3 is released under the MIT License.

See the LICENSE file for details.


Links

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

scinumtools3-0.5.11.tar.gz (278.0 kB view details)

Uploaded Source

Built Distributions

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

scinumtools3-0.5.11-cp313-cp313-win_amd64.whl (24.7 MB view details)

Uploaded CPython 3.13Windows x86-64

scinumtools3-0.5.11-cp313-cp313-win32.whl (16.3 MB view details)

Uploaded CPython 3.13Windows x86

scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

scinumtools3-0.5.11-cp313-cp313-macosx_11_0_arm64.whl (8.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scinumtools3-0.5.11-cp312-cp312-win_amd64.whl (24.7 MB view details)

Uploaded CPython 3.12Windows x86-64

scinumtools3-0.5.11-cp312-cp312-win32.whl (16.3 MB view details)

Uploaded CPython 3.12Windows x86

scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

scinumtools3-0.5.11-cp312-cp312-macosx_11_0_arm64.whl (8.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scinumtools3-0.5.11-cp311-cp311-win_amd64.whl (24.7 MB view details)

Uploaded CPython 3.11Windows x86-64

scinumtools3-0.5.11-cp311-cp311-win32.whl (16.3 MB view details)

Uploaded CPython 3.11Windows x86

scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

scinumtools3-0.5.11-cp311-cp311-macosx_11_0_arm64.whl (8.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file scinumtools3-0.5.11.tar.gz.

File metadata

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

File hashes

Hashes for scinumtools3-0.5.11.tar.gz
Algorithm Hash digest
SHA256 4efbe4e2e823926a88c723e5ed5e35ee48f1faf93be73a3a52f02b89a2c0ccfd
MD5 a548307c30e19fe961361bcae804c297
BLAKE2b-256 0271fd5ae376e68ae8b4cb21c497e056e4bf17287afb02a9eed0f040d1d2312a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11.tar.gz:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9f172bcc780ee41eeae942cc1b39b9bfc6397700d01dcedd071327b055a8222
MD5 d6c0597495beb59821ff6cd207fa2009
BLAKE2b-256 20ead41305e313abfc206b1a56af41948f92713854a760a6a8652b89b733074b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-win_amd64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 03a39a39d33956b449e95b3c6ec23efdfca985371f3d7aa52d4fa0db207830af
MD5 a3393a753c259b9493d02edb3e229ce5
BLAKE2b-256 8154a93add5760b4c35d51ff6314a33dbf937e9723c7b28243d2e50819ec071f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-win32.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3230614c537235cfd4473a5ee21bc4ae89816971b2dd023f0447a7fc1013475
MD5 c77fca035a0781eaababa53712d6bed5
BLAKE2b-256 b27ce4856645b9ca7c5d5b18e7a131b39616ae033bee87260913d03cdc5c60ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb40c59072664c85129e2bf2ce0bb560a7ee0c3353ff59f549fe23654ccbae75
MD5 3413d4c77bf12ac4d4d82d4bd28ffd19
BLAKE2b-256 dd6095568dc9d24bb3af12889769abe8b84091028787c4291699f87063f1513e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43bd46c23d39837ee5237f5c8462fe62372a5063bbd4ed6df96265201933aa2a
MD5 8682c13f23bae3f3f41e44b3bf0f688d
BLAKE2b-256 29ccbc3637b72f9dcbecae23ff40074893e86f2a5e77c047228afad863bc4a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f802875d0bd4b68ed60f2a2408d815d279e6581d2fb6a7955233ff71897e341
MD5 e4fd2d0519ee836a61272cc93488e75e
BLAKE2b-256 f0deb69f1587fbceae1126bab67cf4adc250acc43f3b9e2274273fb0d844fcfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf3ed83125d7fca72ad102968eae7b94a9e6438fae36a119460c1bbe1060cc0c
MD5 60e2459b69f32c351dfd3f8d2caf7394
BLAKE2b-256 aee6145472adae2940b636277c450b3acc8d1715e43be10e383b5f6a57e7d2a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe83f42db4534a03190056fb19300de85ae2123925b15a42b18b55cf9f355c1c
MD5 f60ed7ae958ed0fbf78ac2316baf981d
BLAKE2b-256 a1699c9258374a11af6fb3a4c16620bab10cd1cf304a4051342a5e751bc3186e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-win_amd64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 972f4e9f9cd098d628d2c6f7972d5f28379bda53b76e5f0b168cefad2f5549a3
MD5 b052d98d921cc629d33bcff7202de0f2
BLAKE2b-256 d20df13b2066502090e527bdafb4561ffc563fab7172f6d3812a812925f4de83

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-win32.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b8a4e9b8280de87bfe6add2db161bb5aed41acf2c09228e4302d52ed899b534
MD5 d9bc2a983761185560643965c90f16ae
BLAKE2b-256 6f9c4fb17ecccf2eb433c64ae215642e75516ce4c68aa84b12d23fc5583b6bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f1145868e65b8ce7c8c99d0095c6fbd378952042ec098ee4d7bedbd4c207ca0
MD5 902cbbcf04e6733ce38af686596c8855
BLAKE2b-256 738698d144d8e3e29fcb5945fe981afeac2feae367ffd956806b3a97aaf82cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 808698a64cfbd1e5b8e808325c664ede7697046e2428d5ade72ee7262c354d97
MD5 3abc5df01ba25f769387cff7d6261b2b
BLAKE2b-256 c3f44034646738812e7e0ede342045f9740b2599340e37b4105fda5eb41ed7b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78173ea6fb0bd231ec42589b2beee7796a2ad846893c0d6b9f9075915f847896
MD5 ace6317bac3e3576b8d3b97b96dd9079
BLAKE2b-256 6ca06b23b5ea3878dc64561447ec22c63d72bdbad205ece0eb83fffae5ab9040

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ce545baf331d10ecffffd58a9e16c8926753e15b2753156254cb62c3f8a9bdc
MD5 523fff7c33a177f552a35b19300443c7
BLAKE2b-256 1a4705676ccff2b3d85e11048fe9554977f6fe0be15b0624e45d4aea11add6df

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0cd449dc725f9b8984abb0604f2330e23a4ee6c2fffc4e09356e1ed10fece53c
MD5 2b9b8b3c2f9981336d64bbc6f0c75e88
BLAKE2b-256 5facfaa7f688199c7af9d014d0b8a23416b0b21cd9fcb0e32567ee00fa9edb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-win_amd64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2b434d6c60ba5af74120c4fdcb6d4816b700fdf0ca92356d54524da6f362ccf3
MD5 c7c34d1e7ad9a270d54a62d8203b7a7d
BLAKE2b-256 8d04f63f4c586b4dde7849de0abd650147e16a4a76e6d7ba115cd0483be4fdb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-win32.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f89844f7f3252e1bd985eb4874029cc9ab4dfda8f7f750c1d5fd88a0193c2ec
MD5 884015dabc2a1f7f810739be16cefb74
BLAKE2b-256 4497becdb2984f87687d7aac5bc7c61e67034c78359e541b5cf9ebc2e89f5e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51f77491820f7cfeb2625b2d7c11682d81929b396b008698416b314076658846
MD5 8e6b27b6b903edee7b5d8773648c851d
BLAKE2b-256 5454b88ebec1b0a83389347187fb140ae19b3a5a8487cd816e019dcfd0e46736

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe0793a6a165701bad28253d313c6833eaff0ecb254cc0bd4ad1040a9a816604
MD5 077ca5f834ccf9d58154e67418962810
BLAKE2b-256 a9bab27669fe6153261f98048538409be056c8e0d762686c5a4c5e21a8cdceb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c6a9788d6f47b4202e24f2fa41b74cee987bf56cf8fc95e6de100ee9fb4eb9e
MD5 f33c70b121e886e441f46f6333a881d5
BLAKE2b-256 79de4ee54f4f68bd59a16a164c9f4d1572a6e8bf2d7aab948a6cc96e714250de

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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

File details

Details for the file scinumtools3-0.5.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25b3a0a0fd6e3bf61e98f77906008834f9f9c1c211b0d1ee67fb290fbaf9beef
MD5 17ced69e51127c715edba4020f5bdddd
BLAKE2b-256 eaf852454149b28752f92b635f0d79e0427c6c8396bb36c584ba94024414fddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-wheels.yml on vrtulka23/scinumtools3

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