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.import_file("tests/models/cyborg/cyborg.obj", process_flags)

# -- getting data
for m in scene.meshes:
    # IMPORTANT 
    # All vertex data is stored as memoryviews


    # -- getting vertex data
    # vertices are guaranteed to exist
    verts = m.vertices
    # as a list
    verts_list = verts.tolist()
    # as bytes
    verts_bytes = verts.tobytes()
    # (Optional) as numpy array
    # np.asarray(verts)

    # other components must be checked for None
    normals = m.normals if m.normals else []
    tangents = m.tangents if m.tangents else []
    bitangents = m.bitangents if m.bitangents else []

    # texcoords come in sets, 'm.texcoords' is a list of memoryviews or None
    if m.texcoords:
      num_texcoords_sets = len(m.texcoords)

      texcoords1 = m.texcoords[0]
      # texcoords2 = m.texcoords[1]
      # texcoords3 = m.texcoords[2]
      print(texcoords1)


    # colors also come in sets, 'm.colors' is a list of memoryviews or None
    if m.colors:
      num_color_sets = len([] or m.colors)

      colors1 = m.colors[0]
      # colors2 = m.colors[1]
      # colors3 = m.colors[2]
      print(colors1)


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

    # -- getting color
    diffuse_color = mat["COLOR_DIFFUSE"]
    print(diffuse_color)

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

# Nodes are also available
root = scene.root_node

def traverse(root, indent=0):
   print(' '*indent + root.name)
   # print(root.transformation) -- transform matrix for the node
   for child in root.children:
      traverse(child, indent=indent+2)

print("Traversing nodes ...")
traverse(root)

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

ASSIMP Version 5.4.3

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.1.0.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_s390x.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

assimp_py-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

assimp_py-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.1 MB view details)

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

assimp_py-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

assimp_py-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

assimp_py-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

assimp_py-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

assimp_py-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

assimp_py-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

assimp_py-1.1.0-cp313-cp313-macosx_10_13_universal2.whl (5.5 MB view details)

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

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_s390x.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

assimp_py-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

assimp_py-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.1 MB view details)

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

assimp_py-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

assimp_py-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

assimp_py-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

assimp_py-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

assimp_py-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

assimp_py-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

assimp_py-1.1.0-cp312-cp312-macosx_10_13_universal2.whl (5.5 MB view details)

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

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_s390x.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

assimp_py-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

assimp_py-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.1 MB view details)

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

assimp_py-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

assimp_py-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

assimp_py-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

assimp_py-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

assimp_py-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

assimp_py-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

assimp_py-1.1.0-cp311-cp311-macosx_10_9_universal2.whl (5.5 MB view details)

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

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_s390x.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

assimp_py-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

assimp_py-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.1 MB view details)

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

assimp_py-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

assimp_py-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

assimp_py-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

assimp_py-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

assimp_py-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

assimp_py-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

