[![PyPI version](https://badge.fury.io/py/DracoPy.svg)](https://badge.fury.io/py/DracoPy)
# DracoPy
```python
import os
import DracoPy
with open('bunny.drc', 'rb') as draco_file:
mesh = DracoPy.decode(draco_file.read())
print(f"number of points: {len(mesh.points)}")
print(f"number of faces: {len(mesh.faces)}")
print(f"number of normals: {len(mesh.normals)}")
# Note: If mesh.points is an integer numpy array,
# it will be encoded as an integer attribute. Otherwise,
# it will be encoded as floating point.
binary = DracoPy.encode(mesh.points, mesh.faces)
with open('bunny_test.drc', 'wb') as test_file:
test_file.write(encoding_test)
# If faces is omitted, DracoPy will encode a point cloud
binary = Dracopy.encode(mesh.points)
# Options for encoding:
binary = Dracopy.encode(
mesh.points, faces=mesh.faces,
quantization_bits=14, compression_level=1,
quantization_range=-1, quantization_origin=None,
create_metadata=False, preserve_order=False,
colors=mesh.colors
)
```
DracoPy is a Python wrapper for Google's Draco mesh compression library.
## Installation
Binary wheels are available for users with Python >= 3.6 and pip >= 20.
Installation from source requires Python >= 3.6, pip >= 10, and a C++ compiler that is fully compatible with C++11.
It supports Linux, OS X, and Windows. Numpy is required.
```bash
pip install DracoPy
```
## Acknowledgements
We graciously thank The Stanford 3D Scanning Repository for providing the Stanford Bunny test model.
https://graphics.stanford.edu/data/3Dscanrep/
Raw data
{
"_id": null,
"home_page": "https://github.com/seung-lab/DracoPy",
"name": "DracoPy",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Manuel Castro, William Silversmith :: Contributors :: Fatih Erol, Faru Nuri Sonmez, Zeyu Zhao, Denis Riviere",
"author_email": "macastro@princeton.edu, ws9@princeton.edu",
"download_url": null,
"platform": null,
"description": "[![PyPI version](https://badge.fury.io/py/DracoPy.svg)](https://badge.fury.io/py/DracoPy)\n\n# DracoPy\n\n```python\nimport os\nimport DracoPy\n\nwith open('bunny.drc', 'rb') as draco_file:\n mesh = DracoPy.decode(draco_file.read())\n\nprint(f\"number of points: {len(mesh.points)}\")\nprint(f\"number of faces: {len(mesh.faces)}\")\nprint(f\"number of normals: {len(mesh.normals)}\")\n\n# Note: If mesh.points is an integer numpy array,\n# it will be encoded as an integer attribute. Otherwise,\n# it will be encoded as floating point.\nbinary = DracoPy.encode(mesh.points, mesh.faces)\nwith open('bunny_test.drc', 'wb') as test_file:\n test_file.write(encoding_test)\n\n# If faces is omitted, DracoPy will encode a point cloud\nbinary = Dracopy.encode(mesh.points)\n\n# Options for encoding:\nbinary = Dracopy.encode(\n mesh.points, faces=mesh.faces,\n quantization_bits=14, compression_level=1,\n quantization_range=-1, quantization_origin=None,\n create_metadata=False, preserve_order=False,\n colors=mesh.colors\n)\n\n```\n\nDracoPy is a Python wrapper for Google's Draco mesh compression library.\n\n## Installation\n\nBinary wheels are available for users with Python >= 3.6 and pip >= 20.\n\nInstallation from source requires Python >= 3.6, pip >= 10, and a C++ compiler that is fully compatible with C++11.\n\nIt supports Linux, OS X, and Windows. Numpy is required.\n\n```bash\npip install DracoPy\n```\n\n## Acknowledgements\n\nWe graciously thank The Stanford 3D Scanning Repository for providing the Stanford Bunny test model.\n\nhttps://graphics.stanford.edu/data/3Dscanrep/\n",
"bugtrack_url": null,
"license": "License :: OSI Approved :: Apache Software License",
"summary": "Python wrapper for Google's Draco Mesh Compression Library",
"version": "1.4.2",
"project_urls": {
"Homepage": "https://github.com/seung-lab/DracoPy"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3133b9c6d016e87a9aa3eda45f3bb6c9fdea45070a47c50b700ce0e636190b4b",
"md5": "7bae712b07fdb336f5ee99512520444c",
"sha256": "adbe53dd0aeb189a6c6e4fb913a878aaa8db67a93a5d6214c7346a2949225d31"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7bae712b07fdb336f5ee99512520444c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 905903,
"upload_time": "2024-12-05T23:54:38",
"upload_time_iso_8601": "2024-12-05T23:54:38.380197Z",
"url": "https://files.pythonhosted.org/packages/31/33/b9c6d016e87a9aa3eda45f3bb6c9fdea45070a47c50b700ce0e636190b4b/DracoPy-1.4.2-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c72bb20a162b3cba2f4b8971cdfd0bbf2d9ee1e12c98f438a5e14a27aef4fe7",
"md5": "a4321db97158aee0d46e4bc8a432edda",
"sha256": "25f295610a5b34b940e18cf9fd498a2aff651972af8f7ad3d794a99fd031d541"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a4321db97158aee0d46e4bc8a432edda",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2926425,
"upload_time": "2024-12-05T23:54:40",
"upload_time_iso_8601": "2024-12-05T23:54:40.971397Z",
"url": "https://files.pythonhosted.org/packages/1c/72/bb20a162b3cba2f4b8971cdfd0bbf2d9ee1e12c98f438a5e14a27aef4fe7/DracoPy-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "babb2a56603932c641ae4346ead074887a90db86ccf1cd9cb266be03c190459d",
"md5": "84edd877102840fc70a6515489f10dcb",
"sha256": "85a50445b82ede25fbbe3582a647c74be84f6fea72d65d4a8a9c3ef5edff3a8e"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "84edd877102840fc70a6515489f10dcb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2605706,
"upload_time": "2024-12-05T23:54:42",
"upload_time_iso_8601": "2024-12-05T23:54:42.688623Z",
"url": "https://files.pythonhosted.org/packages/ba/bb/2a56603932c641ae4346ead074887a90db86ccf1cd9cb266be03c190459d/DracoPy-1.4.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ef1b2b34644f500857b42526e3412979c12814e95eb9de28bea4b990ea7f89e",
"md5": "df4d97ba431c99d0a6cc2ea36ff8c250",
"sha256": "6ad79728e8f5f15a745574c29147a47ec49ec05cba6f6bf1a5454066fc940bfe"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "df4d97ba431c99d0a6cc2ea36ff8c250",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4445178,
"upload_time": "2024-12-05T23:54:44",
"upload_time_iso_8601": "2024-12-05T23:54:44.349980Z",
"url": "https://files.pythonhosted.org/packages/8e/f1/b2b34644f500857b42526e3412979c12814e95eb9de28bea4b990ea7f89e/DracoPy-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b717b35ed4f7c093234886e39f945d11efdf9ea3f01bff6edd41f898fef117c3",
"md5": "67e85bb43706a62be387a71e381b52c6",
"sha256": "8ffbc021824b1b029c8ea9f7a24605f7aa864d565e00054f01fc6e7f8d52d101"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "67e85bb43706a62be387a71e381b52c6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4778105,
"upload_time": "2024-12-05T23:54:46",
"upload_time_iso_8601": "2024-12-05T23:54:46.106325Z",
"url": "https://files.pythonhosted.org/packages/b7/17/b35ed4f7c093234886e39f945d11efdf9ea3f01bff6edd41f898fef117c3/DracoPy-1.4.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2547a9a25867a9d829c9bc866baba7766487a79d57c859b4be1c4dc2950a1990",
"md5": "0187aeefc0e34e90afd37f4adcf5df86",
"sha256": "12e3eafc5a669fcbfe47695381799f93b1c4f91e3e550d4acebbf03de6214d3c"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0187aeefc0e34e90afd37f4adcf5df86",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4518837,
"upload_time": "2024-12-05T23:54:48",
"upload_time_iso_8601": "2024-12-05T23:54:48.338685Z",
"url": "https://files.pythonhosted.org/packages/25/47/a9a25867a9d829c9bc866baba7766487a79d57c859b4be1c4dc2950a1990/DracoPy-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52805e7de3137ced4aa1804b2b7a57c0e338476ff3854e1286451c65f1d5b0c3",
"md5": "47abe941245a3e0c83e4cb2497eda65f",
"sha256": "7b5f75461f6ffd82704649698710e9e89c62120597ec76c5d84b7202da93a21d"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "47abe941245a3e0c83e4cb2497eda65f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4143573,
"upload_time": "2024-12-05T23:54:49",
"upload_time_iso_8601": "2024-12-05T23:54:49.929415Z",
"url": "https://files.pythonhosted.org/packages/52/80/5e7de3137ced4aa1804b2b7a57c0e338476ff3854e1286451c65f1d5b0c3/DracoPy-1.4.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2bef9862ae54227f5020dbdc1323da0b102e83744cd2c28e7bd58d7f66b16d79",
"md5": "168ac44d631ef71b41caeef21b5a4117",
"sha256": "adcd72ab51dbf856c62be2ed5c428072e2fffce9ab2234eb152f4c375efeefce"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "168ac44d631ef71b41caeef21b5a4117",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4849766,
"upload_time": "2024-12-05T23:54:52",
"upload_time_iso_8601": "2024-12-05T23:54:52.269835Z",
"url": "https://files.pythonhosted.org/packages/2b/ef/9862ae54227f5020dbdc1323da0b102e83744cd2c28e7bd58d7f66b16d79/DracoPy-1.4.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f2956e9f404f01501b961848df7dadfc02b555bcfdb180abe84ef600a4883dd",
"md5": "4d1811575f32ad3e59545d0e92c03a33",
"sha256": "82fe0f3d27d5403b49d8b9fa5686f8cb4c159016f14bd6239c9254be79d31606"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4d1811575f32ad3e59545d0e92c03a33",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 906239,
"upload_time": "2024-12-05T23:54:54",
"upload_time_iso_8601": "2024-12-05T23:54:54.277249Z",
"url": "https://files.pythonhosted.org/packages/8f/29/56e9f404f01501b961848df7dadfc02b555bcfdb180abe84ef600a4883dd/DracoPy-1.4.2-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dfafa4fd3c4978435c3c1b0cabf0b63632d89cf58a755f6f290bc85aa1a3685a",
"md5": "ef14cc8a873c9fabc71f40f5a0ea4424",
"sha256": "603432776c1ae91213db1bb2cdc99327a1e796f481866ad233eadb4451219b28"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ef14cc8a873c9fabc71f40f5a0ea4424",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2926877,
"upload_time": "2024-12-05T23:54:56",
"upload_time_iso_8601": "2024-12-05T23:54:56.395361Z",
"url": "https://files.pythonhosted.org/packages/df/af/a4fd3c4978435c3c1b0cabf0b63632d89cf58a755f6f290bc85aa1a3685a/DracoPy-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e83ff32797b5a2c35b32d432e1d7019ef719fb9864ffb01d4a970034bc2921c",
"md5": "2278b8f7a4ec4a2e99f5d26c87ce6e8c",
"sha256": "ba94acecd0092f9444547fc2403062c35b09b209f3c2541bb4541e5a6a444447"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2278b8f7a4ec4a2e99f5d26c87ce6e8c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2605922,
"upload_time": "2024-12-05T23:54:58",
"upload_time_iso_8601": "2024-12-05T23:54:58.652210Z",
"url": "https://files.pythonhosted.org/packages/0e/83/ff32797b5a2c35b32d432e1d7019ef719fb9864ffb01d4a970034bc2921c/DracoPy-1.4.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ddb0e50ec8087da9ba723d09ec7ae55c83d528b5a628f809e7402f91258f6b04",
"md5": "9f171f948c8b9213a8a4755608542c62",
"sha256": "1718adf788c7c9152f0cfc20f4d97657087c1c5e8dd6eea32506b83e11a18577"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9f171f948c8b9213a8a4755608542c62",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4502137,
"upload_time": "2024-12-05T23:55:00",
"upload_time_iso_8601": "2024-12-05T23:55:00.291071Z",
"url": "https://files.pythonhosted.org/packages/dd/b0/e50ec8087da9ba723d09ec7ae55c83d528b5a628f809e7402f91258f6b04/DracoPy-1.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45c7685e1db4730fefaac7b76693a50f8224297b09b479eceb2dc03ab2443702",
"md5": "216509e97e561c6c2e80e81646d5ceee",
"sha256": "5fd8635d3e82150cc64ac33863a6c1032742b098febb2987119825f6e602025b"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "216509e97e561c6c2e80e81646d5ceee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4827437,
"upload_time": "2024-12-05T23:55:02",
"upload_time_iso_8601": "2024-12-05T23:55:02.506548Z",
"url": "https://files.pythonhosted.org/packages/45/c7/685e1db4730fefaac7b76693a50f8224297b09b479eceb2dc03ab2443702/DracoPy-1.4.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03f83bdc76d9e605474260e8f64aafc40d83e0d32b0c27edc7506289eff5c98c",
"md5": "f0e7cc784563bae18677ecfc1a254659",
"sha256": "f502fa21e419081c10325fa71f6f30180dc853cee62b619cf62980b68b522611"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f0e7cc784563bae18677ecfc1a254659",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4575387,
"upload_time": "2024-12-05T23:55:04",
"upload_time_iso_8601": "2024-12-05T23:55:04.977854Z",
"url": "https://files.pythonhosted.org/packages/03/f8/3bdc76d9e605474260e8f64aafc40d83e0d32b0c27edc7506289eff5c98c/DracoPy-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8ada16521db1d4337654ba33ee1c63c9b1f96e6d4b8581dba91a504c257ae4c",
"md5": "d938dce75426b3cf54e971a013386033",
"sha256": "8862354e3b83f02a674131863ba7716cf17c42655c10b6e68c86e12ebaab095a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "d938dce75426b3cf54e971a013386033",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4143267,
"upload_time": "2024-12-05T23:55:06",
"upload_time_iso_8601": "2024-12-05T23:55:06.521502Z",
"url": "https://files.pythonhosted.org/packages/b8/ad/a16521db1d4337654ba33ee1c63c9b1f96e6d4b8581dba91a504c257ae4c/DracoPy-1.4.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f03abd74f00cd3bf76b278167621f71b0738504e25153df5e2649f5c1a978a13",
"md5": "7fc9e7d27b1498efca37936d3769b4b2",
"sha256": "edeb22895e8de001767c35b279bd10367450b00a2a5d15aef3e271accc4625e8"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "7fc9e7d27b1498efca37936d3769b4b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4850222,
"upload_time": "2024-12-05T23:55:08",
"upload_time_iso_8601": "2024-12-05T23:55:08.951064Z",
"url": "https://files.pythonhosted.org/packages/f0/3a/bd74f00cd3bf76b278167621f71b0738504e25153df5e2649f5c1a978a13/DracoPy-1.4.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7d22058fd96b6a34c083c82c6dc76e4ace80d4d8a867cfee5b8826733a2fa63",
"md5": "40ecab5d5c701a49b806a5165775ae81",
"sha256": "327405b1f246f7752922cc173d7e6a7f4007dd691720ddee5c1cdee16d22c4e3"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "40ecab5d5c701a49b806a5165775ae81",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 905626,
"upload_time": "2024-12-05T23:55:10",
"upload_time_iso_8601": "2024-12-05T23:55:10.344756Z",
"url": "https://files.pythonhosted.org/packages/c7/d2/2058fd96b6a34c083c82c6dc76e4ace80d4d8a867cfee5b8826733a2fa63/DracoPy-1.4.2-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b48c1530663b085c4951384afe525fbf544269ffdc17e4b2812d9088cd96fad2",
"md5": "02bf4654479901fed6c3a7065ac9ec41",
"sha256": "9b996edf049a934588541d4b59a2b44cdf896e47cdc4ffed16588a673dc6294c"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "02bf4654479901fed6c3a7065ac9ec41",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4805710,
"upload_time": "2024-12-05T23:55:11",
"upload_time_iso_8601": "2024-12-05T23:55:11.935228Z",
"url": "https://files.pythonhosted.org/packages/b4/8c/1530663b085c4951384afe525fbf544269ffdc17e4b2812d9088cd96fad2/DracoPy-1.4.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6314928a97546394fc9e94b72e01d0d9dbbd7ff198c65d07939ac7177dad65b",
"md5": "579fde9be0932b1e3daca3a8a7b1c497",
"sha256": "37431fa86ca843c13dbfe7434f5951d1fbf1e7f9d2c93bc53b55a5615050f2b8"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "579fde9be0932b1e3daca3a8a7b1c497",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4557059,
"upload_time": "2024-12-05T23:55:14",
"upload_time_iso_8601": "2024-12-05T23:55:14.389726Z",
"url": "https://files.pythonhosted.org/packages/a6/31/4928a97546394fc9e94b72e01d0d9dbbd7ff198c65d07939ac7177dad65b/DracoPy-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "956bad1f0665eabcd54fb19ae64becd88111f9039c9e37d6a441d549a3f07052",
"md5": "865fe41e325e6c9155ba8cb1330603f9",
"sha256": "77e296389fe48de4b4300fd8db170bf145a96948185d27e8fbf9ad448a6dbe0d"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "865fe41e325e6c9155ba8cb1330603f9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4144026,
"upload_time": "2024-12-05T23:55:16",
"upload_time_iso_8601": "2024-12-05T23:55:16.438499Z",
"url": "https://files.pythonhosted.org/packages/95/6b/ad1f0665eabcd54fb19ae64becd88111f9039c9e37d6a441d549a3f07052/DracoPy-1.4.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5cb12930d8fafeb09fbc81100d4c28d3dc0f284ef9479108f2360ffdf14d81c1",
"md5": "74883977d7dc79f6dae69cbabf69e819",
"sha256": "bafeb90583ed40f2e6b5909769c42dc9d83bcfe419aed19c1b41b1eec5904f9c"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "74883977d7dc79f6dae69cbabf69e819",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4849202,
"upload_time": "2024-12-05T23:55:18",
"upload_time_iso_8601": "2024-12-05T23:55:18.355312Z",
"url": "https://files.pythonhosted.org/packages/5c/b1/2930d8fafeb09fbc81100d4c28d3dc0f284ef9479108f2360ffdf14d81c1/DracoPy-1.4.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05dd5c4f0da0ada99b3a3bc44125614953466e7aa648ddca7b77c88489a180f2",
"md5": "df950082d8babe91966331df671f774e",
"sha256": "9c0c23cde7a418aa0e914b69f4cd02517d78944f6c7b0b869350c498c2516627"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "df950082d8babe91966331df671f774e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 902243,
"upload_time": "2024-12-05T23:55:19",
"upload_time_iso_8601": "2024-12-05T23:55:19.958132Z",
"url": "https://files.pythonhosted.org/packages/05/dd/5c4f0da0ada99b3a3bc44125614953466e7aa648ddca7b77c88489a180f2/DracoPy-1.4.2-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "086e6d4835ed2f34c559b7c0aba60be4ded96b8eeb783b03d28526b6402ea88c",
"md5": "70025b8a7d5eb846e33a5caa39d062b9",
"sha256": "f9d0fd79966fb77d69db7b0b8bbc4a1869a4f61536ee3baeb13c717e488a1d73"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "70025b8a7d5eb846e33a5caa39d062b9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2919376,
"upload_time": "2024-12-05T23:55:22",
"upload_time_iso_8601": "2024-12-05T23:55:22.005923Z",
"url": "https://files.pythonhosted.org/packages/08/6e/6d4835ed2f34c559b7c0aba60be4ded96b8eeb783b03d28526b6402ea88c/DracoPy-1.4.2-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12c88ae0ad27bbf25756bb79b66703e19fa69b9a84fdbf0273159329e38ec81a",
"md5": "18ec593d5111886908267f89d7a69a9c",
"sha256": "c8fc76f0bbdbc906cfbf9dc35d1df1d4b323c67928be0f03f10eb9bcbbc57e6a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "18ec593d5111886908267f89d7a69a9c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2604926,
"upload_time": "2024-12-05T23:55:24",
"upload_time_iso_8601": "2024-12-05T23:55:24.804781Z",
"url": "https://files.pythonhosted.org/packages/12/c8/8ae0ad27bbf25756bb79b66703e19fa69b9a84fdbf0273159329e38ec81a/DracoPy-1.4.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68d494b31bd156946ee0db69c31b854b02f48be678e103b22f600a015fc06329",
"md5": "6513ee8ff6214f83bcf0dac63de309ae",
"sha256": "78c9cf65f0d1d813986c57f000f33fe0830e0038908838a02536f86125c2342a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6513ee8ff6214f83bcf0dac63de309ae",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4478704,
"upload_time": "2024-12-05T23:55:26",
"upload_time_iso_8601": "2024-12-05T23:55:26.940732Z",
"url": "https://files.pythonhosted.org/packages/68/d4/94b31bd156946ee0db69c31b854b02f48be678e103b22f600a015fc06329/DracoPy-1.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cb2c84bec596f0ffece736077bd3cc736202573364b479e51ae4cb7f116411a",
"md5": "fdcede3f1344f7bcb7e08bb2f59bbde5",
"sha256": "7b7c3f0542a841d7c560eb55297e360d58b70488f08dab57c75a9e2ce220e035"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fdcede3f1344f7bcb7e08bb2f59bbde5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4803971,
"upload_time": "2024-12-05T23:55:28",
"upload_time_iso_8601": "2024-12-05T23:55:28.526140Z",
"url": "https://files.pythonhosted.org/packages/9c/b2/c84bec596f0ffece736077bd3cc736202573364b479e51ae4cb7f116411a/DracoPy-1.4.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99b8920c389f4c40cf1892874cd045ed41f66807e41dab6a491392aef0ad3ab6",
"md5": "bf1e80b24797ae840c28ec895b7ed077",
"sha256": "b1af18107d1345033cedd43ba42e5f95e66e154531088beddca99707cafb19df"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bf1e80b24797ae840c28ec895b7ed077",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4554850,
"upload_time": "2024-12-05T23:55:30",
"upload_time_iso_8601": "2024-12-05T23:55:30.505608Z",
"url": "https://files.pythonhosted.org/packages/99/b8/920c389f4c40cf1892874cd045ed41f66807e41dab6a491392aef0ad3ab6/DracoPy-1.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec6c0aee98523739a4cddf25ab7fe177afba985c7d869076a11962081caf74d1",
"md5": "1ded149bc34006a9e0c9ed8fcd271819",
"sha256": "9c8bfde47b64d207863f76c6778a74a3a07b00f441f2b235fc6e53eddde1673a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "1ded149bc34006a9e0c9ed8fcd271819",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4143651,
"upload_time": "2024-12-05T23:55:32",
"upload_time_iso_8601": "2024-12-05T23:55:32.195007Z",
"url": "https://files.pythonhosted.org/packages/ec/6c/0aee98523739a4cddf25ab7fe177afba985c7d869076a11962081caf74d1/DracoPy-1.4.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49b83c09e6feb64e3c52f04d60b81d942e522ad1ff38b89946014ed762be1e7a",
"md5": "b7aa9dd37a0e69aa3e50d3161006e458",
"sha256": "3002bf5e826e4eca36dfb287400e72cda69a09bbbc63ed20bcf145d449e2485a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "b7aa9dd37a0e69aa3e50d3161006e458",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4848852,
"upload_time": "2024-12-05T23:55:34",
"upload_time_iso_8601": "2024-12-05T23:55:34.173869Z",
"url": "https://files.pythonhosted.org/packages/49/b8/3c09e6feb64e3c52f04d60b81d942e522ad1ff38b89946014ed762be1e7a/DracoPy-1.4.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "014f825c263989aecbe6ee77afd45506a437b035809248fc095e79bc3df28c91",
"md5": "20bb7e45cd2db480ce959dbbb055c671",
"sha256": "128ffdd173781c2b69cf6394a2a8e68fd8b9ef303853cc686cbb13d2e2fbacd9"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "20bb7e45cd2db480ce959dbbb055c671",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2926841,
"upload_time": "2024-12-05T23:55:35",
"upload_time_iso_8601": "2024-12-05T23:55:35.683086Z",
"url": "https://files.pythonhosted.org/packages/01/4f/825c263989aecbe6ee77afd45506a437b035809248fc095e79bc3df28c91/DracoPy-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea1bc1822c17604ca036e1838d66b13814ae6e547ff7366ee593d803dc5cf4c9",
"md5": "3cfde239ef5fccfe3d383c8056f4cf0a",
"sha256": "c49d99e55e6cdd1b730beda3983f6e7f39a7725ec81823798a5c791023b89f81"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3cfde239ef5fccfe3d383c8056f4cf0a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2606109,
"upload_time": "2024-12-05T23:55:37",
"upload_time_iso_8601": "2024-12-05T23:55:37.112813Z",
"url": "https://files.pythonhosted.org/packages/ea/1b/c1822c17604ca036e1838d66b13814ae6e547ff7366ee593d803dc5cf4c9/DracoPy-1.4.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46a1401631cf502fcc536271481647e90e8b9952e427d5eae89adccd113ec655",
"md5": "c3ce0a067236feb999e79f2c8859a3aa",
"sha256": "5a992013707abf7bdccdb7df15c274c131a3e3bd8362f5b241d42f0b14c9f6d2"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "c3ce0a067236feb999e79f2c8859a3aa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 904544,
"upload_time": "2024-12-05T23:55:38",
"upload_time_iso_8601": "2024-12-05T23:55:38.534998Z",
"url": "https://files.pythonhosted.org/packages/46/a1/401631cf502fcc536271481647e90e8b9952e427d5eae89adccd113ec655/DracoPy-1.4.2-cp38-cp38-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5350d89d0efc1bf0d5cab20521c3c8db4bb00ed72cff6c43ba39bc0e3f1786e9",
"md5": "b6f14af8c6311a30fd52180475f78cf1",
"sha256": "19d2afbc5b79b213b18ac927597af88a2c0cfd0e5f26d2ac420bc848bd8f9d34"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b6f14af8c6311a30fd52180475f78cf1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4463670,
"upload_time": "2024-12-05T23:55:40",
"upload_time_iso_8601": "2024-12-05T23:55:40.073469Z",
"url": "https://files.pythonhosted.org/packages/53/50/d89d0efc1bf0d5cab20521c3c8db4bb00ed72cff6c43ba39bc0e3f1786e9/DracoPy-1.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "620fd73010f05c3a5cb7a8298b41b27fe642b1f594ae6ba8130f40af0ee932a3",
"md5": "ca41072d038a5cbb798d17805c5a5ccb",
"sha256": "573f17616891edbb56429d9390a34c58fdeb1c4338858323d88ea778b04c0a51"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ca41072d038a5cbb798d17805c5a5ccb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4796755,
"upload_time": "2024-12-05T23:55:41",
"upload_time_iso_8601": "2024-12-05T23:55:41.616529Z",
"url": "https://files.pythonhosted.org/packages/62/0f/d73010f05c3a5cb7a8298b41b27fe642b1f594ae6ba8130f40af0ee932a3/DracoPy-1.4.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51f75a67b10960c4497bc75a6d15e277c573eda72d3f9d09bf436f7b25a6718a",
"md5": "60a96d5df8fee1cb41183d3b73af4714",
"sha256": "1d52e34cfa6105a4d391666ac0d3cc4c3bb3072dbf428a92adef683b64b77624"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "60a96d5df8fee1cb41183d3b73af4714",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4537841,
"upload_time": "2024-12-05T23:55:43",
"upload_time_iso_8601": "2024-12-05T23:55:43.886272Z",
"url": "https://files.pythonhosted.org/packages/51/f7/5a67b10960c4497bc75a6d15e277c573eda72d3f9d09bf436f7b25a6718a/DracoPy-1.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9716864aa4c10ac3ca6345909256b9c0ebed1de902a97150f6fd4198183fee46",
"md5": "663cb889ccc4d39260282119eb595406",
"sha256": "64e82baff8429eaac90edd95ab192703017b43061f03b6f26235c8a5e86af66d"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "663cb889ccc4d39260282119eb595406",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4144093,
"upload_time": "2024-12-05T23:55:46",
"upload_time_iso_8601": "2024-12-05T23:55:46.110752Z",
"url": "https://files.pythonhosted.org/packages/97/16/864aa4c10ac3ca6345909256b9c0ebed1de902a97150f6fd4198183fee46/DracoPy-1.4.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5540d010bfb8cd2e1b7bc41ef902c6e8b8f336ae0bfb79690d99f17e3d7772f1",
"md5": "3b3b650e8b6658d27f1b6aa2ad51a5aa",
"sha256": "a3039714a8c1508347ceda2d46da4d588376362b314723720f5c772a6a4fdc21"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "3b3b650e8b6658d27f1b6aa2ad51a5aa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4850198,
"upload_time": "2024-12-05T23:55:47",
"upload_time_iso_8601": "2024-12-05T23:55:47.816818Z",
"url": "https://files.pythonhosted.org/packages/55/40/d010bfb8cd2e1b7bc41ef902c6e8b8f336ae0bfb79690d99f17e3d7772f1/DracoPy-1.4.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29addbb84b1d415b9db13b117971775137bbb030a01b00670ea871b2f531843f",
"md5": "0c12fe497b28621c9cbed23da986b293",
"sha256": "4d9574828be0fd0b49a947febe7bdeb2f256dd9eaa97520497f311aa034a8b84"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0c12fe497b28621c9cbed23da986b293",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 907141,
"upload_time": "2024-12-05T23:55:49",
"upload_time_iso_8601": "2024-12-05T23:55:49.233287Z",
"url": "https://files.pythonhosted.org/packages/29/ad/dbb84b1d415b9db13b117971775137bbb030a01b00670ea871b2f531843f/DracoPy-1.4.2-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3edfe769568515cb2577c79ac5766965955917a0a508afd5f483a6a40fd9660",
"md5": "200a6fc2a369bd19d21e045065731993",
"sha256": "dcd0921f89d9ec057be32945f875223206421bd4e6bd41406c506a69c2a39d50"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "200a6fc2a369bd19d21e045065731993",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2927118,
"upload_time": "2024-12-05T23:55:52",
"upload_time_iso_8601": "2024-12-05T23:55:52.197610Z",
"url": "https://files.pythonhosted.org/packages/c3/ed/fe769568515cb2577c79ac5766965955917a0a508afd5f483a6a40fd9660/DracoPy-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9d48cc0653b5813f3fd3d49a2f10412a3763f3417023a3379573aa60731dd5a",
"md5": "9c0eb96239d354754913124376b29d8d",
"sha256": "ded8370cc775c38de72b6ece7f8a991f9935f7d6cd532a4682a6aea16f25a561"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9c0eb96239d354754913124376b29d8d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2606159,
"upload_time": "2024-12-05T23:55:53",
"upload_time_iso_8601": "2024-12-05T23:55:53.522555Z",
"url": "https://files.pythonhosted.org/packages/d9/d4/8cc0653b5813f3fd3d49a2f10412a3763f3417023a3379573aa60731dd5a/DracoPy-1.4.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08b5aad75245acf49f4013c3782666030134ef6855dc47a72482784d074f388f",
"md5": "3403336e8f72a962e4c3609619a69ab0",
"sha256": "48050843fa6b8a14daf5cc8eaf34faa5d4951a923ce6fb2790f99ad76ceca52a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3403336e8f72a962e4c3609619a69ab0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4447186,
"upload_time": "2024-12-05T23:55:55",
"upload_time_iso_8601": "2024-12-05T23:55:55.192998Z",
"url": "https://files.pythonhosted.org/packages/08/b5/aad75245acf49f4013c3782666030134ef6855dc47a72482784d074f388f/DracoPy-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "479a86babf4137736e44c8ed52d87c5ab55d9502f13d8d0d341851ae367e874c",
"md5": "94971131a672cc2db090b64d0e6b8aac",
"sha256": "db8a717eead57f7c48410064836457bf6924c30f4582939c7fe095199e2bd70a"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "94971131a672cc2db090b64d0e6b8aac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4784849,
"upload_time": "2024-12-05T23:55:56",
"upload_time_iso_8601": "2024-12-05T23:55:56.703891Z",
"url": "https://files.pythonhosted.org/packages/47/9a/86babf4137736e44c8ed52d87c5ab55d9502f13d8d0d341851ae367e874c/DracoPy-1.4.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2861eb692bfab9bb760180dd422952d7106293d6f149d378a1a8fbe2f5e060b",
"md5": "68b581f04cbeb9e9d5de9566c8bd9330",
"sha256": "5c0d1fadc83f438dc7619ada0359e712adb8a2aad6de02dd28b0497c82f7e0dc"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "68b581f04cbeb9e9d5de9566c8bd9330",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4520903,
"upload_time": "2024-12-05T23:55:58",
"upload_time_iso_8601": "2024-12-05T23:55:58.909550Z",
"url": "https://files.pythonhosted.org/packages/f2/86/1eb692bfab9bb760180dd422952d7106293d6f149d378a1a8fbe2f5e060b/DracoPy-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6fd77b3890aba2eebbb1f676507f286b6c6abc067d0e0c4ee160ee0dabd90d65",
"md5": "ccdcd8d26db67f6bf2ca9724b1001310",
"sha256": "e56ade28d008298aa662531a96b1e93c9dbad7fbc6cd79c0caea0d19d7f8461c"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ccdcd8d26db67f6bf2ca9724b1001310",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4144006,
"upload_time": "2024-12-05T23:56:00",
"upload_time_iso_8601": "2024-12-05T23:56:00.686858Z",
"url": "https://files.pythonhosted.org/packages/6f/d7/7b3890aba2eebbb1f676507f286b6c6abc067d0e0c4ee160ee0dabd90d65/DracoPy-1.4.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efbaf2f9f5fa6d02ce0f0d79f109a16425de40c34e0ec0099849554714299b3e",
"md5": "07926ab522057a97a93b204f8b1e9114",
"sha256": "01c7af427b8e1db78f0a86077eaedfb40d1e5696b27ebd7301f517e4663a795f"
},
"downloads": -1,
"filename": "DracoPy-1.4.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "07926ab522057a97a93b204f8b1e9114",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4850201,
"upload_time": "2024-12-05T23:56:02",
"upload_time_iso_8601": "2024-12-05T23:56:02.767446Z",
"url": "https://files.pythonhosted.org/packages/ef/ba/f2f9f5fa6d02ce0f0d79f109a16425de40c34e0ec0099849554714299b3e/DracoPy-1.4.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-05 23:54:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "seung-lab",
"github_project": "DracoPy",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "dracopy"
}