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.8.tar.gz (399.1 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.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pynabled-0.0.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp315-cp315-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp314-cp314t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pynabled-0.0.8-cp314-cp314-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp314-cp314-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pynabled-0.0.8-cp314-cp314-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pynabled-0.0.8-cp313-cp313t-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pynabled-0.0.8-cp313-cp313-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp313-cp313-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pynabled-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pynabled-0.0.8-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pynabled-0.0.8-cp312-cp312-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp312-cp312-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pynabled-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pynabled-0.0.8-cp311-cp311-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pynabled-0.0.8-cp311-cp311-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp311-cp311-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pynabled-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pynabled-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pynabled-0.0.8-cp310-cp310-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pynabled-0.0.8-cp310-cp310-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pynabled-0.0.8-cp310-cp310-manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: pynabled-0.0.8.tar.gz
  • Upload date:
  • Size: 399.1 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.8.tar.gz
Algorithm Hash digest
SHA256 833a515e3bd03128856a34736dc35b3601d3a21d2ad2f741a85596df03946dd8
MD5 08ad957fda422bb6dd4dc0119efe62d2
BLAKE2b-256 8ffc9311dcaac785f6b2b9b1f83d7f6894f981bacd5b9770a6304f093146f718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd97173de55a80b0f7aa38e2621efc235e39272005fd3d81b8c83547d8a47780
MD5 3089e9ecf706edddbbff4b126a29dd5f
BLAKE2b-256 34623d63d0b920a8092642be0cd859c467a87a7f230bf4b87712243bf450ba9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76aa69008634519b0ce6bb1dfc3bcdfa1ad17b4680f7aed5b5b83e8132bbda4c
MD5 959bb3deeaf7c5fc04b52db17a997bfe
BLAKE2b-256 dacede0471e56acd43edd9e65280f82c576cdd6e3aa3247b021d523e3d00ecd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89e573969b6bfaee33d3db86b095e13f1ea732adc07cbabf9f4d15b1ef3a118f
MD5 d03dd06681056c4bb6b2387c3428626b
BLAKE2b-256 c6dd0984c69089a2b135b012aaa1e07bf35a5706f126374f99e328cf5f857fb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b410916bd5f96bb9e928c3278e345ff5fe629c8f559851c2bb7775d69d9ba903
MD5 4c414f751c782261fb28dae8438ca245
BLAKE2b-256 3ad7c02aa0c23ba66389a4a162dd7f12e3b878fc79cb2b64495f4a0fb1d15682

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pynabled-0.0.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4609dbe1379ec1f954527888944a200219640abe7abcc56bc5b9ef318f5c014a
MD5 4e87745cbea9cf94acef1fd22370bda3
BLAKE2b-256 f8a3b2a28ccb054920350952443137c048daa2e6f79c519355f1548ea2c4c767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62fb6a59bd2b53f4db9ca9a0d93d1f08ef807bfd5ba9664081c5ca4185519190
MD5 90c2e5d5a2f05fce4b4cb4662500b94f
BLAKE2b-256 b701a95a78896d0798a15ef96310b41b2b3c3ba1ee3769fdc8b2de918f46a50d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5dd62249915573b6d857f77384842ce21139b5b8e61cfb53f038c2fd2885af3
MD5 e0a1fa803250941118312cee44610748
BLAKE2b-256 14f8d9658f3ed10c10a012077ad3f513f84998f6352a9f00650fdb8773eb55c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2735f32fd84bebfe5162aea30254d04a5843f197698ab527676cb85959230ec
MD5 cd71ebe4d76e2f4b8ac66afd3f57be2d
BLAKE2b-256 b9eddf77b476f4a2a838f4d12d5ae92e727781ba13c422ce7f3118ee2814a307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1ca9bcfa8489641248b7b20c815d62205eebafded2e9646b330510820184cc4
MD5 e151bf910d66afc42afc952d52dcefec
BLAKE2b-256 8b121045e4e73614bb70525d4ffd205f4f09bf65ec7ab4e66f7f182dab433a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8bb0b89d34db1fd27c9e82ff24c275f2d4ee97aa76eaae60c3c13d4d38c94e2
MD5 c93d02dff9efd79e059f23036a537f50
BLAKE2b-256 30699b8f28e33e85b7deed04bd1b173e0f9823f0e4b50f9f5d122a9401aa79bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pynabled-0.0.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a7fab80f4ef7416f6e8db0b531182eeb2408283e8ae5c866a1272d12f90abf7
MD5 4f17300c01b90fd0cccc1e3d24651548
BLAKE2b-256 8e78288cff846fd17af1d1ab729664c88dbbf39e783761874a34b6ddd398e035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f42710dd2ac7d48f415e03b5a8f34745c9688fdee0dc9c5530a43137f5e1eb8e
MD5 ce6de459f0105998fc9b2afe3525b1c3
BLAKE2b-256 b50c80373caf675878b3c74cc6ea914a3eb0743f2efee97ccaa46e6cb77d7290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64d92a819dddc8adb25ed79198778cb02499c9b1d63bf5618d0f81e5c405b09e
MD5 95bc3c2265f8441ebbd1d6992b233679
BLAKE2b-256 728cb97fe6ce5916e818d2fcaa0ff3d1a4860623a06ca92a6e5c7e86767b4cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5327e6aef96bc6b0eb8a636ce23891aef8fb0332dabca406a38bcf25b29ce876
MD5 2de6c0e48a30543f41e2db56778a9003
BLAKE2b-256 68ed2b5b3fa9fd526332e021d00a1ae639ed552281bcb52f26b8f515c157247e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 882692fb65af2302551019421386d72fc4408e7f1da84fc13c664ae1599179fc
MD5 e7786f25ca39eb44cc060aaa08e14016
BLAKE2b-256 24d5d39a1c8e6de4cbd4c5ed098a7743cad09ac125bbd3821e06e941b26655f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pynabled-0.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ad89b3962e5817d732b44b50a899e465bb2d7fef6ba7d1d3acbc41d4ffe46c9
MD5 2ca7cf275c9acb88547e43a3540916ba
BLAKE2b-256 d0520914552617ed7e109d1cfa06028f6c3721f3ad8aee33129463fc7135866d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adb00bf393cb1acafdd57b6e34f3851e8ec02e10817f8b90b8b361459a5738de
MD5 9dc89cc83792931873f1eac960461f06
BLAKE2b-256 c0118e7f007344bff0e562d974cadd311e6e726beff6d502daf9490d09d8ae6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86de1f02554a4a906a0f6f5b5d72fcbe0475e81cf12f50f46729d6a3ad658691
MD5 44b53f7fd04b1d0a8687dd77c3b63a4b
BLAKE2b-256 0a8f259c6c1601da574eaf0672fc7d5b2d81e3bbd93f1c755276a0eed2bbeae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93ec8eb42cb741c3b0e95b18454a8fee416e6803fd0af55d1c6072e909dc6a33
MD5 4deea6b0b1a9728ee7a15de1d3381434
BLAKE2b-256 874570fce14e53e3f10537aa41abd8128b90565ebd46daef65f2f3431f6b7576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd09e0415cf57048229254846fc82082fdcd306072dba4f1d3f0faabf2adf2e4
MD5 d2391091a85a74b06933206f58d853bf
BLAKE2b-256 fd31df5c82cc1165e11992840dc80b295fdf819190bc3a53fda1e422220ba237

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pynabled-0.0.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.0 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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 915f33f4b2b53d4fdc6b4ad6c80da1c49fefe76978e0bfac20ce24b7793e5bd7
MD5 06508798a79cfb146ff773bf80415417
BLAKE2b-256 3ec787cafabd2b7d5f5f01656f885be91f9ee73fb5f84e3a883c622e2b668a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68f86bac4ed5583c87254bac65c743043d7a6931efdecebd3ca0d1cd0c240b59
MD5 bde0a16c5f72fbd28d8cad8219e75789
BLAKE2b-256 b6da65dcbffadcf73a405d37e2936f03aca6dd9616e2ec960e434b2ee3078abd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecaa76341eededb2543e7ce2bef2bbab10151e16a06fa693e0d82bf8c910e8c9
MD5 d0c16425ff3a0d4cee6cebba216032c4
BLAKE2b-256 89a18aa7b278d4aa47d4e2bf1a6e0f63b2f2f19347bf2f54a754ebc8d62fe805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e36508674f4a51e6849c982d26bc1da58ad1ebd08c5ab2c0493d1849cafe89c
MD5 4788eb1359089898d2167fa2db157d19
BLAKE2b-256 cb90c11e95948e2fc64a61eebb221c6b85a9e3c9b140c20dff686ecce39ff62f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 897738a6276d55a3a00182de4fa6e774517a6d0a65728c2836f424616f20f059
MD5 d04b56d046f8041fa42bdc0f430d4a73
BLAKE2b-256 15b94be279864ee47e7676170fe0891f027964fcb50c16a6e38218c2df7a31c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pynabled-0.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.0 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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 48c418abce9ccb3c022ffd892ff78f96fada3d40ed6802f9e423d4289d1735c4
MD5 44eb3bd0f2c6f383c0f0ec094a6a1aad
BLAKE2b-256 0a13c089ba41b546ef277d42637a1d9a8e7c4fe1f92929cb09f883b1c3a789dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 865358d235a189ea80e26f1d8b80415d0809e5d46985f6f783d0a76b8fa2c25a
MD5 c2d517a0026a5297b62b3ae7c1de0ff1
BLAKE2b-256 33ce07b3e5d24d9342a5b4ed11b9860bb61e225346fb7dad4d479ad38e01d4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pynabled-0.0.8-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 701c23ca2f7120c3f0416299297b03886af006579bbed54278425848177747d4
MD5 65121d1c165836cf577f823ccd683984
BLAKE2b-256 7da0924b65a1823bb9729705bb46b40015765c321557d190cf4d9ad8c1245ed5

See more details on using hashes here.

Provenance

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