assimp_py-1.1.0-cp310-cp310-macosx_10_9_universal2.whl (5.5 MB view details)

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

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_s390x.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (5.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

assimp_py-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

assimp_py-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (3.9 MB view details)

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

assimp_py-1.1.0-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (4.1 MB view details)

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

assimp_py-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

assimp_py-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

assimp_py-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

assimp_py-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

assimp_py-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

assimp_py-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

assimp_py-1.1.0-cp39-cp39-macosx_10_9_universal2.whl (5.5 MB view details)

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

File details

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

File metadata

  • Download URL: assimp_py-1.1.0.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0.tar.gz
Algorithm Hash digest
SHA256 ad982d33ba9ff836749a6475e145e8dcdfc106e174876ac035662301707c967c
MD5 963c4636aec3a62ffc04e65ff090d33c
BLAKE2b-256 0b6cbfab1e914dc0b93a482f8093d4f04c85e8c58f0c9de341291e3d6f00744d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c3e2ac5455d8d5bec941960cc539f5a22647013d96158c5770b3b84e82921fe3
MD5 2ac51b80057d6b088f211ea3699de16e
BLAKE2b-256 9eb6a7bcb49cb056c650126e5a38aec5aabe8e49dd9434c7751497e1ff9b8713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 471795ca318783f321b349ea9dec5166accdb143bafb32e3ae634d7289bf170a
MD5 cb00ead4ca81f6ec3e84cb47617c1410
BLAKE2b-256 d3279919d16cfd6c1a1953defc21f4ee8c65c98f396a4eeee0e45db52549bf40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5493a4783193e7e0aa0a7ea77821dcd0111fb8a8869cdcb0de4de5b75921558
MD5 beb0e0a4aa18fbac45d8ada454c45d36
BLAKE2b-256 ac879d5d0345914b925d6c2cb2f2f897044bfdf2d018f6088902d44bb1c90ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2c9211b3aec68f2bae813ff6e9a9e40f95d49fa50e2a65d444cd2a7990fed970
MD5 26c74c78c91f6966be85a2cc97996573
BLAKE2b-256 1d359684db2b464e2ebdf88b5b6cd2990aa62f6023a348d29175e318baa368cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5dfbfd34227cd86e3d156648c2c3424ab17682c5d7ac9452283eaba05b69c86c
MD5 c08ff20f602e418f5aab912d71e7df06
BLAKE2b-256 6d04f51648866cf018a44956856bea2577c9509715860dc2b035676fbf32312f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5573509863aa70ee7b2fa04959b59d09dc8630cb002dc6dc2aa2d05c7ac4e5da
MD5 109d3aa3c7098ba7f74172cf9a3ed7c9
BLAKE2b-256 a9876eb8576d64db83da17a9216d3b69b3632f94a9e144671a34cc6fbdc9abe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdbc69af7555a2a5a055be48b37fb47b89993146c0d79a7b21e7457af8ce9053
MD5 7b8b3edb5fca1e1a05b690f6afc168e3
BLAKE2b-256 50ebe691d3b0304b0933eed97fa991245328326debd10c7c0b0ed2f48514e748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6e8a4f12dd7d389ceee4b7a0508894d95209eb697fbe805dfbf46f9c5998b72
MD5 b3ead2f4583c8851393391548424cb62
BLAKE2b-256 66e1f9baa12cb59f7bc572403e206e502f55f6b01bb5034c953c965e5008842f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5170927682070a4d8c8cd8a35ccedf4575a6a45dcf40b61ee4b93da38b63fd1a
MD5 cae783f392e4e40c7e5984963c27330e
BLAKE2b-256 64e1805463497d168857446789db4f0500301ccee2f8333f88313a2518ceae9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3f98fe0a2f85dcf37629cbd40afce00f8d7d50aa911c83e9ccccd1d3b630dbce
MD5 5967c3928deef19d34178b59ba23abfd
BLAKE2b-256 4a7d97bb43096738355b16addf83ed81c7e23782bed13b300c08747f86c56ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30294052f22626c0493bc7050fd92d021f79236e3bcdbb3d008f459acc954b27
MD5 e4037e6264b219dd21c4725fef03a7ac
BLAKE2b-256 61385f48253ee5387bfb2dad446594fb1f7e3342f7297298e9cafda81defb598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11f4647362af9606d659be69d557c7a24463d77031e07cea3b849793da1cffa4
MD5 b6597425f779b4794016a37d81a1db27
BLAKE2b-256 c6bd2c1f9e073988dcd0ac7bb5069db03dde7f3345ad7b99ada57c0dc18e9aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 408b89cd5d2ed9e503f204c491ea51294594af166c2b0553843b24f84c73b091
MD5 f494665769d9026ccc1a0e20b970dc90
BLAKE2b-256 f8db63223d25d83a12fdc7a6fd951c960255cda31deb1c0393aa9fd3c61c9bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43be8b5b979e6c7befd8bc3e082dcfb41f23c93e1d0d00085e243c7d9249600e
MD5 12e2b553adc3e2826fcc8cbf331fb0a1
BLAKE2b-256 8f2d1e2de673497bf485052d9a4f5f82e88e4f19bd659d9eb1aae8560b4b71cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef5726169367c57cbc1fc186980c40dfb612aa234cc2dc6f1f8d088a61a3f973
MD5 194655cd54e3d18af628cabd12a8e311
BLAKE2b-256 262633844b1fec9d3c9d804b25d5c68fb1597e2628bbed7fc96460715cb331c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab2c6d0536d6f8de826e229b3453661539dc4b55068f9a5e29a3fbbaa4eb71a2
MD5 1d0d7bc14dcfba42c68155ac69f06e1b
BLAKE2b-256 3ce877c16ddae98b26a3534a2e6093fce4f587d11f30ddd5b1c97969d0ef8a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bac35f2d4383ad27f0d41bd7a6088468efe375bf70af398817f4baecb3bab6e0
MD5 c5a8caa4f2341eb3354ae3e095813839
BLAKE2b-256 85894a8dd421d9e4d447cf7826e42f28324d2c1049b8211f0ac2cfa676202c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3ed746d2c31ba6ef0f48547fe70d1ba2eba213c05a2fedf2320433fc0019e346
MD5 1c33775ff320b3be0f8ba2fb891ef29b
BLAKE2b-256 856d6b4e6c315d7e63d2ac701c98e052c82b3873eb1836864d9e8f682556b2d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1798839f64a8c0cd9b93d3a060cba3075721604a57301eb5fc3c914d75eddfc2
MD5 d8acee24040eeffa956c1f92e3a18a6d
BLAKE2b-256 e9882b6ef94b33c9f257184343e0513fa490315dea498de2e4c3737fb81d2c16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab11d55f461eaec7a1d0396cb05416145266716886852c539fa48ca5a82e0fff
MD5 621af00c37cda4f09546ff3ebb23074b
BLAKE2b-256 cb42fd9fa728862ab6f87c1f6aacf660d983cc66bba82ba5d85f7bc22141bc63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cab518c8c7a18b99f5be75767bbf342b01b741b9a7e208596889c75b8824afbf
MD5 07caad6125dfea554dc5f5c872521fc2
BLAKE2b-256 680479fc42fdf84324c863d1fa9167dd2520edb888c0b5970ce7afde434199be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 55bd1a1bb02faa8f25e80c08a54f7e210da7bff9593df4b515938d59b921e8cf
MD5 86a1b452f77481c5e20280478e33e4cf
BLAKE2b-256 d193ec2e16ad29591501d3531baf8fe863bfeb79874207971b0fc69a0b68a5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ad9ed61bd0883baf9d7a5f0619ff52ef2288cc04ba0d03143b7e6be31f7e8e8f
MD5 2ff298a524a7b21deb5d5b4b4ba5f33f
BLAKE2b-256 0c45edfcf513e1e5a40fc8558a391dfc4480a2be48a1b3ebfd7f66db8371a70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 346c5b5f06be349db09d611d505640cb68f93a04d6a76566c70bb0441aea7087
MD5 3605761f0d5f3686604cb24814eeb349
BLAKE2b-256 9dfb66c14267a3fd0736a47e43acdaee6fefde711388fd02fc66a5c25eb356e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75ddbceb4242e3770ff8da90a8799f7ee9be71602c5c6cc9ed56acbc252a7d06
MD5 67a957ff6d5ab001dae6b5c04a93f32d
BLAKE2b-256 e694333880e8c707d33c9d5a9314217a086235b288df03d89dadc67798297f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0007ee84e13bdd41167c93c4e7f3eef9c4d2653064bf548fd179b4daee21e38
MD5 cdd3cbf31bf845c5dc0dedaeb4df5469
BLAKE2b-256 c1cd18fe0547c5f28746d607d43ed8e7707170b34a18fbd784d39171b7de336b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e5997cd6e24ff11f61852e53768a31319043245603b9a64a4cb90c086677fb3
MD5 f01e9317e13ae2fe97ee0dd2a5604781
BLAKE2b-256 04867b23ce735a417301a057cb25bf2ef44370aa8fe77afacab51be6c214e562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 abe8242885e7d82b678f87660660ed640ec750961793f4cf68b7469691cc54d1
MD5 4daa8e71ea9f2159ae34258f59fdc88c
BLAKE2b-256 7a72eab3035ea818256262a5f43b38a2774b7984f78d2d6be190904067d23ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1b0bdf3275c7e95fd30b163cfeb56a1d6610f194e404a8e6d43eb07d71665cd1
MD5 adc0be71c6a6226fc87cee5664e87055
BLAKE2b-256 f27af4f624f9a63b78d9c60247b2607178e68a9ab45e9c39ea98be26f7472fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a58c410556a6b61ed29733161a8fe95c1681e11b00bc571efb262f424dc054d
MD5 b91a7fcca16aedc543e6daed85f85a2f
BLAKE2b-256 0ce333f906fef619ebd2d2952293b7875c9412f680cdb266cf0d21f22a733602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23a084a811850844c2ea041ef013cae907d8809677204355cdee86742a8b561f
MD5 105b2f0e837614ca51713e410d4f5e50
BLAKE2b-256 b96956d22b5db6af500129be65268e6342513877de56ec53d72bab788fedb2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a1070b2ca39d13bbb03f54cddeb4c04baa00d9c592e3acca0b3dd8d9ee6f225
MD5 7e928f619465d0f7d079a10d2777fbc4
BLAKE2b-256 80ad29dc82244f9b554095c41494fc127f9152ce9acb2aa700d08677840bc8bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3185c974c4a7cb01655e557dc892f311aaa2a85a2edc095e34c1c01eb985142e
MD5 85b60f121abc113027c3781b9f0528b5
BLAKE2b-256 b8d3f06f2129a46fcd259e03bd2a5b46c3278ed22176e21b665b1c089faff3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f328ca391b7dddbc1654a3c41ebc09790f4923c6ea287c425cf3c9ea2031dd0a
MD5 8fd9a9315f34926b2e86aaabe1e940a9
BLAKE2b-256 1b20e93b1fd3199cec533c1e14cbe365eb4beae6353301fc91f71b5b29e769d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 310392d1a166cdfda9b456d2fe470f75aa90da2dfec50ad589e79e4d1b860f72
MD5 06e01ecc5c4e3658413adc94492e337e
BLAKE2b-256 9a2d1d1675fc3f57ed010fad9792d481dec2dd43ebb2d4131cc3a5536346908c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 74caeefad26afeedeaac8dd361a5ed5cfce2e0a0cb31cbc3d507d056becdf801
MD5 fecc45de92be012bec4b3bc82f4c181e
BLAKE2b-256 ed1cf3d227762cafb67afaaf779fba784f9f10a1adab9dd977cabe2aacd30c55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fa7ca3d6717c501afe5efe0f976ebbbb212f016a06f84e359da6a915e17064bd
MD5 440b4132678ff03c116b855e85134b92
BLAKE2b-256 1fc01df6f60c6fe758db60b8b23b2191d2eefc6d0f4163811f39c6dbb67e195d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 32a7ce013acef84476695d6557df0a4c034440ce6def19374ec191910b473b4f
MD5 3251e05859e48bcc12ee49a539a5f473
BLAKE2b-256 a95ed43dec99dfa10852830ebab37aabf43777539c33602ce045e3f3f10ea905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d505bedffa851e3b6899f0899ec211ff79ec5794716a0c906c59968216454535
MD5 1784c9f873fc68e0933fe27db42d3d3d
BLAKE2b-256 5ec2a7a147f96196e2693df09bb5b61c8be3a36886ca5e870ce2a803ffa5e05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 40f750fde04d7f572f90b368c112b6f1697ec924b5ef897e472feb936412f699
MD5 c31aa5b158809a27d84a065fbdffb3b9
BLAKE2b-256 5dc9cd58289e9b9af86206ba2046577436d17c41bb0ac74237438bbeaad7910f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e29dee6a746ef0a7c73ed768384a111181a950f78899885a2bbd23e4c497d794
MD5 4797f4e7e22755c9dabfdbbb03e30c30
BLAKE2b-256 35b978702718f261fac008679ed624d10bab9e13ddbd72b403c3885bea1d4c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fce58692a8670602506052335097a4bf79b6b4736d9ace0952e11df4f29f312a
MD5 3739feca2aafeb99ed72b0263905f8c2
BLAKE2b-256 48adecd532b4c96557d7e3fa4dbd3abf6df2697254a9b5c49765913ae7f7ade1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5283f87fc1e03886ed16a05ebbad49971380c1e57f7b9f50b6c9970b2904da9c
MD5 4f2db251f04e8c9316565ab5ccfe6278
BLAKE2b-256 8aa6362cb79799dad9a68f34a03b445c2ffb5a5b97b20f9d20c647254cda5715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09bb6fae5fdf4bc98d753fce17162c05f6591f6d33113d150bb9ab88ceac1759
MD5 43faa5c7c43949ee815d9efe2d54bddc
BLAKE2b-256 e96f7d6b8010857af06cfe4f03f2f4114eac3a64059b72021f4db305e34c2d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ebe558accbbcf3d20194ea67850c6837667ae7eefd2f509ea51e20cba42b40d
MD5 709a58c99d5ed05b093e5380364f4cbb
BLAKE2b-256 ed9196ec0f9007d274bbf4fa0d34098340393db4ae95ffca83ebdd6487e0f3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f1b67b6f9e7d97141239222dd28cfba30bdfaa00e9056721a16b318eb0570a4d
MD5 6f437b271b523dae9c3a7fd4661f1d4a
BLAKE2b-256 eec8af635f9684e0acdc3ba1b0d2b2d5ff966bdc6f995038620ddf017dc7e632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d0484a9be148d87dcded6058799ba49f97631098ee96d35b81af2884098b83d5
MD5 665561f54b357dd00b93943b0e70e262
BLAKE2b-256 3818d8fe3500a2ce7cccea7c8e253f8a6be17817df0ed520d60bd49caf4bc56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98198af670cd4b6e767fa931e39ead11f71ae4a6ca0366989adb55bc64dd7bb4
MD5 18d2cf44a32c49e2121364be886ea0ae
BLAKE2b-256 c0a54ff6b8adc2342bc100447cf0ac02bb089eea4c14bf8b06ea94277265e40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e3abb65af865801a85300ef2b05b1ec4dafc48613d36a1881edb7d729bff0f3
MD5 3883e18d6c239a447c6b3f7585072a36
BLAKE2b-256 802775f7ebd91ad84d5c74571fbf5902305be9778ebe0ca37d17fa5b7a8e0488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf4a07dd28e711d33605fc34b12025bc484b59b40817a19875c9fd04919bc2bc
MD5 5b52ebe9a1fec98da63441959fa84e4d
BLAKE2b-256 af5e3a851eddcb5e844d1b3df39cb672d3d8246beb3bc0f5ad42a24d43a77dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 852381db9a109bb71910d83ff786080f25a1101d4ec75f2902c8b00a455ec338
MD5 61c1bff3e2380664921ff7e9f8bdb5c5
BLAKE2b-256 8eea594604dfd80c400390d3717abddd999b505a8a2acd2a6315cfe31f2605b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 855756f02774de862de0223d776b03a516f966c709e973db9a85ad0bd76c8a4e
MD5 83ba85e2938786032422c7b1122584eb
BLAKE2b-256 ddf8179797e1f4e871c7c88cf920ddeacbed39e99a8f7acf46d8aff5f707ed10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c510126f902ca1617a6e554a731ac2c9191b81b3c2f2f206b6923c7bde7048b
MD5 c825e66b5914060d0e7c577b9def452f
BLAKE2b-256 1570bd632a28c99c35b192c1f540cefd5a6993fe8b15c16957277145b56df81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 272a130ee713aa18b604c24402d430f46acdf11f93f525bae0df15c040afa523
MD5 b62ab326f1f2b4e9d9112a4659a85e6f
BLAKE2b-256 498747d8deb422a66485fc47471f00efb199fdfa87d689ff934f9aba586257f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0298d1521fff9f3eae028706a2b9802bf896fafa63714b906c9ebb00e46ae072
MD5 c6289a5c904677755df8c9680f412425
BLAKE2b-256 903033d67c7626cba841e78e769a2059dc59df8aea4c6920345584a29ff9da9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 56f426fbc652cfe0e0a56116c93923497ae54edfb0cb479c71d44c5ab72f96f1
MD5 1562020cecb4b82cd5c76953bf9caf7e
BLAKE2b-256 4e948a9fd7071adc5a6035a0f9de19e3398ad0bb935d2db0f3cf80280f90f5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3af3f74dce45ed8e19cfd5fac7b071b0730f5f62e5758546286a8f8df5ba0c4
MD5 dc007f2b9d96bf04a886427c5aebadf6
BLAKE2b-256 c3ec17047d6c2ab96609dbf09d62ab9935e763dd14a49cc920dfd48719edeb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f3b8db11014f05b4ed263e849d9745765d513e75a77f9c97577c7fe813b9a9ce
MD5 27a26379b90986a689269db568cc6853
BLAKE2b-256 a21c0887d6d3bfbd9a739e43a9eb9cff112addf1ed71dc42be3067df7eb47000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61299a1246c0da00f0a4df6ad4198f265d1575da83776e8f43f61216fa28006c
MD5 1c22a993f9fa86017044e21635de0fa3
BLAKE2b-256 c569ee9eaec5ffab333a45617b3de6b024330165c9b0de576b558c71fb70a3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bb38165493644441e140b16c3047786d1c31b53169bffd2d66eaaf525b883ef
MD5 5cf2c3ae54b0ca20a7e28c1a4112043c
BLAKE2b-256 45e8920d836ac6dd44b302cb23b26d7bb62305b49918c10cb686472df81109dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f56123fe91beb075a06c83093e84205485650ca54023417058e091dc8054c98
MD5 dad3e9a7524c921e758c252bafffeb44
BLAKE2b-256 c4958f40e4842b70dafdbfe6d98db0d54f8604c8fa63d64590b393ea4a3205f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96e1ec70fd68dca726beb202dd89cd00103d74c0d62d5606a4525b659a9ff0e7
MD5 f1b961a9ba322cc9a234d781fdae207c
BLAKE2b-256 46ad07af1c3cf8efde1f1cb452a98affc2c01809ea334a3d86956b859d0340ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2033734ebf606e16a0bfe7d0c259512e619e10e85160b702d1fa81d5f11e6483
MD5 60ca8614b40618203e5aa64f48fed633
BLAKE2b-256 229aa86848fedafdc12afccb58d46aab40ca5c1cc0e9edb580aefde3c0370138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 93d3aa769f08152fd7a46c12288aa9ea025736f166fae66692dbecf537cd827f
MD5 a9bcb726ca0b4cb73527ba9ad7eb0850
BLAKE2b-256 722a475022a3209d30b6cb43b74944b0e08470de87185dfb426788cb5b7259a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6fdd7e1f0e9851d850a3a28c891cf5bca65847baa76daf327110ecb8eefd8694
MD5 c62cce3807a260b1ba8dad29b696e933
BLAKE2b-256 4e06ef5e87219d9e8fea08d1bee6f895459a2769d29af5743c996c35a56ffa88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2114f1ba89d53f7268e452022d84c30ec2d4298d9a196ee00b8a8d1bc709bc61
MD5 6976731b78cf79e1a29becdf50a9c31d
BLAKE2b-256 75a6459b1fe1b0d81ec32b29213f961ad11084beedddff28aedfb84b48821131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54b029879552aa00ea15957ec8159e0660967d2b03cb48440fcc65ca4878fd2f
MD5 200e0a92337ccbd44e9ea0175968ac71
BLAKE2b-256 bcce2a4702acdcac65923b0b436185a921f813199cbadda3957f6aa37a9aa823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 834f42d51a99408a605b37bbb97fc406375879992d4ee2d0960f0e72cb50ca35
MD5 eb14228db3390a1f2d3d7809293d54d9
BLAKE2b-256 4f4d829cc492c7d51aa395f6ebfa07bc6bf58e570283b8f9635a40cf42568ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29591bfb39e71d75b02bf0f4f7b212afa8af12b2ae75d96be3524a9a6feef471
MD5 8be679608ebc74fa119ae2d82934d6f6
BLAKE2b-256 c3ac2325021cb322de29c880979e163e80f4b049a151fe9daea4a37af6bae20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ea5227582bc2af4bb2fcefe7d724053f32cd71d4003afdf9409a60a89ec7600
MD5 913d2e3ef5f240c335c05d2aea72caad
BLAKE2b-256 4bf14d00a2553cc9def350c717cf0733ccae341ffe0928bc5afcb84f3d8c2c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffecf1a371bdfe01ebca462eda62eede806d822cad8f38bd5e3bd923b5bcaaaf
MD5 d2cd72515761052ae751a196a7aab346
BLAKE2b-256 c6db9eec4c41fddc2581b27b29d510534a408b09577cfa7f5802ae146b2e2a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 55504335142d77509388546308e80183afa6804a35702668f3ec45717c9aed29
MD5 826a296df1dd9a43e41085bd1fbccd21
BLAKE2b-256 a910dd36ce1c1ac31676811ceb17f897004904449911ce73e36a92984a0c036f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-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/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f57b28556277e8aa8e233eb62249b574ce256bc92aa1dd9bd10a241b2fb44907
MD5 9fb7bf42599e861cd7132b506c6289e5
BLAKE2b-256 d27de6945bcc41796b734ee8941aae7d7b5fc7d6fd06896488b705da7cbbe5e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: assimp_py-1.1.0-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/6.1.0 CPython/3.12.8

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a35459ead50628dc5c971bec8ddc33a7145db1c7026923080c7ca8d35935309e
MD5 7cc543b97f076d50540d10eb59407660
BLAKE2b-256 5231a55ebb343c6218dad6185ba73ff9bec7c718fbf38f314dfcaf292a296168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ad8ab09cd3fa25cbd13848bf725f17391b877a4e201e8e81fa4c40a67260a04
MD5 3d39827fabdfe167ab4b8c9998fef52a
BLAKE2b-256 d1a69b0745c37da37e2f967a3b6886dc7672d163749895a9e7479df4e44f597c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b6289520fbbf77e46939e38daf9dffffacbe4586610494a8f9251f882b02b116
MD5 1a622d6467808a3c7c228c2b6ec5f3c3
BLAKE2b-256 0c8aba485802fe8a960a043556e90f243da7f874c152536286baa044a127df67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ca7936a85f7a69437aa433b22d6dc2e1d8f16b0f5aa2adcf04a0a2a0e946df2a
MD5 ea71baa608f188ff897eecb6cfc60657
BLAKE2b-256 36ba01bbd7a609a089a23355dff64029fc7d0bbcbb78b739a7543574612b28d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1133b2f966d68167b829778db3da80126e352c33d284dffe51a60cc0917f95d1
MD5 11584e9e04cbedb153a4cfd392ca6dc1
BLAKE2b-256 31ccd38e8ac92e61cd793f38bbc4d6fc4c33ea5ebf16fbea28e4295e4f2423a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8a952c7660b05d968ff80a54ed4436845e45d5b79d7c24891b2b77236632ac8
MD5 b92024f7a585b9d13b9d654a49fbbea8
BLAKE2b-256 c8dd5f70797ebb14812785e14f9e062a81405ed3b7a7487085472597dd51a271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4500c3ff3951b9d292acfaffaa0ea135e13cdc9b7686e9aaf876176782def310
MD5 151d42858c0e5f16e128b2fd22c620e2
BLAKE2b-256 b02f42f35228e72c05986992b4b3a46dfe74a35d2a75a7d63fa4a4c7914145d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 096f68198af76da7bf8a655467c4a9ea045bd709241cce67e34b273c781f71c5
MD5 8692739c70fe3260a3944af010f2b2c7
BLAKE2b-256 2b44990ea217f7878ad735e8ecbf8660bdb0ad5d27e6dbb6c88d3a5db184faa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5f852499ebacf60e100afc68cbd3ab430f565ed19589b57a882b227f80b0e393
MD5 6b782ec0f710c944aa6dd6f4a2df9c05
BLAKE2b-256 936a92f9aeb51c8f9768463b787d560cc9f5e8daa2413c81aa9acacd13c494a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3e4024af0c565f2fcbecfc1435e874d5a864c67554ee625d128fb8517275a7a6
MD5 87977caaa13bb686505690ba78ac4cc7
BLAKE2b-256 08ee166ab2ed96d61b5be7913d0f6fd6baab78cb0c83046a5bc4a2854e99eaaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bf860f9d7215fffe06cad2525ccfb421f0d40924f637c7a7f2da157b421d1fe
MD5 676b3ff77b679afc9cfc24d4a0b99480
BLAKE2b-256 9296d176a62ce2d84f1efaf94bbdcbf308e7a1ed4548bf9063943f850faac067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c6765d38c7b26aa8c93f03983deea6539d635525e1445e3771844d964d2feb8
MD5 045a6f8cc7ad0869d6501f6a2b0d7e0b
BLAKE2b-256 19c5dfca39ff7636fb4671928ffa5b69040e5fd91f7837c5f1df1c0fac06dea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a0d8274df76439dfb70e35007f35624c337f1dd96d0c4337b913fdbda2f2283
MD5 8b938787890d2fb0fe152a4f17b04e01
BLAKE2b-256 f1eed013e8f1e90a7ecab929c5b48e9c3d80d0740cafdcc5e61da2cc73babeb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96053760f2c09812dc5e9fb5abc858d6c32ee795c40acf86b28bcd3be3540ff2
MD5 9a49900043ba4f28a67c3bd51ba62ebb
BLAKE2b-256 1168f9a4055e3e467884af621127a9a3800ad5b5956666c083f4abff39199461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d4c2aff0554eda56dd5c292e8cc5f35921e6267979da20b7a797138fd18b997
MD5 cb07c7a6fa4bda8b8869c9da9b0acada
BLAKE2b-256 cedcbd924e2b415ec77001857822fa02b087fcb771b05ef21ecb0f80bbccd13c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd560a69bb80d149efb2b041a0a2957c1cd89bb27bbf4d05cc75665e49d285cb
MD5 42dccb5b85e054cf64058ea00548f104
BLAKE2b-256 4a884ba12f158b17acbca913a59978a7cbb63fd923fc9859a2d042f539bcc8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for assimp_py-1.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 435544212160c6c2efb4d2f5c3d47af0fbcb357c14aea3b66b279b4da590e15e
MD5 2844ad9498c8b20eb8fb74f8f3ed2e44
BLAKE2b-256 54383c03a595f2b62d04ceee5b9f86f2a24262c0ed5b6eb48943f9784d208935

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