Skip to main content

Minimal Python Bindings for ASSIMP Library using C-API

Project description

assimp-py

Build package Publish assimp-py to PyPI

Minimal Python Bindings for ASSIMP Library using C-API

Installation

pip install assimp-py

from source

git clone https://github.com/ranjian0/assimp_py.git
cd assimp_py
python -m pip install .

cmake>=3.18 is required for building from source

[Optional] Run tests to make sure everything works fine

pip install pytest
pytest tests

Example Program

import assimp_py

# -- loading the scene
process_flags = (
    assimp_py.Process_Triangulate | assimp_py.Process_CalcTangentSpace
)
scene = assimp_py.ImportFile("models/planet/planet.obj", process_flags)

# -- getting data
for m in scene.meshes:
    # -- getting vertex data
    # vertices are guaranteed to exist
    verts = m.vertices

    # other components must be checked for None
    normals = [] or m.normals
    texcoords = [] or m.texcoords
    tangents = [] or m.tangents
    bitangent = [] or m.bitangents

    # -- getting materials
    # mat is a dict consisting of assimp material properties
    mat = scene.materials[m.material_index]

    # -- getting color
    diffuse_color = mat["COLOR_DIFFUSE"]

    # -- getting textures
    diffuse_tex = mat["TEXTURES"][assimp_py.TextureType_DIFFUSE]

Supported Mesh Formats

AMF 3DS AC ASE ASSBIN B3D BVH COLLADA DXF CSM HMP IRRMESH IRR LWO LWS M3D MD2 MD3 MD5 MDC MDL NFF NDO OFF OGRE OPENGEX PLY MS3D COB BLEND IFC XGL FBX Q3D Q3BSP RAW SIB SMD STL TERRAGEN 3D X X3D GLTF 3MF MMD OBJ

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

assimp_py-1.0.8.tar.gz (8.5 MB view details)

Uploaded Source

Built Distributions

assimp_py-1.0.8-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13 Windows ARM64

