Skip to main content

InsightFace Python Library

Project description

InsightFace Python Library

License

The code of InsightFace Python Library is released under the MIT License. There is no limitation for both academic and commercial usage.

The pretrained models we provided with this library are available for non-commercial research purposes only, including both auto-downloading models and manual-downloading models.

Install

Install Inference Backend

For insightface<=0.1.5, we use MXNet as inference backend.

Starting from insightface>=0.2, we use onnxruntime as inference backend.

You have to install onnxruntime-gpu manually to enable GPU inference, or install onnxruntime to use CPU only inference.

Change Log

[0.7.1] - 2022-12-14

Changed

  • Change model downloading provider to cloudfront.

[0.7] - 2022-11-28

Added

  • Add face swapping model and example.

Changed

  • Set default ORT provider to CUDA and CPU.

[0.6] - 2022-01-29

Added

  • Add pose estimation in face-analysis app.

Changed

  • Change model automated downloading url, to ucloud.

Quick Example

import cv2
import numpy as np
import insightface
from insightface.app import FaceAnalysis
from insightface.data import get_image as ins_get_image

app = FaceAnalysis(providers=['CUDAExecutionProvider', 'CPUExecutionProvider'])
app.prepare(ctx_id=0, det_size=(640, 640))
img = ins_get_image('t1')
faces = app.get(img)
rimg = app.draw_on(img, faces)
cv2.imwrite("./t1_output.jpg", rimg)

This quick example will detect faces from the t1.jpg image and draw detection results on it.

Model Zoo

In the latest version of insightface library, we provide following model packs:

Name in bold is the default model pack. Auto means we can download the model pack through the python library directly.

Once you manually downloaded the zip model pack, unzip it under ~/.insightface/models/ first before you call the program.

Name Detection Model Recognition Model Alignment Attributes Model-Size Link Auto
antelopev2 SCRFD-10GF ResNet100@Glint360K 2d106 & 3d68 Gender&Age 407MB link N
buffalo_l SCRFD-10GF ResNet50@WebFace600K 2d106 & 3d68 Gender&Age 326MB link Y
buffalo_m SCRFD-2.5GF ResNet50@WebFace600K 2d106 & 3d68 Gender&Age 313MB link N
buffalo_s SCRFD-500MF MBF@WebFace600K 2d106 & 3d68 Gender&Age 159MB link N
buffalo_sc SCRFD-500MF MBF@WebFace600K - - 16MB link N

Recognition Accuracy:

Name MR-ALL African Caucasian South Asian East Asian LFW CFP-FP AgeDB-30 IJB-C(E4)
buffalo_l 91.25 90.29 94.70 93.16 74.96 99.83 99.33 98.23 97.25
buffalo_s 71.87 69.45 80.45 73.39 51.03 99.70 98.00 96.58 95.02

buffalo_m has the same accuracy with buffalo_l.

buffalo_sc has the same accuracy with buffalo_s.

Note that these models are available for non-commercial research purposes only.

For insightface>=0.3.3, models will be downloaded automatically once we init app = FaceAnalysis() instance.

For insightface==0.3.2, you must first download the model package by command:

insightface-cli model.download buffalo_l

Use Your Own Licensed Model

You can simply create a new model directory under ~/.insightface/models/ and replace the pretrained models we provide with your own models. And then call app = FaceAnalysis(name='your_model_zoo') to load these models.

Call Models

The latest insightface libary only supports onnx models. Once you have trained detection or recognition models by PyTorch, MXNet or any other frameworks, you can convert it to the onnx format and then they can be called with insightface library.

Call Detection Models

import cv2
import numpy as np
import insightface
from insightface.app import FaceAnalysis
from insightface.data import get_image as ins_get_image

# Method-1, use FaceAnalysis
app = FaceAnalysis(allowed_modules=['detection']) # enable detection model only
app.prepare(ctx_id=0, det_size=(640, 640))

# Method-2, load model directly
detector = insightface.model_zoo.get_model('your_detection_model.onnx')
detector.prepare(ctx_id=0, input_size=(640, 640))

Call Recognition Models

import cv2
import numpy as np
import insightface
from insightface.app import FaceAnalysis
from insightface.data import get_image as ins_get_image

handler = insightface.model_zoo.get_model('your_recognition_model.onnx')
handler.prepare(ctx_id=0)

Project details


Download files

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

Source Distribution

