DracoPy


NameDracoPy JSON
Version 1.4.0 PyPI version JSON
download
home_pagehttps://github.com/seung-lab/DracoPy
SummaryPython wrapper for Google's Draco Mesh Compression Library
upload_time2024-01-11 00:21:05
maintainer
docs_urlNone
authorManuel Castro, William Silversmith :: Contributors :: Fatih Erol, Faru Nuri Sonmez, Zeyu Zhao, Denis Riviere
requires_python
licenseLicense :: OSI Approved :: Apache Software License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/DracoPy.svg)](https://badge.fury.io/py/DracoPy)
[![Build Status](https://travis-ci.org/seung-lab/DracoPy.svg?branch=master)](https://travis-ci.org/seung-lab/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": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "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": "https://files.pythonhosted.org/packages/40/dc/fc22bdbe29fc9ecc7232f55253e7d6419be5b28ca77eb2e9f9cd9fac321c/DracoPy-1.4.0.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/DracoPy.svg)](https://badge.fury.io/py/DracoPy)\n[![Build Status](https://travis-ci.org/seung-lab/DracoPy.svg?branch=master)](https://travis-ci.org/seung-lab/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.0",
    "project_urls": {
        "Homepage": "https://github.com/seung-lab/DracoPy"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e07a526b14409f7c934b6b81b14fd49870d1741ea0bf3cc1ffb2214e1fe0921e",
                "md5": "fdb1b3b663908a07676c2e33a2788fbe",
                "sha256": "4bffde5eda803f8a2c76ee4fab0e0d40ee7f5939df5f8eed22bdc4e5c6d9f405"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdb1b3b663908a07676c2e33a2788fbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2849691,
            "upload_time": "2024-01-11T00:19:28",
            "upload_time_iso_8601": "2024-01-11T00:19:28.761225Z",
            "url": "https://files.pythonhosted.org/packages/e0/7a/526b14409f7c934b6b81b14fd49870d1741ea0bf3cc1ffb2214e1fe0921e/DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2741220e958a98658c8df53cba0f6dfe16c6b3f7646fe2843544d8bc05ad353b",
                "md5": "77b19d4874e1d0d3ccf98a95b4667677",
                "sha256": "9d3a00c20f829ea2f2a7355b35bd02f62bbafebb39f742929aa498c66c4ae4ef"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "77b19d4874e1d0d3ccf98a95b4667677",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2537527,
            "upload_time": "2024-01-11T00:19:34",
            "upload_time_iso_8601": "2024-01-11T00:19:34.338931Z",
            "url": "https://files.pythonhosted.org/packages/27/41/220e958a98658c8df53cba0f6dfe16c6b3f7646fe2843544d8bc05ad353b/DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14306b64d3b63962281d72055fc0f64693f33a8ad1aef46928a1924842877528",
                "md5": "3a3e3384595f72ed9bf1c9c190010cf1",
                "sha256": "cf2e0f15145a23a94794272fce2a373ab953fdc75967c0e46ed7ac2687bdcba4"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a3e3384595f72ed9bf1c9c190010cf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4775281,
            "upload_time": "2024-01-11T00:19:38",
            "upload_time_iso_8601": "2024-01-11T00:19:38.576905Z",
            "url": "https://files.pythonhosted.org/packages/14/30/6b64d3b63962281d72055fc0f64693f33a8ad1aef46928a1924842877528/DracoPy-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cc12f77b384d24c3f3df34aa07545ce0b617bd8abb235c8ba01e4a5548af679",
                "md5": "de8b5c0e5f6a9cdb29fb611d4b604b20",
                "sha256": "6f204151f4ca8a10a0945eb9cd86d99746e2fbd6e8cb21511028e9054d9ee6a1"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de8b5c0e5f6a9cdb29fb611d4b604b20",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4514730,
            "upload_time": "2024-01-11T00:19:41",
            "upload_time_iso_8601": "2024-01-11T00:19:41.704170Z",
            "url": "https://files.pythonhosted.org/packages/3c/c1/2f77b384d24c3f3df34aa07545ce0b617bd8abb235c8ba01e4a5548af679/DracoPy-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c9e4de3302f0134f885c595b0edf1dc04850ac34dcb1bb0c366ec8770be6429",
                "md5": "84f1441395bc410bee243342cffedffc",
                "sha256": "004aeb2e24324f7a0e77424ba1116f03c16120a610ebeb8fea5f88077b8330a1"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "84f1441395bc410bee243342cffedffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2119148,
            "upload_time": "2024-01-11T00:19:43",
            "upload_time_iso_8601": "2024-01-11T00:19:43.706312Z",
            "url": "https://files.pythonhosted.org/packages/1c/9e/4de3302f0134f885c595b0edf1dc04850ac34dcb1bb0c366ec8770be6429/DracoPy-1.4.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "286f28e9d6296207d7e47062adbb9696355ff498a4faef8187d357ee7c078921",
                "md5": "f0a88cc5fd46a711e0e9273865dafcf3",
                "sha256": "b3142f77670530ae219a591f97db7589a9a47b0bac836da0ce88221555187a1b"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f0a88cc5fd46a711e0e9273865dafcf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2884913,
            "upload_time": "2024-01-11T00:19:46",
            "upload_time_iso_8601": "2024-01-11T00:19:46.337548Z",
            "url": "https://files.pythonhosted.org/packages/28/6f/28e9d6296207d7e47062adbb9696355ff498a4faef8187d357ee7c078921/DracoPy-1.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20a64ab99252bc1f5b41e62f98cddb00912034842fae9314c8556c3db702b6b3",
                "md5": "e294536395360e8ac4e2d2076d4eeda9",
                "sha256": "934e7927e26a80cef5d7f57de42aa19deefddfe08e3b64e88225d7b4546e8398"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e294536395360e8ac4e2d2076d4eeda9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2849769,
            "upload_time": "2024-01-11T00:19:49",
            "upload_time_iso_8601": "2024-01-11T00:19:49.006602Z",
            "url": "https://files.pythonhosted.org/packages/20/a6/4ab99252bc1f5b41e62f98cddb00912034842fae9314c8556c3db702b6b3/DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a20d41c99c398ace1a8ecb9c0dfea6ec2dfa3f78f0c6cf9ab74b727a26c13f7",
                "md5": "3068e37640c65892c62b65ab0b117291",
                "sha256": "bef6e752b80a5dec169185784ac47dfa4e6418b547410c1be9af5ccbe614e7cf"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3068e37640c65892c62b65ab0b117291",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2537755,
            "upload_time": "2024-01-11T00:19:51",
            "upload_time_iso_8601": "2024-01-11T00:19:51.433908Z",
            "url": "https://files.pythonhosted.org/packages/1a/20/d41c99c398ace1a8ecb9c0dfea6ec2dfa3f78f0c6cf9ab74b727a26c13f7/DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8451d62b1cb48235dcc4ada33c18e3c09b7b574885b415824c29e18634dc12b5",
                "md5": "247e0f3aee2414552de369d9bcad386a",
                "sha256": "8ec3586416a716f03bd78fecb64d77a2be0fd7c08d5e1bf30c3d9633915e7cc9"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "247e0f3aee2414552de369d9bcad386a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4826499,
            "upload_time": "2024-01-11T00:19:54",
            "upload_time_iso_8601": "2024-01-11T00:19:54.321846Z",
            "url": "https://files.pythonhosted.org/packages/84/51/d62b1cb48235dcc4ada33c18e3c09b7b574885b415824c29e18634dc12b5/DracoPy-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "031bf3eefaad2a354fd99fcc0d32aa8facb414cd328fadba7e2caac424d8e9ea",
                "md5": "14f82785e1a720d3909a66858d0af023",
                "sha256": "f9e0581f6e5bd064ce642e1e1a7850a91a640790e9b9d27834c0d897992192ab"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14f82785e1a720d3909a66858d0af023",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4572880,
            "upload_time": "2024-01-11T00:19:57",
            "upload_time_iso_8601": "2024-01-11T00:19:57.366948Z",
            "url": "https://files.pythonhosted.org/packages/03/1b/f3eefaad2a354fd99fcc0d32aa8facb414cd328fadba7e2caac424d8e9ea/DracoPy-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47ba39be9a1a03e7505ae480e12b22032e2e9aafa4e395cd1687fabf12e06ab7",
                "md5": "5313e261ad8d54047f99f53962df1e29",
                "sha256": "f85a7686f31e076d20a36e10d1ad9035bed3ac523bce2274257eb93f17276a5c"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "5313e261ad8d54047f99f53962df1e29",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2118791,
            "upload_time": "2024-01-11T00:19:59",
            "upload_time_iso_8601": "2024-01-11T00:19:59.847646Z",
            "url": "https://files.pythonhosted.org/packages/47/ba/39be9a1a03e7505ae480e12b22032e2e9aafa4e395cd1687fabf12e06ab7/DracoPy-1.4.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c4a115b373043ed6b38a246557762e0b8e8a0fcf3336d960c18d3f279adbf8",
                "md5": "d5074e2ec52feac86266cc5dd15b1fb6",
                "sha256": "7f95d66b69332ad643a6b86fc40f38ff23fa5db9c366842c00eaeb6ca76ed0ec"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d5074e2ec52feac86266cc5dd15b1fb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2885511,
            "upload_time": "2024-01-11T00:20:02",
            "upload_time_iso_8601": "2024-01-11T00:20:02.607450Z",
            "url": "https://files.pythonhosted.org/packages/59/c4/a115b373043ed6b38a246557762e0b8e8a0fcf3336d960c18d3f279adbf8/DracoPy-1.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f4037c2db3a089992d9b7c0626bba0c20ae7c5f965aa30c7d70d3c09d8a2889",
                "md5": "041541446bdf7f69f30aa5012f3c8c3c",
                "sha256": "c1b1025a012763ab97291b0863e2d7ba5f3c7301102c06ab1ec3c513ca0a9984"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "041541446bdf7f69f30aa5012f3c8c3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2848801,
            "upload_time": "2024-01-11T00:20:05",
            "upload_time_iso_8601": "2024-01-11T00:20:05.115518Z",
            "url": "https://files.pythonhosted.org/packages/2f/40/37c2db3a089992d9b7c0626bba0c20ae7c5f965aa30c7d70d3c09d8a2889/DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ba6bd55dd019ff184d92b83bd58a3b24d17c6743e72fd094ab5a85b21eaf8e5",
                "md5": "9cea492cdad30f857b9d9c55f3e4b4f5",
                "sha256": "f7d132f7469c782337d84034c3808d8bcb7ab4c28a4fef1b12f717620e18a2ab"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9cea492cdad30f857b9d9c55f3e4b4f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2538059,
            "upload_time": "2024-01-11T00:20:07",
            "upload_time_iso_8601": "2024-01-11T00:20:07.793153Z",
            "url": "https://files.pythonhosted.org/packages/6b/a6/bd55dd019ff184d92b83bd58a3b24d17c6743e72fd094ab5a85b21eaf8e5/DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eeec9207d8ab0815dfce3e52112fe95f44ce98fc39a83f97adfd001af5d82223",
                "md5": "734458dea56b17d83ba960dc60d384cb",
                "sha256": "45efeb617d68beac1712f6ff1aa1a9a86bd110192f1d688ad9cda46f7c8830c7"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "734458dea56b17d83ba960dc60d384cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4803091,
            "upload_time": "2024-01-11T00:20:10",
            "upload_time_iso_8601": "2024-01-11T00:20:10.810788Z",
            "url": "https://files.pythonhosted.org/packages/ee/ec/9207d8ab0815dfce3e52112fe95f44ce98fc39a83f97adfd001af5d82223/DracoPy-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "894ccbbb13f55a059152a31915ef748720c3b996fe60e78f79344118e2547635",
                "md5": "e1cf89ede099c95d6dfd620d2df13668",
                "sha256": "fc15e5ff9d070d07632dd897fedd8136cd429cb40a838606cc594b9cbdcb8c43"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1cf89ede099c95d6dfd620d2df13668",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4554604,
            "upload_time": "2024-01-11T00:20:13",
            "upload_time_iso_8601": "2024-01-11T00:20:13.613263Z",
            "url": "https://files.pythonhosted.org/packages/89/4c/cbbb13f55a059152a31915ef748720c3b996fe60e78f79344118e2547635/DracoPy-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5da499e90c818c9937f14893e49444b1b85ea7d6d081d08340dc90d9b84d1da",
                "md5": "0fa5590fa2a9c087b412285170b9b625",
                "sha256": "7d5bbae855f8ba16148d6de07ca9367ea8960d65cc6911f4069e407193411eb7"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "0fa5590fa2a9c087b412285170b9b625",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2119752,
            "upload_time": "2024-01-11T00:20:15",
            "upload_time_iso_8601": "2024-01-11T00:20:15.805208Z",
            "url": "https://files.pythonhosted.org/packages/a5/da/499e90c818c9937f14893e49444b1b85ea7d6d081d08340dc90d9b84d1da/DracoPy-1.4.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0f2a9b95c5146738168818b5d73bd3b21587ae24b2244310d11d27b66b1f988",
                "md5": "a0ca513354721a13d283f1c028b0ee1c",
                "sha256": "ef6e894922c0596374f160d082fdae6d3639466ca4f528a08a145f445b180ee7"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a0ca513354721a13d283f1c028b0ee1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2884667,
            "upload_time": "2024-01-11T00:20:17",
            "upload_time_iso_8601": "2024-01-11T00:20:17.930917Z",
            "url": "https://files.pythonhosted.org/packages/a0/f2/a9b95c5146738168818b5d73bd3b21587ae24b2244310d11d27b66b1f988/DracoPy-1.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4baa4968a3217f1ab3528d5bfde2abe8545222b1bdbd9f805690fa4c80604eb",
                "md5": "9e4b888c1f9b21908da3adb2e6489f12",
                "sha256": "ae51f031af22f5b0a5626b30c7e68576166057b901da3b822c8f75420aa96b25"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e4b888c1f9b21908da3adb2e6489f12",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2851014,
            "upload_time": "2024-01-11T00:20:20",
            "upload_time_iso_8601": "2024-01-11T00:20:20.121812Z",
            "url": "https://files.pythonhosted.org/packages/f4/ba/a4968a3217f1ab3528d5bfde2abe8545222b1bdbd9f805690fa4c80604eb/DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cb4679b3bc2c9af78e3aad1ede29f467e5971c9687051cd3f37865bb805172a",
                "md5": "6263c2d8a35b7a0ee08ad8da26712dde",
                "sha256": "b217267bf05a4ba8e90d5fd85577b958d8dbd133cde1ad1c0c1dba9b712be16f"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6263c2d8a35b7a0ee08ad8da26712dde",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4731145,
            "upload_time": "2024-01-11T00:20:24",
            "upload_time_iso_8601": "2024-01-11T00:20:24.222283Z",
            "url": "https://files.pythonhosted.org/packages/1c/b4/679b3bc2c9af78e3aad1ede29f467e5971c9687051cd3f37865bb805172a/DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d43f506ed5bddfbb0a2c6b2bded12eb1e3ac21c07765f033b5c61cf24bcbffb5",
                "md5": "1ab7bf97c6c6670ce4776c568cddfc88",
                "sha256": "e6776c773074bfe492d976cd17c25e46ca622e501153d616fec9455ac03f9651"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ab7bf97c6c6670ce4776c568cddfc88",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4473358,
            "upload_time": "2024-01-11T00:20:27",
            "upload_time_iso_8601": "2024-01-11T00:20:27.797054Z",
            "url": "https://files.pythonhosted.org/packages/d4/3f/506ed5bddfbb0a2c6b2bded12eb1e3ac21c07765f033b5c61cf24bcbffb5/DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc8fb26f2e70091ce8804191fad9d5c4d274542c9ff419f3ec60d2e257f88471",
                "md5": "bd3fe07553c670f7200867313bd07e02",
                "sha256": "c0b6f8f2c5539c850c6132b2879afe865b3c9754de93e8060b6868b284d556aa"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bd3fe07553c670f7200867313bd07e02",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2118828,
            "upload_time": "2024-01-11T00:20:30",
            "upload_time_iso_8601": "2024-01-11T00:20:30.529485Z",
            "url": "https://files.pythonhosted.org/packages/fc/8f/b26f2e70091ce8804191fad9d5c4d274542c9ff419f3ec60d2e257f88471/DracoPy-1.4.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cde7fdcee3251203adef90d7da704ac717dce8657b0c8c210577f0840daa50ba",
                "md5": "40458343d806bd3a87f02ffe187739a6",
                "sha256": "571f783c32f39fb68a7d02fa599330bcfc4bcc2bcac86128ae10539b6fdcb29a"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40458343d806bd3a87f02ffe187739a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2883871,
            "upload_time": "2024-01-11T00:20:33",
            "upload_time_iso_8601": "2024-01-11T00:20:33.178600Z",
            "url": "https://files.pythonhosted.org/packages/cd/e7/fdcee3251203adef90d7da704ac717dce8657b0c8c210577f0840daa50ba/DracoPy-1.4.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "450b9849570e253e70367483c35336d75325cf72451ca203c0627dece25fca47",
                "md5": "5f33c02181bbae8703b1d062acbfa980",
                "sha256": "fabd1e79e24488e9e7aa187594ca043854b516dc5a3c2736c4d13f31057f51bf"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f33c02181bbae8703b1d062acbfa980",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2849494,
            "upload_time": "2024-01-11T00:20:35",
            "upload_time_iso_8601": "2024-01-11T00:20:35.899142Z",
            "url": "https://files.pythonhosted.org/packages/45/0b/9849570e253e70367483c35336d75325cf72451ca203c0627dece25fca47/DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a158c3cc22b541551a27de5b10bc7765d4d665c344b87ff9211c9e274704bb4",
                "md5": "37b030ad2999ce75db18e2aa8462f500",
                "sha256": "3f3cbba5a534dc3d8427351130f974d7a4782f21b5289097f72bfb37009bb52c"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "37b030ad2999ce75db18e2aa8462f500",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2537336,
            "upload_time": "2024-01-11T00:20:37",
            "upload_time_iso_8601": "2024-01-11T00:20:37.895351Z",
            "url": "https://files.pythonhosted.org/packages/3a/15/8c3cc22b541551a27de5b10bc7765d4d665c344b87ff9211c9e274704bb4/DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9b027c617f78eb079cd51d2d3fcd011deab1e04f8c985beb49ca930db9d6a8c",
                "md5": "ea781f0e80dfccceea4af93e9fa5fde5",
                "sha256": "2f27505392dddd01cdd66b5cfd96646104dc9afe49f2e7338235cb39b8204963"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ea781f0e80dfccceea4af93e9fa5fde5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4792775,
            "upload_time": "2024-01-11T00:20:40",
            "upload_time_iso_8601": "2024-01-11T00:20:40.359586Z",
            "url": "https://files.pythonhosted.org/packages/e9/b0/27c617f78eb079cd51d2d3fcd011deab1e04f8c985beb49ca930db9d6a8c/DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ac660a76531e6fecd1d5fd9175948a4a4b1e7c2d530650388930a2b216b1f4a",
                "md5": "efc467b632567db0b7800c137e53f59c",
                "sha256": "c4c64f09c886ce9f2e5dba214602d5249a26ae4f478a4cc0ff61b203df407848"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efc467b632567db0b7800c137e53f59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4534915,
            "upload_time": "2024-01-11T00:20:43",
            "upload_time_iso_8601": "2024-01-11T00:20:43.819446Z",
            "url": "https://files.pythonhosted.org/packages/0a/c6/60a76531e6fecd1d5fd9175948a4a4b1e7c2d530650388930a2b216b1f4a/DracoPy-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a60523190beb0491d56467052e3173c1cf9c7e9c4cb0685469bed1bbaee67e46",
                "md5": "b6ac5e6da7b0b1efd4030c00748310b4",
                "sha256": "8ffbb3ccf09920eb103b6d9bbec96105d7b161b06a448c8549952f0b2188fab6"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "b6ac5e6da7b0b1efd4030c00748310b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2119650,
            "upload_time": "2024-01-11T00:20:46",
            "upload_time_iso_8601": "2024-01-11T00:20:46.191611Z",
            "url": "https://files.pythonhosted.org/packages/a6/05/23190beb0491d56467052e3173c1cf9c7e9c4cb0685469bed1bbaee67e46/DracoPy-1.4.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afe6c6ad72e5481a3e5b2048b640ed8b5de991359726963849c51d31818c7d57",
                "md5": "3010cc23899e8b26aaa36945f97f4c28",
                "sha256": "5694c18a500d26798bc37baa38a748308a8f497d1e1538e6a48424ee198d25f2"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3010cc23899e8b26aaa36945f97f4c28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2885389,
            "upload_time": "2024-01-11T00:20:48",
            "upload_time_iso_8601": "2024-01-11T00:20:48.572439Z",
            "url": "https://files.pythonhosted.org/packages/af/e6/c6ad72e5481a3e5b2048b640ed8b5de991359726963849c51d31818c7d57/DracoPy-1.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2763455caca4b7926594f4a9a1e1bb3d3ecc78e6bc844f81583f75a817d8e33",
                "md5": "8ce78886ff88292870ccafefc10fb84c",
                "sha256": "a89b07dca2b1c17a68cadf418a5718ad1b4a4c5ffa6d00f5d3c332e0933bef49"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ce78886ff88292870ccafefc10fb84c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2851158,
            "upload_time": "2024-01-11T00:20:51",
            "upload_time_iso_8601": "2024-01-11T00:20:51.541487Z",
            "url": "https://files.pythonhosted.org/packages/f2/76/3455caca4b7926594f4a9a1e1bb3d3ecc78e6bc844f81583f75a817d8e33/DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5a300527c18de70afdb301e6f3f48bc5bb7488ca13c4fbaccc076543b009d63",
                "md5": "660630a0540d65499f513fc28d071f20",
                "sha256": "6071ec96ce833a52fbf7d6e491a2aa6bd6d27a11ccdf2c54250dfeaea1c0311c"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "660630a0540d65499f513fc28d071f20",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2538555,
            "upload_time": "2024-01-11T00:20:53",
            "upload_time_iso_8601": "2024-01-11T00:20:53.746054Z",
            "url": "https://files.pythonhosted.org/packages/c5/a3/00527c18de70afdb301e6f3f48bc5bb7488ca13c4fbaccc076543b009d63/DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c0627ff7d7f9c4f82020938a5eb1120217b712e7428e75179d1f01c75302dbe",
                "md5": "0a3280dab6e29cab6e2e5dbbf9d79a9f",
                "sha256": "eaeff76a0b7e7b7c5015970eaaf021b8cfe2df2b15aed9a63be925bad60a67fe"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0a3280dab6e29cab6e2e5dbbf9d79a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4779472,
            "upload_time": "2024-01-11T00:20:57",
            "upload_time_iso_8601": "2024-01-11T00:20:57.444290Z",
            "url": "https://files.pythonhosted.org/packages/5c/06/27ff7d7f9c4f82020938a5eb1120217b712e7428e75179d1f01c75302dbe/DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11b9973e2411b8046f1a8c26ec23d6fdbef8ce76f814feb8f08a5f8b5f6f5a7a",
                "md5": "17bc398e6db527b061fc09c9c6450037",
                "sha256": "a63c9f4a86d320393e698e0aaaa90477fa40b96de799672f15f7b4d784f9a5b4"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17bc398e6db527b061fc09c9c6450037",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4520080,
            "upload_time": "2024-01-11T00:21:00",
            "upload_time_iso_8601": "2024-01-11T00:21:00.134132Z",
            "url": "https://files.pythonhosted.org/packages/11/b9/973e2411b8046f1a8c26ec23d6fdbef8ce76f814feb8f08a5f8b5f6f5a7a/DracoPy-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76ad82f7a2c17a1438ad6d6789fd40c0ed20b61c168c56cde7bed9857181203e",
                "md5": "3a801f34a84d74a8e0813abe7191a0de",
                "sha256": "3bc04aeb05dd3925841d5370c620a5537a27f22fce9506e6d9146a86ac4be246"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3a801f34a84d74a8e0813abe7191a0de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2119519,
            "upload_time": "2024-01-11T00:21:02",
            "upload_time_iso_8601": "2024-01-11T00:21:02.155325Z",
            "url": "https://files.pythonhosted.org/packages/76/ad/82f7a2c17a1438ad6d6789fd40c0ed20b61c168c56cde7bed9857181203e/DracoPy-1.4.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f2d19845c02006f8b73de3fd4ff228a1f527e6749b1e3dbff00e0fa16629103",
                "md5": "f96b2dde19196d9fbbc8dc3f93ada1dc",
                "sha256": "2b1e6527b163ff6d87b619bf430089b888ac2fd61b9833992feb850cb334bb26"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f96b2dde19196d9fbbc8dc3f93ada1dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2885343,
            "upload_time": "2024-01-11T00:21:04",
            "upload_time_iso_8601": "2024-01-11T00:21:04.271551Z",
            "url": "https://files.pythonhosted.org/packages/1f/2d/19845c02006f8b73de3fd4ff228a1f527e6749b1e3dbff00e0fa16629103/DracoPy-1.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40dcfc22bdbe29fc9ecc7232f55253e7d6419be5b28ca77eb2e9f9cd9fac321c",
                "md5": "4591d5fa2426783f4ba662feb65d7908",
                "sha256": "a889015283e2f74d62912e4b5c9be29947a0be9fb30f9c8ba635c5124966d5a2"
            },
            "downloads": -1,
            "filename": "DracoPy-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4591d5fa2426783f4ba662feb65d7908",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 158983,
            "upload_time": "2024-01-11T00:21:05",
            "upload_time_iso_8601": "2024-01-11T00:21:05.699468Z",
            "url": "https://files.pythonhosted.org/packages/40/dc/fc22bdbe29fc9ecc7232f55253e7d6419be5b28ca77eb2e9f9cd9fac321c/DracoPy-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-11 00:21:05",
    "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"
}
        
Elapsed time: 0.16281s