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.7) 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.7-3.12 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-0.0.1.tar.gz (739.0 kB view details)

Uploaded Source

Built Distributions

smtk_draco-0.0.1-pp310-pypy310_pp73-win_amd64.whl (210.3 kB view details)

Uploaded PyPy Windows x86-64

smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (264.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smtk_draco-0.0.1-pp39-pypy39_pp73-win_amd64.whl (210.3 kB view details)

Uploaded PyPy Windows x86-64

smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (433.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (264.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smtk_draco-0.0.1-pp38-pypy38_pp73-win_amd64.whl (210.1 kB view details)

Uploaded PyPy Windows x86-64

smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (432.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (263.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smtk_draco-0.0.1-pp37-pypy37_pp73-win_amd64.whl (210.1 kB view details)

Uploaded PyPy Windows x86-64

smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (432.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (263.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

smtk_draco-0.0.1-cp312-cp312-win_amd64.whl (211.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

smtk_draco-0.0.1-cp312-cp312-win32.whl (183.9 kB view details)

Uploaded CPython 3.12 Windows x86

smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl (919.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_i686.whl (986.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (432.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl (265.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

smtk_draco-0.0.1-cp311-cp311-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

smtk_draco-0.0.1-cp311-cp311-win32.whl (183.4 kB view details)

Uploaded CPython 3.11 Windows x86

smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (919.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_i686.whl (986.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (433.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

smtk_draco-0.0.1-cp310-cp310-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

smtk_draco-0.0.1-cp310-cp310-win32.whl (183.3 kB view details)

Uploaded CPython 3.10 Windows x86

smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (919.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_i686.whl (986.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (433.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (264.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

smtk_draco-0.0.1-cp39-cp39-win_amd64.whl (212.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

smtk_draco-0.0.1-cp39-cp39-win32.whl (184.4 kB view details)

Uploaded CPython 3.9 Windows x86

smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (920.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_i686.whl (987.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (400.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (434.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl (265.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

smtk_draco-0.0.1-cp38-cp38-win_amd64.whl (213.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

smtk_draco-0.0.1-cp38-cp38-win32.whl (184.4 kB view details)

Uploaded CPython 3.8 Windows x86

smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl (920.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_i686.whl (987.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (400.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (435.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl (265.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

smtk_draco-0.0.1-cp37-cp37m-win_amd64.whl (213.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

smtk_draco-0.0.1-cp37-cp37m-win32.whl (185.0 kB view details)

Uploaded CPython 3.7m Windows x86

smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl (921.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl (988.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (401.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (435.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

smtk_draco-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (265.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1.tar.gz
  • Upload date:
  • Size: 739.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1.tar.gz
Algorithm Hash digest
SHA256 5d88b90babaa1d96405f8b4a267c0b47637300064bb544b2360a4177a5d1061f
MD5 9cc9462893a05c0e7606bb6707e566b6
BLAKE2b-256 8ccbdc53347694ffd33fcbfcf2882eff2af0c86ceaea586000b264ef7fed60af

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41320f24801887dc02964688067f554ab1e7356b1787ece186a3f94dc8a0cbe7
MD5 cd6cfcd238804f009b5216372ea5bc0c
BLAKE2b-256 050c0b5327650dcb9a8a48675f4b5fa0212a2ea5e699fe8485482c5e0265446e

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed76e7a40409a6eccee13c4cf4829d52456cee5bb15b47781f5cff303e1d5d23
MD5 5f0f107d912f270b121bf4512c5db9f2
BLAKE2b-256 d4c51f5d7b93ab1e3f11677201797e0ba1ec93ffcc7dfaf563b75905e1abd925

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9624b9d93a4057f7d11e729939924ba2aeca39cc3c010283854a2b12d123b9f1
MD5 e2a8bb6d6b807615ce4d6bc968337afc
BLAKE2b-256 7e8e254dc553708885ec7f9d1119fe9ef63bc8b2dba99a2c4c5b4ada093716ec

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 098fb9182fabf865307421213dd1b920ef7366d924c694b3be01245847e4fa38
MD5 1a22d455ad04dd52537aa7927aea10a9
BLAKE2b-256 ecee7a037fde807038acb3b7cfc22b7b71d95828f2838c8953250677485350a1

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6667304afe8787c93aa9ec3d069e0385976284941a69dc0766f7dce7c1b59adf
MD5 7255a04c987176eb84c34bf59b4ebd8d
BLAKE2b-256 9ffca1b1e9a176a408aea5773c9102af6985dfe5ed1ac02387ff8315a8d7875b

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d228b589aa88f71c5820c8b81f1636a4c1e432653654d52d01cd9c78e428761e
MD5 7f99794fec0a02c7f70ef8bed39b6118
BLAKE2b-256 be2b3449fe5fc225aae9173ae6a3c668104e302d9886bf9b6ffb119c7043de43

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85d4f8daaef7dba65e72f27e4da42844ec3369f6a2f1208c2ce8e3db0bf6a817
MD5 c4ec3bca8730d915be06cdbf752d398c
BLAKE2b-256 d80d3a3848a8c74aea7e632f03d88de41272cea7751ff8f478087001559e54c5

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35deefdd103a65ba5e852b45b24952196ff872b62a5aaa191ff3026f3c59d0af
MD5 d8e389ee5c4eb22e049f25447f215565
BLAKE2b-256 433656b78f51f98194432b1a66c6c56ad97f8cd142ee0f3e5383da4421a51dac

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f9df73eabd1792657e0b9c5171ccae51aee3d1b7bac8740a964190222699d90e
MD5 931cf05bef17aed0ae6a7a501c790f40
BLAKE2b-256 7b67ca0239a6832ee99841577de768086096d10b8ab32cff6ddd9786d0e17684

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ef38b32655b43e172d57339d4876fcf1e01f1196a1cb107db97eff680fc9fdf
MD5 053c1fd2b0e83d86af3feefcd78281eb
BLAKE2b-256 1c57ed43345dedc5f495145fccd53e5e6626a37f1b5cf1dfb5ee3dcdcf5c431e

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb51bef7cdedd411e811a66ca1e9cdfb49e7e9fc1003512a10c3d83404a0c0e4
MD5 1f2f89506167fbc2f2e21d925c11a7bc
BLAKE2b-256 e9decaa635d872a1e6259be839addf580245383dd73803eec5bea9add0bcd08c

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d67656f4c72770a16fee0291c64c80838b4340accca1c838b92702d5d337024
MD5 df9532d2bfef926c5769c4eb595978b6
BLAKE2b-256 48f99faf8831d05c82a89435db0e8dd48a942f925acf26569f96fab8d83d9ac6

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af632d5b4ce5abbe492442fb0d4df1982d950652006fb7084f9321d0b66c17de
MD5 ffea4bc44e4b6a1ad575a88315542af4
BLAKE2b-256 dfae8e1dab1d9d9c5334f55adb4d4364a2abbf1777b6fd5793d56ab9c950650e

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3693414ab2216e71d8a079bd789e838b4e90ea4affe51d1ebad894f836cf5712
MD5 70a0bea1e191e8fd0efefc4db436e99d
BLAKE2b-256 f740c5cf203fbc26cf1021470ef4e929f1b98918b392be0972d2342fbb360868

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7c9da71c9235032e246ae9569a448dcb42bf8e189d31cd6645b342117835947
MD5 08a1cdb4cbae563028bf09f3a1eb6a49
BLAKE2b-256 faf1f033dda8395f03f2164f6848b0699f7cacdcf99e4286da5e93012959c955

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3fe1f621998d22f4ed8ea4fb5a316c4f1808a326457e2f5857b3c1753511188
MD5 5a7f6838de63821bd8b0447b66f2c689
BLAKE2b-256 2e06de971451989f1a2f3aced6db39d4e253ee4321586d3f5cedc0d525ea9493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 639ccfa2457a343bf34c6f2a2a54bc2c6ea78f2ce64b21bf0f48a3a9a0ca5156
MD5 5784ce5ed1c0c717b7d504a28e100361
BLAKE2b-256 2f133421e5c99a45d24500fb16865f5882de990d7e5092d09a101e92c5a1205b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 183.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e89d2baf80b3649c1697b92cdc8ac15dfe28a1e31717a5077ce6ffab1601b229
MD5 5c281fecfc37a3178fb52f7e8d3b097a
BLAKE2b-256 f625add126b4eaa7f0d058c833b628d2ed1a4fa9d90f1dea3dce9795887e2bc6

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44cd314e08dfe373aa25e191c015a28fb5b9a479315d782ffb3ddc7e0c79c91b
MD5 82fee8cc985de48c4da12b248890af05
BLAKE2b-256 5f20a172a1d49769053d7fc47397aa301400411de4a87260aa54e6b8a5f90e3f

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4b633cc4695eefec7062e9f29c480d283c126401f22dacd6b4fc1b028244a476
MD5 260b60858f1be99d766a1557b57c5d35
BLAKE2b-256 de73c9b73532fd2457506144d9424fac711237d9f5adf332c5d0c3fb0c717ebd

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bc94460ae8867dba2bd5a8760fa82843f4a0150e9571a8c9303315616c7cf07
MD5 5d973b4e6e4e6aaad6d9c0ff2af21e5f
BLAKE2b-256 d6f3c8267109b9d2bdb275caee84858e9ecb42551919f9ab8ad26b4424ac5a15

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fd1be55303c506d70119b73251aee5cc9e44cf6eeb55af3092b7acca6d50e15
MD5 8217f3c8ad5d7b62011f77d0537060b1
BLAKE2b-256 34e4f23306acfb0e9f7446668d6e7751618cd59c2aab43ed436754f1bb927259

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77f0c45c3087da10528a413d1ae7caf492cc6e19a10be39364daaf16edda187c
MD5 612b81d9b190bb4c1147757200f860a8
BLAKE2b-256 669ad154ebbb44bb8d13629e6a73145b49dd3590ce9a4c1abffb53ea1ae607fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2bb85aec870a431c0d4763a417786258c41de9289f15b43003038d8b4017ad7
MD5 fa13e4988e1acd23bf409f94efff40b3
BLAKE2b-256 8448c86cb1b335d302515a220ce8db1bce2b68d678aba65704ab68c42e1537d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 183.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 724d1fd628de0c4030a3dd8907317f17b7ceb419807b04d4fc22fc6a93dc8f22
MD5 67a8ffc2a1f5d462aaad9adf29507334
BLAKE2b-256 e1f383efda1855859feb35e3baf739169a2acc98c48a6efc4b3d9ca270724eb7

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9380f90d05814b408f42c20503dfddcccc76e64c2bb069719449fe0ff4a032a
MD5 988c6a5ec7f4b99e0cd4a6e5e610ede7
BLAKE2b-256 186a87232531eb28bbec33606501f0d4efcefcc4b1315fbcebb78e50cec435d2

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4346d276a1d843a7e7d52d1da9f9be1accc1e9dc7120eb5a87d4a101704319f6
MD5 94f3b1c992ccbfda35cd889a25a7f988
BLAKE2b-256 a9e6781339528907622c0fae564bfe602f31b3630f1c5161f448b3a141c9d328

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f5faa65cdeeb9293574861e5b6e8a3e86239b9253d996f2b964b42f02ff633
MD5 a5de3a8f6babc5373605c0024085826e
BLAKE2b-256 5ecec77b65fd5de28d1a9d60f50773fa6938c18a2ddca7f5dee7e7bc14de9e6a

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 056d247d164eaaf492d1049a92b7247dcb96e170025e12b74b600d2df76e394a
MD5 b6e60bbeced374ff0237cf0fe085d400
BLAKE2b-256 eed7fb8e1fe0bc0973a9274562db1b26712799a2f7f32778e586644c5ab1704e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee4806426fe9520b2e0cb668af8ab8287a44713645ad0bec6806a960748ec0c0
MD5 80dde49465f91363413fd01dd6094498
BLAKE2b-256 cfb4485ce9a4c666f11f3a4d855d1a198363ae1e692e4d6dbde1fea6506acc56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac415d10165d2166e8ed4597946cfe226de7f2703cd759fb2a9034d0510ab38d
MD5 c3e0c66d8a52114e8def4f7b7028d52e
BLAKE2b-256 209be5b23b10a485e2adfa6a1c3c60644173d0a3a9e3ab8126fd58f9e28f3ad9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 183.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2253d1014c82ca24d785260b7beeb1f98cb2c4ac9a7d41f57413f12101da13a7
MD5 a2d7db431de3a85f8f9181972a326eb3
BLAKE2b-256 419b1d957a514f62552e03012df13028c0b5a21bec3a623367fce95b3e7f1ded

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1325aa8b8c4e79fbafc8193985d4886e561eda1dad13a6591a0c468953194b9
MD5 5a448659b3e0edc4a1d7b1b73ff7a451
BLAKE2b-256 c25c748cbdc0b6ac84e189d55cd0c7f6c142a1a859f7ed8e8f6da41cfc51da63

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 03f6cbf2c43b1bcca472a1414c4166d295c64d2d41a1293efd91ebd6215f25ab
MD5 7875c2cebcb7237556c9e88181f31cbf
BLAKE2b-256 7bc86106e590d89a72de967808055fe2426a6d04807970fc2b2dc5ae47a1d681

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33485e015e6404a24fe882e3e4b8cf21c9dcf1f94d4c3a507b713564ade46611
MD5 db87926232fa8ca8e02b5880be8fc974
BLAKE2b-256 5f0a855f2420cfbfd0003c835bb8dde8f06ba084471cf094af29e11e591d26f1

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89fddd29e43a7ea89ae41ad861048e8b2bf37559d4c9b90f2dc499a365f84fd9
MD5 66388fad59f5e3590df0d0bc4abca8d2
BLAKE2b-256 2d2272eb6def8ce2a848e1ef2b55d5f59346741d75c6602ecf8b0f598e27a30c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b56e22b453a9d1090e59e0da07c432e13dd3be906327667509b8f79acadf25b9
MD5 7b7af9d34d2cec4806aa913c1ec48e46
BLAKE2b-256 97a90cf3cea84368684c27b9b60a7c47d9675555e2698bbbde2ee5b55c0b8e71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 212.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a3d4b2b91db6ba08dbfc41fd10652c7ef2118d4aaccbed88f80eda97b89cde3
MD5 db1ad21917dab9533b75af8771542606
BLAKE2b-256 c8abef6d503f4831eb4f58f4e8591503ebe939099b31c84c49d9d92a3034547b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 184.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bc28700eb2f879f3ee3ce048c097c3a29e5c6aecde8ae06f3a1a8324b8cd3b5d
MD5 b9384beb51a8748b12a0bfd0259904fc
BLAKE2b-256 af9fd080a901f244ca0a52de3f80aa4fbd054c5910e20e0785db7420e75bfa3c

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71cff21694b9bf4e7adf52dd68eccc7e57d9d0d46f8a0d35326d0376dfde3ab5
MD5 6feb4d5944e13398e832f0827c0fc71d
BLAKE2b-256 a2e34c7d76823da78db63feceea16341a5c391968d76ad21274186420bcb7336

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a0cbd040f7589638f9c24b841079a478b8f084687070d77a5b8d0fbc8435db0f
MD5 c2423f5909e4524572b5606645400083
BLAKE2b-256 f6d2c9696f1859ce091959d0871f0d950ffb29556f3ec7ce4feec6792e8b37ca

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 393a0b0d7b79533540d5d707f384b0e836a253fc79f762e1c8550ec6b81663b7
MD5 c3f5072d29fbeba1d3560ef0f4d31c4d
BLAKE2b-256 b5a34c084455c7378fd129db2731152bb4f67793915c0408969b285b894419f9

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afce836d546f3f1f67976f1c463eb7a72a52008305d6aebf15509e3e648a2410
MD5 6a8c0d4484cd5333240d5474316187d1
BLAKE2b-256 ebc9a77aca053d6ee94f027a10a55532a8989edd0b0244bfb81f252d1df5fc4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ded00a13c5f3e80e180cec2c84d986daa06a32413e9e152911895ed012d6999
MD5 6024a22cade9ace3bd04790f8c5d19f4
BLAKE2b-256 ba95fe23a5cb54aa20ebf9d92e6b84d91d83949de74ed256ab273d71a38578b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 213.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dcf3a985cfeabf2c7ad82a72ce5e998e54e61a583ca54ba352fc89f4be3ddcda
MD5 c3db5157f95198d7dfd17d679e58a501
BLAKE2b-256 c875f2678f34c87c771741d3589c032e424b1d5f9c6628f33d7e4b1e7185b963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: smtk_draco-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 184.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ab0ae30f031be6029c97dcf77d84ae58e6ba0a5409282c57d8d3b9f7bd2ea0dc
MD5 f315c5e53e89578b63f70bca43445963
BLAKE2b-256 325eb4a874ac632deede021eecfa3c00e36a3557f9479de54e147f6433cf99af

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36e7ea17b4c5a6ce7efee4a8e520e4bef2443caabef74c3d9007a0e1ddf9ddd2
MD5 1adb11b8e5b1a8434db2bcefd99a90f8
BLAKE2b-256 6682b279a25f5e076e665df0fdafeaec0a718174c9c9cc5247f18a20a900f072

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b7bd0b718be6a1850921ce7859d2e970acf151690b1491868200dcb79093ba2e
MD5 010e5b955ff7fadbffb8960252aac1e8
BLAKE2b-256 8b3c8f96e33cbe3aec7cd968d698f5ad181187c86d5d17dbfa396af8e23c7aa8

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5725fa033fcf6628829f37b9235dbe7fe915e562561a3944bfd54b115c7ffb2
MD5 07e14ca65197701c6296ed18a583ecbe
BLAKE2b-256 24db523e0ddc7a5bb2e51167637d73474010517a21ffed2b4ae5094776457f7e

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec526d55097a6e47a2123226b4d22940cadd68a5948c8020327b14b374f8773d
MD5 5be55facedb5f295f9deffe9c0dcacef
BLAKE2b-256 ae86575a135d8ed8f7a7d678447dd2c9b9f07372ccb29807a126804dd6457baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30b42ecd66d3c45255147c43c6decf504d88f7721a2559c9d087a416fb8d6a21
MD5 f839b4eee3d68211b7db38f9e446c912
BLAKE2b-256 305f98364602c560ff633fb831407e99ed21e2eb6ae645f9dd813740a90f0982

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22a1c447e85c4b18e922d0feae74d7729776433dcdd64cb31f8d991b71700d4e
MD5 f536f3798dfbcdd132c63e8c62483670
BLAKE2b-256 84d6a38d90e336295e7114bb533c1c154a275ee40be91739f972e3fe4c056415

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: smtk_draco-0.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 185.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a292b86c600e3dda1e482f87fa81b761afb2d501128c2cef6ba74a38b60b3708
MD5 f0ddf7c364accc5fa95f12b6f6fabd83
BLAKE2b-256 a863af45f25e6fd042fd136e231c3578dffacfd4c5dd07e0eec3cdc22f807f93

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fd381a99869202d21f6fe2012942182cc4480c7f25f2da51f3e56ffe5c1434d
MD5 17694d5cf5ab3885e3bac90795b78afd
BLAKE2b-256 250f4e62a6aa7df74c6b2ac372e7ede8ae8e1b57df2ae7b331df4b437322066d

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1d56d871a5be60811780d98ae6e32f5c4464778a2772581c69b79755f579a843
MD5 1daf67183f4abe723e3211aad78ca35c
BLAKE2b-256 948d515f4771ec960c8c393787903b37b00ec036f850c84d65d9b1ddf79ac5a5

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93349e3a4469b46bdb8c4bf9b7ea6b159b266272c0af262d63092862c8e178be
MD5 bc7584cf8b481ce169cd62322f6b826a
BLAKE2b-256 dbb3998caaae80a8f3b00c47279cd8a32a494ea4680b7c206dff105b9926cafe

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a55f85ee1613fd058e12dc1daeaa23f17bed2c7065be010cfb8edf04631fa02b
MD5 27c8affd79c0498dd1f9be6af14c3abf
BLAKE2b-256 8a9c80bd9af6b2886a9469487ff59d49fdd496c8271271588ebbe6b5c56f36ae

See more details on using hashes here.

File details

Details for the file smtk_draco-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for smtk_draco-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 215ad93fa5271ecb9755906797d9cfdcf3670cecfc703afcc8f8058709f6076c
MD5 61382fdc7a35e95a11f90ac8d64a4c68
BLAKE2b-256 d4fbc2dd431e8cd2cfdf33696260a8cac15f31193742ca42bb6353f7cff28f60

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page