A Rust-powered cardiac multi-image modality fusion package
Project description
“One package to fuse them all.”
A high‑performance, Rust‑accelerated toolkit for multi‑modality cardiac image fusion and registration.
Overview
multimoda-rs addresses the challenge of aligning and fusing diverse cardiac imaging modalities, such as CCTA, IVUS, OCT, and MRI—into a unified, high‑resolution 3D model. While CCTA provides comprehensive volumetric context, intravascular modalities (IVUS and OCT) offer sub‑millimeter resolution along the vessel lumen, and MRI (LGE) reveals tissue characteristics like scar and edema. This library leverages Rust for computationally intensive registration steps, delivering faster performance than pure Python implementations.
Key Features
- IVUS/OCT Contours Registration
- Aligns pullback sequences (rest vs. stress, diastole vs. systole) using Hausdorff distance on vessel contours and catheter centroids.
- Supports four alignment modes:
- Full: register all four phases (rest‑dia, rest‑sys, stress‑dia, stress‑sys)
- Double-pair: two pairs (rest vs. stress).
- Single-pair: diastole vs. systole.
- Single: one phase only.
- Centerline Alignment
- Align registered geometries onto a vessel centerline using three‑point or manual rotation methods.
- Geometry Utilities
- Smooth contours, reorder frames to minimize spatial and index jumps, compute areas and elliptic ratios, find farthest/closest point pairs, and more.
- MRI LGE Fusion (Planned)
- Integrate 2D LGE slices into the CCTA mesh to visualize scar/edema volumes.
Installation
Either directly from PyPI (recommended):
pip install multimodars
or by cloning the repo and building the project yourself:
git clone https://github.com/yungselm/multimoda-rs.git
pip install maturin
python -m venv .venv
source .venv/bin/activate
maturin develop
Quickstart Example
Run the script with the provided test cases, to ensure sufficient set up.
import multimodars as mm
import numpy as np
# IVUS pullbacks: full alignment of rest/stress & diastole/systole
rest_dia, rest_sys, stress_dia, stress_sys = mm.from_file(
mode="full",
rest_input_path="data/ivus_rest",
stress_input_path="data/ivus_stress"
)
# Load raw centerline
cl_raw = np.genfromtxt("data/centerline_raw.csv", delimiter=",")
centerline = mm.numpy_to_centerline(cl_raw)
# Align geometry pair onto centerline
aligned_pair = mm.to_centerline(
mode="three_pt",
centerline=centerline,
geometry_pair=rest_dia, # e.g. Diastolic geometry
aortic_ref_pt=(12.26, -201.36, 1751.06),
upper_ref_pt=(11.76, -202.19, 1754.80),
lower_ref_pt=(15.66, -202.19, 1749.97)
)
API Reference
For detailed signatures and usage examples, see the online documentation.
License
Distributed under the MIT License. See LICENSE.md for details.
Detailed Background
This package aims to register different cardiac imaging modalities together, while coronary computed tomography angiography (CCTA) is the undisputed goldstandard for 3D information, it has several downsides, when trying to create patient-specific geometries.
First, intravascular imaging (intravascular ultrasound (IVUS) and optical coherence tomography (OCT)) have a much higher image resolution. It would therefore desirable to replace the sections along the coronary artery depicted by the intravascular images with these high resolution images. Since this intravascular images are acquired during a pullback along a catheter with a certain shape in the 3D space, and the coronary vessel undergoes several motions (heartbeat breathing), are the images inside a pullback not perfectly aligned with each other. The first aim of this package is to register these images towards each other using Hausdorff distances of the vessel contours and the catheter position (center of the image). The full backend is written in Rust leveraging parallelization to achieve much faster results than using traditional python only.
! Not implemented yet ! Second, MRI has the potential to depict several tissue characteristics, most importantly scar tissue using LGE. Again only 2D images are acquired, in this case the 2D images should be placed at the correct position in the CCTA mesh and a 3D model should be created showing the volume of scar tissue (or edema) and it's corresponding region.
IVUS registration - gated images
The initial idea for this package, was built with a focus on coronary artery anomalies, particularly anomalous aortic origin of a coronary artery (AAOCA). In these patients a dynamic stenosis is present, where the intramural section (inside of the aortic wall) undergoes a pulsatile lumen deformation during rest and stress with every heartbeat. Additionally undergoes the vessel a stress-induced lumen deformation from rest to stress for both diastole and systole. The from_file() and from_array() functions where both built having this four possible changes in mind.
The options to display are therefore:
full
`Rest`: `Stress`:
diastole ----------------------> diastole
| |
| |
v v
systole ----------------------> systole
double pair
`Rest`: `Stress`:
diastole diastole
| |
| |
v v
systole systole
single pair
`Rest`/`Stress`:
diastole
|
|
v
systole
single
diastole rest / systole rest / diastole stress / systole stress
The expected input data for contours is the following for a csv file:
Expected format .csv file, e.g.:
--------------------------------------------------------------------
| 185 | 5.32 | 2.37 | 0.0 |
| ... | ... | ... | ... |
No headers -> frame index, x-coord [mm], y-coord [mm], z-coord [mm]
The contours can also be in pixels, but results of the .get_area() function will be wrong.
IVUS registration - pre- and post-stenting
IVUS registration works in the same way. An example is provided in data/ivus_prestent and data/ivus_poststent.
OCT registration
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file multimodars-0.0.3.tar.gz.
File metadata
- Download URL: multimodars-0.0.3.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3685fb0ed181ccf486aa9873706fc9b3742d5511621a968a753386f89359a83a
|
|
| MD5 |
e6773e492a6b6249571501e118c8b403
|
|
| BLAKE2b-256 |
d9f8f4b30cbb173d113c54f5fdf032a2918ca8c354abda1e39afedcb15fa1103
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44fa70b6bffafcf43fe727d4a62ed8139e98c45e4ec94990d934e96031f0d93e
|
|
| MD5 |
ffc29ccb6a3e9167560789fef77dee8c
|
|
| BLAKE2b-256 |
6449b0dd35c1eee5e33f3a7fc848f37be0c584b76bf0a531edbadd1da0d16ac3
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
031ada087f42488039e72ffedec9926aa8ff7a6a9bb9558d276137cec17231fe
|
|
| MD5 |
08553c17600755721462bf6e353bcec0
|
|
| BLAKE2b-256 |
4e87fdfb2f8aae5d52ef98d45051d94108d3ca8b7761317fb66a6b6fa9f35a4b
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b5c1c52f448a56aa3d09c893248ea0b79eaafd2792bc2f1297c2b5f3aace9f8
|
|
| MD5 |
398e1484c3c1cb50a57c398d0f28e23b
|
|
| BLAKE2b-256 |
ebff50a52615aa5ad34ed8a51cd32117f1b66708f76415eeac76fe9f61f5f88e
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b948d0f0a00e35a0167bd7275cf6b3f8cdde625f9b89af4e92782f8994c3223a
|
|
| MD5 |
360217cc9f85994bcee554985505f429
|
|
| BLAKE2b-256 |
d0d290df24322eba203d2588a0f381c569072c2e1abfb1a9adfd0c8d27343c0a
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58364f08e90d1d1d2fb9e5b3948b251adeea82ac87ff729c0658455d21e2d760
|
|
| MD5 |
a2925a1c5c3b88a1ea5826d7456e1b7a
|
|
| BLAKE2b-256 |
6f09aef59e78554616dd6e7d92caa8575841a82ba62fe85b79c30fea7080d439
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
458c5dd7d2d93029cb373f9021d3cc57d884aa88f117dc4072ad8a97f897a177
|
|
| MD5 |
b08907cf9774712ecd25b800d1b166e1
|
|
| BLAKE2b-256 |
9919f5f549fa97d6458577fc0a95e5bbc7c87ce025c1bf9802ca4eaea5256e2f
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66cdbe643e4cd7273b570d5c6bcae7caa0732a82273276696a2f6dc9cef50f7e
|
|
| MD5 |
855ad67794c68c590e144e2f65fcea79
|
|
| BLAKE2b-256 |
43b62beea70392f1071c03abe003736492b29228fdc21f41a92b5b58aac5a819
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d10e9e8691ded22de0c95a4fbb57e1c63decd4a11b37bfeb122cdc96d842e43
|
|
| MD5 |
5b4381106397fe068f74deb97045807e
|
|
| BLAKE2b-256 |
3a6452f6d7d5eb91981231765760ff6b549b098b24499f84f3bbc4886c2645e4
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3e53a2a744142550a4c97ccc0e87ee7b530957c7b2dbf4f44fa045977d759a9
|
|
| MD5 |
a562dbef3b75fb010f75352414bd30bf
|
|
| BLAKE2b-256 |
ee24e897721dda33094e39fe573165e053460638f1ab76ace2583d2b81a72e5c
|
File details
Details for the file multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26b0b343c114b5576609e68b964f2a209b63bad8474ab91bf74d2ee4b278c33c
|
|
| MD5 |
ff52fa8e073fb758b4e32026ecee9c9d
|
|
| BLAKE2b-256 |
d2406a7588d05e4e7df65a614f7edd9a20311a5422d9725b5533ac2232e293b5
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
344b02b47de744a0399863e9279260603c2f863e1ed9d53b5157afd8d259121b
|
|
| MD5 |
5a106bc51cf05109d7d4a816e64a7126
|
|
| BLAKE2b-256 |
35afc1b541c58790c4609cedd4d7f6019a43a48918a6bef1ef3c431a5cd24145
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ac57babd9e5d8356542b82d161d04cc91b2721fc88b247eaf9712f2e4b9db77
|
|
| MD5 |
9745d3ea9b17a3b2e73fc2f593cfd7f2
|
|
| BLAKE2b-256 |
cbe0fbfa752c696b0579e4a6a2e7d1c8ff6630d785d1d07f322d0b1bff5cdfca
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7fb9dc42f03edfb2b2db503ad340490535e585c1b8f6f3cf0490fdf04d12988
|
|
| MD5 |
aa6f29c4b60de59fa5b6963a79a56325
|
|
| BLAKE2b-256 |
9d3c49c4abf42a4c104d1c5fae4e1089439e9219f868aa2fca61c028d1600a82
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
714384fa4a2a1a557de0be85b5ba346f249d26a26aae98125a1a0e976146d985
|
|
| MD5 |
0161f1ef38aa70d6292f4e939e617f9a
|
|
| BLAKE2b-256 |
d3f69811c7af2385f37b5767531307f45bdc7b4ea219308c99a45797fe59b437
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88ab9991d75ed87d8d7ed2dfe07b3c55c162c01759c5d338c885449e358a7314
|
|
| MD5 |
1f3bfe9250bf91ec9898a2eda41881c1
|
|
| BLAKE2b-256 |
27deed9fe307268719fb69a0d3b4461f485ffed7d0aecfa43069ac281c07e4f4
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a57dfcd87c946e7dbf1b8556f49915616548156acd61f9b23d90d1ce2b0620
|
|
| MD5 |
30b4faa130a6ee23e4b2eefa7661b625
|
|
| BLAKE2b-256 |
a220f1f8165d93b2ae751b84b5e3363fd96c961adc221980749bf29c9497bbe0
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb6fa94f4d2e43a8c3e82f8cec46f98a7933a6a7d3e74281dc1a67a41d5e40c0
|
|
| MD5 |
c6ed6dada9c17ad42ebd8957471c101f
|
|
| BLAKE2b-256 |
af97f892687674c6925587a293cd5d71155356f8cd4c3701b9784dcdb2e53b4f
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cecacc6650f4ca26b532903fd27ec0fbc039cc6574e028a53ffd7756d2ced48
|
|
| MD5 |
13fd3f1d321b16f8ebade7fd44f3d252
|
|
| BLAKE2b-256 |
dd2c5c4c5fe34114aecf7007cbc84168d02e77864a6be678f8febefe3cf8c479
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aa63bb812b317c6cd084b6f04ff53c5e04e5931c6764bc2fc0b83a521e8de5b
|
|
| MD5 |
28728ea630264d60f347bee8da19738f
|
|
| BLAKE2b-256 |
2dfc0713fb4d5ed270a3b162a06ce00792fdb76f836ee376d3eb6ba6cae49ffe
|
File details
Details for the file multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10c8ac32977fb6a08c6a3ed06ae2f2483f5ae99bf3bd685dedc137158e8cf386
|
|
| MD5 |
5a0575ef83d8677ce75a1cf430d4f8c7
|
|
| BLAKE2b-256 |
bfefa9d5ac28b6ad8bf0182d004698d6d3fb8cc4ec9e40eaa653183dd0433330
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4e75864775d097818faed08d7e65ea40a448eb8e19e0f1b647a9237c77be27b
|
|
| MD5 |
d74eb66061658dbcf50165b980f46be8
|
|
| BLAKE2b-256 |
d86be1f4067e669900b854523d1541ebf5d321225cc5d7fae19e8a8093d342b6
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ac1ce417e6a1d98fb3fbaefa658c1c8fb34f597a6a6916c94ef3daba05c4c16
|
|
| MD5 |
a03b7230eea14a5713e10d1daf14b850
|
|
| BLAKE2b-256 |
2828521f5181d8668c76d15ce435a741f657ab0c5df904d0ec7658b954394844
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c27bfb90e7b0434934370c3a757846447dda7586314ef971843bb8f5a98e73f
|
|
| MD5 |
7b1dc547247e12f891e6f77dbeafc98b
|
|
| BLAKE2b-256 |
11ee36e39fd535587c0574c2a902869f9135eb9c6dec21a4d2039a19fdb76c8f
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be9105ca00d2a6f6cc171858ca30a6fb3fa2ce06696bec3730581af1730e11f4
|
|
| MD5 |
26dd7f2fc602d0f20e0ea3b6d47a744a
|
|
| BLAKE2b-256 |
86ed47931d1e122370a54ce7539443bc7caca55a86e304b59a84959bc1d586fb
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e66d102e73a41c41eaf7a6d6b419061bba3b69e77527ffb7e9a5d3b56df2782
|
|
| MD5 |
3c64be95c1e1b9c2f9e7d179b5c4849c
|
|
| BLAKE2b-256 |
25fa92ac5d077326839c55319ca9ae3e4d5069d45810cc8b7ab187f31278167b
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c130b75665c7fcef3ded788ca16c4f332bdf269ee9737dbed8ff992a549c828d
|
|
| MD5 |
fd64ba8da2d1718cddafaefc668d9c59
|
|
| BLAKE2b-256 |
ab308274938a3b826731e3d13e8a2d2bc5bbbd26b08d109036d946d602d34c96
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15db1d5950b4c499e666f5dd43fe471d76c1df130dc125f7c73d1c7da5a83efd
|
|
| MD5 |
414c268b60861171155986619e2c59bb
|
|
| BLAKE2b-256 |
e7f270ce1bfd0528708298e02e7a6e37c7cd165cd716464d93951c1d33bcd30f
|
File details
Details for the file multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fdc26890ae449f6cf8e13458f7be5008f279dfc5beb28851e70079365e95f30
|
|
| MD5 |
520821ed77ebc9597f3e0e823727754d
|
|
| BLAKE2b-256 |
86cb3d51428b456a91aea9a97b50c8b0e54e936591cd20c8807bed1dbfd5571c
|
File details
Details for the file multimodars-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5743c879618413af5f8ed25068d00d444b2824337942b302c49d5bb8aa1d42e
|
|
| MD5 |
0d59b36d8902a281c0cebaf0384fd0c1
|
|
| BLAKE2b-256 |
0b37b247e435d28e0da044b132e44e7c6cbcb201ae4a1ff741982a22cf90d25a
|
File details
Details for the file multimodars-0.0.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc7967c9dd82df6359acedf1c51d83057ebd2efa6104bbabc0355da6968055f5
|
|
| MD5 |
07494998f557dd7d637baa3744f7a6fe
|
|
| BLAKE2b-256 |
c5fd315c461117e71e6084ca34c08c0df06be7edea1527b3e0e9bd634fd44d8a
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f92ed597ecf8d4b2595c5c3a5d4dffff182ce1f39cc53c2e67fe1342ba96d42b
|
|
| MD5 |
ba0864afb7a7d4bf030718e132cd551f
|
|
| BLAKE2b-256 |
82ef389dbcd7db880844da383e170030f5e0050c7ee3960b59de6e8abaf48e43
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02963dff62446b8b7a58263c3408c7bd469db432f3d051347648a7421204f4a2
|
|
| MD5 |
0f0e5e509125ebb0867f8bb518886539
|
|
| BLAKE2b-256 |
25583b4e82fc1ddd290bc98b292e512177318bfcd472489dd57d9f320286ca98
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cfe1683d71919fd68815c31945b32ba9e843bae30af44961756225c7b9846ee
|
|
| MD5 |
207f0d7fa6b029a59daee14afb657bed
|
|
| BLAKE2b-256 |
3d838c75dd465fc5e48435381df47a6bba990b6bdffd7ed2f0e49c3571911ca1
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c597c59b0e25ed03627d3bd4e9e8df2249426da73d3dd39c6229441664b96af
|
|
| MD5 |
adfdfca9ee906dd090f5559769703806
|
|
| BLAKE2b-256 |
cfb08a22db0a253c1da86d7c4986edbc2e3cf1c6d6004b7ce37c2f4ac14619cb
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b24b08a748d18161f77cfa71fa36ccbef9db6c4be5888f156be8dd3dbb4fdf4f
|
|
| MD5 |
0a0c278ebf225817470c772e193c8ab4
|
|
| BLAKE2b-256 |
71685517a82a7749433c5ccf493507a744520cfc97e7c533ee2177aa862b94cb
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2afc6c94c93a8d7f06a79a0bd7bbc088e4c62f273f586b10a1f07207c2befdc8
|
|
| MD5 |
e75a81f3e1f89d201af2759e72b691c4
|
|
| BLAKE2b-256 |
85a91933be7e4612aeaab8daf07f5c681a0ec7dcc4c216efe3d82aa5b984e31d
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49178aa5b534c1e46026470eb8bd36c7f9a988cbd46ddb028dc582f0589db44f
|
|
| MD5 |
2d78e7bf40cae54702cd8cf4692db636
|
|
| BLAKE2b-256 |
9756e5ecda556b30eebc81d86708a9b2344599ec2539fc92548e83fe0c4d0054
|
File details
Details for the file multimodars-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbfa13a836a7c9c1e8729ec2ae2154233c55fea31b2bd671b821ecd516ee8e11
|
|
| MD5 |
376c6a4f2eac015a26cc9dea1a404d58
|
|
| BLAKE2b-256 |
0d658ba4f55d1c41f488e69ff2d436a3edbcd8e750287e387ed4af5fb006f791
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb748533c045c5a00b0e202ca58135b7d1af6d7efe9792a7be238277efdb19a4
|
|
| MD5 |
c8333e8331ef7905cbcdc91473f7a4c5
|
|
| BLAKE2b-256 |
166f555f02d9d559a35e257c14051ce64b67a2f5d469e0b1fc317181756968ef
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-win32.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b93514d285bd1be552afcef783dd5e691da275b2c171a29a27cf7d5e92152d
|
|
| MD5 |
2c618c24b2dc69bd2f3bedefe7b79843
|
|
| BLAKE2b-256 |
14929d3ff98822ec74d4244f61ca497e565304da78624b87a1ed8fd51fb1da7b
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ecb9a91152f9c5f6347de27fe832dd0d5e0b9025c4d9e3a2bd4eb9289abf7c8
|
|
| MD5 |
8c8241b9f2cbaf9dd362d1adc468ae28
|
|
| BLAKE2b-256 |
ff96f1e52418831434cbd8bf4ed8b0d7a099a5b9060754d6a82b8a96d23bc256
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdc3da2f57d3b3c126cf50f4f9e422b298b89af72b2086aa85b88500e6108cfc
|
|
| MD5 |
f83810ad8948b901a03359b2169fc847
|
|
| BLAKE2b-256 |
d3d73895e62a8ad09a0a519606443c3590a287430c19b6fe259c8b4af3dfa1ff
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7aca53db8929e34b0c5056394dd94c11b2e0c638be91ca456f1a1cb85f6152e
|
|
| MD5 |
15fb4addce2ec938c05126b878e1c57a
|
|
| BLAKE2b-256 |
31fc2c24d528251e8d406cb43694fb5897bef53b94fb27c09fdb100b420c6c79
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfce3b3e604d7742a951ad5951e6cc9cd61b0aff1cb5797846998fe2d6544827
|
|
| MD5 |
f491f2ff137933cf1405c1d6fd8d3574
|
|
| BLAKE2b-256 |
9a0ee7e02c15e43210a750f2fe8047dd2b06f2a9f3e041493a7daf568033002b
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40ed51fd6a6e4b06b4b82b001993c207a1b81626400080b37aab1bd40fa8a90c
|
|
| MD5 |
75e0811df0a933b81c3fca7d0b3f049f
|
|
| BLAKE2b-256 |
b30938ad82fc30fba867c3dadc8f7a66fb24055a5155a673ad9eb69a5425679f
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2caba5a03588b8e1a1841d14a0dc93a6ef1c0e64f524b66070846194a5943f4
|
|
| MD5 |
530db3bf2bdf678550696504ad4f1c94
|
|
| BLAKE2b-256 |
1ba1dda6245d4e5d9ca63d281ee43542db2f868dd042262250765a42149df718
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66f38d0c4cad286c2cdfc2127c57ba0dfd865354c8af6b1a66f4bf99d80c9341
|
|
| MD5 |
d7e4377c0b8bbfaa4b795b3bda40034c
|
|
| BLAKE2b-256 |
9c917cc16698a11e4296313b4db17c1093af46c0382f7178d0ef811c532b618c
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6a09a0ddd3f15e09f3a56d0a2bfbb6d61a094d3039a61489a862b66aae0a898
|
|
| MD5 |
6392ca73ac00cb56916f62d7c9f2a3b5
|
|
| BLAKE2b-256 |
78eda6b5be7551159dd10ec10cce8872c86a999ae0bde0a0bcd5496ca4172d36
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61898a6807e626cb2f3f4bda79073bd51d70bb8d9e4afe9405d2e592467cbd4b
|
|
| MD5 |
1f4d9ffcc44d296fff79dc64e7e8196c
|
|
| BLAKE2b-256 |
f5facdbf1ca8663504873c2a9fc40c897fbed696e29f461749a13bc4e9dd970f
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb6f9ffc1cec2f5f6ed255bcc8c15b358f0da6641d6028ddea347116df035660
|
|
| MD5 |
0d6d17fec1ddc45340a2879734038a9c
|
|
| BLAKE2b-256 |
347428f440f7082be6236d923829b687421a4218717a16dbaf28fd3d2b9892e8
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf5622283d0e21248b13c569e0066da4b5552c4b726017b0d2c99a2c1dea66db
|
|
| MD5 |
1252549e88ae7c81da821ee1424a0124
|
|
| BLAKE2b-256 |
39d31cd4d135cfc5f32bbf8fa017737ed08f6ad260510e8bacc2aa65e1309132
|
File details
Details for the file multimodars-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a52eb27dd7b002cf1e174055ea7fcd42d2f65ba4a8f16c694d5dc00d30739905
|
|
| MD5 |
96cad0e9981132ca8a5da64141b5a247
|
|
| BLAKE2b-256 |
4ec932ba89b495b6930568a810c5189285cd2e7dcd4f7a42361e1c7c47764b49
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1934d263cb234e6d5b79326fc58d268575e41d0c0a7684bdb4cdf9d93afb610
|
|
| MD5 |
e8a41dd708bdbe7bb97fa9e3743b48ef
|
|
| BLAKE2b-256 |
0527f558577bd25c86c595efa2b3d48ed0072da7274a395fa334f0fd14e21ea1
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-win32.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f02563e0cfb2d7f1eb678c10d088501ec849fb950c28574a4365bc9a174bde51
|
|
| MD5 |
8ab158fc336d35298e6d103083a58a5e
|
|
| BLAKE2b-256 |
1d218990389d21846c8ce14dc079dd6978cbf8b250186b1564320c616706f9fb
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29c17edd94ed511d17970e34d7b2b26a402c363caf556cfb43feda34f2bb81c0
|
|
| MD5 |
6cf3bb14b49e02c142106b29211805e7
|
|
| BLAKE2b-256 |
d5b55060ec5095cb968cdaeffa3dd71ea0117fec0e6e2655eb46f02ce59a05da
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31308d3502e751752254750560ce268513d6a357378bfec06aad389420dae805
|
|
| MD5 |
709029ebe8a0a054ad45c1e225f596cd
|
|
| BLAKE2b-256 |
b084e4d7259dd6d9a68417c99f73ccda04acb70dc28b58d20aa92e0d482e93a2
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf2c551cd0ef49da08bccce2310ee090f16d23a3cc40bc78a65964e27662427e
|
|
| MD5 |
1487fe1e32abdb92e26421d74386844b
|
|
| BLAKE2b-256 |
a905b535d0c3973130e29e23679d071ee012fc4472fd9a1f6ba38184a2b9ae74
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9a08849e1ce666d9c7b1b76a24a4c06c00f6ed22d26f1f5936e1d99ba8df356
|
|
| MD5 |
d987c43fd926c7d23998df17b11ef4db
|
|
| BLAKE2b-256 |
9990a57ba3a253f3aabb2d769365c961b20a30fdc5f85b3858f2758c41aff625
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7041fe8a0597dcd4be440765a1208d1fa6118577623041f5eb7c1d3199b4c9a
|
|
| MD5 |
6aee9a1e80954fc8edcb50259d8ebdd7
|
|
| BLAKE2b-256 |
8edc1cdf064b0e0a3dcabb9b9fcf2a0aeba5212e1239213fc26b444ef20ecf89
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa14a687719b7074e92e8542ecd47c95d0c6085aea1a3f61f9333e041a2e9d94
|
|
| MD5 |
157e0192f78dc43ad7209713b454b14e
|
|
| BLAKE2b-256 |
c9b48dd5306c5d9f49cf5739272d3adee8d7da9326f53599a254c063eb267117
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef21d2d657a0242fad7c8e403594cdfb08c8df6ec12ce6f67d7a4297ec07d82d
|
|
| MD5 |
1dfd63a9d180bbfeff3553ae44d40946
|
|
| BLAKE2b-256 |
9b0c56e58a774ad1fadb421b0e0dfa24537bc6ed338dc5b249a6c55204d97989
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
448f7aa2f7c95254443a704eb59f4894b58c589ca496a39775c3297cd5f6e9f8
|
|
| MD5 |
bf34726f38125d2441fa4c9fe4cb9b0f
|
|
| BLAKE2b-256 |
5c6bd6e4b8dd405aa16c9c7964d2ba3bce0ef9ea90bbcb9a418e822ef73f869e
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c6be8ce0323dc727f9c2c909c1e027c899aa6276c95d7c7399185ce589f4d71
|
|
| MD5 |
f9d3fda00d39a19df19eea8a785a6d80
|
|
| BLAKE2b-256 |
f5a72897ca07da7725b319bcb455b656b66f91a877ed779cad0ec36d4d032b80
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f66dffc61dd346bdeec275055dc7655dd442fe3ad775cabc2bdcbb7f541d23fe
|
|
| MD5 |
4747879aa0d98c5760cd1715af265cae
|
|
| BLAKE2b-256 |
38c8aedc35c68785c093494fc3e9719c5c3243e6187c90802d8bdb8a7064ccd6
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a95d71cef1699069c1f30c6684d955320d16a0d517df6eb642ee467565b1aad
|
|
| MD5 |
142c4c63342f26401c55e19fb880d3eb
|
|
| BLAKE2b-256 |
e42bc22802e2cf63be896bdf285bc4a94f83e43170644d31be2602227db8f66b
|
File details
Details for the file multimodars-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23e94ca6fc2350276d6323513565540ccc3e769dd207f5cf4d5fccab2bd4de47
|
|
| MD5 |
92aff2b5d2dd8eb231c835f0c62a5c44
|
|
| BLAKE2b-256 |
9a2796a8b42fda1694ffd1c4af6fffcf8051e03b5e1c937639c9f0b920de7d36
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fc9c5898031d1e34c46cbf79e72f731e2586dfa895ab030aed030486510db89
|
|
| MD5 |
cbd82aa36977f548a8f27921d2bbc8a3
|
|
| BLAKE2b-256 |
55db1dd47e049b53789f0f7971212ae4e1bd51ad6b75901e3eca47e75f9d23ca
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-win32.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b67535b676458cbecbd3efe37a41b72ebd3b8ef1fad2070743bc5b2d4fb4ac3
|
|
| MD5 |
226fdf429bad2dfee5711724858c14d4
|
|
| BLAKE2b-256 |
2ef3effe4f43c3fcf69ec2e26b5cc94cafaa71863e8d355bf814d63b5c8023ff
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d7871d13c9554524cdb895bb0cf62c1a9ead8ea39a7b7dbde7274bd68336e8f
|
|
| MD5 |
99306bf4abcf716d955bb2e13cb8634a
|
|
| BLAKE2b-256 |
583c234570c956fabe7c18c1b9aea0965add4453ca53785c007aff5da6fef134
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3aad33526b2a69654295bc4567b44fe4b4312cf90f098c64180ea007f522b092
|
|
| MD5 |
4e352153f902aedcf5fef161c4735093
|
|
| BLAKE2b-256 |
b8da944d8f14af6e7ac205392d1b08dffbf8afbd7a3e04620a00f8dcbecb9acd
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98c88ea81d14485a3775595938e5a2b8425c29ac7291a4437c2eb338f8d7e2c5
|
|
| MD5 |
3d4926b533d43fa31a1338598c1b7903
|
|
| BLAKE2b-256 |
0ad89cf01277c7baba1d4dcbe2a1b19d2448412403b9116b1f4eff4a5c4bc56e
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49cd6084d6c4b74837351cdd8cd433a6386e613ef14861778101c2fcd3303cb0
|
|
| MD5 |
db30ced803bd6a6e4e94b482feb06f02
|
|
| BLAKE2b-256 |
d8b815870ac04b94351ecf13ed9a2f7b147444c0ad0ad86175f0ac1159080c99
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a939486e5d4524b2766839275474ad984069677ad12308a637de35478d05e81f
|
|
| MD5 |
c595c562dca8801743004a294ee3a1d1
|
|
| BLAKE2b-256 |
3322378f8d4d85bf6fbd33b21051646a16318ef817d4d1345f12c53307078eeb
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b098eb16a31a5dd598f544aa8df3015bbca137c65cd6cd0104d8c9a83b5964d0
|
|
| MD5 |
530409da7ba39af815ac78929e11e4aa
|
|
| BLAKE2b-256 |
5c521b445e0aeb9175242dc5e057789ac8149e3a9da042b634af566cff618c84
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c37d686fb9b2b19205915bad7744ec971ea6756d179edb701407969aca39277
|
|
| MD5 |
bf0daa6dfcc97bd113c8a30e99139445
|
|
| BLAKE2b-256 |
1397ee09c5e662c473c3321d312145c1ff0d1b26153a55df86c9bc4818d642ae
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc71160ef2e3a5a0b7ed78a14ce212b4be3942d8ffd9eed6246a2aa54e3dcfcc
|
|
| MD5 |
ee15a5f4603e103f77effde596a62f47
|
|
| BLAKE2b-256 |
e9694ad0e5a2fdd9731270461a4057aa09c8cd44e3077799c4bdf45e8a7fdadf
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a05fc3db2805117cd60a2158fccbcbe9720e3780fb72baa38ceaa04fcd22c61c
|
|
| MD5 |
02cf0af36d716b38bd4afc969c49e361
|
|
| BLAKE2b-256 |
6f074bf5fa17dcd32059baa99a37d8aa9acfb9efcc50e80510c2635ff32b5684
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5f4dd3ff019ec9f41af7131634d7df5c5f179caad1af5c7b53107e1c6ff5dd9
|
|
| MD5 |
e9e4220002b8637e2f5363248babbba5
|
|
| BLAKE2b-256 |
ad67fde6d93ca12c486df3d2ca53be2f6f3275179823a5cb32e11508a92e1dbb
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2266a13e95d6fe771c72f73f0502f0405aa8facafbae488e6a541c61a38d971b
|
|
| MD5 |
8732cd93137bc08262e8994e53a302f0
|
|
| BLAKE2b-256 |
e2e700aaf3b17f9988e1747da90ea0d18cff93d0bd9cbcab142eec3cd62332e8
|
File details
Details for the file multimodars-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61e9ad8ee9afb5b567885fe0f51c6a9b409200f8d2e5ef02a33fd18f37f99664
|
|
| MD5 |
bb8ddae41bcae06a14eccda3c377704d
|
|
| BLAKE2b-256 |
51fb001787c6d1a07d5d57f8087cb6037f4ca8e5b95e713ad33ad811286f7b3f
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b58423b662198326ea031049c6cf816acd125ab211ab06465b07e54ff6511090
|
|
| MD5 |
be049a749b78345724a84b0666a71377
|
|
| BLAKE2b-256 |
abc7d6a550a18497e78c933bf282f4240935181cb32127dbc1898b7555d90152
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-win32.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
552812d4aa3b7abd98789cc62cbe81e0b3c5b279bd0c0f33055d2ec204d02863
|
|
| MD5 |
161bf3142e06afa939dee2a1114f1e9a
|
|
| BLAKE2b-256 |
71c01099db91659e2d5618fca7909ca1bc2ccd04164afe57707d6f47e9fb62ec
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
580f021f56c8afa8d94f4ac7247d02bfcd8b978f2edc2c16c5e2a648e8ea6d10
|
|
| MD5 |
75cb4086cb6891719e17284a7dce9864
|
|
| BLAKE2b-256 |
f30e5bb7646f5cd16cb79258eaf80997b8e1552012330c4546731238d1923a4e
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e78d026194a46b86d4cd386d47abe26e0d6de4068c3ced9f8f72feb8dd4ef21
|
|
| MD5 |
5c1dd7a6be6a8fc720773734f75ee23c
|
|
| BLAKE2b-256 |
d3d8b195ecf04fd263d0e41d6fab442a9d3afa6e931bbabf6e425f863ebda154
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac8020886554ee45bb1092bf466637a0abb919eff6a026d8006ef846cc8ff245
|
|
| MD5 |
cd006a5cbfaece0706ad68bb4d7977f2
|
|
| BLAKE2b-256 |
026c3fb5e8b182d2689fc43e72eeaebd8e82fba6ea7047a5e43a582e2164a46b
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b9fc711febb0917e701cf7fbdd33a48b2f5b4814adc83df2c0342590309907d
|
|
| MD5 |
4292a623e8a34c7533fecd3bd43b7847
|
|
| BLAKE2b-256 |
6d262d775903d97ee2d728c288cf74de43727f3069207a2fadc04faaa7d22881
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c57ef525080526757ad06705525ea4818922976e3fce65e5ca9f1bffdede3174
|
|
| MD5 |
3a3f063e3951673d8cf9de1d83f02fb1
|
|
| BLAKE2b-256 |
6aafd13a0fb6a0d6cfc301db42d6e59648abeb49a4da919da3fbc983f7725bf0
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81cb881b70d2e9aa26a19c7370b27aa15aa5d21e10d3bd6d27eb7dd478abd191
|
|
| MD5 |
d92666477b457746d64e862debcca4d8
|
|
| BLAKE2b-256 |
53e72110b0db18a4c6538d1bc8e211e0f96b45047b7567c9870433b8c4163e3e
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b3475d4e7bb881b16232b65f3c8f24f451fec6c4c4fab4e9c732a6853517648
|
|
| MD5 |
d3f0056bc38c73070cd15ccbe9524249
|
|
| BLAKE2b-256 |
22ba0708891ac633765446120a09db80ca8b0576aa1f523fd29dcd89c49893e1
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
122432aa729b6678da08b9c56aeba9bf33312e2c4cd1be8572aa3b760be57d64
|
|
| MD5 |
65bcda81e16c79bfebb261136acaf1b7
|
|
| BLAKE2b-256 |
8c453950aeb0498cd3e8ff0b67eba204266b1871d1a52fa8b644caf237bb8a73
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3ad66a1f1453572503b8ff2e13b271bfbde4bb6f4aa9d30b9f11bfc613179d
|
|
| MD5 |
f1a95e99730ba400f0bc4cc48de68bb4
|
|
| BLAKE2b-256 |
ac5662117787f0279f172a1a2cd0e4c7cdb542d74f654d50983a5fdff3cc302d
|
File details
Details for the file multimodars-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bff9d8d2416da75e566b7a432e3d2d462b2a6595f03388dd388c22606a9cb1a5
|
|
| MD5 |
9088b982f32bf82f5d536e1f3c998f0d
|
|
| BLAKE2b-256 |
8800f93ac9bd1a74cd4a4725851711175ed3c21068dc0b4d8a6c4a928969d597
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2afac837e3e68e268f8a958941bc6e88d17621d92a4cac8d44f6a24dd4c6ec1c
|
|
| MD5 |
72336a65d6ae42dd66a62bbbb9d4a222
|
|
| BLAKE2b-256 |
a51db3cb05b2b45bb87258da92fe9d773f41eb331b1490cffbb09b2aeb92c54c
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-win32.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eec15b787b4b9148575090bb0c7ec833975404a3cc3e6ac1aff02c9875735e3
|
|
| MD5 |
023c01bd4c55ef6529b38cb66e5de618
|
|
| BLAKE2b-256 |
5f7c1c8b63bcea463fd8ab8e47c1a1475b523f843ab5c978cd712f910d800b50
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
731a0dae9932a1054b022646d90b9c34e96199d9e57cdfc489c121e2c5235dca
|
|
| MD5 |
a890b6dd6982ded2bc4d0a5e7b45e786
|
|
| BLAKE2b-256 |
5f1e5966814f1388f351f09a02f28a8fa0d4fbb46d7b5b680c51663003a8683d
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c179c24d270d0609964a12d2040ff740b745fe41f5f7d1f0fed34102a5f2dfde
|
|
| MD5 |
97a2eb8594f96a2aca02cea6496ad3d7
|
|
| BLAKE2b-256 |
3d5dd0f9ce08a49af64698ef5cf56621577d76660e2d32a532dec911ac922d65
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec71927d78992b7944837b9186b88b2926e24b5341dbaa8384fd8d06bfda3c96
|
|
| MD5 |
ee2b08ccab264029cfc3319c6410e2bc
|
|
| BLAKE2b-256 |
e92b4db9995db87ed7d53bc052968f60081f48c5b8450813daad20701986198b
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a48cfd28756cebabdad0db4d9217099353f36c06ce8a3848e2a6db6148f913f6
|
|
| MD5 |
abe1b006b5d714c7655f036fd58e38fc
|
|
| BLAKE2b-256 |
2d8e31cab2708c66515f2e18cc82cbb7e343c1fe287754636f1d033f149dbe65
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a97be54b50f31257aa3f8658f59722b9ee09403dba63a1ec8d516461c1399f3b
|
|
| MD5 |
24c1beef6622b5f71c99ad5b63fae91f
|
|
| BLAKE2b-256 |
cde55b9f6515c2795cb13cf4e3b6f2eb1eb5b661004ae3dc75a70393ad84674e
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d40b817ff75602bbb7e77bd21c0b5e40edac8d109c1b1f83c3f29a058693420
|
|
| MD5 |
4c0daa11083d644f635cac8b66de39d3
|
|
| BLAKE2b-256 |
ce44d34fed0ccae465fc1576574158ba1ac48a7ef0f55eb83b1834cb77b606c8
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feded62ada0816ef215c24c2597cede7d30ceae369540398fe782ca934ef8004
|
|
| MD5 |
3febbb0411c0cfe8254417d0e09e30d8
|
|
| BLAKE2b-256 |
fd657fef40a380fbbe1a54606d41614ca4f3bc3e1f565915e1f4fcd15ffd7715
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54290e7d4cc04ee2b14e9afb19fafaca681f035e7731c8cb1ac7766cf7f6a28d
|
|
| MD5 |
8daff32cd8cd22e076a42cbd228884e0
|
|
| BLAKE2b-256 |
acf9662762d14e26933e11a0a99782477c6df5e46a50f03db21b8cde7baccd94
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ef92b16e5f9fc83f5586723dae9c5247b8aea204f220ae1ef9172db6f277b3a
|
|
| MD5 |
ff55b0d503f0d49d9c4f71779b611cf1
|
|
| BLAKE2b-256 |
859bc52a8cc20ac10a239c43ce9c20cfcd1db9a4c72912d131d72ed4e4b1b424
|
File details
Details for the file multimodars-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
218bf26bf58e7991ffb54f010417836082ab0b09c1cd0de37365ea2cb000a769
|
|
| MD5 |
a93b239689548826b04990f94e9bbe93
|
|
| BLAKE2b-256 |
5d4fc9ed35b54066a9c5a8a95d8b77ac3e24fc6f799b907721b7d6e9255672c3
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1cc3383d629f57ac531969042f668db39d8869a03b319545086313e1367e98f
|
|
| MD5 |
8756c0e0bedd91601390035fddc4cae4
|
|
| BLAKE2b-256 |
8c4a27da048faea079f1880989e3c1813fd9611fc1b49ed261a1f200549de6ca
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
394b57abe33bd325dab0a309c731f5a4cc112535bd6d5cbd12be56642fcce3aa
|
|
| MD5 |
20d3687617d6edb16a00d06a351792ae
|
|
| BLAKE2b-256 |
681dbb91c7f48d1e860d2e778e5201e57fc613397005429646bf102197f1f019
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae21c75d8f87596c00ff0287cf0998dc84ac10dcb12ad1a49ab848f73d14a637
|
|
| MD5 |
c4cdd0517117a6db9f3371cce5eb37f3
|
|
| BLAKE2b-256 |
2e2ee64c4f8204769cab934d7f66618283792e88d0aa2f111acc193dde58f0d0
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1029c796e457285af2813dcd34427e02f1940591073b0206468ce38f65ba5bf1
|
|
| MD5 |
5e79463ce17df4b77ee4dd8b825c70bd
|
|
| BLAKE2b-256 |
f096a2158fa0b6cb8e31aae102f01c4e5944b2ba23f0bf271ba56545f7842eb5
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e12678fdf63ef3235d4b9ceb72ace8b94cf8c32cb9818dee05169c6d380179b
|
|
| MD5 |
9ab1d4d984676aba7f89ae7d4c7fb8be
|
|
| BLAKE2b-256 |
cece743d47e9f4f71f1b01da81bd4e6a09d42db652fa389f2119065de53291d0
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f6f402d159876f019912a789997edfc6ebd9999b684db2d717cdd0b99bf8a64
|
|
| MD5 |
9f92699c4cfd1380562b6b08a62b56c6
|
|
| BLAKE2b-256 |
9a388aee7793e8df1a6765ea18e5d4c3e17d0e564ba8d3cf653c7626dae68d31
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98bd363489e1e4d15ebd20a8ec16bfb7e206f43a06786693afdac5e880ef92c2
|
|
| MD5 |
1fb7f8c61aeb623b5bf07670923cbdbf
|
|
| BLAKE2b-256 |
30dbbb139cc846daebb4f18daf2e99b4ff8b8f6d9b5c6825c956a1b5c5f93198
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adf3433b5112df5d7fc483b241f8f071c13beca7ab9adf32440043742bb17a28
|
|
| MD5 |
8c77860bfad2ef34775d3f377fd6816d
|
|
| BLAKE2b-256 |
e09f68cbc0274b26b8ae1e77541da3a97437c57ff09443eb9632efe5fa05a25f
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e25caf722d616adf88c7b6490e82ee76f01af6c032e41fe6627505b200e1c011
|
|
| MD5 |
e84318fa4e2dd52fd79010efa64d78e2
|
|
| BLAKE2b-256 |
b962805d892c2be259259331eaf324166bef890f5a7d43c2bfa3e48c7e51790a
|
File details
Details for the file multimodars-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: multimodars-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2cb1b4a8bc206722bfeba4a8120523781630af8df0b6af54650940f38995d23
|
|
| MD5 |
4f71b8720a86939900b62ce9118589e8
|
|
| BLAKE2b-256 |
9d5596b97188ff2dface3dc5c42bb09c4bba3f8e2800dce9cb075d3175f29b6b
|