inspireface


Nameinspireface JSON
Version 1.2.3.post5 PyPI version JSON
download
home_pagehttps://github.com/HyperInspire/InspireFace
SummaryInspireFace Python SDK
upload_time2025-08-01 08:10:12
maintainerNone
docs_urlNone
authorJingyu Yan
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # InspireFace Python API

InspireFace provides an easy-to-use Python API that wraps the underlying dynamic link library through ctypes. You can install the latest release version via pip or configure it using the project's self-compiled dynamic library.

## Quick Installation

### Install via pip (Recommended)

```bash
pip install inspireface
```

### Manual Installation

1. First install the necessary dependencies:
```bash
pip install loguru tqdm opencv-python
```

2. Copy the compiled dynamic library to the specified directory:
```bash
# Copy the compiled dynamic library to the corresponding system architecture directory
cp YOUR_BUILD_DIR/libInspireFace.so inspireface/modules/core/SYSTEM/CORE_ARCH/
```

3. Install the Python package:
```bash
python setup.py install
```

## Quick Start

Here's a simple example showing how to use InspireFace for face detection and landmark drawing:

```python
import cv2
import inspireface as isf

# Create session with required features enabled
session = isf.InspireFaceSession(
    opt=isf.HF_ENABLE_NONE,  # Optional features
    detect_mode=isf.HF_DETECT_MODE_ALWAYS_DETECT  # Detection mode
)

# Set detection confidence threshold
session.set_detection_confidence_threshold(0.5)

# Read image
image = cv2.imread("path/to/your/image.jpg")
assert image is not None, "Please check if the image path is correct"

# Perform face detection
faces = session.face_detection(image)
print(f"Detected {len(faces)} faces")

# Draw detection results on image
draw = image.copy()
for idx, face in enumerate(faces):
    # Get face bounding box coordinates
    x1, y1, x2, y2 = face.location
    
    # Calculate rotated box parameters
    center = ((x1 + x2) / 2, (y1 + y2) / 2)
    size = (x2 - x1, y2 - y1)
    angle = face.roll
    
    # Draw rotated box
    rect = ((center[0], center[1]), (size[0], size[1]), angle)
    box = cv2.boxPoints(rect)
    box = box.astype(int)
    cv2.drawContours(draw, [box], 0, (100, 180, 29), 2)
    
    # Draw landmarks
    landmarks = session.get_face_dense_landmark(face)
    for x, y in landmarks.astype(int):
        cv2.circle(draw, (x, y), 0, (220, 100, 0), 2)
```

## More Examples

The project provides multiple example files demonstrating different features:

- `sample_face_detection.py`: Basic face detection
- `sample_face_track_from_video.py`: Video face tracking
- `sample_face_recognition.py`: Face recognition
- `sample_face_comparison.py`: Face comparison
- `sample_feature_hub.py`: Feature extraction
- `sample_system_resource_statistics.py`: System resource statistics

## Running Tests

The project includes unit tests. You can adjust test content by modifying parameters in `test/test_settings.py`:

```bash
python -m unittest discover -s test
```

## Notes

