# 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](https://github.com/google/draco) encoding/decoding (See [extern/draco](https://github.com/blender/blender/extern/draco) in the [Blender](https://github.com/blender/blender) Github mirror repository).
It was initially forked from [ux3d/blender_extern_draco](https://github.com/ux3d/blender_extern_draco) (commit [35e1595](https://github.com/ux3d/blender_extern_draco/commit/35e1595c0ab1fa627aeaeff0247890763f993865)) 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](https://github.com/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](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md) extension to the glTF 2.0 specification (see [KhronosGroup/glTF](https://github.com/KhronosGroup/glTF/blob/main/README.md)) 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](https://pypi.org).
[cibuildwheel](https://github.com/pypa/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](https://test.pypi.org) and then, if all goes well, the release is uploaded to PyPI.
## Usage
For now, refer to the basic test script tests/test.py.
Raw data
{
"_id": null,
"home_page": "",
"name": "smtk-draco",
"maintainer": "Simumatik",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "draco mesh compression gltf glb",
"author": "barasimumatik",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/8c/cb/dc53347694ffd33fcbfcf2882eff2af0c86ceaea586000b264ef7fed60af/smtk_draco-0.0.1.tar.gz",
"platform": null,
"description": "# Python wrapper of Blenders Draco bridging library\n\nThis repository contains a Cython-based wrapper for Python (>= 3.7) of the Blender bridging library for [Draco](https://github.com/google/draco) encoding/decoding (See [extern/draco](https://github.com/blender/blender/extern/draco) in the [Blender](https://github.com/blender/blender) Github mirror repository).\n\nIt was initially forked from [ux3d/blender_extern_draco](https://github.com/ux3d/blender_extern_draco) (commit [35e1595](https://github.com/ux3d/blender_extern_draco/commit/35e1595c0ab1fa627aeaeff0247890763f993865)) which is a repo containing a copy of the extern/draco folder and a git submodule with the Draco library (v1.5.2).\n\nThe original bridging library is used by the Blender glTF 2.0 Importer and Exporter (see [KhronosGroup/glTF-Blender-IO](https://github.com/KhronosGroup/glTF-Blender-IO)) via the CTypes library (rather than Cython).\n\n## Purpose\n\nThe main reason this repository was created was to implement the [KHR_draco_mesh_compression](https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_draco_mesh_compression/README.md) extension to the glTF 2.0 specification (see [KhronosGroup/glTF](https://github.com/KhronosGroup/glTF/blob/main/README.md)) in order to be able to add support for the extension to the glTF loaders we use. \n\nSince 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. \n\nBeside 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!\n\n## Changes\n\n* CTypes-related functionality (macros etc.) has been removed from headers and source files\n* Cython sources for the bridging library has been added (.pyd, .pyx)\n* 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\n* Added a Decoder and Encoder class that wrap the C-style free-standing functions\n* Added a basic Github action workflow for managing building, packaging and releasing.\n\n### TODO\n\n* Add proper unit tests\n* Add an enum for the glTF helper functions (see common.pxi)\n* Improve build process: avoid building Draco every time the project is built (cache the build for each platform)\n* 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)\n\n## Installation\n\n### From source\n\n```\npip install .\n```\n\n### From PyPi\n\n```\npip install smtk_draco\n```\n\n### For development\n\nCreate a virtual environment (e.g. `python -m venv .venv`) and make sure\nto activate it.\n\nInstall the prerequisites for an editable install:\n\n```\npip install scikit-build-core scikit-build-core[pyproject] \"cython>=3.0.8\" \n```\n\nThen, from the repository root execute the following command to create an editable install:\n```\npip install --no-build-isolation -C build-dir=build --editable .\n```\n\nNOTE: 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 \nextension, 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.\n\n## Build and release\n\nThe repository uses a Github Action workflow to build, package and (conditionally) release the Python package by\nuploading it to the [Python Package Index](https://pypi.org).\n\n[cibuildwheel](https://github.com/pypa/cibuildwheel) is used to build wheels for Python 3.7-3.12 for several versions of Linux, Windows and macOS.\n\nSource distributions are built using `pipx`.\n\nThe 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](https://test.pypi.org) and then, if all goes well, the release is uploaded to PyPI.\n\n## Usage\n\nFor now, refer to the basic test script tests/test.py.",
"bugtrack_url": null,
"license": "Apache License Version 2.0 (see LICENSE)",
"summary": "Python wrapper of Blenders Draco bridging library",
"version": "0.0.1",
"project_urls": {
"Issues": "https://github.com/Simumatik/smtk_draco/issues",
"Repository": "https://github.com/Simumatik/smtk_draco"
},
"split_keywords": [
"draco",
"mesh",
"compression",
"gltf",
"glb"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "97a90cf3cea84368684c27b9b60a7c47d9675555e2698bbbde2ee5b55c0b8e71",
"md5": "7b7af9d34d2cec4806aa913c1ec48e46",
"sha256": "b56e22b453a9d1090e59e0da07c432e13dd3be906327667509b8f79acadf25b9"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7b7af9d34d2cec4806aa913c1ec48e46",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 264061,
"upload_time": "2024-02-08T16:13:21",
"upload_time_iso_8601": "2024-02-08T16:13:21.428279Z",
"url": "https://files.pythonhosted.org/packages/97/a9/0cf3cea84368684c27b9b60a7c47d9675555e2698bbbde2ee5b55c0b8e71/smtk_draco-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d2272eb6def8ce2a848e1ef2b55d5f59346741d75c6602ecf8b0f598e27a30c",
"md5": "66388fad59f5e3590df0d0bc4abca8d2",
"sha256": "89fddd29e43a7ea89ae41ad861048e8b2bf37559d4c9b90f2dc499a365f84fd9"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "66388fad59f5e3590df0d0bc4abca8d2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 433590,
"upload_time": "2024-02-08T16:13:23",
"upload_time_iso_8601": "2024-02-08T16:13:23.210903Z",
"url": "https://files.pythonhosted.org/packages/2d/22/72eb6def8ce2a848e1ef2b55d5f59346741d75c6602ecf8b0f598e27a30c/smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f0a855f2420cfbfd0003c835bb8dde8f06ba084471cf094af29e11e591d26f1",
"md5": "db87926232fa8ca8e02b5880be8fc974",
"sha256": "33485e015e6404a24fe882e3e4b8cf21c9dcf1f94d4c3a507b713564ade46611"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "db87926232fa8ca8e02b5880be8fc974",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 399470,
"upload_time": "2024-02-08T16:13:24",
"upload_time_iso_8601": "2024-02-08T16:13:24.500862Z",
"url": "https://files.pythonhosted.org/packages/5f/0a/855f2420cfbfd0003c835bb8dde8f06ba084471cf094af29e11e591d26f1/smtk_draco-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bc86106e590d89a72de967808055fe2426a6d04807970fc2b2dc5ae47a1d681",
"md5": "7875c2cebcb7237556c9e88181f31cbf",
"sha256": "03f6cbf2c43b1bcca472a1414c4166d295c64d2d41a1293efd91ebd6215f25ab"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "7875c2cebcb7237556c9e88181f31cbf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 986683,
"upload_time": "2024-02-08T16:13:26",
"upload_time_iso_8601": "2024-02-08T16:13:26.195890Z",
"url": "https://files.pythonhosted.org/packages/7b/c8/6106e590d89a72de967808055fe2426a6d04807970fc2b2dc5ae47a1d681/smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c25c748cbdc0b6ac84e189d55cd0c7f6c142a1a859f7ed8e8f6da41cfc51da63",
"md5": "5a448659b3e0edc4a1d7b1b73ff7a451",
"sha256": "d1325aa8b8c4e79fbafc8193985d4886e561eda1dad13a6591a0c468953194b9"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5a448659b3e0edc4a1d7b1b73ff7a451",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 919419,
"upload_time": "2024-02-08T16:13:27",
"upload_time_iso_8601": "2024-02-08T16:13:27.991887Z",
"url": "https://files.pythonhosted.org/packages/c2/5c/748cbdc0b6ac84e189d55cd0c7f6c142a1a859f7ed8e8f6da41cfc51da63/smtk_draco-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "419b1d957a514f62552e03012df13028c0b5a21bec3a623367fce95b3e7f1ded",
"md5": "a2d7db431de3a85f8f9181972a326eb3",
"sha256": "2253d1014c82ca24d785260b7beeb1f98cb2c4ac9a7d41f57413f12101da13a7"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "a2d7db431de3a85f8f9181972a326eb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 183255,
"upload_time": "2024-02-08T16:13:30",
"upload_time_iso_8601": "2024-02-08T16:13:30.091204Z",
"url": "https://files.pythonhosted.org/packages/41/9b/1d957a514f62552e03012df13028c0b5a21bec3a623367fce95b3e7f1ded/smtk_draco-0.0.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "209be5b23b10a485e2adfa6a1c3c60644173d0a3a9e3ab8126fd58f9e28f3ad9",
"md5": "c3e0c66d8a52114e8def4f7b7028d52e",
"sha256": "ac415d10165d2166e8ed4597946cfe226de7f2703cd759fb2a9034d0510ab38d"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3e0c66d8a52114e8def4f7b7028d52e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 211685,
"upload_time": "2024-02-08T16:13:31",
"upload_time_iso_8601": "2024-02-08T16:13:31.182923Z",
"url": "https://files.pythonhosted.org/packages/20/9b/e5b23b10a485e2adfa6a1c3c60644173d0a3a9e3ab8126fd58f9e28f3ad9/smtk_draco-0.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cfb4485ce9a4c666f11f3a4d855d1a198363ae1e692e4d6dbde1fea6506acc56",
"md5": "80dde49465f91363413fd01dd6094498",
"sha256": "ee4806426fe9520b2e0cb668af8ab8287a44713645ad0bec6806a960748ec0c0"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "80dde49465f91363413fd01dd6094498",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 264722,
"upload_time": "2024-02-08T16:13:32",
"upload_time_iso_8601": "2024-02-08T16:13:32.486038Z",
"url": "https://files.pythonhosted.org/packages/cf/b4/485ce9a4c666f11f3a4d855d1a198363ae1e692e4d6dbde1fea6506acc56/smtk_draco-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eed7fb8e1fe0bc0973a9274562db1b26712799a2f7f32778e586644c5ab1704e",
"md5": "b6e60bbeced374ff0237cf0fe085d400",
"sha256": "056d247d164eaaf492d1049a92b7247dcb96e170025e12b74b600d2df76e394a"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b6e60bbeced374ff0237cf0fe085d400",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 433571,
"upload_time": "2024-02-08T16:13:34",
"upload_time_iso_8601": "2024-02-08T16:13:34.175061Z",
"url": "https://files.pythonhosted.org/packages/ee/d7/fb8e1fe0bc0973a9274562db1b26712799a2f7f32778e586644c5ab1704e/smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ecec77b65fd5de28d1a9d60f50773fa6938c18a2ddca7f5dee7e7bc14de9e6a",
"md5": "a5de3a8f6babc5373605c0024085826e",
"sha256": "45f5faa65cdeeb9293574861e5b6e8a3e86239b9253d996f2b964b42f02ff633"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a5de3a8f6babc5373605c0024085826e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 399428,
"upload_time": "2024-02-08T16:13:35",
"upload_time_iso_8601": "2024-02-08T16:13:35.385755Z",
"url": "https://files.pythonhosted.org/packages/5e/ce/c77b65fd5de28d1a9d60f50773fa6938c18a2ddca7f5dee7e7bc14de9e6a/smtk_draco-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a9e6781339528907622c0fae564bfe602f31b3630f1c5161f448b3a141c9d328",
"md5": "94f3b1c992ccbfda35cd889a25a7f988",
"sha256": "4346d276a1d843a7e7d52d1da9f9be1accc1e9dc7120eb5a87d4a101704319f6"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "94f3b1c992ccbfda35cd889a25a7f988",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 986733,
"upload_time": "2024-02-08T16:13:36",
"upload_time_iso_8601": "2024-02-08T16:13:36.851509Z",
"url": "https://files.pythonhosted.org/packages/a9/e6/781339528907622c0fae564bfe602f31b3630f1c5161f448b3a141c9d328/smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "186a87232531eb28bbec33606501f0d4efcefcc4b1315fbcebb78e50cec435d2",
"md5": "988c6a5ec7f4b99e0cd4a6e5e610ede7",
"sha256": "b9380f90d05814b408f42c20503dfddcccc76e64c2bb069719449fe0ff4a032a"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "988c6a5ec7f4b99e0cd4a6e5e610ede7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 919506,
"upload_time": "2024-02-08T16:13:38",
"upload_time_iso_8601": "2024-02-08T16:13:38.370624Z",
"url": "https://files.pythonhosted.org/packages/18/6a/87232531eb28bbec33606501f0d4efcefcc4b1315fbcebb78e50cec435d2/smtk_draco-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1f383efda1855859feb35e3baf739169a2acc98c48a6efc4b3d9ca270724eb7",
"md5": "67a8ffc2a1f5d462aaad9adf29507334",
"sha256": "724d1fd628de0c4030a3dd8907317f17b7ceb419807b04d4fc22fc6a93dc8f22"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "67a8ffc2a1f5d462aaad9adf29507334",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 183396,
"upload_time": "2024-02-08T16:13:39",
"upload_time_iso_8601": "2024-02-08T16:13:39.540565Z",
"url": "https://files.pythonhosted.org/packages/e1/f3/83efda1855859feb35e3baf739169a2acc98c48a6efc4b3d9ca270724eb7/smtk_draco-0.0.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8448c86cb1b335d302515a220ce8db1bce2b68d678aba65704ab68c42e1537d9",
"md5": "fa13e4988e1acd23bf409f94efff40b3",
"sha256": "c2bb85aec870a431c0d4763a417786258c41de9289f15b43003038d8b4017ad7"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "fa13e4988e1acd23bf409f94efff40b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 211725,
"upload_time": "2024-02-08T16:13:40",
"upload_time_iso_8601": "2024-02-08T16:13:40.740821Z",
"url": "https://files.pythonhosted.org/packages/84/48/c86cb1b335d302515a220ce8db1bce2b68d678aba65704ab68c42e1537d9/smtk_draco-0.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "669ad154ebbb44bb8d13629e6a73145b49dd3590ce9a4c1abffb53ea1ae607fe",
"md5": "612b81d9b190bb4c1147757200f860a8",
"sha256": "77f0c45c3087da10528a413d1ae7caf492cc6e19a10be39364daaf16edda187c"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "612b81d9b190bb4c1147757200f860a8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 265507,
"upload_time": "2024-02-08T16:13:41",
"upload_time_iso_8601": "2024-02-08T16:13:41.935729Z",
"url": "https://files.pythonhosted.org/packages/66/9a/d154ebbb44bb8d13629e6a73145b49dd3590ce9a4c1abffb53ea1ae607fe/smtk_draco-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34e4f23306acfb0e9f7446668d6e7751618cd59c2aab43ed436754f1bb927259",
"md5": "8217f3c8ad5d7b62011f77d0537060b1",
"sha256": "4fd1be55303c506d70119b73251aee5cc9e44cf6eeb55af3092b7acca6d50e15"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8217f3c8ad5d7b62011f77d0537060b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 432880,
"upload_time": "2024-02-08T16:13:43",
"upload_time_iso_8601": "2024-02-08T16:13:43.164486Z",
"url": "https://files.pythonhosted.org/packages/34/e4/f23306acfb0e9f7446668d6e7751618cd59c2aab43ed436754f1bb927259/smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6f3c8267109b9d2bdb275caee84858e9ecb42551919f9ab8ad26b4424ac5a15",
"md5": "5d973b4e6e4e6aaad6d9c0ff2af21e5f",
"sha256": "1bc94460ae8867dba2bd5a8760fa82843f4a0150e9571a8c9303315616c7cf07"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5d973b4e6e4e6aaad6d9c0ff2af21e5f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 399031,
"upload_time": "2024-02-08T16:13:44",
"upload_time_iso_8601": "2024-02-08T16:13:44.810018Z",
"url": "https://files.pythonhosted.org/packages/d6/f3/c8267109b9d2bdb275caee84858e9ecb42551919f9ab8ad26b4424ac5a15/smtk_draco-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de73c9b73532fd2457506144d9424fac711237d9f5adf332c5d0c3fb0c717ebd",
"md5": "260b60858f1be99d766a1557b57c5d35",
"sha256": "4b633cc4695eefec7062e9f29c480d283c126401f22dacd6b4fc1b028244a476"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "260b60858f1be99d766a1557b57c5d35",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 986257,
"upload_time": "2024-02-08T16:13:45",
"upload_time_iso_8601": "2024-02-08T16:13:45.972494Z",
"url": "https://files.pythonhosted.org/packages/de/73/c9b73532fd2457506144d9424fac711237d9f5adf332c5d0c3fb0c717ebd/smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f20a172a1d49769053d7fc47397aa301400411de4a87260aa54e6b8a5f90e3f",
"md5": "82fee8cc985de48c4da12b248890af05",
"sha256": "44cd314e08dfe373aa25e191c015a28fb5b9a479315d782ffb3ddc7e0c79c91b"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "82fee8cc985de48c4da12b248890af05",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 919048,
"upload_time": "2024-02-08T16:13:47",
"upload_time_iso_8601": "2024-02-08T16:13:47.787745Z",
"url": "https://files.pythonhosted.org/packages/5f/20/a172a1d49769053d7fc47397aa301400411de4a87260aa54e6b8a5f90e3f/smtk_draco-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f625add126b4eaa7f0d058c833b628d2ed1a4fa9d90f1dea3dce9795887e2bc6",
"md5": "5c281fecfc37a3178fb52f7e8d3b097a",
"sha256": "e89d2baf80b3649c1697b92cdc8ac15dfe28a1e31717a5077ce6ffab1601b229"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "5c281fecfc37a3178fb52f7e8d3b097a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 183894,
"upload_time": "2024-02-08T16:13:49",
"upload_time_iso_8601": "2024-02-08T16:13:49.210545Z",
"url": "https://files.pythonhosted.org/packages/f6/25/add126b4eaa7f0d058c833b628d2ed1a4fa9d90f1dea3dce9795887e2bc6/smtk_draco-0.0.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f133421e5c99a45d24500fb16865f5882de990d7e5092d09a101e92c5a1205b",
"md5": "5784ce5ed1c0c717b7d504a28e100361",
"sha256": "639ccfa2457a343bf34c6f2a2a54bc2c6ea78f2ce64b21bf0f48a3a9a0ca5156"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5784ce5ed1c0c717b7d504a28e100361",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 211929,
"upload_time": "2024-02-08T16:13:50",
"upload_time_iso_8601": "2024-02-08T16:13:50.811785Z",
"url": "https://files.pythonhosted.org/packages/2f/13/3421e5c99a45d24500fb16865f5882de990d7e5092d09a101e92c5a1205b/smtk_draco-0.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4fbc2dd431e8cd2cfdf33696260a8cac15f31193742ca42bb6353f7cff28f60",
"md5": "61382fdc7a35e95a11f90ac8d64a4c68",
"sha256": "215ad93fa5271ecb9755906797d9cfdcf3670cecfc703afcc8f8058709f6076c"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "61382fdc7a35e95a11f90ac8d64a4c68",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 265689,
"upload_time": "2024-02-08T16:13:52",
"upload_time_iso_8601": "2024-02-08T16:13:52.027891Z",
"url": "https://files.pythonhosted.org/packages/d4/fb/c2dd431e8cd2cfdf33696260a8cac15f31193742ca42bb6353f7cff28f60/smtk_draco-0.0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a9c80bd9af6b2886a9469487ff59d49fdd496c8271271588ebbe6b5c56f36ae",
"md5": "27c8affd79c0498dd1f9be6af14c3abf",
"sha256": "a55f85ee1613fd058e12dc1daeaa23f17bed2c7065be010cfb8edf04631fa02b"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "27c8affd79c0498dd1f9be6af14c3abf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 435368,
"upload_time": "2024-02-08T16:13:53",
"upload_time_iso_8601": "2024-02-08T16:13:53.158278Z",
"url": "https://files.pythonhosted.org/packages/8a/9c/80bd9af6b2886a9469487ff59d49fdd496c8271271588ebbe6b5c56f36ae/smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbb3998caaae80a8f3b00c47279cd8a32a494ea4680b7c206dff105b9926cafe",
"md5": "bc7584cf8b481ce169cd62322f6b826a",
"sha256": "93349e3a4469b46bdb8c4bf9b7ea6b159b266272c0af262d63092862c8e178be"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc7584cf8b481ce169cd62322f6b826a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 400981,
"upload_time": "2024-02-08T16:13:54",
"upload_time_iso_8601": "2024-02-08T16:13:54.328752Z",
"url": "https://files.pythonhosted.org/packages/db/b3/998caaae80a8f3b00c47279cd8a32a494ea4680b7c206dff105b9926cafe/smtk_draco-0.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "948d515f4771ec960c8c393787903b37b00ec036f850c84d65d9b1ddf79ac5a5",
"md5": "1daf67183f4abe723e3211aad78ca35c",
"sha256": "1d56d871a5be60811780d98ae6e32f5c4464778a2772581c69b79755f579a843"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "1daf67183f4abe723e3211aad78ca35c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 988561,
"upload_time": "2024-02-08T16:13:56",
"upload_time_iso_8601": "2024-02-08T16:13:56.044014Z",
"url": "https://files.pythonhosted.org/packages/94/8d/515f4771ec960c8c393787903b37b00ec036f850c84d65d9b1ddf79ac5a5/smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "250f4e62a6aa7df74c6b2ac372e7ede8ae8e1b57df2ae7b331df4b437322066d",
"md5": "17694d5cf5ab3885e3bac90795b78afd",
"sha256": "3fd381a99869202d21f6fe2012942182cc4480c7f25f2da51f3e56ffe5c1434d"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "17694d5cf5ab3885e3bac90795b78afd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 921314,
"upload_time": "2024-02-08T16:13:58",
"upload_time_iso_8601": "2024-02-08T16:13:58.118487Z",
"url": "https://files.pythonhosted.org/packages/25/0f/4e62a6aa7df74c6b2ac372e7ede8ae8e1b57df2ae7b331df4b437322066d/smtk_draco-0.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a863af45f25e6fd042fd136e231c3578dffacfd4c5dd07e0eec3cdc22f807f93",
"md5": "f0ddf7c364accc5fa95f12b6f6fabd83",
"sha256": "a292b86c600e3dda1e482f87fa81b761afb2d501128c2cef6ba74a38b60b3708"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "f0ddf7c364accc5fa95f12b6f6fabd83",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 185019,
"upload_time": "2024-02-08T16:13:59",
"upload_time_iso_8601": "2024-02-08T16:13:59.418026Z",
"url": "https://files.pythonhosted.org/packages/a8/63/af45f25e6fd042fd136e231c3578dffacfd4c5dd07e0eec3cdc22f807f93/smtk_draco-0.0.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84d6a38d90e336295e7114bb533c1c154a275ee40be91739f972e3fe4c056415",
"md5": "f536f3798dfbcdd132c63e8c62483670",
"sha256": "22a1c447e85c4b18e922d0feae74d7729776433dcdd64cb31f8d991b71700d4e"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f536f3798dfbcdd132c63e8c62483670",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 213571,
"upload_time": "2024-02-08T16:14:00",
"upload_time_iso_8601": "2024-02-08T16:14:00.992665Z",
"url": "https://files.pythonhosted.org/packages/84/d6/a38d90e336295e7114bb533c1c154a275ee40be91739f972e3fe4c056415/smtk_draco-0.0.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "305f98364602c560ff633fb831407e99ed21e2eb6ae645f9dd813740a90f0982",
"md5": "f839b4eee3d68211b7db38f9e446c912",
"sha256": "30b42ecd66d3c45255147c43c6decf504d88f7721a2559c9d087a416fb8d6a21"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f839b4eee3d68211b7db38f9e446c912",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 265386,
"upload_time": "2024-02-08T16:14:02",
"upload_time_iso_8601": "2024-02-08T16:14:02.545031Z",
"url": "https://files.pythonhosted.org/packages/30/5f/98364602c560ff633fb831407e99ed21e2eb6ae645f9dd813740a90f0982/smtk_draco-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae86575a135d8ed8f7a7d678447dd2c9b9f07372ccb29807a126804dd6457baf",
"md5": "5be55facedb5f295f9deffe9c0dcacef",
"sha256": "ec526d55097a6e47a2123226b4d22940cadd68a5948c8020327b14b374f8773d"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5be55facedb5f295f9deffe9c0dcacef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 434976,
"upload_time": "2024-02-08T16:14:03",
"upload_time_iso_8601": "2024-02-08T16:14:03.747840Z",
"url": "https://files.pythonhosted.org/packages/ae/86/575a135d8ed8f7a7d678447dd2c9b9f07372ccb29807a126804dd6457baf/smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24db523e0ddc7a5bb2e51167637d73474010517a21ffed2b4ae5094776457f7e",
"md5": "07e14ca65197701c6296ed18a583ecbe",
"sha256": "c5725fa033fcf6628829f37b9235dbe7fe915e562561a3944bfd54b115c7ffb2"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "07e14ca65197701c6296ed18a583ecbe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 400763,
"upload_time": "2024-02-08T16:14:05",
"upload_time_iso_8601": "2024-02-08T16:14:05.498532Z",
"url": "https://files.pythonhosted.org/packages/24/db/523e0ddc7a5bb2e51167637d73474010517a21ffed2b4ae5094776457f7e/smtk_draco-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b3c8f96e33cbe3aec7cd968d698f5ad181187c86d5d17dbfa396af8e23c7aa8",
"md5": "010e5b955ff7fadbffb8960252aac1e8",
"sha256": "b7bd0b718be6a1850921ce7859d2e970acf151690b1491868200dcb79093ba2e"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "010e5b955ff7fadbffb8960252aac1e8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 987723,
"upload_time": "2024-02-08T16:14:06",
"upload_time_iso_8601": "2024-02-08T16:14:06.739372Z",
"url": "https://files.pythonhosted.org/packages/8b/3c/8f96e33cbe3aec7cd968d698f5ad181187c86d5d17dbfa396af8e23c7aa8/smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6682b279a25f5e076e665df0fdafeaec0a718174c9c9cc5247f18a20a900f072",
"md5": "1adb11b8e5b1a8434db2bcefd99a90f8",
"sha256": "36e7ea17b4c5a6ce7efee4a8e520e4bef2443caabef74c3d9007a0e1ddf9ddd2"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "1adb11b8e5b1a8434db2bcefd99a90f8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 920879,
"upload_time": "2024-02-08T16:14:08",
"upload_time_iso_8601": "2024-02-08T16:14:08.006620Z",
"url": "https://files.pythonhosted.org/packages/66/82/b279a25f5e076e665df0fdafeaec0a718174c9c9cc5247f18a20a900f072/smtk_draco-0.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "325eb4a874ac632deede021eecfa3c00e36a3557f9479de54e147f6433cf99af",
"md5": "f315c5e53e89578b63f70bca43445963",
"sha256": "ab0ae30f031be6029c97dcf77d84ae58e6ba0a5409282c57d8d3b9f7bd2ea0dc"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "f315c5e53e89578b63f70bca43445963",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 184378,
"upload_time": "2024-02-08T16:14:09",
"upload_time_iso_8601": "2024-02-08T16:14:09.441400Z",
"url": "https://files.pythonhosted.org/packages/32/5e/b4a874ac632deede021eecfa3c00e36a3557f9479de54e147f6433cf99af/smtk_draco-0.0.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c875f2678f34c87c771741d3589c032e424b1d5f9c6628f33d7e4b1e7185b963",
"md5": "c3db5157f95198d7dfd17d679e58a501",
"sha256": "dcf3a985cfeabf2c7ad82a72ce5e998e54e61a583ca54ba352fc89f4be3ddcda"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3db5157f95198d7dfd17d679e58a501",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 212957,
"upload_time": "2024-02-08T16:14:10",
"upload_time_iso_8601": "2024-02-08T16:14:10.425399Z",
"url": "https://files.pythonhosted.org/packages/c8/75/f2678f34c87c771741d3589c032e424b1d5f9c6628f33d7e4b1e7185b963/smtk_draco-0.0.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba95fe23a5cb54aa20ebf9d92e6b84d91d83949de74ed256ab273d71a38578b0",
"md5": "6024a22cade9ace3bd04790f8c5d19f4",
"sha256": "9ded00a13c5f3e80e180cec2c84d986daa06a32413e9e152911895ed012d6999"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6024a22cade9ace3bd04790f8c5d19f4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 265297,
"upload_time": "2024-02-08T16:14:12",
"upload_time_iso_8601": "2024-02-08T16:14:12.080194Z",
"url": "https://files.pythonhosted.org/packages/ba/95/fe23a5cb54aa20ebf9d92e6b84d91d83949de74ed256ab273d71a38578b0/smtk_draco-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebc9a77aca053d6ee94f027a10a55532a8989edd0b0244bfb81f252d1df5fc4e",
"md5": "6a8c0d4484cd5333240d5474316187d1",
"sha256": "afce836d546f3f1f67976f1c463eb7a72a52008305d6aebf15509e3e648a2410"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6a8c0d4484cd5333240d5474316187d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 434909,
"upload_time": "2024-02-08T16:14:13",
"upload_time_iso_8601": "2024-02-08T16:14:13.850213Z",
"url": "https://files.pythonhosted.org/packages/eb/c9/a77aca053d6ee94f027a10a55532a8989edd0b0244bfb81f252d1df5fc4e/smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5a34c084455c7378fd129db2731152bb4f67793915c0408969b285b894419f9",
"md5": "c3f5072d29fbeba1d3560ef0f4d31c4d",
"sha256": "393a0b0d7b79533540d5d707f384b0e836a253fc79f762e1c8550ec6b81663b7"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c3f5072d29fbeba1d3560ef0f4d31c4d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 400754,
"upload_time": "2024-02-08T16:14:15",
"upload_time_iso_8601": "2024-02-08T16:14:15.355662Z",
"url": "https://files.pythonhosted.org/packages/b5/a3/4c084455c7378fd129db2731152bb4f67793915c0408969b285b894419f9/smtk_draco-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6d2c9696f1859ce091959d0871f0d950ffb29556f3ec7ce4feec6792e8b37ca",
"md5": "c2423f5909e4524572b5606645400083",
"sha256": "a0cbd040f7589638f9c24b841079a478b8f084687070d77a5b8d0fbc8435db0f"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c2423f5909e4524572b5606645400083",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 987770,
"upload_time": "2024-02-08T16:14:16",
"upload_time_iso_8601": "2024-02-08T16:14:16.563194Z",
"url": "https://files.pythonhosted.org/packages/f6/d2/c9696f1859ce091959d0871f0d950ffb29556f3ec7ce4feec6792e8b37ca/smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2e34c7d76823da78db63feceea16341a5c391968d76ad21274186420bcb7336",
"md5": "6feb4d5944e13398e832f0827c0fc71d",
"sha256": "71cff21694b9bf4e7adf52dd68eccc7e57d9d0d46f8a0d35326d0376dfde3ab5"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6feb4d5944e13398e832f0827c0fc71d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 920943,
"upload_time": "2024-02-08T16:14:17",
"upload_time_iso_8601": "2024-02-08T16:14:17.919198Z",
"url": "https://files.pythonhosted.org/packages/a2/e3/4c7d76823da78db63feceea16341a5c391968d76ad21274186420bcb7336/smtk_draco-0.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af9fd080a901f244ca0a52de3f80aa4fbd054c5910e20e0785db7420e75bfa3c",
"md5": "b9384beb51a8748b12a0bfd0259904fc",
"sha256": "bc28700eb2f879f3ee3ce048c097c3a29e5c6aecde8ae06f3a1a8324b8cd3b5d"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b9384beb51a8748b12a0bfd0259904fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 184393,
"upload_time": "2024-02-08T16:14:19",
"upload_time_iso_8601": "2024-02-08T16:14:19.182478Z",
"url": "https://files.pythonhosted.org/packages/af/9f/d080a901f244ca0a52de3f80aa4fbd054c5910e20e0785db7420e75bfa3c/smtk_draco-0.0.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8abef6d503f4831eb4f58f4e8591503ebe939099b31c84c49d9d92a3034547b",
"md5": "db1ad21917dab9533b75af8771542606",
"sha256": "4a3d4b2b91db6ba08dbfc41fd10652c7ef2118d4aaccbed88f80eda97b89cde3"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "db1ad21917dab9533b75af8771542606",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 212860,
"upload_time": "2024-02-08T16:14:20",
"upload_time_iso_8601": "2024-02-08T16:14:20.270613Z",
"url": "https://files.pythonhosted.org/packages/c8/ab/ef6d503f4831eb4f58f4e8591503ebe939099b31c84c49d9d92a3034547b/smtk_draco-0.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecee7a037fde807038acb3b7cfc22b7b71d95828f2838c8953250677485350a1",
"md5": "1a22d455ad04dd52537aa7927aea10a9",
"sha256": "098fb9182fabf865307421213dd1b920ef7366d924c694b3be01245847e4fa38"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1a22d455ad04dd52537aa7927aea10a9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 264202,
"upload_time": "2024-02-08T16:14:21",
"upload_time_iso_8601": "2024-02-08T16:14:21.428313Z",
"url": "https://files.pythonhosted.org/packages/ec/ee/7a037fde807038acb3b7cfc22b7b71d95828f2838c8953250677485350a1/smtk_draco-0.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e8e254dc553708885ec7f9d1119fe9ef63bc8b2dba99a2c4c5b4ada093716ec",
"md5": "e2a8bb6d6b807615ce4d6bc968337afc",
"sha256": "9624b9d93a4057f7d11e729939924ba2aeca39cc3c010283854a2b12d123b9f1"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e2a8bb6d6b807615ce4d6bc968337afc",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 433074,
"upload_time": "2024-02-08T16:14:22",
"upload_time_iso_8601": "2024-02-08T16:14:22.729423Z",
"url": "https://files.pythonhosted.org/packages/7e/8e/254dc553708885ec7f9d1119fe9ef63bc8b2dba99a2c4c5b4ada093716ec/smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4c51f5d7b93ab1e3f11677201797e0ba1ec93ffcc7dfaf563b75905e1abd925",
"md5": "5f0f107d912f270b121bf4512c5db9f2",
"sha256": "ed76e7a40409a6eccee13c4cf4829d52456cee5bb15b47781f5cff303e1d5d23"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5f0f107d912f270b121bf4512c5db9f2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 398349,
"upload_time": "2024-02-08T16:14:23",
"upload_time_iso_8601": "2024-02-08T16:14:23.981030Z",
"url": "https://files.pythonhosted.org/packages/d4/c5/1f5d7b93ab1e3f11677201797e0ba1ec93ffcc7dfaf563b75905e1abd925/smtk_draco-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "050c0b5327650dcb9a8a48675f4b5fa0212a2ea5e699fe8485482c5e0265446e",
"md5": "cd6cfcd238804f009b5216372ea5bc0c",
"sha256": "41320f24801887dc02964688067f554ab1e7356b1787ece186a3f94dc8a0cbe7"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd6cfcd238804f009b5216372ea5bc0c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.7",
"size": 210329,
"upload_time": "2024-02-08T16:14:25",
"upload_time_iso_8601": "2024-02-08T16:14:25.373528Z",
"url": "https://files.pythonhosted.org/packages/05/0c/0b5327650dcb9a8a48675f4b5fa0212a2ea5e699fe8485482c5e0265446e/smtk_draco-0.0.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e06de971451989f1a2f3aced6db39d4e253ee4321586d3f5cedc0d525ea9493",
"md5": "5a7f6838de63821bd8b0447b66f2c689",
"sha256": "f3fe1f621998d22f4ed8ea4fb5a316c4f1808a326457e2f5857b3c1753511188"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5a7f6838de63821bd8b0447b66f2c689",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 263392,
"upload_time": "2024-02-08T16:14:26",
"upload_time_iso_8601": "2024-02-08T16:14:26.606467Z",
"url": "https://files.pythonhosted.org/packages/2e/06/de971451989f1a2f3aced6db39d4e253ee4321586d3f5cedc0d525ea9493/smtk_draco-0.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "faf1f033dda8395f03f2164f6848b0699f7cacdcf99e4286da5e93012959c955",
"md5": "08a1cdb4cbae563028bf09f3a1eb6a49",
"sha256": "e7c9da71c9235032e246ae9569a448dcb42bf8e189d31cd6645b342117835947"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "08a1cdb4cbae563028bf09f3a1eb6a49",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 432392,
"upload_time": "2024-02-08T16:14:28",
"upload_time_iso_8601": "2024-02-08T16:14:28.495674Z",
"url": "https://files.pythonhosted.org/packages/fa/f1/f033dda8395f03f2164f6848b0699f7cacdcf99e4286da5e93012959c955/smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f740c5cf203fbc26cf1021470ef4e929f1b98918b392be0972d2342fbb360868",
"md5": "70a0bea1e191e8fd0efefc4db436e99d",
"sha256": "3693414ab2216e71d8a079bd789e838b4e90ea4affe51d1ebad894f836cf5712"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "70a0bea1e191e8fd0efefc4db436e99d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 397686,
"upload_time": "2024-02-08T16:14:29",
"upload_time_iso_8601": "2024-02-08T16:14:29.753744Z",
"url": "https://files.pythonhosted.org/packages/f7/40/c5cf203fbc26cf1021470ef4e929f1b98918b392be0972d2342fbb360868/smtk_draco-0.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dfae8e1dab1d9d9c5334f55adb4d4364a2abbf1777b6fd5793d56ab9c950650e",
"md5": "ffea4bc44e4b6a1ad575a88315542af4",
"sha256": "af632d5b4ce5abbe492442fb0d4df1982d950652006fb7084f9321d0b66c17de"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ffea4bc44e4b6a1ad575a88315542af4",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": ">=3.7",
"size": 210117,
"upload_time": "2024-02-08T16:14:31",
"upload_time_iso_8601": "2024-02-08T16:14:31.089750Z",
"url": "https://files.pythonhosted.org/packages/df/ae/8e1dab1d9d9c5334f55adb4d4364a2abbf1777b6fd5793d56ab9c950650e/smtk_draco-0.0.1-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48f99faf8831d05c82a89435db0e8dd48a942f925acf26569f96fab8d83d9ac6",
"md5": "df9532d2bfef926c5769c4eb595978b6",
"sha256": "0d67656f4c72770a16fee0291c64c80838b4340accca1c838b92702d5d337024"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "df9532d2bfef926c5769c4eb595978b6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 263385,
"upload_time": "2024-02-08T16:14:32",
"upload_time_iso_8601": "2024-02-08T16:14:32.601715Z",
"url": "https://files.pythonhosted.org/packages/48/f9/9faf8831d05c82a89435db0e8dd48a942f925acf26569f96fab8d83d9ac6/smtk_draco-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9decaa635d872a1e6259be839addf580245383dd73803eec5bea9add0bcd08c",
"md5": "1f2f89506167fbc2f2e21d925c11a7bc",
"sha256": "fb51bef7cdedd411e811a66ca1e9cdfb49e7e9fc1003512a10c3d83404a0c0e4"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1f2f89506167fbc2f2e21d925c11a7bc",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 432390,
"upload_time": "2024-02-08T16:14:33",
"upload_time_iso_8601": "2024-02-08T16:14:33.779117Z",
"url": "https://files.pythonhosted.org/packages/e9/de/caa635d872a1e6259be839addf580245383dd73803eec5bea9add0bcd08c/smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c57ed43345dedc5f495145fccd53e5e6626a37f1b5cf1dfb5ee3dcdcf5c431e",
"md5": "053c1fd2b0e83d86af3feefcd78281eb",
"sha256": "2ef38b32655b43e172d57339d4876fcf1e01f1196a1cb107db97eff680fc9fdf"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "053c1fd2b0e83d86af3feefcd78281eb",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 397672,
"upload_time": "2024-02-08T16:14:34",
"upload_time_iso_8601": "2024-02-08T16:14:34.895555Z",
"url": "https://files.pythonhosted.org/packages/1c/57/ed43345dedc5f495145fccd53e5e6626a37f1b5cf1dfb5ee3dcdcf5c431e/smtk_draco-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b67ca0239a6832ee99841577de768086096d10b8ab32cff6ddd9786d0e17684",
"md5": "931cf05bef17aed0ae6a7a501c790f40",
"sha256": "f9df73eabd1792657e0b9c5171ccae51aee3d1b7bac8740a964190222699d90e"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "931cf05bef17aed0ae6a7a501c790f40",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.7",
"size": 210129,
"upload_time": "2024-02-08T16:14:36",
"upload_time_iso_8601": "2024-02-08T16:14:36.083805Z",
"url": "https://files.pythonhosted.org/packages/7b/67/ca0239a6832ee99841577de768086096d10b8ab32cff6ddd9786d0e17684/smtk_draco-0.0.1-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "433656b78f51f98194432b1a66c6c56ad97f8cd142ee0f3e5383da4421a51dac",
"md5": "d8e389ee5c4eb22e049f25447f215565",
"sha256": "35deefdd103a65ba5e852b45b24952196ff872b62a5aaa191ff3026f3c59d0af"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d8e389ee5c4eb22e049f25447f215565",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 264110,
"upload_time": "2024-02-08T16:14:37",
"upload_time_iso_8601": "2024-02-08T16:14:37.714369Z",
"url": "https://files.pythonhosted.org/packages/43/36/56b78f51f98194432b1a66c6c56ad97f8cd142ee0f3e5383da4421a51dac/smtk_draco-0.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d80d3a3848a8c74aea7e632f03d88de41272cea7751ff8f478087001559e54c5",
"md5": "c4ec3bca8730d915be06cdbf752d398c",
"sha256": "85d4f8daaef7dba65e72f27e4da42844ec3369f6a2f1208c2ce8e3db0bf6a817"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c4ec3bca8730d915be06cdbf752d398c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 432988,
"upload_time": "2024-02-08T16:14:38",
"upload_time_iso_8601": "2024-02-08T16:14:38.842508Z",
"url": "https://files.pythonhosted.org/packages/d8/0d/3a3848a8c74aea7e632f03d88de41272cea7751ff8f478087001559e54c5/smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be2b3449fe5fc225aae9173ae6a3c668104e302d9886bf9b6ffb119c7043de43",
"md5": "7f99794fec0a02c7f70ef8bed39b6118",
"sha256": "d228b589aa88f71c5820c8b81f1636a4c1e432653654d52d01cd9c78e428761e"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7f99794fec0a02c7f70ef8bed39b6118",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 398317,
"upload_time": "2024-02-08T16:14:40",
"upload_time_iso_8601": "2024-02-08T16:14:40.027830Z",
"url": "https://files.pythonhosted.org/packages/be/2b/3449fe5fc225aae9173ae6a3c668104e302d9886bf9b6ffb119c7043de43/smtk_draco-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ffca1b1e9a176a408aea5773c9102af6985dfe5ed1ac02387ff8315a8d7875b",
"md5": "7255a04c987176eb84c34bf59b4ebd8d",
"sha256": "6667304afe8787c93aa9ec3d069e0385976284941a69dc0766f7dce7c1b59adf"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "7255a04c987176eb84c34bf59b4ebd8d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.7",
"size": 210259,
"upload_time": "2024-02-08T16:14:41",
"upload_time_iso_8601": "2024-02-08T16:14:41.154743Z",
"url": "https://files.pythonhosted.org/packages/9f/fc/a1b1e9a176a408aea5773c9102af6985dfe5ed1ac02387ff8315a8d7875b/smtk_draco-0.0.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ccbdc53347694ffd33fcbfcf2882eff2af0c86ceaea586000b264ef7fed60af",
"md5": "9cc9462893a05c0e7606bb6707e566b6",
"sha256": "5d88b90babaa1d96405f8b4a267c0b47637300064bb544b2360a4177a5d1061f"
},
"downloads": -1,
"filename": "smtk_draco-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "9cc9462893a05c0e7606bb6707e566b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 738961,
"upload_time": "2024-02-08T16:14:42",
"upload_time_iso_8601": "2024-02-08T16:14:42.967529Z",
"url": "https://files.pythonhosted.org/packages/8c/cb/dc53347694ffd33fcbfcf2882eff2af0c86ceaea586000b264ef7fed60af/smtk_draco-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-02-08 16:14:42",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Simumatik",
"github_project": "smtk_draco",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "smtk-draco"
}