assimp_py-1.0.8-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13 Windows x86-64

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_s390x.whl (5.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

assimp_py-1.0.8-cp313-cp313-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

assimp_py-1.0.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

assimp_py-1.0.8-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

assimp_py-1.0.8-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

assimp_py-1.0.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

assimp_py-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

assimp_py-1.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

assimp_py-1.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

assimp_py-1.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

assimp_py-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

assimp_py-1.0.8-cp313-cp313-macosx_10_13_universal2.whl (5.4 MB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

assimp_py-1.0.8-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows ARM64

assimp_py-1.0.8-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_s390x.whl (5.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

assimp_py-1.0.8-cp312-cp312-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

assimp_py-1.0.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

assimp_py-1.0.8-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

assimp_py-1.0.8-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

assimp_py-1.0.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

assimp_py-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

assimp_py-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

assimp_py-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

assimp_py-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

assimp_py-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

assimp_py-1.0.8-cp312-cp312-macosx_10_13_universal2.whl (5.4 MB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

assimp_py-1.0.8-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows ARM64

assimp_py-1.0.8-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_s390x.whl (5.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

assimp_py-1.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

assimp_py-1.0.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

assimp_py-1.0.8-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

assimp_py-1.0.8-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

assimp_py-1.0.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

assimp_py-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

assimp_py-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

assimp_py-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

assimp_py-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

assimp_py-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

assimp_py-1.0.8-cp311-cp311-macosx_10_9_universal2.whl (5.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

assimp_py-1.0.8-cp310-cp310-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows ARM64

assimp_py-1.0.8-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_s390x.whl (5.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

assimp_py-1.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

assimp_py-1.0.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

assimp_py-1.0.8-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

assimp_py-1.0.8-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

assimp_py-1.0.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

assimp_py-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

assimp_py-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

assimp_py-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

assimp_py-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

assimp_py-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

assimp_py-1.0.8-cp310-cp310-macosx_10_9_universal2.whl (5.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

assimp_py-1.0.8-cp39-cp39-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows ARM64

assimp_py-1.0.8-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_s390x.whl (5.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_ppc64le.whl (5.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

assimp_py-1.0.8-cp39-cp39-musllinux_1_2_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

assimp_py-1.0.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

assimp_py-1.0.8-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

assimp_py-1.0.8-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

assimp_py-1.0.8-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

assimp_py-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

assimp_py-1.0.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

assimp_py-1.0.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

assimp_py-1.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

assimp_py-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

assimp_py-1.0.8-cp39-cp39-macosx_10_9_universal2.whl (5.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file assimp_py-1.0.8.tar.gz.

File metadata

  • Download URL: assimp_py-1.0.8.tar.gz
  • Upload date:
  • Size: 8.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for assimp_py-1.0.8.tar.gz
Algorithm Hash digest
SHA256 df8ba996c0dbe765a65e72bd0abf57f6528e7fcab843690fd318a60dde9f2403
MD5 44e7d76cdc45f7e7a4e48a46b3736741
BLAKE2b-256 a2f94aa5067b5d46a7e8d4407d39ca932c90a03c3e5665894becf925ffbb82c9

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 465c9e2824e541cfa12927da216d33ef06f5eaf524f062f47636fc53032b7fc9
MD5 6c831980148dcd4054a6827f7fba2edf
BLAKE2b-256 0f93f62de233ad7abc64f090278e70cb659b0a4c23f2f557b94f841e5bdbdd2b

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e8d47f7aa3a98d09fa66d09b120b16bac08282558d52a99c9c18269f5916f388
MD5 164a439c1fe9bbbb76e6a1f0b0177776
BLAKE2b-256 3c507b6246bd37d0815bbbdc8643f25e4d8025805c63b78b463aff4c6dc1e97d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79661cdc4e21d7ffe504efc4b4f569753c8c753af45d84d3d27db1dd847d19ea
MD5 af2d4d4d4d2176d3d9e5320558110b90
BLAKE2b-256 0e9fa3b738019fd0be4f8b2fe49c7206a77c532afadc7863796593efc24e1762

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 47bdfdcd0e8cb8264ee92b201376c8c642913d1f68e257db6e1a2e483033fe4b
MD5 e6bc246faa5d8e34cccda653113ecc87
BLAKE2b-256 7fea226f0e7f840d7e34ae7abce8b5cd11f21bc813dcd978273bbe86a298032e

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 96ffdb641728e9de0c5c076bf9c147548fa9509d61232455159cfe587f1203b7
MD5 57ea267428d2c41b0b1ab66b87e97ddf
BLAKE2b-256 6bae6d9307c14ed637a7ec26084d90c2fbf860749c5ac1289d045350b07bf4da

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ea4a3d6946bfd260a0beff5fc5cee06dea79ccfc86db18a89770431db6e74b
MD5 dd6f83f7a85579a4391f22a7d093e6d9
BLAKE2b-256 7cf6a5f977df7f6134142571e52dce6893d67e55b87682b42d4cc91e975cfcfd

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6094c1bea9dceea868725ef2b74640e3620f794aa2c825af6498a3a93e93c2e
MD5 cda0e0ca90a43f6b78431cf85b43d93e
BLAKE2b-256 ee764ef2c39adb1223f3d28df7986965eda30abbc166cac8e3b732fe352b8dd7

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 735c7990972bd7f9e0ce28aee4149c7380acc6cc935ef7b61b3bf8a6d762819a
MD5 4301ccd7b6b519b8a7a2ee2f175642a1
BLAKE2b-256 22bfcd9d4a165b4a679b8916cf63f09ea99baea61c20cdcfb1328d95393f25e9

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 576775a4603b4e3f49386a7b9d7912339f727d6b4023affd18debecd690baa48
MD5 122efd6d561d8cdcc9a3451434a0161c
BLAKE2b-256 c45cf12820937ea0e06b542960e0b2695acee56625382a2f0cbefa49f5f49d74

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1acfa7e9a93290e3b9ae0205a2aa6a146071279e38d35d3e73ab827f20d2bb8a
MD5 edc908d86745346b0bb19c2c1fc4e6d6
BLAKE2b-256 e339c3dcf8b77cf8d3cb4a0dd4870148853ec968a9cde89778872155b0bbfe2b

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b7e2cfa6fa0e1bb50ec99662b3f248e860f2eeed887a31bb9c3c9ec069c9b655
MD5 5c8ae41cfd5ea6cf023bbb990b519571
BLAKE2b-256 c01df0b82fb286e554165a11dc6a556767b1a915f2f35dc2e24cb04dea22353c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99fbb0c90d5df9a2511ad256471320052da15ac6c11193f62d8e2ec7566c33f9
MD5 5be67f4594a4d57d3f98cc13cc20e1e0
BLAKE2b-256 bf7825473d493f6be18098ccf4fc558c13518ea43e0a2d4106a1dfc404a76632

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8b07157a4a1d6432dc320b1c77f4e41d9e84ca93dcd19b6750bcb8e74605b95
MD5 742b299d6e7825cf5791eabe7e4d2f82
BLAKE2b-256 716e55ed4a5fe6f3b2c3e12e594841a0bb445c4d3772ace0f141b8c35d11022c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18c1ce7158641efbc2e772caea9dfa6b1943a118684a510ccab0427529529413
MD5 2ec0ec01f61f0e039dceebbd20d129b6
BLAKE2b-256 560e9fc84e41498d720c14f0b9c4292477cdc888bcc67b0c2d3035207ca3ed3d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f9191084a57481b273aac223866645467aedcc8dbb3be5ff1da0551de8b8198
MD5 be82edfa4ef543159299b2831c838240
BLAKE2b-256 d3b1c39a516e859081b1f95a18e07f150dc01e4dc297434a3f867b8d6eace24c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4782f5d3cba026d4efd17d02885a6076e8060b7eaa42327718e705c17abaa915
MD5 d3c61c4c91780d0605a0ed81d2293c51
BLAKE2b-256 66e527c9526a9443a39aa50dee5226f832d4d578a092c74acf2850d585d78221

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11961e99af16d1a369ff85a052150e3ff62b2018fdc39e7350d8b0bb970fd16e
MD5 f8b7375c4465916640279c2705948ae9
BLAKE2b-256 8d3b89e4f14693efda907946a9c90193bfedab0ba02fe4a95b6ee173c5c7aec7

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 023ea70f8707fa3d6661ca85bb4bcff70de03aaa8896203bac5824169d0c5370
MD5 be79204c3c04c2754f5a79c3bc1491d1
BLAKE2b-256 2e00ddee2d817a564c4420e986c357a6a22c1c604c9e74f2ddfe19ba4d81e2cf

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a5a8307dd648df179dc88aaccd66d571b21dcc24ba05038c42a58729724789b6
MD5 46200d402f93a1a7b707e50941a656ca
BLAKE2b-256 a400944de1eaae50f16a11dbbbcb284589d3fd3a762c5d82ab8e42dfa4274720

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3333f9d37b4f74dccb2721065e57e66528e2ba9b6ea86c262b59cd318c66574
MD5 c1db9cf9ed27688036c072b2a9a0cfb4
BLAKE2b-256 cbbec87bad0d8c7cd3b797cd99559775ce4394a7ce0bf7a92b06002332bbcc5d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 074ec38812e2fb6d26ba8154cfeba5f9c7b559cb3bbe8dec8460fcc041aeeff7
MD5 1e89ace41b20f3d123ada7fba4749246
BLAKE2b-256 6c6d32f0315a085b652d16ca1d6953238b36335583f0d833a71517fa96ebf9c5

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 476b394d658f10b22e687d89364a6368253c015683af50e9489ba75a4711fcce
MD5 220d4bb5ef6bf1988af2777e470a4c5c
BLAKE2b-256 9c382a7d22c7faa90b0c0c1f8d86ba3e5b2189c79c3f297d98553f3a4ec3f2bf

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 142cf21a79a8d003b2e2fb16034c0cb4147cbd50b3a68d1f6ab0bf478e277cfd
MD5 7e58067aa11321a2ab4fe9f4c2716134
BLAKE2b-256 a371d03a464b0032b0c9ea25651064b7202325cdd339aaf9a1a13afc63cd9b99

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0c199cb65d04f2eafdc1baa6aadddc3183ca5319b5a1fadd5065a35db1cfcb3
MD5 7877a954f225e05b9d3e4e43b156cbb0
BLAKE2b-256 c7188afffe2e9c7a7d9710b1b30a4bfde267ee43a8251fba3eb23ac8b515ca7d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55da8e4ba56c2819f93d09f143efc899dd62f0d734c22883a3f80d6bc0e439c6
MD5 e81f20ffe4639d1c9576fbcdcc006471
BLAKE2b-256 e9d35c23b92895fecefd712ffeba62d68a220bdf6dbbc167e9fe8c873fa04e93

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fef2999c5b154551914648addf1bfc219777072f8ce8187a29f422bef0c93e98
MD5 bbaa76701f3fbb5e915d405e3e90e087
BLAKE2b-256 0dce9a0a5ab117413d2cbcd664ba498f3de9a7abbca1c8bdc87ed79a1e5eb231

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77fdf5edb7982833abbec4c31652463ae2c291207675540717b85917f7f3dd37
MD5 a071b646a39ddee4375787c0ec80ae09
BLAKE2b-256 aa105b4690d46a828a0f3e7946ba9bb2023be3fc8e67684605a56cb3d37a287a

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 58fd72b7264e83df64c1d41ae34e233adecb7c2a74e36476279760b91ded72ba
MD5 469e1215ab6718a32e7d27e26a59bd6a
BLAKE2b-256 3173c9b97bf25de894df94141b2f79dd50e1966c573e03ccb78472942dd1a3b3

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 219b1a2ad1564a5624ad4466386bbeae9355bd6462257b3bd2fc85ccd8c265f8
MD5 dcfb43f4c004a02fe8ec423dd6b1cf34
BLAKE2b-256 86cebeb29ffea6807bbe6fea079f9a9a0b3bdcf529adf391f2052d2efcbebd7b

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95a002f4e3bd846687f4bd40468eaaf767bc2dabf9a736ccbb14a940e34b8c66
MD5 bd89928976b94598b962c0d22b2380f4
BLAKE2b-256 89ec9f8330651321b996902d8ec45c347ed4b3f3968de80fc645d59669de8061

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86ba7381bc1edd3db45ba35dc5b63932d8adf10b5ab74d0bda345e1a53e4d68b
MD5 134576e49cb59aa6d905029f7b4c2ae9
BLAKE2b-256 212653e8e92485b0830e362f0dec75f97cbd14a2fb65438fb76bb0557ed2ee95

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 344d5dcb950f1ae516e96403855ff1d2110ed63e008b31a4051190516099b9a2
MD5 e98b84bc595676a9de12aa56f08369d1
BLAKE2b-256 e461211b2d28592aa69d9664084ab04f18140e50987daf7b052fdf91cfdfadac

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1b87469c124059be590349cfd0e2d6e737d16f03499f11f1a870e59aba41ddd
MD5 4d92a993e5c8052adbbb0cf8b605f7cb
BLAKE2b-256 8cfa379837d6652636f41bf032c06e9bdbbc723c43740b6cc168f6c6ce6f74b7

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9938cbed31cff1e7013169ea23ec13729ea93343d27b9de1bc467881cc675435
MD5 68a9ab8a67e880a500b2cf8c4c3dab57
BLAKE2b-256 00bea880fd8db83b3b1d395b87bf665b1812ba9077a2619f9318fc266bd9b4e5

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f59d1791a1702fbf6dea4f160823dc1257b6f9ac1fc6f0597bff76a9c6d91341
MD5 c37949437d46154078e4a90e2f7546f7
BLAKE2b-256 bb3e1ac804d651febd7405e545e1fe2373be389aa42654b5142f6e49d90ee060

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b8233b26412e698aae772622cd4ecc5aefed711ae4d8c39a7cfb09e8304e7a5c
MD5 1d7a7ae00228a32b195364514c40fd3a
BLAKE2b-256 a6b6d280620b8c5e7cd40a485f8e035675a295dee03506e085b69bd6804dd248

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6b595351acff09b7a07432046e4d87111d950c88208c6e271949fdfb62b97434
MD5 0d42cd001ded4a0eeb552068deb9c3e6
BLAKE2b-256 64503c6c20198b4a12937ff94e46ec0e3cfde8bf7c79b1b3b4b870a934009070

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 444ef57031f8ee274f66d3a7277b7bb0d81268773f81d80902aa1260d450e93d
MD5 ab9a923a2d1457c32e4acac73ebbb55b
BLAKE2b-256 238bb4d10cfb3d688329aa507bf47c6266bd1f858d5f12126b2023e9c2324319

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b666bb72a5837802d52e24bfcb12d506f09abbe9a6fb47b976c616ffb98a3343
MD5 642d847c7600e6f613df0ddacbf272c8
BLAKE2b-256 9b051c97e1a9099d0c116c1126530f468d5dec5b81467ed75cccbe9883d1898a

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 df9fc1c9b63d9d14150f23f4a984867ad718f830cd09de8242928fc9bb98dc90
MD5 26f77cfdb5cf9c2e3f08cc6fdcf0d31e
BLAKE2b-256 4451a149f469e93181314cbbce853acabe6f97d98069590fb97ef0cf40c7bd8f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f4f3b6aa8697e9e350c506295f8982363244b6cf43b6f3bcc8550c295b2b74d3
MD5 b3257af95fc78cb81a54fd5abfec955a
BLAKE2b-256 28ad3a343dfa81d8366647eacd97e4b779ede35dd22bbc44d1b0fd2bfaf2bfaf

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85c78b34552bcaa95dd833be8fda309334801d12a10e61caa421c661246570aa
MD5 6c0ca6b866fb7e75a3d94a2f1a4f06c5
BLAKE2b-256 b52dd9d3e30b0730c1e3bc858e7b89e7f35a9a53473154e157fcf23db63d3a29

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b46bc824e0988f0fb428f3b413e518864bfa2b02787bdb60572aed3d06160af7
MD5 444031056705fcd3270f558f37585fc2
BLAKE2b-256 cf866e19f45134dc5c004ade70c5009668e952a9d4d76bed58fd65139c52b77a

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffd180f938fe3eea0a15b9b1dba21c39832f4e771921e00022a1efb82e94d842
MD5 96f807f3433de051ef6a441b5a7a3976
BLAKE2b-256 4da1d90e285500cc3c52f2e38792a3c94d499b59cec33b5b66a372af1edcbbb7

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63f33a4f8bdc628e3e3f6d7c502d873ea107b36bac63a29ccc24f9dc9c22990d
MD5 66a886fc161650ed277bcadd5e29843b
BLAKE2b-256 421bfb53adfe3bb2d59c9cf9d56eaa4d33cf8b85bf4602ce08a9aa18eb717459

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1b51716af620dfd159210b348d347edd5f2003fec445acd6e64a2efe00f59c0a
MD5 f0e6f57c7b3c8ad83939066cd778076a
BLAKE2b-256 d5bd86d6374b5c43a0c4acafad105d4036105e38b172809a06fca61cb12a2fc6

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9cff718225315866ed0245549ae37a688ed9f657b7e05dfe08637a957119a2d0
MD5 5120e73441ad994f1abe171b9c85b74f
BLAKE2b-256 527fd3cce8cde110b9a5e0178c485842a675be6bbcc270c2b87482499446d35f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 663fd6d3b3376bf36fa444f0024b182757cbe010f83314be11512f310b373ca3
MD5 18a5be367b2bea4aae10b85a48a56ed5
BLAKE2b-256 0aee6f8353974855ef7904a1181fa01cb0b08504584a34123978cc56088a03ab

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7a8062e9bc6fc4cf47789ae4f508d8ca7971c5925f9b74758cd5aae0e1a30eb
MD5 3d3a885107c956df43abba9fe62575e4
BLAKE2b-256 75fab0eb6ba5e0ee9b60d0e2a0a63dc9b28fca953c7ced92a53295009afb7a4d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3272a1dbeef474639c0d984dbf77328d9c6f686b83d7e72a18ef50f8d352820e
MD5 55f4a43dfea28fff2c12b01261642c4d
BLAKE2b-256 f31c2311990b8c280df058f3dbd037a5c03c758c5bcee1ddddac5fcd7965f33f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc96bfad8157efdc00c0bfa0790a8bde844dd7df20ce333bcd4973762c499066
MD5 d6ca55c077b9ec17f6e9f98ff2e6a12b
BLAKE2b-256 5bdc525cdd5a6a484ce8f5f89838156a0e979c187c9579d1ca38b079fbb9deb0

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d332928dce16bfbd842a1d85ccadcbb284fb8db78ffd350e49751c8caed3c04d
MD5 30073051314c0410ce745d9874cbcb1c
BLAKE2b-256 7a28491f7274b65562516541b2fe133ed56efc8f812ef175bf561b51b62983ce

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93ce5814c1cab752608c07c1811cb98c850491ba3735d73ee011859bcc517846
MD5 b95de0af945d9597fc5c36c8c0d39cf6
BLAKE2b-256 1c8558702adbf16abc3f0d7bd4425c5abc3a81ab413ca678378dbd0984029153

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f48ca3930e3115b441ca5917a11f805774a41c5e1f3c353bef2fa8e8fcb0c38
MD5 a9426396970b4e746a59fa0fdd9df798
BLAKE2b-256 553bed582bb76dc99e583e28fbeb72a8a6918020db94a04dd7833363300bf98c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 89d5a454ca3d37bbd907d8aa5033decd94ec429c747dba49dc99eb6ae956b847
MD5 3adffc973d13c39aeaf7d297b942a4b2
BLAKE2b-256 b64e538b2f14acf3521999cf9d68d6267adaa8b38676c1b1b7a56c2664fb55a1

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd848efe24b904e692fa5df2b516e7172c753981b5bee92430691b3a7beeec19
MD5 a3afc24818e6f41562493a19d695d574
BLAKE2b-256 71318e837961a6455895e3246261b0e3bdbe2877f78800c6912a460f5b365e8c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6049d8598724604f9f740bf8aef537b6cafb1d0fd0818cf27a05d2dc93b2a8b1
MD5 1f718d548af597e94394e6356914f319
BLAKE2b-256 24f633a37534e7f4639fa6005d3347815b6537f367ab385818e07a9be55b11b9

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a4628c80bb97c7a826cc8ced80869f3b5f5f585c0d277ccfd26cab678fe4ce02
MD5 5b43dcd7cacba583035848d8dc6ff12c
BLAKE2b-256 b5daa15f1fa14a619a681d9fc213ebc08710e985ee60f37e1f1e3e06f5261e6c

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3d554c7d9d0a7d19eb58d803ed1ce46a647f120a31eef23250b3c8765ccd6200
MD5 cbb2e845b3b7a254c768f3eb7649be98
BLAKE2b-256 13bc1d18da54074e3cc5994c9e220f6b20e51eaed82c7e5b4f4426b09d457e8a

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a007bb6ec7c19ab14af9addc12f145778407e79e6c730893401c1d1cf1083882
MD5 1095563ad20d2acc48712555164c6d99
BLAKE2b-256 f03e05e69ce562d3e37f247e3e8b59829a239fe3716317e3af06f1d0a994d083

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f58c7828ae65c61c15e28a619a166ba835e87898105df2b6abf61c14262acebb
MD5 9b31c584c24ebb8c4df9d534d90a06e6
BLAKE2b-256 32d7e0a6616417290444a64cdccd1cd10bae3d6113c1ef9e2e1a3516be1c5a02

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bab2a24a350b80a2ac77259d80723eaea33677928becb0254208ae1ec254f04
MD5 7e5e9492c9f4da353e93ad4eba0d3a68
BLAKE2b-256 30b1933bc598fa85808998e52f3f1303d9a71a70160a16a1695ba8c5330a31bf

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76366cba478bfbe1dd759abd227ed565a6294b165aa10fea767f7d1321bd68cb
MD5 a457343d23bc198a3bcf22be0dfd8b91
BLAKE2b-256 b7b9a09d5861edbbadb317f33949fd61b7414025fffb1c3698be966da6767b5d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3526cda5f972bb7cece5d24051779fd1644d0ac74623ea3fd683dbae266f2c7a
MD5 d283b66d80b709537a94f8ab16cf8203
BLAKE2b-256 3ee0b68861998818a93432dc3bcf22627dd33b785e45fd9c9255fb7e1b097197

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8bd0f854a051971ac77267c1be768b0a62b9401c0959213f707447d594eaccb9
MD5 ec5ff4723a7008c8110d2b7063b4bd7e
BLAKE2b-256 d320cc9623c254ff62acecee287fe5b9b691e063b75381a5143283eaab2637cc

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 096aa4314b4df4d6e5ec568f4c4e40c09a84d762fa800c97758dba7c95496358
MD5 7052cc45307747b65407c6a15331094f
BLAKE2b-256 096caaa38101ef40ae8e05c306a67f5366870f19dd81a9649b74af1c927b280f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a84a3c68785695b50f38549d4dc6aaeb4627b6fee2d8f11739a13c38f61eb05
MD5 8049eafbf85b1c563401ce73448e53ac
BLAKE2b-256 133ad8449193e836e165cc7ba119c2ccaf4ebe4c9e5b5f222a2057783d4f1b2d

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84157a932d4432f02519a66b9f43505db14af598e3725197ecf007b4377f50a5
MD5 2596bda156ea9079d4424ca85c90b3a3
BLAKE2b-256 9c96c098075316c53ab590f74d716bd9c8ce4ec3269bc79e23775ed2b4840471

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24f715061516d8a777520fdb0d293da50fdf8039fda0194e5c1b9605347c0d22
MD5 a63a692b234312de5c47b208be05981a
BLAKE2b-256 b7f248943aea4e7acaec9af8f53f807f15fdd1513bb1caf15f3f96dcc87da0c0

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d1aee2869415fb0190a34a0cd5fb31f48584385e427b9bce8a94c5d08fe1660
MD5 ca5344921dadb525bf41c87ed715a470
BLAKE2b-256 76678296062a4487c4bbb7cc9dee7efb6370c08074324082bfb6e48610d46988

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45d623413f03df9a099ce05a74decd1db40dba565e9feb0f84ac184fc0c7c74d
MD5 45bcc5721cdafb9b1d59da9ae9a78856
BLAKE2b-256 aa29e8642dd8245275f14c36a21c9371e89a6c3a24d5bec5fdf05d285e791078

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3cbbbd777ceb1101777553895f180184938ef91787e96c1725c0985fec3f2089
MD5 684fc466e9641a9d36b66ec2df89717a
BLAKE2b-256 19031daba65af0be41649734a62f9bfe47853b798d0340fd25eb839454022966

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: assimp_py-1.0.8-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c75efa4c52d1e59b3a38cfebd6dc405ab40ec44920bb3e8505a007a52f5f22a5
MD5 e16c4bfc69971674512639af4e3a2e9c
BLAKE2b-256 65895b7a02a398ffcc1cdeecc53573b2319e80cbf23629e0e302beeb157999ca

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: assimp_py-1.0.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c78f19194d1bf79eb40e97bc40db8b33e661e026d76549c5d68c618b628e0be5
MD5 9b88d30563cc1c5badd4d946a485fa76
BLAKE2b-256 459aef38431a28b0d49dcbea8ccc0b63e818e6ee7ddbfaf72551a6991c99387f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aa8eff2abb145607b277ffc75b8fd35e5129822b87853c69f3f50722050f736
MD5 3a4e141e662c5659c639caf2df0c3f95
BLAKE2b-256 5e59fd748dde04788f49a74de76bf4557e8ecf1d907e8bd21883070b9c8226ea

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fc8436bd4b19c26efd3c3416a265362639b67a4d27524027ac9c9bdbda74cad2
MD5 e32e6c7d43a1ef336b0c660d6ec70ff5
BLAKE2b-256 4306e5bcb41ff3fb7e8d3fe41cb3890c44dfbc1b118fe04e452c2b1e6faa732b

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2879f8bb2bd41d68888dc985823716684fc1c8734e6fef20032b7a79847d11ae
MD5 1e27979d829b96c983967e035bed15d0
BLAKE2b-256 2f3d5047eaeaf38f40408ceb608598103752de775c9b61b07db625a99ed1b2b8

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58205cf8898f68c9b00794218c905ca8cf0ac7f4f63e6ea2d0727cfc23d7f426
MD5 34dd4d34bc58f944e919135ee1cb6d5d
BLAKE2b-256 26d698461969a320c8b90c4aed335ef59eea136d0098cf58344f474fb8ac2820

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75973f2dcd70db614e6dceac6650e58cc4e4886d56ef8263e0b01c335fc1eda1
MD5 9f3842e5bfc9981df0321fdf66aa5f6d
BLAKE2b-256 4df5f56786d98b71fcff712c0d851796eec1e7727b554d0ac078bc1134fe53c3

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6c8fe09b7630033d56a5764fadaee94e38b908ed08a79f294caaae76e83c622
MD5 d62c6d9aae57f240a5b18ce9d23f1747
BLAKE2b-256 5ab844de8b9f8a798283ac6b6737b2002fb5d8ff554b9931dee25bfc244f364f

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79554d29bd44e08f19ac1b94014ddc8d6cffa5f4515709192976e959f5054428
MD5 f7367f96349ab363745af0fbeb58481c
BLAKE2b-256 a2ac5d846290a4bfb057208eff8a381414730f4b42d2ce5aad9691fe071f33e5

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2c09f6a9f9232f2c5a715db1592513c9f7a0331990fe4a9786dac57044131e38
MD5 19eb533c3561970d715a4f616689e0fc
BLAKE2b-256 da086de0f38689e649f1f299f7480bfe21e990fdc2a44bd3252921713a72ae15

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f54162c97e0354bd997eff1fa87824054e0e22ea5175633debdb6a739ea980aa
MD5 804fa8227f6dd76713abb98585c13e33
BLAKE2b-256 5ab5379cd15e5b4eeb02362f4fd146f0625783dbf2a547625ad90b0fcad25c9e

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f66a45ad75e1cec0ee75ac6da4ce64bc878deae8b7be7b05b71645380f0529b8
MD5 6a163ae4930ec139b744fface1063a74
BLAKE2b-256 ab238244b9c2b36727e4d44362035508a8baa8294c22e66fa519d22abbf8058b

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd6890c17d5aaca69106adb9f44cf8da39dff3d1fe81def42790c6685e9418f9
MD5 36947d3cfc9f705d21dbf6e215ede642
BLAKE2b-256 831d5f8c4ef8d58311179593bef222bad29cb4ef1e4e82274fa1ca54ce110bd3

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 220ebb3a7d8534b3cc85fa24f13eb8594460acfcc8e21c41540c76dbc61a028e
MD5 5a4877b3f4ace450bd80894dd07273d5
BLAKE2b-256 797261cd097949b1522e4b614792fba110173cb36cbac6b516bbef87e975d4a9

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c081f9f779b7d46f10e3b808b3ed59952f06f724a9cd220d5fb4a9b63878ba57
MD5 5e83f55c9dc460ee96f734b0781bcfc1
BLAKE2b-256 1c5ea5dcbeed32f3c377b680d6b208595670eb4d6258dbbe0c8c3d018edef4c1

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4261a3754accce1572aa1239d4c57a0d7771d21061eb13df53b3c9794076fff9
MD5 d95372a722155a572716b3d28588542e
BLAKE2b-256 ae9ea8d2ae4d43b32c9a877e0503e5437d6469a6051e8368e02033a1778fe2c1

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec08a20ba1b6b39a2d2521b1b94fc47206fa4bd3f0e3bd7afc0eae51a2f83083
MD5 a4cf8c6b76b0687d6ea8d11848970d82
BLAKE2b-256 5adf4479df6cf5fa831140f5a0a409f42b46fabb913efc2e9a4e36f186964596

See more details on using hashes here.

File details

Details for the file assimp_py-1.0.8-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for assimp_py-1.0.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ea49bb3df05e0659febff1fc84dbe25595ad52d46622eba299cbdd80611ff5a7
MD5 9b9eb4980b95ef9df0941929927ab42f
BLAKE2b-256 60ca936ec041f98c07dcf1fbc69c02aba00c48508bc379f3967fda47530daae7

See more details on using hashes here.

Supported by

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