insightfacex-0.7.4.tar.gz (424.8 kB view details)

Uploaded Source

Built Distributions

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

insightfacex-0.7.4-cp314-cp314t-win_amd64.whl (497.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

insightfacex-0.7.4-cp314-cp314t-win32.whl (490.4 kB view details)

Uploaded CPython 3.14tWindows x86

insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (795.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (799.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

insightfacex-0.7.4-cp314-cp314t-macosx_11_0_arm64.whl (493.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

insightfacex-0.7.4-cp314-cp314t-macosx_10_15_x86_64.whl (493.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

insightfacex-0.7.4-cp314-cp314-win_amd64.whl (492.6 kB view details)

Uploaded CPython 3.14Windows x86-64

insightfacex-0.7.4-cp314-cp314-win32.whl (487.4 kB view details)

Uploaded CPython 3.14Windows x86

insightfacex-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (769.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

insightfacex-0.7.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (761.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

insightfacex-0.7.4-cp314-cp314-macosx_11_0_arm64.whl (490.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

insightfacex-0.7.4-cp314-cp314-macosx_10_15_x86_64.whl (490.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

insightfacex-0.7.4-cp313-cp313-win_amd64.whl (489.6 kB view details)

Uploaded CPython 3.13Windows x86-64

insightfacex-0.7.4-cp313-cp313-win32.whl (484.5 kB view details)

Uploaded CPython 3.13Windows x86

insightfacex-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (771.7 kB view details)

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

insightfacex-0.7.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (760.0 kB view details)

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

insightfacex-0.7.4-cp313-cp313-macosx_11_0_arm64.whl (489.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

insightfacex-0.7.4-cp313-cp313-macosx_10_13_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

insightfacex-0.7.4-cp312-cp312-win_amd64.whl (489.6 kB view details)

Uploaded CPython 3.12Windows x86-64

insightfacex-0.7.4-cp312-cp312-win32.whl (484.6 kB view details)

Uploaded CPython 3.12Windows x86

insightfacex-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (770.1 kB view details)

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

insightfacex-0.7.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (758.9 kB view details)

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

insightfacex-0.7.4-cp312-cp312-macosx_11_0_arm64.whl (489.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

insightfacex-0.7.4-cp312-cp312-macosx_10_13_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

insightfacex-0.7.4-cp311-cp311-win_amd64.whl (489.3 kB view details)

Uploaded CPython 3.11Windows x86-64

insightfacex-0.7.4-cp311-cp311-win32.whl (483.6 kB view details)

Uploaded CPython 3.11Windows x86

insightfacex-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (762.6 kB view details)

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

insightfacex-0.7.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (754.1 kB view details)

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

insightfacex-0.7.4-cp311-cp311-macosx_11_0_arm64.whl (488.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

insightfacex-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

insightfacex-0.7.4-cp310-cp310-win_amd64.whl (489.0 kB view details)

Uploaded CPython 3.10Windows x86-64

insightfacex-0.7.4-cp310-cp310-win32.whl (483.8 kB view details)

Uploaded CPython 3.10Windows x86

insightfacex-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (751.1 kB view details)

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

insightfacex-0.7.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (742.8 kB view details)

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

insightfacex-0.7.4-cp310-cp310-macosx_11_0_arm64.whl (488.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

insightfacex-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl (489.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

insightfacex-0.7.4-cp39-cp39-win_amd64.whl (489.3 kB view details)

Uploaded CPython 3.9Windows x86-64

insightfacex-0.7.4-cp39-cp39-win32.whl (484.0 kB view details)

Uploaded CPython 3.9Windows x86

insightfacex-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

insightfacex-0.7.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

insightfacex-0.7.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (749.5 kB view details)

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

insightfacex-0.7.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (740.9 kB view details)

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

insightfacex-0.7.4-cp39-cp39-macosx_11_0_arm64.whl (488.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

insightfacex-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file insightfacex-0.7.4.tar.gz.

File metadata

  • Download URL: insightfacex-0.7.4.tar.gz
  • Upload date:
  • Size: 424.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4.tar.gz
Algorithm Hash digest
SHA256 45a25448207e5d5444745d8ff712e2474a0fcf27b6b3625c3299a57c45bbf948
MD5 f966dc17f9bd1fead4f4c0eb9a707ee7
BLAKE2b-256 06a56d33d2505d9dbaaf767ab74e87c8b19250e7b8127953d2de57a442914284

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 01de9ea23dca36758d2bb1bcb97e8d256c12646f51f44830d2d288aa678561d9
MD5 30607a73614c16c40e890d6677e88b14
BLAKE2b-256 13765725f859d6a2c3bcb35219bf839459a462c30e78f4d723c9349bd6d541da

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 490.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7d776ae09a0f4353f028b1c21dc2045d8c60e862156d3fd18843255d1d0aef21
MD5 20bf64cb3b5edb31b1109966407acee5
BLAKE2b-256 79a7866edf66eefc65b609dafdeffd1540302fde9e21e0e917b641ff6bd915ec

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 150bb9feecd0da24d0c5aa573d83d58a77c4cff5d06917f51ffdec3849a1898a
MD5 7c8cbec6585d00923e2f3728e7fa84dd
BLAKE2b-256 cd67d252d2862af1328783dd2697882f0a04b8871a1d81bfdd1c71cc6142e8c3

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dfe6417992ba7e772ae9ff803104008b86cb214d0e8f20152f75bc2235c334d
MD5 337c959f44440c93cb53059eba23b29d
BLAKE2b-256 c29daaf56ae6881f5c468978b7825eb6a14b7f14e3026297e6cbc04c70df1939

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfba8b60dc12379bbc69625e313df668f0943d151b03d70259ba2b5fde4bcf89
MD5 74ac6fb3f3c58138f997e12eb3d6a71d
BLAKE2b-256 adef9bd8a527e756e58f4e704c3843cd3b328808f38aaf727fc64b0bc3ec8609

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 608676c512a14353bbdf2d166b0bc56e8da94adcf6f0d31947b0e087e443fcac
MD5 ded96c874fd5b67fa91487687b8bc739
BLAKE2b-256 f5ff8875de06acb5fdea587d2f71e298e0e9a960fffbcb21b6a6e26985ea4b50

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f688199153bdc66ddcb20385e7fbf5b9548a81bd64a1ebbca934b7dc2dede97
MD5 60c0691b2d272f02221022f86f3d2fb8
BLAKE2b-256 63fba56b9a213a32b61bc702ec46148317234c17d97efd9e103b430b7dc866e8

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de937aa7ec9a7a10dbe4c422122653c00d6f718a28bbf06836b71291b15adf61
MD5 10887a4c12c6489a26cf2dbe993cfdd1
BLAKE2b-256 c3eb5d69f3fbe286bee63e9475d320fc45d27b563013a26c0a4421defe6f6b4d

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1324e5aec559a1056b22705610184487cf63f9f3949a4f61eeab9aafb72710d1
MD5 0a9f390e4a8ef8140046b048c29ac5df
BLAKE2b-256 a3dbd9058b6e79e378ad5eeecfc808147cf65e3880280518d98b64c3b7e45d07

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 487.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 036983559425db2e686c6d53c0e0e4f07921e15b3e3370d5438cd2dcd22e954b
MD5 ebc005ec29c5c4ecfa8f3c238dc1ef3a
BLAKE2b-256 589356c770a213aaf8ef0e2d9cffb56573c58713ad9198a91d5cdd0947537176

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d69661c16886e9c9efc3deeb03f0196a992c9535bcd93399125ca23b3aa296b8
MD5 a7422a952c729b216ce0a25231d31e93
BLAKE2b-256 ad42ad14918b8359d1f076f82af4e546d2614a30c6e83626044f1dceba4bc5ee

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e580464952a59db7076dda05b0ebf59df3694811603b1e2cd796c141a228423
MD5 d9c92a5ea25d5005fac8c85b36b8331b
BLAKE2b-256 db5567f60f60b9ec35a1bf056753fd8d775a65f0baef65aae7a14e8966accda9

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e30fd4bbe0f0f188220bdab97da9409fb338c316e753529a2c1ef4938db886e9
MD5 6e22ef8bff4fc375dbd409ba4b1a1ed4
BLAKE2b-256 c8237732151146069cdebade6760d1cad23de6b413613690ff7b167558b60c19

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 660f69e4f0393b85094453a99d86a610ae0438d9030953558f27c1eec65b21ad
MD5 2954009df29630270d5c8e3c171d8f93
BLAKE2b-256 2c85098660f1f41f36c9441b48dd5b6bbcd97d4f74e9a67f3655d4fd6645aafe

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbe984e3071d5546f05542c7e155c4fbeae2ff9e6279c51fa76bfb5f3cc2a745
MD5 3ab25c148b9f463c08702edb385d3786
BLAKE2b-256 d5e01830fd88104dafe28da01f216f0e8b490b56a5ddb23a61e6e6507c58d33e

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d4a1134ff16a589c875a124ddcc85719fcf878cdd548fbc38986b7e36d67487
MD5 886843b7942633e1e5238cc70fca93e4
BLAKE2b-256 0340fb1b7b3c88689de454bf8449a759d1231b17a55d13e1beebfe4bd8077c8c

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b395b109b8848eb6b446699cf48f19980aa1e4ec3ac3fe73558c21d2a704d29f
MD5 dd4152fefad4fa213f38be8b00ada8cc
BLAKE2b-256 43ebb36fbe3dd2ad69bf8b9767db00507d405e946fb20eca592e82d81ce0b6e7

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 484.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a6c5f3d89fe71364553365b8a0b69f2af78d7f4dba3bac4ec6806f78249b1ac6
MD5 ece4302a7d9ecf21c2ac6911fb77c5ab
BLAKE2b-256 98f90cf40c6d3cad8ddf750aed6918b87ed89b87832426f0ef87bcfc72d464d4

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b46b1d165f41bd90581d31f6a7392e865119a28bd82ea50f7a5ac7e6d83131f
MD5 502c913599a24fbeef0241fead4f5c73
BLAKE2b-256 12dc22574f8ad461339b28e26d6a5f72561c734625f028e5188d44cea36e1de6

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dab41ee6233715402e99d2450cd8f2108529d6bdad3e057ed68ff7aed7ef374
MD5 8e830156362d2e88e6389a6f823722d3
BLAKE2b-256 c214664bd552e4659ae3fdadd4fe12fe188de7f3ef46cac6af9bb94bfe3bc065

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 778687f2ea77cb9097d67a612e2aac725af40239616f5b11cc117118f06f728e
MD5 94efd36d5882ed13f5c9ba9c0da6fa32
BLAKE2b-256 26b09bb91b8ba99059173cdcb4eb7a9e119392b5a0373e5d8d0ca7db6f16d507

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd6b0ed66336be92430c717d86a811b6c0e0ccbd40e5361b81a2f99ea655946c
MD5 68e77962abc5fa6d2807c5b3768c5c86
BLAKE2b-256 32611baf2224918b4d8d6a525995995f565a93fee9482935b87a021c4bf2556f

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d02b51f0ce0de656f9bb5a5d14a5ac3a757fcc27eb65bd74b1d13bbb4ba25561
MD5 33a58d9525f7c3959d308b7d818fc5c3
BLAKE2b-256 d546cbde35eabf9c9e93b6b66b9d7db46088e7134b95fe577692caf6fb03346c

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d813370a08f0cc1f4cad5e7d9a93ea0a9bff0218cd74ee13ce98f58167fffe5
MD5 2b79b8ce839b5b2505196a2304b26862
BLAKE2b-256 229d92dee2284bbfb313e2c0374ec1709d43fa9b6e7633cc82810c6a91e4293d

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a66d467e64f7e4baebb349bff907b42556d2dfb541db9fa135e7085cf0f2cb0
MD5 fc74d2f2df763aaeaab0d5f4808c82e8
BLAKE2b-256 ffb32976a8978ab1c07eec7a2427c8a05139a3c81625fe13c4516f3ec4413b44

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 484.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42af8cf9bdd721eac1965443f65bb0927f35fc23f4ce8a6bcbb8702b561733cf
MD5 84bac0afc83dfef513b030f38a05dbe2
BLAKE2b-256 3d6638a14e78f0c80e726c241ca238070890fc1f26981b2030daa7c7d95e941c

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c981e642d54f330e2bacd6c95903382c6e7370585c42f4a6bfb22842fdd13a0
MD5 ae9ec842684239d204370757919e0cf7
BLAKE2b-256 fd0929205b922328e72b5098edc9515edf3e7d9149cf3eb55edcf4f877a85893

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afee028c0189a9fe347ef024c84e8333c779098d36e83dda05f1fea07d40b56d
MD5 0041ea620246ad06a359e68e579726f6
BLAKE2b-256 41fbe5b1884b6f6839c84214ceab891b089baeb63100563c537d85f14f8f8b4f

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c917cbfc02dd4c25737b9dc7d40f37928b276ed08efa083da94b64011991acd
MD5 9cd776175fd2a8c684b85e8a356a3a47
BLAKE2b-256 0d0763ce8f4db14664a659d46636cca0ad9ec9a30a317cf7c07068358f670c13

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dcd5eee1e158079fe3d43004500d2e2275ba132b426a0a07652345b1adc7334
MD5 adbe2938e70f735309705283746787bc
BLAKE2b-256 d0a3bc72303d51e1332b5f3a8c4bf7a0ac4fa60d115dbc3a4d38c6ad310c83db

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ced0d8852fb45675e705fe50fbaee6cf811b09776e257dd2ec331af87c7acfb
MD5 a1d60afc32e9774546bc5ad71e1668e4
BLAKE2b-256 4b6464cada1bdbca7eeb4da39e12fdc8b2ed260e4c9dc5b68c3923aceb63a617

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7634d1014146420bfe75b02f016048b524845b05e018b7dd12743c7818dfcaba
MD5 7702e2975909f49974a8e1d7b1e97702
BLAKE2b-256 038ec7623755238c3d850df35c430668c0d1c3622cf599d7c6ff346eb9eaf16b

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 809c4cbf2c9e9c78363f279201f9a1e6f982c097996e125dbac58cceb09ff4ad
MD5 1c6225a1429faf73deb8af57f05c0194
BLAKE2b-256 8c49f847cd2570b5765adc64960aecb4d899b53bf930e8caf8ccd72de09fd22e

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 483.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b94c5f128b89c1781830318ae7575f1779dc63dfb8d5d35f1006535082179338
MD5 d97bb9044057126a549ef8f28a8f208e
BLAKE2b-256 0d946c22d8dbcd026acffd17923461875a51611605d439e3a60a21d26d7adde7

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c4ba21464068dc7b4ebb097a7179a3069792a56df4f290d89330e0c51499b83
MD5 e10612ea69b9c62bb322f4ae277108d4
BLAKE2b-256 0e9578f529fbdb85dcf95a1b1c6be57c9c320a9520d08c04fbf444720825345e

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2f0ba0a5da7d93e2eb782f12711d51022a247c3f49b53714271caa60066512b
MD5 149412dadf01740903952481f0295066
BLAKE2b-256 cd116b23a75415c1df7ae9c0826aa74c0ba1d87126800492473791a6ec6e46e6

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9927c467d89c0fc0cd50c76caabfb73700c9b8830d0ba3a4569d24562c599f7a
MD5 d24dd7d2c5f65620af2737a0644156c6
BLAKE2b-256 9e96119ff01056832a61d9eb71706bb4d4dd2791601edec8f1d46803d138c01a

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 918ed11bcc848dfbb59fa1c8f2d97eff60b9832d88b39aea1794fb90bbfbbc4e
MD5 d4bc2a3fb38552d3f547efe5f0c0d022
BLAKE2b-256 17b0d7bf92f21fe7bde2a1f3196a3d2859c9a875a7d41369fd40f8c0d1f6a452

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42bc6846e7f4a5c7e97f5f6a4a58add4cfdabc7d58a21993b68d128b2a85fa15
MD5 29ec0e373f5717b26440cc431e7a3f54
BLAKE2b-256 86cd217307b1f7792c93b7e997d2e1071436653942755457e3ba644e921be176

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5c51225b5c97df3b7337d7ab9fe9845f73054ccefab3a0bd03979dff10ed4f0
MD5 caecdcb7eb440d05cff5ba5f33332527
BLAKE2b-256 48d3dd9a9252740293f16115238ae1e72c9de06d09cc775bd9d5f17521c26a01

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba67350af56144b6e8010ab31b11710e2ace085f139996b1724708ec0a99c139
MD5 b7d50eb69db3f45eb5a31bab9026798c
BLAKE2b-256 e75d40757c4e41c1fddfae87edd2251818f719f5fca2f81619bbe9d6731542b6

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 483.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e40df9548e4629352b197985cb21ffae8d493142b611a5f0b5a077f1a9da8ad
MD5 7dfb257fd26ca91231d32ab200a32164
BLAKE2b-256 db5b3421aec78064f4324c89132aaafda15270fa3df0349803a75343485fcbab

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83cdad1277e09b226ecce5fa4333a4cb6dd8aa927bed30fa553016e5ab6ddda8
MD5 869cc28532d5b055faf9641bc4ae4861
BLAKE2b-256 51c87d71e1ddcfe1ee9f43fcfd31dc12abcd5a2c2c1c5a26cceca1e2560d6b38

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7776cca30273161b1140244a7231601d003b42cc83ef38a4058b965a4caff84a
MD5 cf8fc4ff38cac5ab7407b4efa418ee76
BLAKE2b-256 1bef58f15a276b14300fc0c87026f4e1b4f8640f16909f8d84f6d36f65f00a12

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0db8ec49412f1d86163a33ba141ab8b34ade879a58125b0e55c5ec43eed679ab
MD5 c59214dfb7fa159e9f12bcf97ca880b8
BLAKE2b-256 3d30c8e301ad7d2fa4b71507e069f4c9f8c00bb693a5fa7eb7d8444e64723cb6

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 761693cb2c2fad083050c70cbbd1e2d2ab8f670d4065039cf1abe5cde06807b2
MD5 d65ab5990bffba843512a17250c0680f
BLAKE2b-256 35c2d21c8d18760bdec9b74881f72089b5516b5ab7540a1be431998733de9447

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b34836686fe86a4e5811d740330fd45deab4a617d2e95c907556bae6f20aba
MD5 6e1f97ec5dac9554cbed78d4b7ac7469
BLAKE2b-256 71b38ade4a3cb6cae3a99f74d5b1666c2ae413f3e0587612e7939cc20cc7a51f

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2971393ec2159d2c24b58573cf8b7cd320626e9354363f000c4d94adccb6119d
MD5 926ff0693b212dc3cbba802e76abdb4d
BLAKE2b-256 d196b5e72dfbed9101ed8a7247bb532f8740020ad0623db776186582d46f050a

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 489.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 645353847b940eaf6b2087125a404a155fbb10ff2e4f3f2170b4a3a60e175a10
MD5 f3a55ef127a794733ca79ea664703e63
BLAKE2b-256 ca964b66a8004cefbfab696264a6571d05248a5e45910720120144599f4193cb

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: insightfacex-0.7.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 484.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 318f0b13fbd413debc681c34da272d82a9cb96e832abf7e82d19954fd6152824
MD5 ebb651b9897e5bc93c1785b0be2aeee8
BLAKE2b-256 b733fc678677bf9694fe78172aa5d96af7caebff1ef9e36dee88792617c33fb6

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fee04ebb9b75782d74d12f25a145c7d27d6da6ede3a8cbe4ff49ba38b50346c
MD5 c94e6316f854078d9d2ef2badcbfc5e4
BLAKE2b-256 bf3d51b15dd2b3741574b14963008c9bf25c071ceee8492dd21b0ac1230a6c14

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96627f9aba355d70726dbe624a80969eb59fc03d9dbab06bed12d0998433c490
MD5 90cfb1a8fe14f5f1ef15f3b63c6febd8
BLAKE2b-256 21851af7311407dec48070191afc043aa187c147f0ecbf13a93e4c61cb07db25

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 675cb813921032ef3f75f50583508b07ef7aac3f783e09449370d4947f056d13
MD5 b5755313919164fa491864f9f3bc0ace
BLAKE2b-256 b4bfabe818ecd9725deb3ae97cae82b4b91b3f2f2309d25f68e0d3c246e87cc5

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 883580352e793ee372ddaba03269827b227c61628dc05b1b06af07e56857205b
MD5 cfa9026202948977754f16acddba63fe
BLAKE2b-256 4bb1574b9f69730dc36e5ad2d5f77c3bf43371b1b79bdbb6468285621a7e2f65

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b237ee7d2f07cdb23a72994b1ece41f7bd1cd13e54a7edbe6fd1efd524955353
MD5 2b6a00fbd7537de6438df7b49adeea24
BLAKE2b-256 7ba8c05ab0dbcad2339636bff35199d12dba3c4bda77fd4899777fdf30cd0933

See more details on using hashes here.

File details

Details for the file insightfacex-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for insightfacex-0.7.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a81c03fa10baf046747a3c5b711622bd1bfb4cc91bb16ea00ae414be9462ea6c
MD5 33b336e84409bd50a0edabee0436de81
BLAKE2b-256 baf12480ee721caf356d6a644decfcf4df5941e42c8a76aaffd72455e424ad2a

See more details on using hashes here.

Supported by

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