1. Ensure that OpenCV and other necessary dependencies are installed on your system
2. Make sure the dynamic library is correctly installed before use
3. Python 3.7 or higher is recommended
4. The default version is CPU, if you want to use the GPU, CoreML, or NPU backend version, you can refer to the [documentation](https://doc.inspireface.online/guides/python-rockchip-device.html) to replace the so and make a Python installation package

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/HyperInspire/InspireFace",
    "name": "inspireface",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Jingyu Yan",
    "author_email": "tunmxy@163.com",
    "download_url": null,
    "platform": null,
    "description": "# InspireFace Python API\n\nInspireFace provides an easy-to-use Python API that wraps the underlying dynamic link library through ctypes. You can install the latest release version via pip or configure it using the project's self-compiled dynamic library.\n\n## Quick Installation\n\n### Install via pip (Recommended)\n\n```bash\npip install inspireface\n```\n\n### Manual Installation\n\n1. First install the necessary dependencies:\n```bash\npip install loguru tqdm opencv-python\n```\n\n2. Copy the compiled dynamic library to the specified directory:\n```bash\n# Copy the compiled dynamic library to the corresponding system architecture directory\ncp YOUR_BUILD_DIR/libInspireFace.so inspireface/modules/core/SYSTEM/CORE_ARCH/\n```\n\n3. Install the Python package:\n```bash\npython setup.py install\n```\n\n## Quick Start\n\nHere's a simple example showing how to use InspireFace for face detection and landmark drawing:\n\n```python\nimport cv2\nimport inspireface as isf\n\n# Create session with required features enabled\nsession = isf.InspireFaceSession(\n    opt=isf.HF_ENABLE_NONE,  # Optional features\n    detect_mode=isf.HF_DETECT_MODE_ALWAYS_DETECT  # Detection mode\n)\n\n# Set detection confidence threshold\nsession.set_detection_confidence_threshold(0.5)\n\n# Read image\nimage = cv2.imread(\"path/to/your/image.jpg\")\nassert image is not None, \"Please check if the image path is correct\"\n\n# Perform face detection\nfaces = session.face_detection(image)\nprint(f\"Detected {len(faces)} faces\")\n\n# Draw detection results on image\ndraw = image.copy()\nfor idx, face in enumerate(faces):\n    # Get face bounding box coordinates\n    x1, y1, x2, y2 = face.location\n    \n    # Calculate rotated box parameters\n    center = ((x1 + x2) / 2, (y1 + y2) / 2)\n    size = (x2 - x1, y2 - y1)\n    angle = face.roll\n    \n    # Draw rotated box\n    rect = ((center[0], center[1]), (size[0], size[1]), angle)\n    box = cv2.boxPoints(rect)\n    box = box.astype(int)\n    cv2.drawContours(draw, [box], 0, (100, 180, 29), 2)\n    \n    # Draw landmarks\n    landmarks = session.get_face_dense_landmark(face)\n    for x, y in landmarks.astype(int):\n        cv2.circle(draw, (x, y), 0, (220, 100, 0), 2)\n```\n\n## More Examples\n\nThe project provides multiple example files demonstrating different features:\n\n- `sample_face_detection.py`: Basic face detection\n- `sample_face_track_from_video.py`: Video face tracking\n- `sample_face_recognition.py`: Face recognition\n- `sample_face_comparison.py`: Face comparison\n- `sample_feature_hub.py`: Feature extraction\n- `sample_system_resource_statistics.py`: System resource statistics\n\n## Running Tests\n\nThe project includes unit tests. You can adjust test content by modifying parameters in `test/test_settings.py`:\n\n```bash\npython -m unittest discover -s test\n```\n\n## Notes\n\n1. Ensure that OpenCV and other necessary dependencies are installed on your system\n2. Make sure the dynamic library is correctly installed before use\n3. Python 3.7 or higher is recommended\n4. The default version is CPU, if you want to use the GPU, CoreML, or NPU backend version, you can refer to the [documentation](https://doc.inspireface.online/guides/python-rockchip-device.html) to replace the so and make a Python installation package\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "InspireFace Python SDK",
    "version": "1.2.3.post5",
    "project_urls": {
        "Homepage": "https://github.com/HyperInspire/InspireFace"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a85f941d5222db360a40e68587053e1c0891b9dc734e0110efffed52fa745c8",
                "md5": "489b965aae861bb6d1064c4320065af7",
                "sha256": "e134dc338f8a71ba08af984e9505409c3ad34a4c04d085d581ae47cdf9c66d98"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "489b965aae861bb6d1064c4320065af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2499221,
            "upload_time": "2025-08-01T08:10:12",
            "upload_time_iso_8601": "2025-08-01T08:10:12.064713Z",
            "url": "https://files.pythonhosted.org/packages/8a/85/f941d5222db360a40e68587053e1c0891b9dc734e0110efffed52fa745c8/inspireface-1.2.3.post5-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42a9a71a71ffe6362bd3812411d26166971a453559b4d6666a988718e3c83534",
                "md5": "5e666691619618796c43877feffa4cbe",
                "sha256": "2220350a1da9aa6ff9ae0ade9fabb8a7d4964761233e44010de62b11a46b261a"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp310-cp310-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "5e666691619618796c43877feffa4cbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2052280,
            "upload_time": "2025-08-01T08:10:06",
            "upload_time_iso_8601": "2025-08-01T08:10:06.517114Z",
            "url": "https://files.pythonhosted.org/packages/42/a9/a71a71ffe6362bd3812411d26166971a453559b4d6666a988718e3c83534/inspireface-1.2.3.post5-cp310-cp310-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d999c673edc984fd752f8ba7aa45669c4ad1b5b68beb52f01e9a6d342a30b02",
                "md5": "49bfc84dfd10291cbe1194443015be23",
                "sha256": "7983d1429edaa864b5b8de14431dc0439b4906e4581c7f3af5b67c2098a74b29"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp310-cp310-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49bfc84dfd10291cbe1194443015be23",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2707591,
            "upload_time": "2025-08-01T08:10:08",
            "upload_time_iso_8601": "2025-08-01T08:10:08.169733Z",
            "url": "https://files.pythonhosted.org/packages/2d/99/9c673edc984fd752f8ba7aa45669c4ad1b5b68beb52f01e9a6d342a30b02/inspireface-1.2.3.post5-cp310-cp310-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67fb8da504ff2389dc0f8487cc50def99012bf47e3c0d4ee4ff3ce4c3f1b8554",
                "md5": "8345c43bad2a6bad4b3de096312fc3c3",
                "sha256": "fb3c371892834853939d55d1d941b0446152ce74c0fc05f6ada6a0fd58fa0058"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8345c43bad2a6bad4b3de096312fc3c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2948798,
            "upload_time": "2025-08-01T08:09:44",
            "upload_time_iso_8601": "2025-08-01T08:09:44.617253Z",
            "url": "https://files.pythonhosted.org/packages/67/fb/8da504ff2389dc0f8487cc50def99012bf47e3c0d4ee4ff3ce4c3f1b8554/inspireface-1.2.3.post5-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "967c7689044901948a128eb7bc4bf22b8bf2ed6edf8cd32da0ae7b69e1706a2c",
                "md5": "7d1a024e71dd9afde596ab4d02ca6ab5",
                "sha256": "ea92807fe1116bd0c9d37df6a4c658b273eed68ec1662b62a81acc17d62fdfcb"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp311-cp311-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "7d1a024e71dd9afde596ab4d02ca6ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2499224,
            "upload_time": "2025-08-01T08:09:40",
            "upload_time_iso_8601": "2025-08-01T08:09:40.911253Z",
            "url": "https://files.pythonhosted.org/packages/96/7c/7689044901948a128eb7bc4bf22b8bf2ed6edf8cd32da0ae7b69e1706a2c/inspireface-1.2.3.post5-cp311-cp311-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69764e8b6b38f6bdef5286d5e4d3c9f0d7e4e2deb1a0f0f3c8135110e2a0aebd",
                "md5": "7a12a4dbe58d95a05be000a98d490b58",
                "sha256": "8b4bbac6ca714db2eb55303b8a137e777c3aba672da4d6599cbda916699445c5"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp311-cp311-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "7a12a4dbe58d95a05be000a98d490b58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2052283,
            "upload_time": "2025-08-01T08:09:50",
            "upload_time_iso_8601": "2025-08-01T08:09:50.527916Z",
            "url": "https://files.pythonhosted.org/packages/69/76/4e8b6b38f6bdef5286d5e4d3c9f0d7e4e2deb1a0f0f3c8135110e2a0aebd/inspireface-1.2.3.post5-cp311-cp311-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "839a54d17a7e4f8e9349b75abe38f8ea591eec007d9a0640f7852cefb20c161b",
                "md5": "a51c52c6364c4ed803d25998ccec0c08",
                "sha256": "0dea8096151570fa8f49149128aea473d438d6746d4a6a344656ef298dc30e79"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp311-cp311-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a51c52c6364c4ed803d25998ccec0c08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2707592,
            "upload_time": "2025-08-01T08:10:04",
            "upload_time_iso_8601": "2025-08-01T08:10:04.803204Z",
            "url": "https://files.pythonhosted.org/packages/83/9a/54d17a7e4f8e9349b75abe38f8ea591eec007d9a0640f7852cefb20c161b/inspireface-1.2.3.post5-cp311-cp311-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a62fac235a9584e6cab7eb73dbe88ada155fdf0fabaf9527b814ab7747972b9",
                "md5": "ffc6e6142bc9026aa017c016c19ec665",
                "sha256": "d480ef0790730eff606a5fbf42f9cc8ca0eb590ab108ebb2d534287314bdcf23"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ffc6e6142bc9026aa017c016c19ec665",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2948799,
            "upload_time": "2025-08-01T08:09:52",
            "upload_time_iso_8601": "2025-08-01T08:09:52.244506Z",
            "url": "https://files.pythonhosted.org/packages/2a/62/fac235a9584e6cab7eb73dbe88ada155fdf0fabaf9527b814ab7747972b9/inspireface-1.2.3.post5-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1251c52d7effe51ec6fe9d493d1a472b932da8a30cbb951da6f8e053ba6d86c3",
                "md5": "ac04ef3e79291c223fe72ed14772ebb0",
                "sha256": "264656aae249c1d71b0cc8611e578188f0c53843f38f26902102b6ee68c6fd10"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp312-cp312-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "ac04ef3e79291c223fe72ed14772ebb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2499277,
            "upload_time": "2025-08-01T08:09:58",
            "upload_time_iso_8601": "2025-08-01T08:09:58.125044Z",
            "url": "https://files.pythonhosted.org/packages/12/51/c52d7effe51ec6fe9d493d1a472b932da8a30cbb951da6f8e053ba6d86c3/inspireface-1.2.3.post5-cp312-cp312-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cc260e2a207ca126e48898ace9c291cd27c22b41d196b06a55e8e4af3030426",
                "md5": "26c2aff6c5328be2c39cf0783028d062",
                "sha256": "de8e831d1dc2d71e6bcd20b4d359583a24fcbe042af44a473a160d54b182507a"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp312-cp312-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "26c2aff6c5328be2c39cf0783028d062",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2052330,
            "upload_time": "2025-08-01T08:10:01",
            "upload_time_iso_8601": "2025-08-01T08:10:01.523141Z",
            "url": "https://files.pythonhosted.org/packages/4c/c2/60e2a207ca126e48898ace9c291cd27c22b41d196b06a55e8e4af3030426/inspireface-1.2.3.post5-cp312-cp312-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "435b14ae8e4330f330f7c463765d912951074ebb04c43c1643a58979154c201f",
                "md5": "4e02c9c4e4fb23220b0d9ccddd19a7cf",
                "sha256": "f144ad75227b81e3121cc6d2fa6ab7b24300cf1da8768bc3b4eec375aee34d8f"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp312-cp312-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e02c9c4e4fb23220b0d9ccddd19a7cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2707591,
            "upload_time": "2025-08-01T08:09:35",
            "upload_time_iso_8601": "2025-08-01T08:09:35.695004Z",
            "url": "https://files.pythonhosted.org/packages/43/5b/14ae8e4330f330f7c463765d912951074ebb04c43c1643a58979154c201f/inspireface-1.2.3.post5-cp312-cp312-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54b261a513f4218df9f4f7ea3e24c86553e990250209b327a7a44088ae8cdc4a",
                "md5": "5a085130d6b9804f8d188c2096d6e994",
                "sha256": "e533ed52b671f8a259794b504f4a906290a97b149bb856c4039b689f7a409f43"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a085130d6b9804f8d188c2096d6e994",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2948801,
            "upload_time": "2025-08-01T08:09:48",
            "upload_time_iso_8601": "2025-08-01T08:09:48.443612Z",
            "url": "https://files.pythonhosted.org/packages/54/b2/61a513f4218df9f4f7ea3e24c86553e990250209b327a7a44088ae8cdc4a/inspireface-1.2.3.post5-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f10f6a1a29fb6a8524c90ed815c6c7c301bb98fcce3be33b79e43c5aae0dc4f3",
                "md5": "d8cb979cf6be1c21a6bdd820bd057a05",
                "sha256": "6b0aba97d8fb50447da86d7c3185fcbd0e61d6f6ec0ae0e30b86c59de34f1cb5"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp37-cp37m-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8cb979cf6be1c21a6bdd820bd057a05",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2489398,
            "upload_time": "2025-08-01T08:09:33",
            "upload_time_iso_8601": "2025-08-01T08:09:33.519414Z",
            "url": "https://files.pythonhosted.org/packages/f1/0f/6a1a29fb6a8524c90ed815c6c7c301bb98fcce3be33b79e43c5aae0dc4f3/inspireface-1.2.3.post5-cp37-cp37m-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f76c55e59f288a22e416b73d0b4c7f3fa33273ab83e85b648c0ab96d8d9cd064",
                "md5": "7ebd35ec00d558c0450c4e1b78ec3ebe",
                "sha256": "89d5c2b291c8f6b0de16e568beb59080f0cf83c5d471c427c46b23b36e48e2e8"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp38-cp38-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ebd35ec00d558c0450c4e1b78ec3ebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2489396,
            "upload_time": "2025-08-01T08:09:56",
            "upload_time_iso_8601": "2025-08-01T08:09:56.525049Z",
            "url": "https://files.pythonhosted.org/packages/f7/6c/55e59f288a22e416b73d0b4c7f3fa33273ab83e85b648c0ab96d8d9cd064/inspireface-1.2.3.post5-cp38-cp38-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb19a8ab5e0de5684a6f4fc8e0a6006d49e19bd23530cc709552ca2555915976",
                "md5": "48170dd2ed28e351d852590ceb45549b",
                "sha256": "32ab1a13bf91dded15c2457674ee8b5b61629a60147e2607ac4f40d7a5c05efc"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp38-cp38-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "48170dd2ed28e351d852590ceb45549b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2042455,
            "upload_time": "2025-08-01T08:09:59",
            "upload_time_iso_8601": "2025-08-01T08:09:59.938223Z",
            "url": "https://files.pythonhosted.org/packages/eb/19/a8ab5e0de5684a6f4fc8e0a6006d49e19bd23530cc709552ca2555915976/inspireface-1.2.3.post5-cp38-cp38-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4a2a420cf3e93956a83e98e727afadbc18378b994e7261e9aeebe4ac6602d73",
                "md5": "74e66a17362eac17ca3d19e3de62f490",
                "sha256": "c7f8baf25594b1dce1b85741b8919dc662ab2feb62492ab10eee6b8678884fba"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp38-cp38-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74e66a17362eac17ca3d19e3de62f490",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2697699,
            "upload_time": "2025-08-01T08:09:31",
            "upload_time_iso_8601": "2025-08-01T08:09:31.953599Z",
            "url": "https://files.pythonhosted.org/packages/a4/a2/a420cf3e93956a83e98e727afadbc18378b994e7261e9aeebe4ac6602d73/inspireface-1.2.3.post5-cp38-cp38-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4297569f678cb9bb2409d6c8b1fa59903dbe0c69789a43babc3f3aa9ce3a98d0",
                "md5": "f872cc6de2abeb8fb75791a7267fec3a",
                "sha256": "2b0a0bee0c6061712ab77d76ba02e5fefb21056031e55ee8e3b76dff18a23eef"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp38-cp38-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f872cc6de2abeb8fb75791a7267fec3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2938907,
            "upload_time": "2025-08-01T08:09:29",
            "upload_time_iso_8601": "2025-08-01T08:09:29.726422Z",
            "url": "https://files.pythonhosted.org/packages/42/97/569f678cb9bb2409d6c8b1fa59903dbe0c69789a43babc3f3aa9ce3a98d0/inspireface-1.2.3.post5-cp38-cp38-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50f56a702754f740c540b89c8b328918aa5a5f4ec52851e27d82a07faee6b7e0",
                "md5": "877c254d8c86954acd760bdd2baae30a",
                "sha256": "f0a34582e00e9ca58932c63520b8c966465c39be5ebac63325312d55789d52e6"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "877c254d8c86954acd760bdd2baae30a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2499240,
            "upload_time": "2025-08-01T08:09:54",
            "upload_time_iso_8601": "2025-08-01T08:09:54.012237Z",
            "url": "https://files.pythonhosted.org/packages/50/f5/6a702754f740c540b89c8b328918aa5a5f4ec52851e27d82a07faee6b7e0/inspireface-1.2.3.post5-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e488ed6aa4fdca37081beba9c4bdc86efe780527874e2d55c34f2627a813795a",
                "md5": "2520bfde573eeb0804c5936694b0e4f2",
                "sha256": "5b32b86e1a921671dbd2f9194dca51a5053062c24d1fb5d9c68fa8a5bc1eba28"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp39-cp39-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "2520bfde573eeb0804c5936694b0e4f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2052303,
            "upload_time": "2025-08-01T08:09:42",
            "upload_time_iso_8601": "2025-08-01T08:09:42.951819Z",
            "url": "https://files.pythonhosted.org/packages/e4/88/ed6aa4fdca37081beba9c4bdc86efe780527874e2d55c34f2627a813795a/inspireface-1.2.3.post5-cp39-cp39-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd19116b3b5038aceabf69f029c4060d033c606c6e2cb33a369dc3b96deaf56b",
                "md5": "c066c3ab7394c8d9c6a0e08f558e7a64",
                "sha256": "05819df9bf5c851a47414a46ac3bbb482c8f544c106b18b21e32a1837bac099a"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp39-cp39-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c066c3ab7394c8d9c6a0e08f558e7a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2707591,
            "upload_time": "2025-08-01T08:09:37",
            "upload_time_iso_8601": "2025-08-01T08:09:37.856964Z",
            "url": "https://files.pythonhosted.org/packages/fd/19/116b3b5038aceabf69f029c4060d033c606c6e2cb33a369dc3b96deaf56b/inspireface-1.2.3.post5-cp39-cp39-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b25a887a920ec277da1ce323584bd360b4cb5060b5dfb40d95fe4a0f1d6e232",
                "md5": "2ecc0aab784a186566e8ab05f36f3e33",
                "sha256": "d48a6cbfd14dc8acd716f6a1f3dd18489520d4715329be3fae0abe7088795eb3"
            },
            "downloads": -1,
            "filename": "inspireface-1.2.3.post5-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ecc0aab784a186566e8ab05f36f3e33",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2948797,
            "upload_time": "2025-08-01T08:10:13",
            "upload_time_iso_8601": "2025-08-01T08:10:13.723856Z",
            "url": "https://files.pythonhosted.org/packages/4b/25/a887a920ec277da1ce323584bd360b4cb5060b5dfb40d95fe4a0f1d6e232/inspireface-1.2.3.post5-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-01 08:10:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HyperInspire",
    "github_project": "InspireFace",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "inspireface"
}
        
Elapsed time: 1.63489s