Skip to main content

Python wrapper for Google's Draco Mesh Compression Library

Project description

PyPI version Build Status

DracoPy

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.

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/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DracoPy-1.4.0.tar.gz (159.0 kB view details)

Uploaded Source

Built Distributions

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

DracoPy-1.4.0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

DracoPy-1.4.0-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

DracoPy-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

DracoPy-1.4.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

DracoPy-1.4.0-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

DracoPy-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

DracoPy-1.4.0-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

DracoPy-1.4.0-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

DracoPy-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

DracoPy-1.4.0-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9Windows x86-64

DracoPy-1.4.0-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

DracoPy-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

DracoPy-1.4.0-cp38-cp38-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8Windows x86-64

DracoPy-1.4.0-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

DracoPy-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

DracoPy-1.4.0-cp37-cp37m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

DracoPy-1.4.0-cp37-cp37m-win32.whl (2.1 MB view details)

Uploaded CPython 3.7mWindows x86

DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file DracoPy-1.4.0.tar.gz.

File metadata

  • Download URL: DracoPy-1.4.0.tar.gz
  • Upload date:
  • Size: 159.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0.tar.gz
Algorithm Hash digest
SHA256 a889015283e2f74d62912e4b5c9be29947a0be9fb30f9c8ba635c5124966d5a2
MD5 4591d5fa2426783f4ba662feb65d7908
BLAKE2b-256 40dcfc22bdbe29fc9ecc7232f55253e7d6419be5b28ca77eb2e9f9cd9fac321c

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef6e894922c0596374f160d082fdae6d3639466ca4f528a08a145f445b180ee7
MD5 a0ca513354721a13d283f1c028b0ee1c
BLAKE2b-256 a0f2a9b95c5146738168818b5d73bd3b21587ae24b2244310d11d27b66b1f988

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d5bbae855f8ba16148d6de07ca9367ea8960d65cc6911f4069e407193411eb7
MD5 0fa5590fa2a9c087b412285170b9b625
BLAKE2b-256 a5da499e90c818c9937f14893e49444b1b85ea7d6d081d08340dc90d9b84d1da

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc15e5ff9d070d07632dd897fedd8136cd429cb40a838606cc594b9cbdcb8c43
MD5 e1cf89ede099c95d6dfd620d2df13668
BLAKE2b-256 894ccbbb13f55a059152a31915ef748720c3b996fe60e78f79344118e2547635

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45efeb617d68beac1712f6ff1aa1a9a86bd110192f1d688ad9cda46f7c8830c7
MD5 734458dea56b17d83ba960dc60d384cb
BLAKE2b-256 eeec9207d8ab0815dfce3e52112fe95f44ce98fc39a83f97adfd001af5d82223

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7d132f7469c782337d84034c3808d8bcb7ab4c28a4fef1b12f717620e18a2ab
MD5 9cea492cdad30f857b9d9c55f3e4b4f5
BLAKE2b-256 6ba6bd55dd019ff184d92b83bd58a3b24d17c6743e72fd094ab5a85b21eaf8e5

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1b1025a012763ab97291b0863e2d7ba5f3c7301102c06ab1ec3c513ca0a9984
MD5 041541446bdf7f69f30aa5012f3c8c3c
BLAKE2b-256 2f4037c2db3a089992d9b7c0626bba0c20ae7c5f965aa30c7d70d3c09d8a2889

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f95d66b69332ad643a6b86fc40f38ff23fa5db9c366842c00eaeb6ca76ed0ec
MD5 d5074e2ec52feac86266cc5dd15b1fb6
BLAKE2b-256 59c4a115b373043ed6b38a246557762e0b8e8a0fcf3336d960c18d3f279adbf8

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f85a7686f31e076d20a36e10d1ad9035bed3ac523bce2274257eb93f17276a5c
MD5 5313e261ad8d54047f99f53962df1e29
BLAKE2b-256 47ba39be9a1a03e7505ae480e12b22032e2e9aafa4e395cd1687fabf12e06ab7

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9e0581f6e5bd064ce642e1e1a7850a91a640790e9b9d27834c0d897992192ab
MD5 14f82785e1a720d3909a66858d0af023
BLAKE2b-256 031bf3eefaad2a354fd99fcc0d32aa8facb414cd328fadba7e2caac424d8e9ea

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ec3586416a716f03bd78fecb64d77a2be0fd7c08d5e1bf30c3d9633915e7cc9
MD5 247e0f3aee2414552de369d9bcad386a
BLAKE2b-256 8451d62b1cb48235dcc4ada33c18e3c09b7b574885b415824c29e18634dc12b5

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bef6e752b80a5dec169185784ac47dfa4e6418b547410c1be9af5ccbe614e7cf
MD5 3068e37640c65892c62b65ab0b117291
BLAKE2b-256 1a20d41c99c398ace1a8ecb9c0dfea6ec2dfa3f78f0c6cf9ab74b727a26c13f7

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 934e7927e26a80cef5d7f57de42aa19deefddfe08e3b64e88225d7b4546e8398
MD5 e294536395360e8ac4e2d2076d4eeda9
BLAKE2b-256 20a64ab99252bc1f5b41e62f98cddb00912034842fae9314c8556c3db702b6b3

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3142f77670530ae219a591f97db7589a9a47b0bac836da0ce88221555187a1b
MD5 f0a88cc5fd46a711e0e9273865dafcf3
BLAKE2b-256 286f28e9d6296207d7e47062adbb9696355ff498a4faef8187d357ee7c078921

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 004aeb2e24324f7a0e77424ba1116f03c16120a610ebeb8fea5f88077b8330a1
MD5 84f1441395bc410bee243342cffedffc
BLAKE2b-256 1c9e4de3302f0134f885c595b0edf1dc04850ac34dcb1bb0c366ec8770be6429

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f204151f4ca8a10a0945eb9cd86d99746e2fbd6e8cb21511028e9054d9ee6a1
MD5 de8b5c0e5f6a9cdb29fb611d4b604b20
BLAKE2b-256 3cc12f77b384d24c3f3df34aa07545ce0b617bd8abb235c8ba01e4a5548af679

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf2e0f15145a23a94794272fce2a373ab953fdc75967c0e46ed7ac2687bdcba4
MD5 3a3e3384595f72ed9bf1c9c190010cf1
BLAKE2b-256 14306b64d3b63962281d72055fc0f64693f33a8ad1aef46928a1924842877528

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d3a00c20f829ea2f2a7355b35bd02f62bbafebb39f742929aa498c66c4ae4ef
MD5 77b19d4874e1d0d3ccf98a95b4667677
BLAKE2b-256 2741220e958a98658c8df53cba0f6dfe16c6b3f7646fe2843544d8bc05ad353b

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4bffde5eda803f8a2c76ee4fab0e0d40ee7f5939df5f8eed22bdc4e5c6d9f405
MD5 fdb1b3b663908a07676c2e33a2788fbe
BLAKE2b-256 e07a526b14409f7c934b6b81b14fd49870d1741ea0bf3cc1ffb2214e1fe0921e

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b1e6527b163ff6d87b619bf430089b888ac2fd61b9833992feb850cb334bb26
MD5 f96b2dde19196d9fbbc8dc3f93ada1dc
BLAKE2b-256 1f2d19845c02006f8b73de3fd4ff228a1f527e6749b1e3dbff00e0fa16629103

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3bc04aeb05dd3925841d5370c620a5537a27f22fce9506e6d9146a86ac4be246
MD5 3a801f34a84d74a8e0813abe7191a0de
BLAKE2b-256 76ad82f7a2c17a1438ad6d6789fd40c0ed20b61c168c56cde7bed9857181203e

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a63c9f4a86d320393e698e0aaaa90477fa40b96de799672f15f7b4d784f9a5b4
MD5 17bc398e6db527b061fc09c9c6450037
BLAKE2b-256 11b9973e2411b8046f1a8c26ec23d6fdbef8ce76f814feb8f08a5f8b5f6f5a7a

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eaeff76a0b7e7b7c5015970eaaf021b8cfe2df2b15aed9a63be925bad60a67fe
MD5 0a3280dab6e29cab6e2e5dbbf9d79a9f
BLAKE2b-256 5c0627ff7d7f9c4f82020938a5eb1120217b712e7428e75179d1f01c75302dbe

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6071ec96ce833a52fbf7d6e491a2aa6bd6d27a11ccdf2c54250dfeaea1c0311c
MD5 660630a0540d65499f513fc28d071f20
BLAKE2b-256 c5a300527c18de70afdb301e6f3f48bc5bb7488ca13c4fbaccc076543b009d63

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a89b07dca2b1c17a68cadf418a5718ad1b4a4c5ffa6d00f5d3c332e0933bef49
MD5 8ce78886ff88292870ccafefc10fb84c
BLAKE2b-256 f2763455caca4b7926594f4a9a1e1bb3d3ecc78e6bc844f81583f75a817d8e33

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5694c18a500d26798bc37baa38a748308a8f497d1e1538e6a48424ee198d25f2
MD5 3010cc23899e8b26aaa36945f97f4c28
BLAKE2b-256 afe6c6ad72e5481a3e5b2048b640ed8b5de991359726963849c51d31818c7d57

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8ffbb3ccf09920eb103b6d9bbec96105d7b161b06a448c8549952f0b2188fab6
MD5 b6ac5e6da7b0b1efd4030c00748310b4
BLAKE2b-256 a60523190beb0491d56467052e3173c1cf9c7e9c4cb0685469bed1bbaee67e46

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4c64f09c886ce9f2e5dba214602d5249a26ae4f478a4cc0ff61b203df407848
MD5 efc467b632567db0b7800c137e53f59c
BLAKE2b-256 0ac660a76531e6fecd1d5fd9175948a4a4b1e7c2d530650388930a2b216b1f4a

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f27505392dddd01cdd66b5cfd96646104dc9afe49f2e7338235cb39b8204963
MD5 ea781f0e80dfccceea4af93e9fa5fde5
BLAKE2b-256 e9b027c617f78eb079cd51d2d3fcd011deab1e04f8c985beb49ca930db9d6a8c

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f3cbba5a534dc3d8427351130f974d7a4782f21b5289097f72bfb37009bb52c
MD5 37b030ad2999ce75db18e2aa8462f500
BLAKE2b-256 3a158c3cc22b541551a27de5b10bc7765d4d665c344b87ff9211c9e274704bb4

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fabd1e79e24488e9e7aa187594ca043854b516dc5a3c2736c4d13f31057f51bf
MD5 5f33c02181bbae8703b1d062acbfa980
BLAKE2b-256 450b9849570e253e70367483c35336d75325cf72451ca203c0627dece25fca47

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 571f783c32f39fb68a7d02fa599330bcfc4bcc2bcac86128ae10539b6fdcb29a
MD5 40458343d806bd3a87f02ffe187739a6
BLAKE2b-256 cde7fdcee3251203adef90d7da704ac717dce8657b0c8c210577f0840daa50ba

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c0b6f8f2c5539c850c6132b2879afe865b3c9754de93e8060b6868b284d556aa
MD5 bd3fe07553c670f7200867313bd07e02
BLAKE2b-256 fc8fb26f2e70091ce8804191fad9d5c4d274542c9ff419f3ec60d2e257f88471

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6776c773074bfe492d976cd17c25e46ca622e501153d616fec9455ac03f9651
MD5 1ab7bf97c6c6670ce4776c568cddfc88
BLAKE2b-256 d43f506ed5bddfbb0a2c6b2bded12eb1e3ac21c07765f033b5c61cf24bcbffb5

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for DracoPy-1.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b217267bf05a4ba8e90d5fd85577b958d8dbd133cde1ad1c0c1dba9b712be16f
MD5 6263c2d8a35b7a0ee08ad8da26712dde
BLAKE2b-256 1cb4679b3bc2c9af78e3aad1ede29f467e5971c9687051cd3f37865bb805172a

See more details on using hashes here.

File details

Details for the file DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.21.0 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.10

File hashes

Hashes for DracoPy-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae51f031af22f5b0a5626b30c7e68576166057b901da3b822c8f75420aa96b25
MD5 9e4b888c1f9b21908da3adb2e6489f12
BLAKE2b-256 f4baa4968a3217f1ab3528d5bfde2abe8545222b1bdbd9f805690fa4c80604eb

See more details on using hashes here.

Supported by

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