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.2b0.tar.gz (275.8 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.2b0-cp313-cp313-win_amd64.whl (25.8 MB view details)

Uploaded CPython 3.13Windows x86-64

scinumtools3-0.5.2b0-cp313-cp313-win32.whl (17.4 MB view details)

Uploaded CPython 3.13Windows x86

scinumtools3-0.5.2b0-cp313-cp313-musllinux_1_2_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scinumtools3-0.5.2b0-cp313-cp313-musllinux_1_2_i686.whl (15.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scinumtools3-0.5.2b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.2b0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (11.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

scinumtools3-0.5.2b0-cp313-cp313-macosx_11_0_arm64.whl (11.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scinumtools3-0.5.2b0-cp312-cp312-win_amd64.whl (25.8 MB view details)

Uploaded CPython 3.12Windows x86-64

scinumtools3-0.5.2b0-cp312-cp312-win32.whl (17.4 MB view details)

Uploaded CPython 3.12Windows x86

scinumtools3-0.5.2b0-cp312-cp312-musllinux_1_2_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scinumtools3-0.5.2b0-cp312-cp312-musllinux_1_2_i686.whl (15.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scinumtools3-0.5.2b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.2b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (11.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

scinumtools3-0.5.2b0-cp312-cp312-macosx_11_0_arm64.whl (11.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scinumtools3-0.5.2b0-cp311-cp311-win_amd64.whl (25.8 MB view details)

Uploaded CPython 3.11Windows x86-64

scinumtools3-0.5.2b0-cp311-cp311-win32.whl (17.4 MB view details)

Uploaded CPython 3.11Windows x86

scinumtools3-0.5.2b0-cp311-cp311-musllinux_1_2_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scinumtools3-0.5.2b0-cp311-cp311-musllinux_1_2_i686.whl (15.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scinumtools3-0.5.2b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scinumtools3-0.5.2b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (11.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

scinumtools3-0.5.2b0-cp311-cp311-macosx_11_0_arm64.whl (11.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file scinumtools3-0.5.2b0.tar.gz.

File metadata

  • Download URL: scinumtools3-0.5.2b0.tar.gz
  • Upload date:
  • Size: 275.8 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.2b0.tar.gz
Algorithm Hash digest
SHA256 1210c5bda4f3f6ed5f032f169c967b76522e12abd3c85ff4036f077b6417fb18
MD5 f2fa862b29fc6cf7b487fa3328472e0b
BLAKE2b-256 6b02efc8080650b35c266dd918114724cd64ccff5497f14e55f5a124775d660a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0.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.2b0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8c21f5b5cb796d9579283406c514c490ba949695c20ae2d627f862200f873166
MD5 2b11ae67c8fcc950b7a7bf4ad2ade605
BLAKE2b-256 f1c384751d2e96e6f5acf58e8fa9395c9849dfb6489e3ac51cac1fed83fd535e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-win32.whl.

File metadata

  • Download URL: scinumtools3-0.5.2b0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 17.4 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.2b0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 91e31a2019840312604a6f2f7f5947f4ab773f9f541f66d964859b967c557327
MD5 06142e645d6ce7b337f2356fbbbea81f
BLAKE2b-256 ea5830fdfa2aa536b070d0eb787443ad811b4649ad713734715d7497d8b76fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 045bd233fec7078da0c4842c46d56e9810fee0d0680affeafec3f02703cd8a26
MD5 23daff9329d020670acd49002ce6a81e
BLAKE2b-256 d6be27f43617a3e4c3b60b124c218ebb39f871fa0b5ad21880b268a060244377

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4aaaed8979715f9f06af8b801d358632fc0b36e815f7e978752a5db1c680b1a1
MD5 fb7f5b6619d1a5631b1d3066fdc49b5a
BLAKE2b-256 8a5a561a8d4ffdeca392b25aa555c9e487124d7fd85b1b213f8e18174aecd73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59aa1b6440ca1607c6372b5e92e8749254517dbcae9c823ebf1ca44a70ce96d0
MD5 d9f2cda1237dcf2080b29c72e0ba3ce2
BLAKE2b-256 6c427a1b3c90e3a16d478f78ea881405d64dfc014f28b4f4ef8039284d59945a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f99adea8b551c4a1107b3a48f8a9edee26648928a632d409029fb5691116d5c
MD5 42e06fc5c79193a47b6a3ec47dec8c7a
BLAKE2b-256 96a51ff69b765faf495deae589722c40d1df54b655f0ffca62ae9c63803639fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33cfbc8baea13c27ae92ec8559f8e56bd85e1716f7289501701dbc647112257b
MD5 7b7afaea0101c87975d0551c3356bec2
BLAKE2b-256 a20a2fd17bfbd6b5f199dd12c80f972e532c8378197dd977ff10fd1b2e0404df

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c10dd793e3e370f4141a14bd21177a31c4ed7aaaab2370da7318e0ef18ba79ea
MD5 f25838492203a4f373923dcdd0c611d9
BLAKE2b-256 44ee04783ca08e8d9b244468cd1b756ae746de17e8f9631995b5ab8542a93ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-win32.whl.

File metadata

  • Download URL: scinumtools3-0.5.2b0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 17.4 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.2b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9cb69005009a3eeaad665395b29413bd921cb0ce2001e3b6d2a91742e047e468
MD5 f90a521e0d32c80dce1abd092232b905
BLAKE2b-256 d2fdcf96249f5195e004dbe2163c3ee88f67fbe6586f976ba6148e33ecb261b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e36ddc4569e291d939a8aa4224d8f06b3219c57009d6e840e24637c34de2da1
MD5 e2372bbb3536533ea384b2990bb251fd
BLAKE2b-256 e1e3c527433607ef5da65351321432f7e0a1054840552da7344a277d5318d4d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e97e52c0265c0f12217c532efe817310d7e160227a9229a4fbd569ff8d71a90b
MD5 6bfc8329adabf474f08ca5473ff9ff9f
BLAKE2b-256 f651743416c73e7ebf90316e535ca29cc9f047478ac13271fb31e5203edfd97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b1d4695c0038f1633871734d7b7da4226e340b231fbe5d626769c1667d681ce
MD5 b1c4008352698028385c5d3ffb29c5a9
BLAKE2b-256 e5336eafae8b6605c4594af0344c9236738460c1fc37aa5a5e69ac9c74d0d694

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0273ac202382b8ff0018dc4c41218a74390e345ce32948e4b510d43025696a99
MD5 4966d374f71a44cea5a24a493e7c35ce
BLAKE2b-256 30f794fea4a4a2db67d9aff19c7784526eb2813303a748ca627375c8ab6be19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e65dcb4a7abaf07596906efd58c0b50bb41e7e37eef63d8153092356294ce6b4
MD5 24657b4bf9758434151a3fe2a1c0373a
BLAKE2b-256 6f4f8242adcb59c5b448424ceb49b730c0db395448ed741c5e203ab0dd2eee72

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 519e88e3f8360bc455718e5ad287d1029bd0f4ddd0b0249d99328d21df0af5a4
MD5 fb4022516d7edec9e43e7a9a2fc2e503
BLAKE2b-256 a46bf29959a7d10d5cc4cc494f01bc3e353799e0e8442dbf2685b0306489599e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-win32.whl.

File metadata

  • Download URL: scinumtools3-0.5.2b0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 17.4 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.2b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 717e1c9c8a9de4dbb337b0a26a981a038deef12968df10fcccd994b39ebb0709
MD5 84c6172d1d9b302267e8c69f45719179
BLAKE2b-256 80a66f13b1c0f61018901bb1bfaa1ee73b6ef8cd42447c6491322e330083d3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31046adc2ae8461483f7f9ea48e8a24dc872fd33795f18b9fa8a18dc51fabb5e
MD5 d742aa5700ebfdc05d86b9fb85bd83f3
BLAKE2b-256 e392e7af2b1a6f6162b077da15e8bf2936c53dd819adbffa97d3d6e6ad9ad0f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6f64dc7267ce09554a71f8cdf7ab80c3a7c2050c3f01e4a4da9465c980d8d72
MD5 78342505330139ae963cf66e6da92050
BLAKE2b-256 9374efcb429b2f2c57b9863bec7924513e5c3d2faf094284b7c9878fd64ef2ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92a61fc2c821aa0c9c4b2e2dddb91d8fcda7953d52f941f15663cb7e1c54fe1b
MD5 7d92b60fc684e44fe6ab4a8ca2aa76a8
BLAKE2b-256 346877b38a51a478ff210276394530ff5248978b43d25cf91339be7d7743c6e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fde9bc15b0b2a1e5d5fe00a09f731c638beb62c8b696eb29ba0cfeb9f652a742
MD5 94b1eac1bce019ccc9d2bdcee1051130
BLAKE2b-256 5dd52bdcd679229ad39afc1f32ee62ff021e0ba82ab4545882f19afa693ff66d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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.2b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scinumtools3-0.5.2b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e63ea126ef0a9dd83a28bbdebfab779297ddae93cd1ffbb1d35b4f27c1495af
MD5 a8a74151dad6497d9d386f1112791a44
BLAKE2b-256 31cc39dbedb93c0a865a8b93ec9764794bb336322c49a78d1830d000770bfd34

See more details on using hashes here.

Provenance

The following attestation bundles were made for scinumtools3-0.5.2b0-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