assimp-py
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>=4.0 is required for building from source
Building from source downloads the pinned ASSIMP release (v6.0.5) via CMake FetchContent, so network access is required. For offline builds, point
FETCHCONTENT_SOURCE_DIR_ASSIMPat a local assimp source checkout.
[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)
Skeletal Animation
Bones are exposed per mesh; animations are exposed on the scene. Bone weights
and animation keys are parallel read-only memoryviews (weights/weight_vertex_ids,
*_key_times as float64 + *_key_values as float32), numpy-friendly via
np.frombuffer(...).
import assimp_py
import numpy as np
scene = assimp_py.import_file(
"model.glb",
assimp_py.Process_Triangulate | assimp_py.Process_LimitBoneWeights,
)
# -- per mesh bones
for mesh in scene.meshes:
for bone in mesh.bones:
# 4x4 tuple-of-tuples transforming mesh space -> bone space (bind pose)
bone.offset_matrix
ids = np.frombuffer(bone.weight_vertex_ids, dtype=np.uint32)
weights = np.frombuffer(bone.weights, dtype=np.float32)
# match the bone to its joint node in scene.root_node by name;
# or pass Process_PopulateArmatureData to get bone.node_name /
# bone.armature_name resolved for you
# -- animations
for anim in scene.animations:
duration_seconds = anim.duration / (anim.ticks_per_second or anim.duration)
for channel in anim.channels:
times = np.frombuffer(channel.rotation_key_times, dtype=np.float64)
quats = np.frombuffer(channel.rotation_key_values, dtype=np.float32).reshape(-1, 4)
# channel.pre_state / channel.post_state describe the behaviour
# outside the key range (AnimBehaviour_DEFAULT/CONSTANT/LINEAR/REPEAT)
ticks_per_secondis0.0when the file does not specify it — treat the duration as seconds in that case.
Demo
An interactive demo renders the textured cyborg next to the GPU-skinned, animated fox (orbit camera, wireframe and skeleton overlays):
pip install assimp-py[demo]
python examples/demo.py
Controls: 1/2/3 switch fox animations, Space pause, F wireframe,
B skeleton overlay, mouse drag/wheel for the camera, Esc quit.
Headless smoke run: python examples/demo.py --screenshot demo.png.
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 6.0.5
Release files for assimp-py 1.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| assimp_py-1.2.0.tar.gz | 39.4 kB | Details |
Built distributions (wheels)
Total release size: 234.8 MB
Release files / assimp_py-1.2.0.tar.gz
| Download URL | assimp_py-1.2.0.tar.gz |
|---|---|
| Size | 39.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cab18a725c8538e4b65d30f9eb316e974eed019f58d6a119718e1ccc25a0d02c
|
|
BLAKE2b-256 checksum How to use checksums |
c4c21a18f8784c196fa60efbf36893086a2125967d0a2439d95d6bf5e6289796
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-win_arm64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
693cc70a86b3d96155152b99511209a8e89d92574ecc97f4012277bdbb5111c2
|
|
BLAKE2b-256 checksum How to use checksums |
050c07b4cbb427f16d082b56b46c0f6070a2beb5e771cadbf77f8188b8975008
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-win_amd64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ede19b38a922ab335a5b3a692557ca00b24358e94b963681f32a78e5f3babff7
|
|
BLAKE2b-256 checksum How to use checksums |
d9b0d127f232defd0b8e41ee4dea93ce2b14fd03c5927351dc86c54f49faf750
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
fe79597033ae3aefd82d87537391e8360ee803caf94ab601f967effa7b55514f
|
|
BLAKE2b-256 checksum How to use checksums |
86f607e95e22a2553a7c5c7ecbbea0f04975539b949890fe62af3db71f365783
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_s390x.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_s390x.whl |
|---|---|
| Size | 5.8 MB |
| Tags | CPython 3.14 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
2e88edf8fe80b9f0468689a5578816b2d11c23f5cd489993130ea09fbe264dde
|
|
BLAKE2b-256 checksum How to use checksums |
81bb263c3699059d63e7480990649492c93a34c6894e20e6344a9a4d7e9fdbc4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.14 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
62d7034b514f4517598788abb3953e51ade417d9bf9b8c5eafb04c54f8e3fdd5
|
|
BLAKE2b-256 checksum How to use checksums |
59317577f737344a26acc8d45eff84d0748b44a311e44aef6cd5866cd331cef8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
0ee20384b6366ed68aae2219a7c7cf9872ae318d042bcee1480041fba201453d
|
|
BLAKE2b-256 checksum How to use checksums |
904ee5489de44ede3647d123f5f32913e22b5680647d2098428468ca0e368e02
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 4.4 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
e918157744f72121e35788ac36d0b07955354cb9f66beb8fc4de85f1efb14a25
|
|
BLAKE2b-256 checksum How to use checksums |
ed74b417810df24cf9a1f2236ca08f7f63fdcd81269914b40019d79c1b732f1d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
2303138b4b5151f1e69dadcdff02d955cf5d026dc52611f20b01aae550c2b8ff
|
|
BLAKE2b-256 checksum How to use checksums |
c22bb52f0b265129c90aa6350b6b91ce8e71b66ff9f6749eb4d144c9a61ddb26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e35532ae00bb55c3823a8d1bb662c48b2b8fcedf29eed468eefcee85e5cbc37f
|
|
BLAKE2b-256 checksum How to use checksums |
f3e3d9b210d6b9e7cd2beed61813ff2afdaa76ff855f304a5e113a7083906cfa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux_2_27_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.7 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
502f62f388c938577ff69c6431906171f3e26c83862ec40efccc93de0c344f3d
|
|
BLAKE2b-256 checksum How to use checksums |
508ef76a4c4d30697d08029e9323356146e81b7b21b01dd8cf0729240285a8b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
295afbb3f8b15e004fe3d8268f01626335da3fb7dd0e70d0b65b593841b42c94
|
|
BLAKE2b-256 checksum How to use checksums |
0f5cf39b5a6ba76ebee185d3595c9f154f4fb2271a5bfd5e2807262abedaeba1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
7365b0e8a57468165a00e682f32ea7fb48f45d2d12d317ccae13983daea02da8
|
|
BLAKE2b-256 checksum How to use checksums |
c3fe04bb62dcecf508d41acd995039fd64bc36a4869db5f84794a2a805104324
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
4b3b1ed5ef7d57da6800a33a31a01a9207402c6d3989f5caa5fe2ebc8964f8f2
|
|
BLAKE2b-256 checksum How to use checksums |
dc7bf3a44b59096508f42d6c8a0f78a445a0e6b32bf0d76cb5d2978f20fab1a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9cbb03a03ce74e164185b423672dc7fccc7edb8523a91c7c2402d88c5dabe984
|
|
BLAKE2b-256 checksum How to use checksums |
3bec27f0dcc9f257135b31622fd696b2fdb7999fa499bdffa83acf2bb59ce3a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
045368894f4dfb4955ebb8daf83fb37aa75e987761f11e5c40cf5a827c5b58d5
|
|
BLAKE2b-256 checksum How to use checksums |
7ab1f0b546bc06250928a53a995134cfecbbf2e7657041036b39baf37f043f03
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
d35c43cb3ab92d68345553b70eefa4dfae5a04ff3284092b885c39e1618c696f
|
|
BLAKE2b-256 checksum How to use checksums |
923f188bb68d79c12976761b0a50849d700a36d43e6de4c22c42e10725b1e6f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
0af1c39bcfecccf3e4f44ac8a7ce8b13ca163330506e8025ad9b3c0a284a1843
|
|
BLAKE2b-256 checksum How to use checksums |
cf1cd9e7cfc189c71892cf13d99aa823c060dfa573fbcd8b53c32d1c9323f64e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp314-cp314-macosx_10_15_universal2.whl
| Download URL | assimp_py-1.2.0-cp314-cp314-macosx_10_15_universal2.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
85fe53b4dfc61b5ae864e05fee88dd48348139b6c11d3ed456ad6c44e6796667
|
|
BLAKE2b-256 checksum How to use checksums |
dec2a3aacb7f3e61db632801661587fcf4444dc48f886e311905e15c90d98b4e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-win_arm64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
ef274e831ca43d73a7238440a4f2cbd041a96bc8122176c7cfc0dc1341acb06f
|
|
BLAKE2b-256 checksum How to use checksums |
92bc792bf9aa2cf62cfa168b81a1b059a1d908e0aa8ebe7f4c021a99d10127d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-win_amd64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d043e1b4ef1d2ed5ffab8fb34e66119063eff6abe4289efd408ec5462ba0be78
|
|
BLAKE2b-256 checksum How to use checksums |
26c8b21babbf33af07f777b8914e86b221d0e88505b8d335b557f36c4196ad38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
71a2ec09b8ee5ae2fe9c03d28ad8663dfe271f34dc6c4ae57b4a75b7d0655981
|
|
BLAKE2b-256 checksum How to use checksums |
35b1e793ebfbf1a8b2d7445475c2182fe3c2b3714d5560ced93fbea001c006fa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_s390x.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_s390x.whl |
|---|---|
| Size | 5.8 MB |
| Tags | CPython 3.13 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
b720344b773d6fa882b0cada154fe731fbac2461ad326b3e48a21d6ac6aa304f
|
|
BLAKE2b-256 checksum How to use checksums |
2472652df5286e7ec5b712157bda6f5a966908433437de65194e84bc4268493b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.13 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
a0bdc5ddf09b6345985d8d9dd12f85da9360a8269c2dbb206f1fa48e0f11b375
|
|
BLAKE2b-256 checksum How to use checksums |
be8a8dec88514b6b8df974110a50f65695ff7dabe9e5c7f9ef762b2e88950256
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
10724244a5fadd6484137ffcdf19b76043f074d02bf1c452897f381a25e14ff9
|
|
BLAKE2b-256 checksum How to use checksums |
3592eed4683efd6c2ac55c0720d1f05c26b7c9b2ea32b9edc959b7dbca72d4a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 4.4 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b99e9cbd7ceb61c3f9b84e2f76afffab6b9a401364c7b6cf32ef3c616fdf19bd
|
|
BLAKE2b-256 checksum How to use checksums |
ee455c2f00fa6eb3edaef2d69d2d033a45460464aa2503e22665b37f166baa9e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
311be950e70b4837a3529cdf871fe5a4327d6fb6524274c158834314161bf3f7
|
|
BLAKE2b-256 checksum How to use checksums |
91f65369bdf534167d459275bd66ecb4b1a1f2003e407c2bc74dd7ca345b5216
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f5fd4bac4559f3853ef4914f8c10b682b8adb2212820f462eeddd82e6ec2e119
|
|
BLAKE2b-256 checksum How to use checksums |
60036e19dd0cd7b3894af3265081a9dbcfb8d2636d12502f5a8287fbc80f51c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.7 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9db76600720a95393f0913bff21ccf6aef15368af3a46de60c44e4afd5a88aa0
|
|
BLAKE2b-256 checksum How to use checksums |
6f0d2b9ac5e72d47a789b4df7341633705051b26495b619b9d609bc266e847f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
514061e53ce1aa91545cdb215710b9f333168c31e5d3da958460a5e930e16613
|
|
BLAKE2b-256 checksum How to use checksums |
e138e9c1ec2e8e76848e9f9eaa6f6d1ff78692c1355150490dfb7213ae2c7113
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
bdf27b8a915cf1724be09cd8d6ce09f51c7c8ed976dc9407f3a6b04c0caa27ee
|
|
BLAKE2b-256 checksum How to use checksums |
86118417727be630b5edd2db22f4201565907de2d4256666a040c123d679f16d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
8ea73716c550727d9ce738997af28141c1a2e7325d02e07e8a350305ab88370c
|
|
BLAKE2b-256 checksum How to use checksums |
31738596448062aded2368a7c7db354bdf5172a0db0851ee941baab2141ff87a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9b5c60cba0b933077364ab6cb4b1c20b27b5d1872669b3070accb37252b27a8a
|
|
BLAKE2b-256 checksum How to use checksums |
5f8aefbef7697a95b5a7b3c283173e91e8132395dbb941f3503cf49b70387c53
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
7da2d06fb96501153afd64f89d43dba7dc04940ec67b08bdfc7d5afb526c362d
|
|
BLAKE2b-256 checksum How to use checksums |
e914f4f9401558037998b8560538e86fcdbdebabca14aaf6a1bd0009a17aa5a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
e6ca7787d18a7ff230b92ce82f410ab344d24f5fe9ccd4734961fc56a4ffc8fb
|
|
BLAKE2b-256 checksum How to use checksums |
3dd54d0f8d71a11b4207569606ab9618007ea288d62287acb2651785779f94bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
98c72832c156490104ab74e647a5d07176bbc1585dcfbfc7c32a3a0c39890255
|
|
BLAKE2b-256 checksum How to use checksums |
edbc12b31e0f2cb43c7ba7dba1c740e3de085d17db12b66f06d864bf0e02020d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp313-cp313-macosx_10_13_universal2.whl
| Download URL | assimp_py-1.2.0-cp313-cp313-macosx_10_13_universal2.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
15abec6f1a81b62886239e0c73792354434bac9f9d59bb0aa9bd98f18bfe026f
|
|
BLAKE2b-256 checksum How to use checksums |
17860a97eea2711f3498ac9873ba0ab99273c28d555051f6b542bcf953c5b5a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-win_arm64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
8f69adb9c6c5ab500b8f661952d25b76937d1d48cf36abe0a20471643a55a2de
|
|
BLAKE2b-256 checksum How to use checksums |
a8e274bb821c60b66e9f5997290c5aa9a908db3c0eaa66ce3d5a1e9762ac03d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-win_amd64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.2 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0436e3eb9405729a3a9ea516492d4259a0df366607102e189102e151d37badc7
|
|
BLAKE2b-256 checksum How to use checksums |
cb87e1929405ee71f0dd244d706d5a33a94347fc6334f18c9217b474ebf75c84
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
890200146edc4f412ce382bc26f6b6983a4d6419264b8beaa76c11c805c33755
|
|
BLAKE2b-256 checksum How to use checksums |
f5b7249e2d076ce9549ca994f92187bd339d8f389363a397b67a852876b0af68
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_s390x.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_s390x.whl |
|---|---|
| Size | 5.8 MB |
| Tags | CPython 3.12 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
a30216c48e8d5c76820736e6bc4b251904d99a85c69af5d3183b61b2adbca213
|
|
BLAKE2b-256 checksum How to use checksums |
c8379df2608455af4e1dba2f05058cd0484899ed6b7f9de6bdf232c031a01fd5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
625cc2425ed928a794c915bda4a6e1f2f40ff2adf38fa293c34d9bd2e14dc847
|
|
BLAKE2b-256 checksum How to use checksums |
9398417fa2658db3527ddd09043f70040d16651b35921ffb580ad371b5c517ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
a43cb1ec2afa5db8a14836c45d284e957610524c43f4bbc9aa353837fec4770c
|
|
BLAKE2b-256 checksum How to use checksums |
f3d9ca8da8e41f2268e3be8277eaaf406143119e4c784e5cf5613f89f9ea6d1a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 4.4 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
f823a45840e25c31c1f5975ab50a6c703aabdbaa39d2cce9eccad651778dbfcb
|
|
BLAKE2b-256 checksum How to use checksums |
4fa15c51e83863f9ba5814f5111eda0bd382a306e7dd76c9591f5c58736e39b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
6fd099eec36e087497086d52e18f7f8eab4974b1d9a8a6b2aae6ee2125643743
|
|
BLAKE2b-256 checksum How to use checksums |
77fa9dc2ab78c4738dfc5535261ce4c3c8133e9584443242bda88733a1359ee6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f7a22935690eb232555ecfe935be7a1951a1f3d91fac9bef8994397f654b253b
|
|
BLAKE2b-256 checksum How to use checksums |
f2adc62e426281d4f5f2929c4c6eac5130411095e81cdda70a6749faa05e7a97
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.7 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
e619b92800cca03b6d38b72e914a9b4ccf07c1b781ef4c41e6d1dde3325f334a
|
|
BLAKE2b-256 checksum How to use checksums |
8a04e99d17535b948cbba2491e73725e4063d6fdef32bf2c21a06474dbc7d863
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
76dac3bc9f874e19f1c562cf79543a8b1aeed65caec4858b2cf7d3d391393390
|
|
BLAKE2b-256 checksum How to use checksums |
d4ecd07b10581a9e12643dc67c029f5fe1726cac1c390b22696b3f372653f74d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
4abaeae3939020e093eb66a39b46dd9398f098e3d56e80658482c6db90dabbe8
|
|
BLAKE2b-256 checksum How to use checksums |
c7ffeb98d3a2e25016e9296088ea810fb3d00ef667490f52eb2a7f6e2c80465e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
6eec1df92b833e1c9e2ff47b43b611327e8a9b371aa1042041fb23ecedcedd91
|
|
BLAKE2b-256 checksum How to use checksums |
7c4424b38cc31c92fb6bcde0b5785cf20257e1c24574aad4e2711b87f31fc88d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
8f7bfae8344053bbb7493fa2b180faf3d8e5d8cfb85c135eae92cd847beccd36
|
|
BLAKE2b-256 checksum How to use checksums |
eeaeb4cabc7260dad2644c130818a70f34fbfa4736f83eebc210d286bd1d15ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
bcc1514119224b5d9f0527b5493d6c622347d3758e902a56693bd22a8422e878
|
|
BLAKE2b-256 checksum How to use checksums |
f70aa5d474143be1f77d6b99d0c358c31ffd21e6d66ed41d2080411f1dc42b05
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
9d17dd812e66f1ff91a8cb30d7eb7f6f3023e3fc65a56125c3513a918ca887f6
|
|
BLAKE2b-256 checksum How to use checksums |
a3ea7f9b2dc45c93ffb77e231e24bb3a04f48147acc2f65330ca1718227432d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
0a78fd15ece51c3ce910a082b54bb2bbd02379a7e4bc9ca482f89f98daca143f
|
|
BLAKE2b-256 checksum How to use checksums |
17fb1528051c7300854847ee36f3e296e90387ec01d9000f07d28fb89452b055
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / assimp_py-1.2.0-cp312-cp312-macosx_10_13_universal2.whl
| Download URL | assimp_py-1.2.0-cp312-cp312-macosx_10_13_universal2.whl |
|---|---|
| Size | 5.5 MB |
| Tags | CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
1196fa906912308838305431f6e1e095bb2facb60ddab6a32049b59e39cf2d4c
|
|
BLAKE2b-256 checksum How to use checksums |
efea79d8d68f0040804bd31444b60ebd1f17c49bec5630bbfe9375f2574b0cfd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|