Skip to main content

Ndarray-native linear algebra and ML library - Python bindings for nabled

Project description

pynabled

pynabled is the Python package for nabled, an ndarray-native numerical library for dense linear algebra, decompositions, sparse workflows, tensor routines, and selected ML/statistics operations.

Install

Install the published wheel:

pip install pynabled

pynabled requires Python 3.10+ and NumPy.

Optional features

Published PyPI wheels use the default feature set.

Default wheels include the Rust arrow feature. Python Arrow workflows still require pyarrow at runtime.

Optional provider and accelerator support are source-build workflows that use the same Cargo feature names as the Rust facade:

  • openblas-system
  • openblas-static
  • netlib-system
  • netlib-static
  • magma-system
  • accelerator-rayon
  • accelerator-wgpu

For pip / uv source builds, the package exposes friendly build settings:

PYNABLED_PROVIDER="openblas-system magma-system" python -m pip install --no-binary pynabled pynabled
PYNABLED_ACCELERATORS=rayon python -m pip install --no-binary pynabled pynabled

You can pass the same knobs through frontend config settings with pynabled-provider, pynabled-accelerators, and pynabled-features.

Builds can be inspected at runtime with pynabled.build_features().

Build guide: https://github.com/MontOpsInc/nabled/blob/main/BUILD.md

Quick example

import numpy as np
import pynabled

a = np.array([[1.0, 2.0], [3.0, 4.0]], dtype=np.float64)
result = pynabled.svd_decompose(a)

print(result.singular_values)

What it includes

  • Dense vector and matrix kernels over numpy.ndarray
  • Decompositions including SVD, QR, LU, Cholesky, eigen, Schur, and polar
  • Sparse matrix carriers and solver/preconditioner workflows
  • Tensor decomposition and reconstruction helpers
  • PCA, regression, iterative solvers, Jacobian helpers, and optimization configs
  • Optional Arrow and ndarrow interop when built with arrow

API and behavior

numpy.ndarray is the canonical CPU array carrier. Where the Rust API admits borrowed views, pynabled preserves that contract at the Python boundary instead of forcing extra copies.

Structured results are returned as typed Python objects such as SvdResult, QrResult, LuResult, PcaResult, and tensor-specific result types.

Some higher-level convenience APIs still materialize owned arrays internally where the current Rust API shape requires it. Callback-driven Jacobian and optimization helpers also cross back into Python on each evaluation, so they do not have the same performance contract as the direct array-in/array-out kernels.

Project 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

pynabled-0.0.10.tar.gz (496.7 kB view details)

Uploaded Source

Built Distributions

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

pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp315-cp315-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp314-cp314t-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pynabled-0.0.10-cp314-cp314-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp314-cp314-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pynabled-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pynabled-0.0.10-cp313-cp313t-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp313-cp313-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pynabled-0.0.10-cp313-cp313-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp313-cp313-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pynabled-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pynabled-0.0.10-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pynabled-0.0.10-cp312-cp312-manylinux_2_28_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp312-cp312-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pynabled-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pynabled-0.0.10-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pynabled-0.0.10-cp311-cp311-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp311-cp311-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pynabled-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pynabled-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pynabled-0.0.10-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pynabled-0.0.10-cp310-cp310-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pynabled-0.0.10-cp310-cp310-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file pynabled-0.0.10.tar.gz.

File metadata

  • Download URL: pynabled-0.0.10.tar.gz
  • Upload date:
  • Size: 496.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10.tar.gz
