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.9.tar.gz (493.6 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.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pynabled-0.0.9-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.9-cp314-cp314t-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

pynabled-0.0.9-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.9-cp314-cp314-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pynabled-0.0.9-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.9-cp313-cp313-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pynabled-0.0.9-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.9-cp312-cp312-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pynabled-0.0.9-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.9-cp311-cp311-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pynabled-0.0.9-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.9-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.9.tar.gz.

File metadata

  • Download URL: pynabled-0.0.9.tar.gz
  • Upload date:
  • Size: 493.6 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.9.tar.gz
Algorithm Hash digest
SHA256 1e69cfb0bdb1e1bdc4380cd75d983ef32a2d5d3bc17b85b0006039d671c12c19
MD5 6040eade7211dfcd5d69a55538264bcf
BLAKE2b-256 a743897036785288f5482aef256d52c9c4595c10fa166e77fca411f4b87ca932

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9.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.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fe574dc6f7e19d8ef4e544c9e48ce00b2ba44ead2884fa2f395706d2b1a7097
MD5 ee1b505fb75346111be2a0fb83fde2e4
BLAKE2b-256 245d3bb5565cbc5193f4cb770eb117669d88beb8c8ccd81f31a8680c36d820eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da681a2758766cc111a6c7afcef96c438df0982887719d3659f86d1bb698e7b3
MD5 d99ab90209ecaa9883e0c728084e222b
BLAKE2b-256 f55c6a1166b072ff908cb6bf8d7de1a6ed8272caa8451a7ebc3db20cfff329dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b48fe84b288d64dcf132b03465f81e62d938369c001434f4b088bc64e0a63a0e
MD5 5ff2b2aba5decd46ff8a5694f9c09335
BLAKE2b-256 8bb4b9b437b6e503d627e08b8b66a5ddd2f9f5dfd5d89846c719d91693e0ea83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2952cbeadbf16299c1509022bf175981a1af17145947d5f900ccdb4d11aacb3
MD5 df1c5201c5eb3bd06a7a7f3084bf76c6
BLAKE2b-256 def95577163c63e48133db45669dcfaa6791852fb29b969e5aa5efdac2a7936f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.9-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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 08082178cae5461547bc45d564a606fc9230a4cda33850c0bcbb2672a5d755eb
MD5 8b9bd822a17bd5ea2faf07864027590f
BLAKE2b-256 f38b968926c4e78980158cc9666af14fe506f1b2ca83b86ce02966c8362945b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1b582b7d8c9dd54767d44b2ab302b76c56dbd94d69b032331091ede90d0542e
MD5 4e12275586e7b6318c6a900fa97e50a9
BLAKE2b-256 6c4021d82d8bc2ad2bd73a85e249b9dda72b5934dbca81e8a84f053e3232308e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65b19e965abe00c4e2706bee5e90d89e121b6d1a4d1be6615d15c68f54560a92
MD5 e115d99ae7dec7f187d5d5fd083f8b85
BLAKE2b-256 81013ec659b99a60ca03935294760b2147f47a330c40df0640c101b082540586

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d659503422f859dd112ec3e6bb9f472a69c5ce793d5a287fd8a8a444f76e294b
MD5 a8edeac2035df19df9f53bfb5cb559b7
BLAKE2b-256 a7ff2e1219391a46da3d5db956ca750a657f131fd6c829c946d0f2c6abeb29b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 836bbb0dde1473ab1c6b23f6a6f9108097e35ed4bf914c7760ab55899b0521e6
MD5 d948688bbc9db4490ac9c6d83944b12e
BLAKE2b-256 e9c9b53f2afab84457cd3593f61e9135b0a5df081bb3e4f17dfb8ffe90d48cac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd4e0dac7e3356d08f209d3a99dd87dd3702f61517ba6263da40ee417051051f
MD5 90d0442c8133cee725d617fc51a20cba
BLAKE2b-256 f619904df02d606d93ce5b2057797646756b55b14f8ddb8b6498e316db7d83d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.9-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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa67f6c1f16abc1b659094ddf3d45e03b6ce6d87cffdd104c78fd5e8bc4d293c
MD5 0bf5082fbaebefd007d4804a9142d6a3
BLAKE2b-256 1d3dd94c19de69f747d91daf745e36b2c720c55d4f81d65d6f964304cc3208f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fafdf5cd8d19ab88e067dfd9b53116786313bf50926bdc07401f136dfb06fcaa
MD5 315317d44c28153468904c2c2b638b64
BLAKE2b-256 c56c1a35fae0e002d9e0568f65f89214dcb77a44c469b68c1d44715e04eb2db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f81797fbade09dc914bc12ebee812a0e30007bf09c348d308a34b86b81306355
MD5 56843a875bc80c0d4efc05d5eb5d6b46
BLAKE2b-256 76366a8b83a405bd83b70cf297eb82d619a2e2e33cbfdfb357324ded2e8092d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38477137389a3b198cced8035cd827edf84c37b6fc077dd3760048baed150b7c
MD5 c9261a4d9657982ad98acdb12d2ece96
BLAKE2b-256 c664e2376474de136beade5f180eec0f7edbe9f2ad632057ad70b538872c693b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8f928eb1918d4fbe010e52785bf9df9fe140703777360cb69d806d66b08c546
MD5 947f7f09e4d901bbc0f421a3d4098df0
BLAKE2b-256 8e2dd59d8a4e1003a3e8b984b75e0d9c2429550344b9974be747c877bbc65c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.9-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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cfb15556053a8f01efb6356193fa38a0e92845841861ccf8351b8f280803b56b
MD5 7800e2a9ed789b1d0568cb1067d0d3a1
BLAKE2b-256 587289eb27a2aa2e6bd5ec7aa165b0abd4fe17d64df1317a4bd962b3302ab941

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac27ae2404350f34811080377540ab61748201bd84dcf3966b66c52f210d2702
MD5 0e2e2861a8a4790e8a4be4f26fb91d70
BLAKE2b-256 f4c41c52d67d71e9ba0e77c086fd0a16558e997443d85c795ea8c3948bb20904

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2d4957c27339c07ee9996683eb41acd5b3c13396c421a51bd48e9d72e43ed67
MD5 ce32712255f14043442e93ecc5b472df
BLAKE2b-256 450c5e5225706a8045ebada4e19d4851c23880a9005adf301a882dc69739021b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0cf76540518195401f628b1aa2f831192377eddf76d316076e3dfd87636016a
MD5 1189f66a2a55b3c227320a8a28db5615
BLAKE2b-256 317ea840ad6a53393c8ca4401e69566136cab10f2dbc7ef89bb4ed604749430c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe794644e451a1d860b5862f545696b66d2801d4b964001ac7d3478b5ffb92a
MD5 24f9954014d74b25bce17f570c8d3221
BLAKE2b-256 fc51dbac0cc80044a45e5fb00ba478a483d9888e4f423d0813d52de25680d389

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.9-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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e86a5513ec24fee5437e585ed77eb05aea17bea98a747e61f5458560ed852a7f
MD5 eef60f23ae3a0203febc1dc0b533cca1
BLAKE2b-256 067a3a60b3c12802dae8d046c9cc0db959a9f8b3f7ee428b1a037e0eab41bbef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e3af4bdaed62354e332c8d39cff5a09c3143b4649e61c98835bbff0fcbf9df4
MD5 cc381ed2921db03ef78fcbc2860b35aa
BLAKE2b-256 079a43fb42b8ac3197e5860ed8180174bd4f7dcd7389132296e06bfec4ef09c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2eaf3e5fae7eb30500bc47ad59368cc18e1d906370058070a7a4d301b8d5641c
MD5 3c33b6b73e22125a19a4d73e4c8a770e
BLAKE2b-256 28ad5600154888351b6659337fa4c9eb93cece5e353a6320e68ecc5274715ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b689b49f9fa93384fee907dd28790b4afe0537f1e0513ba63a0ee055eca49bc
MD5 52e833c57872b031b3abc21352c77a47
BLAKE2b-256 550c0855f39682e1d807bbe78c52f49b8348f4c79c836d73c8215408442ecad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ceaebdef2c3f41347af1264d6bc5f282733fdb962be433dcc0efb01f7cdd8ad6
MD5 2f893f5c82ce5314e8fa220b889ba215
BLAKE2b-256 844c546ddbba31fd911d76ee696409086cc25002d7414f7a9e1eefd0dde40c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pynabled-0.0.9-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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd15e63b48cff0277c3a24b7c87c8d2806eb7a8d877375dbeee511ce1dbfac42
MD5 a38362cc7352bf2df9d007be2541ae5a
BLAKE2b-256 d58283a325d8005fbe6682a6f3ff31810e30de4ac3de693d69965e3973454acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b63134ec5c958c7d921311fd11de12d5fcf2f4d3439eaf849bf72fca28368ddf
MD5 59e6993e948c471f6d16b1dd75f7d443
BLAKE2b-256 fac870dbaaa5e2dae00d10e62f76984ca907a7840ce8a5c63e222cda837e5fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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.9-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pynabled-0.0.9-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d3b704f64b4386cbf445dc28efada465ace2b75d202f6837173bfc46ad5a920
MD5 273f51e1257476ca862d4b31bbb73901
BLAKE2b-256 908f07c882a37f3b01995f76fef33f5d6a0ed4b1272b3c9dc2620b6fe21c4eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pynabled-0.0.9-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