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.7.tar.gz (276.7 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.7-cp313-cp313-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.13Windows x86-64

scinumtools3-0.5.7-cp313-cp313-win32.whl (17.1 MB view details)

Uploaded CPython 3.13Windows x86

scinumtools3-0.5.7-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.7-cp313-cp313-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scinumtools3-0.5.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scinumtools3-0.5.7-cp312-cp312-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.12Windows x86-64

scinumtools3-0.5.7-cp312-cp312-win32.whl (17.1 MB view details)

Uploaded CPython 3.12Windows x86

scinumtools3-0.5.7-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.7-cp312-cp312-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scinumtools3-0.5.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scinumtools3-0.5.7-cp311-cp311-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.11Windows x86-64

scinumtools3-0.5.7-cp311-cp311-win32.whl (17.1 MB view details)

Uploaded CPython 3.11Windows x86

scinumtools3-0.5.7-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.7-cp311-cp311-musllinux_1_2_i686.whl (13.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scinumtools3-0.5.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: scinumtools3-0.5.7.tar.gz
  • Upload date:
  • Size: 276.7 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.7.tar.gz
Algorithm Hash digest
SHA256 78ae79bb5b47bcf4719832558a104afdfa576b25918104fd5bfa231e40631d9a
MD5 2faa9bb140d05ea95f7167458b4441c4
BLAKE2b-256 674d3f5dadbb7c29c008fb4b178966d1936456a3c608cc36f45d5b21357db6af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d0ce5e1cc38241f938daf89d0b69c8c5d580a31f5dad6e6f0450cb8485fa864
MD5 98b37ab17d402d14e62bb5ed7d4fd442
BLAKE2b-256 dbde961002f255e1aee72369d5e0d84254a0d0cba6ed35bb7c5d5d31e8ac37fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: scinumtools3-0.5.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 17.1 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0cd9293be392a0cab50ba80e0d52ee5ab74928e42e62dafce19b23246b82e0fc
MD5 ec9d36d75801d20480aca382976de92c
BLAKE2b-256 7d5cccf69c57300a01b17e3a00930599aaa1665f913642b609fcb2352c439c39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 840095159578c290f6a73d948d9cbaf5bb631a900ddc45be9d04fdf1c14cdb27
MD5 bd718970ea48c7a951c1d366d6e43675
BLAKE2b-256 7848ac7351cc98dd57778a3a3b22a834e5b8b6d9f7890fa1c84ac91217b8fcce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d80c0fcc1684f52fecbe0eecf272175fa757df7a26c788d1ae7f1442ceb5b536
MD5 cde69263e881317a133e462b857d0c64
BLAKE2b-256 5e20543638464461d77466259bdccb713681502bc89fd3f270b5fb1feec720de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06f1289e2337d33985259a62f80a72fd7be9c1eda53c1fa9f0c8cf6e9ee811d8
MD5 36d3a7cc564dc24b7c83c302d828804f
BLAKE2b-256 ebb41f23180fe4791cce49137c0f0126fa82c6c4274e24c7eaccb272ea6ec5a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1bf99cbb6a8ddfaea3f7aa67d1e12841b3a569d685fa4466af58d23351abaadf
MD5 18a3c35eb76d3334186dd51b28c23859
BLAKE2b-256 510ecd8b70f16973cf89b7c485638d28b6deeb274bfc38264e3ed25595a760d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 907506250bb1344ed8d89298ed22565f7baeddbbd09143c19aef2b55ec5b4751
MD5 fef01ac0c95205ea9268c73f8f68a852
BLAKE2b-256 93ab839a4ba1bcad7dc3dfb9981cc607d4f138f38f1301ecf2bdc643a431c14d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17c3ab1a9379f628baccca9ce7ae18eb6e73d810483b493bef2d9349f3597953
MD5 71f929aa371975eb6a33d3797bb1b5a5
BLAKE2b-256 ed3be240e9a10c5095d4db90cc1dd45583b7b97fa2d9518939177f97c5c901e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: scinumtools3-0.5.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 17.1 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 19d97aa8f2b4fb62d0cd264794900be7029d085b01a63a0fc2d3763baa986466
MD5 7d426ef519fa00c1f2473c93e9f2dd24
BLAKE2b-256 01ad49acba1f00ec6b11fac19db075454cf7d26f077c647852a28fb9f58b2eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca1a7c290d90608189d7da03e3876269ea7c40bd85ecd8c27424c0914dae93a6
MD5 565c400e8ccca76cb3909db18696f12f
BLAKE2b-256 3f8d409b4e3dc080b7302116e490caeea84917fc6b4452258fa78d889cad54d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94a2536a2ab9cc14d4c0b27c66915e315ebb121e1b004b7dc8bb4764a251ea9e
MD5 9c5474c3965dfb0d49120d1265237ed7
BLAKE2b-256 442d95a2f271717af177b264c1ce5ff8b9f5e662fb1e91a01bf929120ed7e53d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d17394f0111a4a9d9769cb9b2e24b5ff504b959078aef23377a3bd6e1e5062
MD5 0e4630c651ee57b6f99920d20e33cf65
BLAKE2b-256 7aedc9b00036df246ce76fd54f49d487dee388da32342e3272f543320b90ecb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e491a5c724866049d926a401f52992913099602858ce344384ab65ff55118f6c
MD5 c33a775afc2069465cf5d94e2a51f75b
BLAKE2b-256 1952cff11de30517a580288051400122fd00301cc34c99256e55f58e5117f7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4275be68cea6a6071e7a6c809a8a4d48aa2d590a0eaebf56fdf496defa384877
MD5 45619f1e2aeea02e137c4095ba44dd07
BLAKE2b-256 b8f8e74632ae066d9f5bec7412b5cced5e48512428e9b950a2557b0ba6328fef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53a023b5658a2987baece9fb8f21aece06473e3f5c978f7a67c4e0bd360ad696
MD5 b071bb82de092885929382d4e780c7ee
BLAKE2b-256 fa91802c669d9a85775bf9dd4aa982f12488618bd9d2cfd17a0dd5405b022f99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: scinumtools3-0.5.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 17.1 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bf4d08ce283df34311c3986e52fce80936e5202d9a671c9a5a2d9968960482d4
MD5 4d5d8d0419b40d8791f8d14e46e26e7d
BLAKE2b-256 e538285632213ec23da652371b925cc070fb91ee292afe4974d5c3d889e48855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80068bc7e7dcc7441be57c7c37c77b2f7130a56248d6b26293c108aab1bec324
MD5 8967d1c4b988cbe91d2707ca448c98be
BLAKE2b-256 c786b6a89eb228274bb7ce46b6d6e75ad057353a6685e3412420238bf0fac52d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbd05bbba43e8afeda48cf23e9fd94fa73ae44cca423596d1f8f2352af77be13
MD5 ef5a3cf75a9f4a6a279307af266dbd80
BLAKE2b-256 1745168af315ba00e9911802686c8cf03ca366cd1f04288a100029e45d951910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa8ed411581484d1a6a78f4313ac06cca7dc33c3d05b7d82e11f1d9d8e87907
MD5 2261b831b3563988ea04f8bb06ffcfb2
BLAKE2b-256 c353ad01ef86ad1b6c31b6eb4e80764f28314fdcc8fd960ceaca9525d36c5239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47deef703b6f4b660baaaf1a7a6827736f0d27f3f0e46c9caf946debd613af21
MD5 018fcddd220cd482c0c6990016df2d88
BLAKE2b-256 a01b2a708a6bfe1d4d4cbe119c92b75fd16d68812606b3d83a80ca345cf04ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for scinumtools3-0.5.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1557cca827ffd05c2e82a2d11bc22dfd495fe023c5168aedc808773e0f0a0da2
MD5 36608c91f0a86665b30869127820ed68
BLAKE2b-256 3053e41e934bb7cb4c27a3f52fd05caf568273e3d72b01211e4d8b63b1ce8467

See more details on using hashes here.

Provenance

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