Algorithm Hash digest
SHA256 571cb8e1d798dbd1a06937acd02c28c3c951c566481f4fb828cd36caf30d3c31
MD5 9954852b3455ee8dbcef0bf16a71f95a
BLAKE2b-256 72f1dfa0c7195a3e10ddbc40d9633fc91ea653105180339555cd6d50913a6c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10.tar.gz:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c988551fbac0176d956d0ff949ce41c6075fa035f18bf646cf90ed76d9942c1
MD5 ee2657656308595ea908e85bbeb33f21
BLAKE2b-256 0bdfc3d420d743b4d24830172879e78a3280d6c6a8970f95572fd0868f250c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ffe92d417484aa38c32f8a8d6cac4492702f017e4310d8abcb6372b4a7629c2
MD5 9f26c338d3c1a0a22526769607673c1f
BLAKE2b-256 308613afaa67b78c4d37ed505ed5d0330b2435cf8ca407667ceca5f7a9c8896b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ec35059562400d9187cb67a701f4fed74f1fc6c313eae9b7b83f78318ddb5d9
MD5 d2cf2079f347284c5b64d2e241080208
BLAKE2b-256 327542cabf70df92ad01616dd36b622bbccb875d0441d5d3c5ed13a0f5b8b13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee662445b8d6f62fdef137c1378510ad5ad2623a22e7e739256dc1426e39cea5
MD5 1bca55f6051369a43ba1a23b32110dce
BLAKE2b-256 82ff77e14d44299d0cadf231f6d6176c95ca0394e0467f2e4d8bb08a428ba706

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.10-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a8c429d701c7c51fbd226a545f80921b35dc52b3ccf71a65f42dfe114f7ea7cc
MD5 a689ce3947864e60bbc2111e44ce8e0f
BLAKE2b-256 b1111f54e3807ba65434b682f5efa5d8d5554141a1391721a5e9332a86528ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3b5d8d5b30b953bae743cb6bcf7a49f4da8a9fd1efc2820f599726c29afe685
MD5 a7a7a47904d9daddffb6a2c0a36c0394
BLAKE2b-256 ae6b91765d021b91960459dc80f64c46741275184225488edbb6a5f7bf752479

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a01cf270a7f759620f3008362231dad32200dc497ad3a386d0bcc6fd69e7e3e
MD5 36cc9edae7637e7f8f52cf4f2a7285bf
BLAKE2b-256 86075ef4b9f38979e18dbadf287429b0db7203ea752684f845f83b07920cd7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f32b1d181dbf6389667c0d14ce50cd0a213e2513a25da6abe7798480f2c2c0f1
MD5 6126ec8cc0f60b8b550f0ca29799b0bc
BLAKE2b-256 722ea35cf9cd4673d660af810386df43a5489100898e5bc1d38684acf9777b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a51f23479b77b6270c40506d5a0635bd57c86c31dd50854a8d3c76172993caa2
MD5 0793b5e0469dc34fe016a27b6d684a5e
BLAKE2b-256 7b58819b8baf3d3eccedc292842bb711b7a4861e4e61a7e08d9e9fd3c2fab238

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 639695e7b5ca33458de220ca1fc1ba00f70207e6363b52e65473ea3735115337
MD5 312176d4beee6d289990f78962621307
BLAKE2b-256 9093bd7d42f431981e458bde73dccda3f8de9afe5c525951d6ed379e5d4d55eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bcfcf3b5b169cd2fc892d70e64d3987acb77d85cafd2e06f62ff458fb3e5e8dc
MD5 107854bb412d4b7256ae336f25b0ef88
BLAKE2b-256 ca550df1bee211cf60b63080f0a2cbf0649eac3c642216823c03af782545c2a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 849f99eebd77ad00648bb29575ad1b699273a44328139418b6e3f3aeaab716dd
MD5 d94336c846d225889b1cba47f3a15e89
BLAKE2b-256 669675c5066d49f83e1cc27603609b954959b592b0552ab8c5e3225a78c97864

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68b26b0eb404a4ebe664f52812db436762cee956fe1e0d391affff047e50fe6c
MD5 f5ebaab4bf368e0ae4196dd18ed6afb5
BLAKE2b-256 c7fc181e9008630b342f426f26d7f27f158637d80ff59b99b817b2bac1acd69f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4a442c643bc11bdb16477469d1afe393c2860cef0d0ffe870b4b39a6981ff9f
MD5 1eb618dc392419cc46d2b401d6c5b309
BLAKE2b-256 89dbe031f1a1b3940c72c5d5aa704af9b12893bbfa28a756b38cda792b6e1935

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17c06e7c88dfeb7a4669b145d7ceaa66067b0f39e6d4306eeeff0a89a0e9bfe2
MD5 2522309a81a5f2b5b4ce74f1a7eba68d
BLAKE2b-256 3efce088898a83444a249455f904c4cc9c3d414ecda1ac60c61cf6ccaa9cd25b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa1f234043d52250f9fb6136786d263bad527b18ace06cf32e307eeb1cecebff
MD5 67240af1a9505b6cfd9311b49bc605ac
BLAKE2b-256 c85622f5e069cbc1b6b6e1bf016bb51d3c78a1bbcc4147bce2d8fb457976590d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e8c9871c901e60daabd79d489f2fd83bcfbae6968607c543653dbe4fd460ce8
MD5 7869b4a511181d9500ea4a33c062075d
BLAKE2b-256 45bd1ea8be4a161950831bc23bc32e5580104806411b36820e522ef11f66c60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4efdf86f8863c097d9f3d8932fa9c31ebe9465018dfcd2dc45decc6d6bb39d01
MD5 512c0bf11494601eae1f64cb23d4d671
BLAKE2b-256 340f2197f4c209456297bd1bb64671a407ce613d5cd65297594524329f7cc5e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4c0e5bc8c74b1f65494c53f786ce2747c340f18594644fd7f88fce3ac47c84a
MD5 d32745cb84f02d1311dd4f3a4d4424f2
BLAKE2b-256 a1e1e9bc44d767bec772ca000cd36411a292d64d50a2889323190737dbac8294

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90627af5ea22dfcf50fc254de7d08d5543d1fdefc8a9625c64f323ba6f05aa3b
MD5 f2432766df0eb75ab76123a344c51b6a
BLAKE2b-256 e015be092e8c087969ba750316d0fbf5a810f6c215ec2852c9097baf5724a810

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fb6449403a86cade053aad66831d209e62c36baf22850becb53eb731739afca
MD5 9d41a221d1d91ed3546fc654ed34c1d2
BLAKE2b-256 504c34f24f26bb4898e04d809c7159a786d2245e80674e21bbcfd235ca9bda87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26f6f694d85d8aa8a589d71020cc2692809c555b5f74b37d93fd35728bbd7585
MD5 74639d303d568eb94fdc243e3f344aad
BLAKE2b-256 6807059f6f3b32f80573b0f17f3b2f9fa5464e46f7c176568125e7d044f19f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16a17749ecdccc28f0e4456898b82cd65c71fb3daaa55ed3f85a7ed43093778c
MD5 42e792a3b3d232dc68a0a4a6e8025724
BLAKE2b-256 ad5975373e00ace4ccaffcbb3f5298699fab935054621d7686a1c39662ed0d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7254309006528205e6dba4496abaa718d6ad8dd17690e9810c2ce545ddb8d6ac
MD5 12f6633edd9625378d4c8107e732ca57
BLAKE2b-256 823b888fc58dd4f143c455fb8c65aa14af57b389588c610bde77cdeffaadb3c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88dda975a3d211556d8dca91398ef0e1662bae59732bf3c1de0d11a1d8ecef0f
MD5 4a9aca702df4daeba8fa314c6514438e
BLAKE2b-256 b17011242f2f4ed3d71a0c90b8ceb4dc415cf103453df00ae422c6a669c89b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pynabled-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e57a80d4239be8792067f85143eda7564cdc7935453901f0ecaea989a1baa55
MD5 c2fca6e8feb27b6bc10d8092ca0557d0
BLAKE2b-256 f4980dc1a12dd1d8d5e0cd44203e5deb2bd3a5dbe728d3dc2aa07b44d7ec1122

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff22a56742f422c3d2dbb8b7721b2aed576d998e82c15892929a049ed8c30383
MD5 e40cff19fae362d5d20c6859d0d43647
BLAKE2b-256 31481d71ae85bf74b0ce6cd9013b5ba38bf458d730c6db8acad514d3f429bf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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

File details

Details for the file pynabled-0.0.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6b34615b713b6d3a906646060e192870c7e12d23995c132541365c2a0569fcf
MD5 04d47c815fbbac952c036feaec73efee
BLAKE2b-256 36d1d610b3668ebcf1b421b9a1201b0f417b7316fd31ecf246b807baa41f572e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.10-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on MontOpsInc/nabled

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