Skip to main content

Python wrapper of Blenders Draco bridging library

Project description

Python wrapper of Blenders Draco bridging library

This repository contains a Cython-based wrapper for Python (>= 3.8) of the Blender bridging library for Draco encoding/decoding (See extern/draco in the Blender Github mirror repository).

It was initially forked from ux3d/blender_extern_draco (commit 35e1595) which is a repo containing a copy of the extern/draco folder and a git submodule with the Draco library (v1.5.2).

The original bridging library is used by the Blender glTF 2.0 Importer and Exporter (see KhronosGroup/glTF-Blender-IO) via the CTypes library (rather than Cython).

Purpose

The main reason this repository was created was to implement the KHR_draco_mesh_compression extension to the glTF 2.0 specification (see KhronosGroup/glTF) in order to be able to add support for the extension to the glTF loaders we use.

Since we only require the parts of the Draco library used by the glTF extension, the Blender bridging library served as an excellent starting point that serves our need.

Beside trying to fix any eventual issues with the current implementation, we may or may not add new functionality or improvements, either to the existing bridge code or by wrapping other parts of the Draco library to suit our needs. Use the Python package and the code at your own risk!

Changes

  • CTypes-related functionality (macros etc.) has been removed from headers and source files
  • Cython sources for the bridging library has been added (.pyd, .pyx)
  • Added a Python-based build system that uses CMake (scikit-build-core, see pyproject.toml) and setup the project for packaging and distribution to PyPi
  • Added a Decoder and Encoder class that wrap the C-style free-standing functions
  • Added a basic Github action workflow for managing building, packaging and releasing.

TODO

  • Add proper unit tests
  • Add an enum for the glTF helper functions (see common.pxi)
  • Improve build process: avoid building Draco every time the project is built (cache the build for each platform)
  • Improve build process: find a way to build and use Dracos tests when Draco is built (the build breaks unless the full library is built)

Installation

From source

pip install .

From PyPi

pip install smtk_draco

For development

Create a virtual environment (e.g. python -m venv .venv) and make sure to activate it.

Install the prerequisites for an editable install:

pip install scikit-build-core scikit-build-core[pyproject] "cython>=3.0.8" 

Then, from the repository root execute the following command to create an editable install:

pip install --no-build-isolation -C build-dir=build --editable  .

NOTE: When changing the package source files you need to rebuild (i.e. rerun the install command above). This is because Cython needs to generate a new C++ source file for the extension, which then needs to be rebuilt and linked with Draco. However, the Draco library will not have to be rebuilt, so the process is relatively quick. If the build-dir setting is omitted, the build system uses a temporary directory for each build which will build Draco as well.

Build and release

The repository uses a Github Action workflow to build, package and (conditionally) release the Python package by uploading it to the Python Package Index.

cibuildwheel is used to build wheels for Python 3.8-3.14 for several versions of Linux, Windows and macOS.

Source distributions are built using pipx.

The final release steps are only executed when a release is published. As a final test, the wheels and the source distribution are first uploaded to Test PyPI and then, if all goes well, the release is uploaded to PyPI.

Usage

For now, refer to the basic test script tests/test.py.

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

smtk_draco-1.0.1.tar.gz (738.6 kB view details)

Uploaded Source

Built Distributions

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

smtk_draco-1.0.1-cp314-cp314t-win_amd64.whl (224.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

smtk_draco-1.0.1-cp314-cp314t-win32.whl (192.0 kB view details)

Uploaded CPython 3.14tWindows x86

smtk_draco-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (394.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp314-cp314t-macosx_10_13_x86_64.whl (281.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

smtk_draco-1.0.1-cp314-cp314-win_amd64.whl (218.5 kB view details)

Uploaded CPython 3.14Windows x86-64

smtk_draco-1.0.1-cp314-cp314-win32.whl (189.0 kB view details)

Uploaded CPython 3.14Windows x86

smtk_draco-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp314-cp314-macosx_10_13_x86_64.whl (280.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

smtk_draco-1.0.1-cp313-cp313-win_amd64.whl (212.3 kB view details)

Uploaded CPython 3.13Windows x86-64

smtk_draco-1.0.1-cp313-cp313-win32.whl (184.9 kB view details)

Uploaded CPython 3.13Windows x86

smtk_draco-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl (280.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

smtk_draco-1.0.1-cp312-cp312-win_amd64.whl (213.0 kB view details)

Uploaded CPython 3.12Windows x86-64

smtk_draco-1.0.1-cp312-cp312-win32.whl (185.3 kB view details)

Uploaded CPython 3.12Windows x86

smtk_draco-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (281.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

smtk_draco-1.0.1-cp311-cp311-win_amd64.whl (214.4 kB view details)

Uploaded CPython 3.11Windows x86-64

smtk_draco-1.0.1-cp311-cp311-win32.whl (184.7 kB view details)

Uploaded CPython 3.11Windows x86

smtk_draco-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (396.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (281.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

smtk_draco-1.0.1-cp310-cp310-win_amd64.whl (214.2 kB view details)

Uploaded CPython 3.10Windows x86-64

smtk_draco-1.0.1-cp310-cp310-win32.whl (184.6 kB view details)

Uploaded CPython 3.10Windows x86

smtk_draco-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (281.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

smtk_draco-1.0.1-cp39-cp39-win_amd64.whl (214.6 kB view details)

Uploaded CPython 3.9Windows x86-64

smtk_draco-1.0.1-cp39-cp39-win32.whl (184.9 kB view details)

Uploaded CPython 3.9Windows x86

smtk_draco-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (281.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

smtk_draco-1.0.1-cp38-cp38-win_amd64.whl (215.7 kB view details)

Uploaded CPython 3.8Windows x86-64

smtk_draco-1.0.1-cp38-cp38-win32.whl (186.4 kB view details)

Uploaded CPython 3.8Windows x86

smtk_draco-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

smtk_draco-1.0.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (397.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

smtk_draco-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (283.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file smtk_draco-1.0.1.tar.gz.

File metadata

  • Download URL: smtk_draco-1.0.1.tar.gz
  • Upload date:
  • Size: 738.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1.tar.gz
Algorithm Hash digest
SHA256 2a67360e1144601b487556dfa4f3bfc1edb3a41e6f195f1ef1110ead0db3a57c
MD5 93044f6f5d8619a08dfa994f1ddee803
BLAKE2b-256 4a9773579fb6842ca5df526f81a4e206c00b46c0b55cc1fd7dabb07b9c9b1053

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1.tar.gz:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 224.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a5b2216dc5c5b03cd06a30bc0853ad8bf4bbedea633f47dcc9ca4578e6c939d
MD5 08adddc666975db825114e9c4e5efa6a
BLAKE2b-256 de4e1f86cf0dd0724df05b94de1038e5aec956d658f3dead1a436e4ff27a1735

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 192.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 81eb2cc00b80a34a5b2bbbe42c9f42f5a91142c709ddc8dd4b291dd3ce020e7e
MD5 a253df92e2b5fb87acdbe865d46bcdd3
BLAKE2b-256 95522a39f89b98fb37d2a1047f69494ea6d727dd257ae414e697ba856599bd15

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314t-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ab50563fc08d1c4aff0b4b00b7bd53c44e6252684b29b5536573ed9e8ee89fc
MD5 1914bc02b243804a8e62f213b431c735
BLAKE2b-256 4e01bf0774e09c57bbcca178aae68a06ea07d6c2ee0b9e523b645ed9df2a93bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3aaa82dea466cac7a6b3e8bbdc1ba329cf22b979a97c053c8acb7d8310d99934
MD5 5649148872d5749d0b24c681c4fb115f
BLAKE2b-256 668a20a8111f9fd1d7d0f7e42d7f41a45149f7336eb724ededb66da5445fbbbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cdf079bf90a1b5b2c5460a51d6295f1f10d01ef736c1d4178bdb8d5d8d09ca51
MD5 2f864d6f842cff7b4ef73d05baae206f
BLAKE2b-256 f82ffeed6120e5580f339e43cd87f7b4a8e0b79d25281405ba0fbac6417a5e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 218.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3fc33bba566b678323b5204b9f1666605d6d96e8728c908c50d0131b5db2d56b
MD5 8141b3e93725a644f15efaf486f77f3d
BLAKE2b-256 9abbbf84d11fa271c2803aae8c299a6222333dd3461d329c6d29b073e33ea24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 189.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 01bd8ba893a4918ac7d6e65a3a57a16d1339cd4b286edef0ac4b08560464e8cd
MD5 865efda4a7be4526ead89bce06d67275
BLAKE2b-256 1aa7392829ddec72abfa9575e3c40336c2d8fbd7c785add185fd8fb84717099c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12ec03c0f7114afcf5e8a8dd15fc9e5c702f3641522b9bfdbd8b6292ed7d8ebe
MD5 20ee330510991ed246a7edbd7ab229f5
BLAKE2b-256 db05e9dba38308b20840e08eb06308fd2c42d5978d10cf6e4919624e3bf39ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8d9dd242e6a86dba16e15f17460717ac12dec7baa8f8c6971effd8cbe577568
MD5 3147b1c93f1b4f1f91f75723cb4c91a9
BLAKE2b-256 f4f3ed126f285c82b0f23c91af166d2da84212d6264cccfd8d991faae0e3ad3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77731d0843db84c6dc99a36d1b3c2417d773742c7ad8cafe1553322d0c117507
MD5 0c00e53f57ffdd8efd3474c59f934331
BLAKE2b-256 fb80ed196492660e36cdf09000b37f0e9372558f26f0c6aa15f54993a3bf9003

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 212.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e3553e65ca9c2e0e0387210fdc1db436a22e674f678399c777b3b178095de0b
MD5 ccd668b33197fbe21fd7d6b4d60721da
BLAKE2b-256 6bc2b896e42eeb33991cae210876ed0b9f7022a5e55904e9652137c948bdfd7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 184.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1b3322ee0dc279bfac32ed2aeedab3ec89d6e986a456a411339cbbf9aafb29c4
MD5 faafb6833a07d7c9dbdb5351897f0a05
BLAKE2b-256 36a3ba52ba8a447b90eb94049f6b6171a0965c32f19ebf0ce7d723b4ea378f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp313-cp313-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ffd532a8d8c6c144193bf1d10102392070e50323289fe6f9e7c3dd92d67c21e
MD5 bc4abc8524da2d7be64a0b2dd51e5002
BLAKE2b-256 4397f84280d3f35b0bd946f3293d2b723a932a81969471226485e406e9ae1c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 557bdbb073f0127cb82cfd3077d2aa538cc575df2951833efaabeaca213f5faa
MD5 90e3398e81e9f6a3bb3579b6adac34a6
BLAKE2b-256 0e7df3255dbc3eb1a1fb7363f604b81d1107bd0b86949a4a681d51823fe07e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 654b4e757e0c14ebdc6784b46b2cf2f6a89f942fae3e40b61b43f29f368451ef
MD5 a155e0333643e33b3f1ecf4353decb47
BLAKE2b-256 25633afcfa9116545a9db1b8a4da2398ba47bd6c33a5e2ecc9be0cb717ca3824

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 213.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2dacaebec9c2bbc2e59c464f98921a615f96d6a61849a8c3840ce898772f5218
MD5 5174840efb6c04a610de6312dbf57279
BLAKE2b-256 b02b1206eb3c6d42fa41f3c6814629cc0176af67d37dcd39c055a09ec8e6c4af

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 185.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 547e79d9d12ed67bd9700eff9697d85fae8cdee7d7b7463af2810e0c447a411f
MD5 ac3a13fb9cc93e1e51c38ff4441de62d
BLAKE2b-256 71acdf3d50f250877c651b2824cb9a5afc92a1561f264f4a03acbad423c83eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp312-cp312-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4e7a2a709f7f79eb8a6e3b63b2f7b090affcd92ecdc0470940e7ee41f3cb2f6
MD5 174b98810c067b174998149031957442
BLAKE2b-256 b691ce61ad3a328c6c230171ae127014a5798c8cf92573b5f38d72217e672546

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36057073a392712e6473b960ecaa0802d9f144047b9ae1b4a53d2e1c9ff4522a
MD5 fe11cbc30484c0ec647e51102c4ff651
BLAKE2b-256 d7802c1d3c5078376f48aa5f2d87adc8f658ed3f39f8a519b31b20021d172263

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15fcea2864331f054ee78268fa2e5ec117cfdee8777bc6891bd87ddbe346426b
MD5 da62b172680177038fa40719359be43f
BLAKE2b-256 2f2bfa3799b09da3652301d9d183eb61c58b85a24c4a4544c8c9de19508471bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 214.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db662acfa19e48f5cd18b511566934722e1085b32b6cea4102405697c71c7c4e
MD5 6f06d927e3cf34a1e77b55815a63682b
BLAKE2b-256 da72f28ced3cf866b7304a20ca5fb7555959cefb9b57af0999552ce008880921

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 184.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 951563903e392d7c3bb8f69615448633bd788057022695a99602e1e09ba5de69
MD5 7d1db7138d99c0cce8d92f6a670bb6de
BLAKE2b-256 495f2e303a863991a888ea10695c63be43817401418dc284aaafab716870052c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp311-cp311-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04265f33becc8857270cd285c903ad3cc9a669b5ce7547e162628cef1efd28a0
MD5 d68c946545910372d8a8cd07d8ad9bf5
BLAKE2b-256 9ab61210495085554e348a976fa6f5adc287dd4237d6f250287b3397abb948da

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07b3075f1c27d2d1867e5b1558bd6c2fddbd814e35addcd901ee49c9f11c324e
MD5 62f73a00d88932e643353c531c8a0d8d
BLAKE2b-256 5d7567821a00fb3de88b5b808b1f12e3349a47a6f0961ce650a9f6d2ff06375c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4240dcd17e4b0b08c83c2499818e69f9aaaa55eac9c47dcbaf56e90a4906cfa2
MD5 b6d27c546750e2d41f5e4642507773f6
BLAKE2b-256 32013a422453415b817a0be685e25758e0c386f1013e08c6d51711bcfe7566b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 214.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef8c4996fa7c52e9546ab8d5daff5ba6527590c14fa40a0ba7c3e994c6cd305d
MD5 371e53da506216814216dc134363d9b4
BLAKE2b-256 90db0bd36ccd10713a42383592a15dd8fe96c70cc6dd1d0f2222e225687f0baa

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 184.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 52c9864b2b7484d13ccb0e8226e88917f6799c3303911bcaa01dbe6a7ea145a6
MD5 424d335027b6ab01973c788669e98c21
BLAKE2b-256 c6274aed5976de898e7e44bd1e6c6cd0bae056bdf4f3e86d3dd700c0c073c5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp310-cp310-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bd22a08e1e7a5dea5f238205168f896154d8acc635c61414c5f4ff1ece7ae10
MD5 3a0740bf3726a6cf1a3bba050d6a77db
BLAKE2b-256 9e4efc60d285dca0bfb2d50fa6b99583d46acfb0732e342674bbd07d4265bbdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45c843f3afb030511a1e221f5927fab3586ce9830533a1050cd13a83cc6c46b0
MD5 54207ce51c320b75e6da920e07dafff3
BLAKE2b-256 c454381bb95414ef79ed467134dcd0ee320f2fd5f56c564f4ee43d7af8adf1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46c724c646ed3df6f60a072fdd4724804bfdb27a45d913f97c967d20639de061
MD5 600dea7c112c3136e25ca791cfa13e99
BLAKE2b-256 12d53c8361b3fdab962fd0f57859436934fcb39e1a6498240e0f1435cc637018

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 214.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d075b0407399034c1f307f96c347e6741cd96a90d01d7758eab66989a53e6a5
MD5 85f158e04a65c52b057e4be6b4587f19
BLAKE2b-256 746f23d6504a2df863f74cbeb5221878c759488e9f31385023b28de89e5f49a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 184.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f9147c5048bf531131b7a8d166eafdea04f4dc10c43801ffba016e93ae077eff
MD5 3591432365a4ed719cd08805310ea767
BLAKE2b-256 d7a295600800893a796c90b303ddf951740e8e8e681a91655e2012b535a7036d

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp39-cp39-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 349b6c7a483a7aa1d14e9588339c49eac37c7998cfe8a29ef5c66ebf934328b5
MD5 b3c9bc7825d1cdba380f4ca73bd333b6
BLAKE2b-256 c2cd218ed22b5aa038b6ed131f43310294f4bcabecc588f2060c8cdb56f79361

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 472ca01119c17071a7125bd9ec9edd38ef7ca7f11fd114bd98fddfa7b3ee0a5b
MD5 652b2e3451131632374bb11951d10d9f
BLAKE2b-256 ad75cf11e40fa850a1e3980498ca68f8b7b748da3d31c7c02922d79a2eaf9132

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 629a68443e0bdf121b9e35900a7f417ac36c84dabec15e4ab62ee5614e90c391
MD5 5e3f62822f94c58c18bcf0d489a73761
BLAKE2b-256 2478b2d395c7bc329a6fae14f9786666df6429a2cd556428c3a04907a443865e

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 215.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 00cb53af27a2bfac75ed8c2267ffc5f72adacc231dfc76480ebd65e0657b1380
MD5 74cf12a65263e11712e88a254f2faacd
BLAKE2b-256 5354b7a4a02a1ae1e289c0e35415b73cb97211771bbbb29c34a8e471fb65481b

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp38-cp38-win_amd64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: smtk_draco-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 186.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for smtk_draco-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 457d70200a1a78769d48f934a16599a0716c7e0f9c7eb23223ced5f703ca56b2
MD5 da71590b7c2e3e62094d77fdcdf184ec
BLAKE2b-256 e53c95098f440d8be275ca64490b7372af69d29fa4be0128c227f838cf177a3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp38-cp38-win32.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fe17857f97f6107a8db128d408aea13c685e55bb849546ea076af67c019afab
MD5 4a94200d629a2e1dc307ac3a83715ee1
BLAKE2b-256 aa5df8d0b3995496d02dac9f8ff785e9e688fb1383fda9924d6e7a09ba77012c

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1573e50a57df3ca2b570d6abcba278d2fc84970f2ca9202c6de1eccabf570832
MD5 3750bc8672bb3960ced762dab1b9851f
BLAKE2b-256 079ed6af9ee78e39a6990e8ce70af641058d19a3599ab592c9e5557a4c138205

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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

File details

Details for the file smtk_draco-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd946108eab8d42e798427f3f3d5f4c25355e60fa339a671d766c600e67ccbd3
MD5 c92531837bc0d59fb656474d3a9c52ba
BLAKE2b-256 5be48e96a8aa923f617b9f613c0852b632d7f08ef5746f2250c0428ae5cec76a

See more details on using hashes here.

Provenance

The following attestation bundles were made for smtk_draco-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on Simumatik/smtk_draco

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