pybind11-numpy-example


Namepybind11-numpy-example JSON
Version 0.0.12 PyPI version JSON
download
home_pageNone
SummaryAn example of using numpy with pybind11
upload_time2024-04-25 11:12:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT
keywords pybind11 cibuildwheel c++ pypi numpy simple example
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pybind11-numpy-example

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PyPI Release](https://img.shields.io/pypi/v/pybind11-numpy-example.svg)](https://pypi.org/project/pybind11-numpy-example)
[![Python Versions](https://img.shields.io/pypi/pyversions/pybind11-numpy-example)](https://pypi.org/project/pybind11-numpy-example)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/lkeegan/pybind11-numpy-example/ci.yml?branch=main)](https://github.com/lkeegan/pybind11-numpy-example/actions/workflows/ci.yml)
[![Documentation Status](https://readthedocs.org/projects/pybind11-numpy-example/badge/)](https://pybind11-numpy-example.readthedocs.io/)

# What

A simple example of how to use [pybind11](https://github.com/pybind/pybind11) with [numpy](https://numpy.org/).

This C++/Python library creates a `std::vector` of 16-bit ints,
and provides a Python interface to the contents of this vector in a few different ways:

- a Python [List](https://docs.python.org/3/tutorial/datastructures.html#more-on-lists) (copy the data)
- a NumPy [ndarray](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) (copy the data).
- a NumPy [ndarray](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) (move the data).

# Why

Python Lists are great!
However, when storing many small elements of the same type,
a Numpy array is much faster and uses a lot less memory:

![Memory used vs number of elements](https://raw.githubusercontent.com/ssciwr/pybind11-numpy-example/main/scripts/memory.png)

![Time used vs number of elements](https://raw.githubusercontent.com/ssciwr/pybind11-numpy-example/main/scripts/time.png)

# How

The pybind11 code is in [src/pybind11_numpy_example_python.cpp](https://github.com/ssciwr/pybind11-numpy-example/blob/main/src/pybind11_numpy_example_python.cpp).

The python package is defined in [pyproject.toml](https://github.com/ssciwr/pybind11-numpy-example/blob/main/pyproject.toml)
and uses [scikit-build-core](https://github.com/scikit-build/scikit-build-core).

Each tagged commit triggers a [GitHub action job](https://github.com/ssciwr/pybind11-numpy-example/actions/workflows/pypi.yml)
which uses [cibuildwheel](https://cibuildwheel.readthedocs.io/) to build and upload wheels to [PyPI](https://pypi.org/project/pybind11-numpy-example/).

The scripts used to generate the above plots are in [scripts](https://github.com/ssciwr/pybind11-numpy-example/tree/main/scripts).

This repo was quickly set up using the SSC [C++ Project Cookiecutter](https://github.com/ssciwr/cookiecutter-cpp-project).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pybind11-numpy-example",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Liam Keegan <liam@keegan.ch>",
    "keywords": "pybind11, cibuildwheel, c++, pypi, numpy, simple, example",
    "author": null,
    "author_email": "Liam Keegan <liam@keegan.ch>",
    "download_url": "https://files.pythonhosted.org/packages/5d/b5/72ac3ec209602d236f6bffda8436c666e1d9b8ccfdff4a3ce3892b9f5894/pybind11_numpy_example-0.0.12.tar.gz",
    "platform": null,
    "description": "# pybind11-numpy-example\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![PyPI Release](https://img.shields.io/pypi/v/pybind11-numpy-example.svg)](https://pypi.org/project/pybind11-numpy-example)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pybind11-numpy-example)](https://pypi.org/project/pybind11-numpy-example)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/lkeegan/pybind11-numpy-example/ci.yml?branch=main)](https://github.com/lkeegan/pybind11-numpy-example/actions/workflows/ci.yml)\n[![Documentation Status](https://readthedocs.org/projects/pybind11-numpy-example/badge/)](https://pybind11-numpy-example.readthedocs.io/)\n\n# What\n\nA simple example of how to use [pybind11](https://github.com/pybind/pybind11) with [numpy](https://numpy.org/).\n\nThis C++/Python library creates a `std::vector` of 16-bit ints,\nand provides a Python interface to the contents of this vector in a few different ways:\n\n- a Python [List](https://docs.python.org/3/tutorial/datastructures.html#more-on-lists) (copy the data)\n- a NumPy [ndarray](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) (copy the data).\n- a NumPy [ndarray](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) (move the data).\n\n# Why\n\nPython Lists are great!\nHowever, when storing many small elements of the same type,\na Numpy array is much faster and uses a lot less memory:\n\n![Memory used vs number of elements](https://raw.githubusercontent.com/ssciwr/pybind11-numpy-example/main/scripts/memory.png)\n\n![Time used vs number of elements](https://raw.githubusercontent.com/ssciwr/pybind11-numpy-example/main/scripts/time.png)\n\n# How\n\nThe pybind11 code is in [src/pybind11_numpy_example_python.cpp](https://github.com/ssciwr/pybind11-numpy-example/blob/main/src/pybind11_numpy_example_python.cpp).\n\nThe python package is defined in [pyproject.toml](https://github.com/ssciwr/pybind11-numpy-example/blob/main/pyproject.toml)\nand uses [scikit-build-core](https://github.com/scikit-build/scikit-build-core).\n\nEach tagged commit triggers a [GitHub action job](https://github.com/ssciwr/pybind11-numpy-example/actions/workflows/pypi.yml)\nwhich uses [cibuildwheel](https://cibuildwheel.readthedocs.io/) to build and upload wheels to [PyPI](https://pypi.org/project/pybind11-numpy-example/).\n\nThe scripts used to generate the above plots are in [scripts](https://github.com/ssciwr/pybind11-numpy-example/tree/main/scripts).\n\nThis repo was quickly set up using the SSC [C++ Project Cookiecutter](https://github.com/ssciwr/cookiecutter-cpp-project).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An example of using numpy with pybind11",
    "version": "0.0.12",
    "project_urls": {
        "Documentation": "https://pybind11-numpy-example.readthedocs.io",
        "Github": "https://github.com/ssciwr/pybind11-numpy-example"
    },
    "split_keywords": [
        "pybind11",
        " cibuildwheel",
        " c++",
        " pypi",
        " numpy",
        " simple",
        " example"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94318a97171db3ecafacb7f3624ed80809038900b7372df84d06b31d0a685f6c",
                "md5": "ce04c25f320ed7842f41a4a289185ee0",
                "sha256": "64166ea27c4818d04ef60a36585b992534f270447b121588c8ffae32f7e72f57"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce04c25f320ed7842f41a4a289185ee0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 55233,
            "upload_time": "2024-04-25T11:11:28",
            "upload_time_iso_8601": "2024-04-25T11:11:28.491222Z",
            "url": "https://files.pythonhosted.org/packages/94/31/8a97171db3ecafacb7f3624ed80809038900b7372df84d06b31d0a685f6c/pybind11_numpy_example-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be10300d9b22e129fb6aceea96fc8818d8fa84805fe01f906b5cabab86dfb488",
                "md5": "cdd479fbe8c6c1d3ecc25ff8be0efb79",
                "sha256": "13d7cdad0b5884f9c0ab719e265e67ca68107bf474da3ad17f0d424cbeac0ab5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cdd479fbe8c6c1d3ecc25ff8be0efb79",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 52064,
            "upload_time": "2024-04-25T11:11:30",
            "upload_time_iso_8601": "2024-04-25T11:11:30.002640Z",
            "url": "https://files.pythonhosted.org/packages/be/10/300d9b22e129fb6aceea96fc8818d8fa84805fe01f906b5cabab86dfb488/pybind11_numpy_example-0.0.12-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b60ead16fd99eb879d13e9e80cba541a31536d2a8d2b1de743ce4acdc529571",
                "md5": "15e77d24b89cc4191df70c9ce3559b98",
                "sha256": "bb4593a678c8791555ecebecbe5f68d0fb7f0d8df594a46bfbf0415e90237e86"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "15e77d24b89cc4191df70c9ce3559b98",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 88287,
            "upload_time": "2024-04-25T11:11:31",
            "upload_time_iso_8601": "2024-04-25T11:11:31.462491Z",
            "url": "https://files.pythonhosted.org/packages/0b/60/ead16fd99eb879d13e9e80cba541a31536d2a8d2b1de743ce4acdc529571/pybind11_numpy_example-0.0.12-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60babd13a9a97d1452ca7a3c996f71fa5abecfc4eb803d6456395b49c0b92acf",
                "md5": "7bc37772d96da3ed77c84476df30b312",
                "sha256": "5b921463edc42943f54f135ad3bb9c46f491ef544df7e84f42ff108640b2364e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bc37772d96da3ed77c84476df30b312",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 82427,
            "upload_time": "2024-04-25T11:11:32",
            "upload_time_iso_8601": "2024-04-25T11:11:32.928577Z",
            "url": "https://files.pythonhosted.org/packages/60/ba/bd13a9a97d1452ca7a3c996f71fa5abecfc4eb803d6456395b49c0b92acf/pybind11_numpy_example-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e6d89deeb28f5bf36212c9b3863273a30c74328ead25ed808fad2a41b6e0a69",
                "md5": "fc75d02f345d7c3eab3cec3a7f0d6553",
                "sha256": "1fee591a1c0c4f0f47a4a33c487fc1dcb9d75bbbb98c31688fe6a5a677915e2f"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fc75d02f345d7c3eab3cec3a7f0d6553",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 664321,
            "upload_time": "2024-04-25T11:11:34",
            "upload_time_iso_8601": "2024-04-25T11:11:34.635470Z",
            "url": "https://files.pythonhosted.org/packages/3e/6d/89deeb28f5bf36212c9b3863273a30c74328ead25ed808fad2a41b6e0a69/pybind11_numpy_example-0.0.12-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d945dde500a780af7fb79373cb5bfd96f46333c8eda931d7496a57c6fbc0bca3",
                "md5": "4e64a03ba641db1ce412ada9782f95ff",
                "sha256": "693853f046ab52c9834d66d8484d167efc2e4c8eff078b2eb6309ebf5924f444"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e64a03ba641db1ce412ada9782f95ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 607231,
            "upload_time": "2024-04-25T11:11:35",
            "upload_time_iso_8601": "2024-04-25T11:11:35.904391Z",
            "url": "https://files.pythonhosted.org/packages/d9/45/dde500a780af7fb79373cb5bfd96f46333c8eda931d7496a57c6fbc0bca3/pybind11_numpy_example-0.0.12-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62891ddfd4676e27db034faeeea4e901a504e3301072d28cc1235cb73e963101",
                "md5": "560eabf883b561e0f3d833c7290a6828",
                "sha256": "d7ee98ecc3fd4af3eb6254ab7d01f2c6787ab5e1e9d642c6947dfdaaa0c0e558"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "560eabf883b561e0f3d833c7290a6828",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 54176,
            "upload_time": "2024-04-25T11:11:37",
            "upload_time_iso_8601": "2024-04-25T11:11:37.139031Z",
            "url": "https://files.pythonhosted.org/packages/62/89/1ddfd4676e27db034faeeea4e901a504e3301072d28cc1235cb73e963101/pybind11_numpy_example-0.0.12-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e670f0fa664a12d9a1469868ba5f717d7e6e4817fbf61ee454f753471df572b6",
                "md5": "b09824d0751ed5b04b0d79ec3c051095",
                "sha256": "c29c008c5e5a8a8169904fa5b23da2a75b915ef8296e6cfc5b37c3dd07c60d83"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b09824d0751ed5b04b0d79ec3c051095",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 62076,
            "upload_time": "2024-04-25T11:11:38",
            "upload_time_iso_8601": "2024-04-25T11:11:38.624376Z",
            "url": "https://files.pythonhosted.org/packages/e6/70/f0fa664a12d9a1469868ba5f717d7e6e4817fbf61ee454f753471df572b6/pybind11_numpy_example-0.0.12-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c343d2296b9b395c4959212ae1564a8aee34fa107c7bbacbc391cff60ea7f67a",
                "md5": "8062f34a5ec881d722983602cb1012a9",
                "sha256": "f68a66bdf81456c7f9d14a1ac4cad1cad30ab2d851f5fa3acaa40583e7e68ea5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8062f34a5ec881d722983602cb1012a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 56620,
            "upload_time": "2024-04-25T11:11:39",
            "upload_time_iso_8601": "2024-04-25T11:11:39.636407Z",
            "url": "https://files.pythonhosted.org/packages/c3/43/d2296b9b395c4959212ae1564a8aee34fa107c7bbacbc391cff60ea7f67a/pybind11_numpy_example-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec4c188d0a7c0ebd5650b7c7cd30b730bce9494fad3582649c419f61e12dba87",
                "md5": "59ccedaa5ced1ab41e022f612617641c",
                "sha256": "c600a3b8fa2a1b5c82356d2f403ad8e82c63e424aafcba3b5eb4bf983c737cb6"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "59ccedaa5ced1ab41e022f612617641c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 53256,
            "upload_time": "2024-04-25T11:11:41",
            "upload_time_iso_8601": "2024-04-25T11:11:41.076021Z",
            "url": "https://files.pythonhosted.org/packages/ec/4c/188d0a7c0ebd5650b7c7cd30b730bce9494fad3582649c419f61e12dba87/pybind11_numpy_example-0.0.12-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c958d02bdf30b323322c8f7e163b1169da991701a37fb50edf7a415565eb021a",
                "md5": "db8f7be18600e45de7b66bed42871c05",
                "sha256": "002ec9f938d5f24361551a27770c00516d59972d17a8a61da7a5e0637a3e0476"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "db8f7be18600e45de7b66bed42871c05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 89758,
            "upload_time": "2024-04-25T11:11:42",
            "upload_time_iso_8601": "2024-04-25T11:11:42.800971Z",
            "url": "https://files.pythonhosted.org/packages/c9/58/d02bdf30b323322c8f7e163b1169da991701a37fb50edf7a415565eb021a/pybind11_numpy_example-0.0.12-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4f4a7acf01dd015ebc1dc9979832e011e56794d98f29dd392a8f69f26050b44",
                "md5": "5b42de8b478af5dcdbac3a11c1f2b8ee",
                "sha256": "e6bb4e4e487d113f12a10a1b1ec1b0b80826e8e780db1d99b98fd9e19e841007"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b42de8b478af5dcdbac3a11c1f2b8ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 84192,
            "upload_time": "2024-04-25T11:11:43",
            "upload_time_iso_8601": "2024-04-25T11:11:43.801987Z",
            "url": "https://files.pythonhosted.org/packages/a4/f4/a7acf01dd015ebc1dc9979832e011e56794d98f29dd392a8f69f26050b44/pybind11_numpy_example-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bca88f14fdc9c4e9997d49f89fd099b1685479ce2437b7cbbae7fc364fe061b",
                "md5": "d66e47f3eb8104b81e086bcacc368038",
                "sha256": "9f58c300b268250408bbe00c454a4b5bfb6f0f33d1f7950a57a30b775e8e5e8f"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d66e47f3eb8104b81e086bcacc368038",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 665483,
            "upload_time": "2024-04-25T11:11:45",
            "upload_time_iso_8601": "2024-04-25T11:11:45.341139Z",
            "url": "https://files.pythonhosted.org/packages/3b/ca/88f14fdc9c4e9997d49f89fd099b1685479ce2437b7cbbae7fc364fe061b/pybind11_numpy_example-0.0.12-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f2b5ed792eb316f89dc94ac99c88829a04c3c9a83b4a81ba91411b1b9c66404",
                "md5": "a2c2dbbb19341a6e0e742a8ba4e783a9",
                "sha256": "61bf5f428ea8f7eafa2d2c8c6841899e02560b835c0215a48c20083b1b59eb87"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2c2dbbb19341a6e0e742a8ba4e783a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 608151,
            "upload_time": "2024-04-25T11:11:46",
            "upload_time_iso_8601": "2024-04-25T11:11:46.433047Z",
            "url": "https://files.pythonhosted.org/packages/8f/2b/5ed792eb316f89dc94ac99c88829a04c3c9a83b4a81ba91411b1b9c66404/pybind11_numpy_example-0.0.12-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c23dfb4e6ef17d0fd111c2fc77475ce0157dfd39618a37dcf3421a5d8bef3fe6",
                "md5": "f2793f64420709a96c267597416a3031",
                "sha256": "166671024c8e9c87732f8350f0eed683ccc7e41e1931a06ace6e15edb1344b72"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "f2793f64420709a96c267597416a3031",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 55105,
            "upload_time": "2024-04-25T11:11:48",
            "upload_time_iso_8601": "2024-04-25T11:11:48.231486Z",
            "url": "https://files.pythonhosted.org/packages/c2/3d/fb4e6ef17d0fd111c2fc77475ce0157dfd39618a37dcf3421a5d8bef3fe6/pybind11_numpy_example-0.0.12-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16b6e287bfc542ee63d738ffea52d57d440b8d683648a2eeb9d6042daeb8b80b",
                "md5": "c4c0cdbc0cab2e7ea0403282b5863d5a",
                "sha256": "97318bbbf40b5184018f1f483d75d744742838e5ca583d75fc07a24f4063a8a4"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c4c0cdbc0cab2e7ea0403282b5863d5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63124,
            "upload_time": "2024-04-25T11:11:49",
            "upload_time_iso_8601": "2024-04-25T11:11:49.784270Z",
            "url": "https://files.pythonhosted.org/packages/16/b6/e287bfc542ee63d738ffea52d57d440b8d683648a2eeb9d6042daeb8b80b/pybind11_numpy_example-0.0.12-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25893fef0ec296c855c546148f39df82ac02e923eafdd5f9d8a06b05171fb799",
                "md5": "3d0b52f77d1589cdc57d635eb7278762",
                "sha256": "fe9547530e8695d9e4ac7651374fdf75d170074648b5912b2d64883804d7666a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d0b52f77d1589cdc57d635eb7278762",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 55870,
            "upload_time": "2024-04-25T11:11:50",
            "upload_time_iso_8601": "2024-04-25T11:11:50.669330Z",
            "url": "https://files.pythonhosted.org/packages/25/89/3fef0ec296c855c546148f39df82ac02e923eafdd5f9d8a06b05171fb799/pybind11_numpy_example-0.0.12-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a41aedc90c3e4cfaddefa9be08a6c0e88cfee27d785e79f75563111606ce2ce9",
                "md5": "a976b66532035e49a11c88348429dc86",
                "sha256": "043674839fc4677ca95353afd0a819e65054cf9b3505639c1c9964641a979720"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a976b66532035e49a11c88348429dc86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 52598,
            "upload_time": "2024-04-25T11:11:52",
            "upload_time_iso_8601": "2024-04-25T11:11:52.114908Z",
            "url": "https://files.pythonhosted.org/packages/a4/1a/edc90c3e4cfaddefa9be08a6c0e88cfee27d785e79f75563111606ce2ce9/pybind11_numpy_example-0.0.12-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5afd8c0dae1a4f02a30e9fb49c15e8d829b9a95b3ebd501288365515d5c1f821",
                "md5": "456739188045779a8b43ad0376639c13",
                "sha256": "4157add4aa394a51308e5c03583fb8273d811e2d3b09e086d1c2c330a543ad4a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "456739188045779a8b43ad0376639c13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 89463,
            "upload_time": "2024-04-25T11:11:53",
            "upload_time_iso_8601": "2024-04-25T11:11:53.059321Z",
            "url": "https://files.pythonhosted.org/packages/5a/fd/8c0dae1a4f02a30e9fb49c15e8d829b9a95b3ebd501288365515d5c1f821/pybind11_numpy_example-0.0.12-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7756f4575d258a3e4bc72cb6f3a83f2849be8155d31370421073d29f5aa7b556",
                "md5": "d46d41a753133abfe2aadeb659467c10",
                "sha256": "ba871c1f77d37f9d18814485369b6b555ad03623584a49ba083ee4b8316ea900"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d46d41a753133abfe2aadeb659467c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 83611,
            "upload_time": "2024-04-25T11:11:54",
            "upload_time_iso_8601": "2024-04-25T11:11:54.542432Z",
            "url": "https://files.pythonhosted.org/packages/77/56/f4575d258a3e4bc72cb6f3a83f2849be8155d31370421073d29f5aa7b556/pybind11_numpy_example-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e72f680cf9bed21946985b39118f1d5031e4a6bd5a0b02fa8e4911aac25f4028",
                "md5": "ec1691aa8744161c9e98445c48ce3b6a",
                "sha256": "b8186d8787c443d97e1fba267f9bf2f7aa9fa7ecd026d2ab946aaff1be174603"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ec1691aa8744161c9e98445c48ce3b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 665014,
            "upload_time": "2024-04-25T11:11:55",
            "upload_time_iso_8601": "2024-04-25T11:11:55.683673Z",
            "url": "https://files.pythonhosted.org/packages/e7/2f/680cf9bed21946985b39118f1d5031e4a6bd5a0b02fa8e4911aac25f4028/pybind11_numpy_example-0.0.12-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0df8d6bc234dd79df4169e5b7c0cf7a745df99a3aef41f03dee267d3199dcbd2",
                "md5": "76516a3204a76fa3fe19162db5557b79",
                "sha256": "2cacb3808c7de93bdf8462127b31c6533a47d45ba0e52b5e7e627eb4c31df8cc"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76516a3204a76fa3fe19162db5557b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 607319,
            "upload_time": "2024-04-25T11:11:57",
            "upload_time_iso_8601": "2024-04-25T11:11:57.211693Z",
            "url": "https://files.pythonhosted.org/packages/0d/f8/d6bc234dd79df4169e5b7c0cf7a745df99a3aef41f03dee267d3199dcbd2/pybind11_numpy_example-0.0.12-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "058f0136ab18c3c8346f5ed8e75451c63fb40a737e7a207037244acb93e53cef",
                "md5": "4c7658ccd69035f5167b4daa06703733",
                "sha256": "f7ec46630e1f69478f08aaeb5dae79fac871bff1ef28948fed97fa89c752484c"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4c7658ccd69035f5167b4daa06703733",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 55339,
            "upload_time": "2024-04-25T11:11:58",
            "upload_time_iso_8601": "2024-04-25T11:11:58.429818Z",
            "url": "https://files.pythonhosted.org/packages/05/8f/0136ab18c3c8346f5ed8e75451c63fb40a737e7a207037244acb93e53cef/pybind11_numpy_example-0.0.12-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c57e31915c161d51077d9e306576aa80292a640589ed1c7bf43451abc133e7",
                "md5": "36672f1367650159724b6e5cc0ab5af4",
                "sha256": "6e73e042afe5df1210e7b980318d3b087ea49e385f1bd7e7530ce0c8c599ad43"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "36672f1367650159724b6e5cc0ab5af4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 63142,
            "upload_time": "2024-04-25T11:11:59",
            "upload_time_iso_8601": "2024-04-25T11:11:59.410544Z",
            "url": "https://files.pythonhosted.org/packages/49/c5/7e31915c161d51077d9e306576aa80292a640589ed1c7bf43451abc133e7/pybind11_numpy_example-0.0.12-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b018a374fc9960ae4ea37a0c8e8fe5c06f7a45907b636d68300a044a81ff7f36",
                "md5": "eee319d5472d60b870f9a0e4081ef191",
                "sha256": "4e0dcdf1133a48dc014f3c47a2823fa8a750b65d9bf68e8aa5606c56f3018d5a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eee319d5472d60b870f9a0e4081ef191",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 55252,
            "upload_time": "2024-04-25T11:12:01",
            "upload_time_iso_8601": "2024-04-25T11:12:01.285263Z",
            "url": "https://files.pythonhosted.org/packages/b0/18/a374fc9960ae4ea37a0c8e8fe5c06f7a45907b636d68300a044a81ff7f36/pybind11_numpy_example-0.0.12-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e7103ab760f824c422ca7400614dc248536da1b0f572ece256976c5b0638069",
                "md5": "c0782636eea24c23562d8f90e179a70e",
                "sha256": "bb22925c2462e7bad1ca4b8eb9b7e2f80954fb1a6ed302f0d4e5c8cf90c52699"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c0782636eea24c23562d8f90e179a70e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 90047,
            "upload_time": "2024-04-25T11:12:02",
            "upload_time_iso_8601": "2024-04-25T11:12:02.959753Z",
            "url": "https://files.pythonhosted.org/packages/1e/71/03ab760f824c422ca7400614dc248536da1b0f572ece256976c5b0638069/pybind11_numpy_example-0.0.12-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7b7b8dc6aa8a7f02de502355091276dbb1e555c2b2a66db5da15bf82f469692",
                "md5": "e783819b7ce5f790b121fd24616c6680",
                "sha256": "3c0a53fc87e64b110c0c6d2a2924ea5714a1db4cdb832e2364e4dae7c397b939"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e783819b7ce5f790b121fd24616c6680",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 83487,
            "upload_time": "2024-04-25T11:12:04",
            "upload_time_iso_8601": "2024-04-25T11:12:04.579401Z",
            "url": "https://files.pythonhosted.org/packages/f7/b7/b8dc6aa8a7f02de502355091276dbb1e555c2b2a66db5da15bf82f469692/pybind11_numpy_example-0.0.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "826c130cd66158fd7ef802bfe8823a8ea6c6cff90b1477b1b54a783cfebf4e48",
                "md5": "59e3e116a50e2b4d4f81e4793be3133a",
                "sha256": "5d77d916b05d31ea96d42fd9478b6f5655400096839cdac7ad7772c808e64862"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "59e3e116a50e2b4d4f81e4793be3133a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 666894,
            "upload_time": "2024-04-25T11:12:06",
            "upload_time_iso_8601": "2024-04-25T11:12:06.231689Z",
            "url": "https://files.pythonhosted.org/packages/82/6c/130cd66158fd7ef802bfe8823a8ea6c6cff90b1477b1b54a783cfebf4e48/pybind11_numpy_example-0.0.12-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f05a7cac862c2c66201bfa5b9e1f7978195169a1bcbc7be67887ab0bc79edf1",
                "md5": "a86b47b7edbfa432c8c9122500bb8c49",
                "sha256": "1a0a640aca054d6c3f3a50ebc068e89334f9c7739ffed8281eac026103851834"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a86b47b7edbfa432c8c9122500bb8c49",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 609157,
            "upload_time": "2024-04-25T11:12:07",
            "upload_time_iso_8601": "2024-04-25T11:12:07.489742Z",
            "url": "https://files.pythonhosted.org/packages/2f/05/a7cac862c2c66201bfa5b9e1f7978195169a1bcbc7be67887ab0bc79edf1/pybind11_numpy_example-0.0.12-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79475f99c9cc51c4632c6ea147aacae86760f7f43181950482fc3509bf976ded",
                "md5": "5575bc5479722e559e889d5b9682799d",
                "sha256": "2a13c9be2027f177f30afa75ca70fe140a41beef1bbbaa885f3fda9398760916"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "5575bc5479722e559e889d5b9682799d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 54921,
            "upload_time": "2024-04-25T11:12:09",
            "upload_time_iso_8601": "2024-04-25T11:12:09.193757Z",
            "url": "https://files.pythonhosted.org/packages/79/47/5f99c9cc51c4632c6ea147aacae86760f7f43181950482fc3509bf976ded/pybind11_numpy_example-0.0.12-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00ea40022c4c54229fb75234827705656bc6d8a84521b4c5227fa8c3d6877454",
                "md5": "05fe9091637db45c28f41d9c5672d655",
                "sha256": "e4ffc01094c5db4df6e76e42fdaa61ffdad069d80bcc6d8d7f9997750db5bdd0"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "05fe9091637db45c28f41d9c5672d655",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 62794,
            "upload_time": "2024-04-25T11:12:10",
            "upload_time_iso_8601": "2024-04-25T11:12:10.675304Z",
            "url": "https://files.pythonhosted.org/packages/00/ea/40022c4c54229fb75234827705656bc6d8a84521b4c5227fa8c3d6877454/pybind11_numpy_example-0.0.12-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b17684323f89aa731912b1dec0c39fecb904fca9e8ec88f1ab2d2421bca7a09",
                "md5": "caa22bff635629a4d673f5057f5eae89",
                "sha256": "afdcdcad990afecfc0848003b064fc027cc25367e9545fd50f9fc64961ae0a37"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caa22bff635629a4d673f5057f5eae89",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 55078,
            "upload_time": "2024-04-25T11:12:11",
            "upload_time_iso_8601": "2024-04-25T11:12:11.616799Z",
            "url": "https://files.pythonhosted.org/packages/5b/17/684323f89aa731912b1dec0c39fecb904fca9e8ec88f1ab2d2421bca7a09/pybind11_numpy_example-0.0.12-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa2ecb4b4a3766b074713506e198deab24fa7dbfadd01f8929dde1b46733fe20",
                "md5": "1fe8c6e8f064ae4ad73a5e73c6eb3a5f",
                "sha256": "64764df5953795a639d066e306ba827d83d019b2fa715f4f2d4650a6405cbb42"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1fe8c6e8f064ae4ad73a5e73c6eb3a5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 51939,
            "upload_time": "2024-04-25T11:12:12",
            "upload_time_iso_8601": "2024-04-25T11:12:12.615250Z",
            "url": "https://files.pythonhosted.org/packages/aa/2e/cb4b4a3766b074713506e198deab24fa7dbfadd01f8929dde1b46733fe20/pybind11_numpy_example-0.0.12-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0a62c1a16ef6a4673c94eb74f7c28c7e4f74a0bcf111ad7d9a1b20436e062b",
                "md5": "397f2ad78287cced6e66711f222868bd",
                "sha256": "68afed4bb592130e5d57ec1485711f54d8282633f21b6994137f5921488582fb"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "397f2ad78287cced6e66711f222868bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 88088,
            "upload_time": "2024-04-25T11:12:13",
            "upload_time_iso_8601": "2024-04-25T11:12:13.609688Z",
            "url": "https://files.pythonhosted.org/packages/4b/0a/62c1a16ef6a4673c94eb74f7c28c7e4f74a0bcf111ad7d9a1b20436e062b/pybind11_numpy_example-0.0.12-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "902f4f6e1588bf5e4d2be1d6fe1e878bef42739b61857cd46261875319229e97",
                "md5": "8ee33c6acc640694c6b4fe40e352f2f1",
                "sha256": "dd6a36e254b2d4ac0671ca29833eebfb7517ab56f368942f7297762213231fb5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ee33c6acc640694c6b4fe40e352f2f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 82376,
            "upload_time": "2024-04-25T11:12:15",
            "upload_time_iso_8601": "2024-04-25T11:12:15.127807Z",
            "url": "https://files.pythonhosted.org/packages/90/2f/4f6e1588bf5e4d2be1d6fe1e878bef42739b61857cd46261875319229e97/pybind11_numpy_example-0.0.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fdc4a74e3d3c01ee5e26b6f2f9cc4d8345aa46c547df724d972a0e205ed4cd5",
                "md5": "ef271067a4f89ba134d73b01c4b86c9c",
                "sha256": "79f18a88a6a98a650c108e158f906f584e94c8bb5c83b3372370490c161bedd0"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ef271067a4f89ba134d73b01c4b86c9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 664148,
            "upload_time": "2024-04-25T11:12:16",
            "upload_time_iso_8601": "2024-04-25T11:12:16.695844Z",
            "url": "https://files.pythonhosted.org/packages/6f/dc/4a74e3d3c01ee5e26b6f2f9cc4d8345aa46c547df724d972a0e205ed4cd5/pybind11_numpy_example-0.0.12-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d080b627cbca55a0b148ca9bf39fb940071f350eb2ef864c2fdc500a95fc46a7",
                "md5": "4603edb1489ef966c7dd39a10790f202",
                "sha256": "4c51081efeb7aec709b751a287f23bac5199fd52135a1662f69929fd251dafc9"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4603edb1489ef966c7dd39a10790f202",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 607039,
            "upload_time": "2024-04-25T11:12:17",
            "upload_time_iso_8601": "2024-04-25T11:12:17.927472Z",
            "url": "https://files.pythonhosted.org/packages/d0/80/b627cbca55a0b148ca9bf39fb940071f350eb2ef864c2fdc500a95fc46a7/pybind11_numpy_example-0.0.12-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d31d7c7d2a1afcf7a8aae549840cef54261d00d1cc7a499a17a3fdd2b068f673",
                "md5": "2dc74b422c2c745c6d0fbd20c41dc829",
                "sha256": "f1f5232cb39d24d256748de6b8d857361c64fdcffe0aae867107b574cc81ce6f"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "2dc74b422c2c745c6d0fbd20c41dc829",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 54167,
            "upload_time": "2024-04-25T11:12:19",
            "upload_time_iso_8601": "2024-04-25T11:12:19.478382Z",
            "url": "https://files.pythonhosted.org/packages/d3/1d/7c7d2a1afcf7a8aae549840cef54261d00d1cc7a499a17a3fdd2b068f673/pybind11_numpy_example-0.0.12-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9f6e6f2cb25146fd6aa4ff8ff1e2b52e0fa75b8f735557e7e6d0d726b1d789b",
                "md5": "d03d6e12bc931cc331857c3bc5680fe5",
                "sha256": "d5cedcdbb8f7b77b8707c97bcab931d0730608368ca18b5b813985d22e126013"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d03d6e12bc931cc331857c3bc5680fe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 62040,
            "upload_time": "2024-04-25T11:12:20",
            "upload_time_iso_8601": "2024-04-25T11:12:20.446037Z",
            "url": "https://files.pythonhosted.org/packages/b9/f6/e6f2cb25146fd6aa4ff8ff1e2b52e0fa75b8f735557e7e6d0d726b1d789b/pybind11_numpy_example-0.0.12-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc1168cb0b838baca9bae4d74dfa7f42a74f843fe39ac40a9d98794742fb2735",
                "md5": "36ead6d530a1df39dfca06a63d0891ac",
                "sha256": "8c56d6d0d03634e8575b06f65b90f420836c98d89c45145a552c6983f4b33a0e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36ead6d530a1df39dfca06a63d0891ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 55307,
            "upload_time": "2024-04-25T11:12:21",
            "upload_time_iso_8601": "2024-04-25T11:12:21.375691Z",
            "url": "https://files.pythonhosted.org/packages/bc/11/68cb0b838baca9bae4d74dfa7f42a74f843fe39ac40a9d98794742fb2735/pybind11_numpy_example-0.0.12-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5271e7d2516d655eeee6c98fc1724ccaa62c2841413feda8b36d2c04be03e6a4",
                "md5": "348518782ef439ec188aea943d70b448",
                "sha256": "db89a9b3427bb663dacb0544476b01c73ecea4e24421219a8d1bd31e8a1cbdcc"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "348518782ef439ec188aea943d70b448",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 52148,
            "upload_time": "2024-04-25T11:12:22",
            "upload_time_iso_8601": "2024-04-25T11:12:22.428965Z",
            "url": "https://files.pythonhosted.org/packages/52/71/e7d2516d655eeee6c98fc1724ccaa62c2841413feda8b36d2c04be03e6a4/pybind11_numpy_example-0.0.12-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68473d29fb6bb1ffb0bd4383dff5a4e8327310b0cdc8d44efe44fb7eb17e037e",
                "md5": "ee7336ce0036979db66dafcc1427215c",
                "sha256": "ba68264b211931e747f8bf41d99f837562f233d9348eee64b17cea1c7b6a047b"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ee7336ce0036979db66dafcc1427215c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 88401,
            "upload_time": "2024-04-25T11:12:23",
            "upload_time_iso_8601": "2024-04-25T11:12:23.482890Z",
            "url": "https://files.pythonhosted.org/packages/68/47/3d29fb6bb1ffb0bd4383dff5a4e8327310b0cdc8d44efe44fb7eb17e037e/pybind11_numpy_example-0.0.12-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ddc4b267605cad1bd5e5a4749bfcff4693798e9f725f9e2c20a2d550d0d73fa",
                "md5": "2a481b5d186d6659a4d0514c4eb522bb",
                "sha256": "528ed1134de060c0f6b2c18bb30aa1dd95fd07908ee2f29f808526548a8acbef"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a481b5d186d6659a4d0514c4eb522bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 82468,
            "upload_time": "2024-04-25T11:12:24",
            "upload_time_iso_8601": "2024-04-25T11:12:24.903332Z",
            "url": "https://files.pythonhosted.org/packages/6d/dc/4b267605cad1bd5e5a4749bfcff4693798e9f725f9e2c20a2d550d0d73fa/pybind11_numpy_example-0.0.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbbb1275b7b62f508267b120b0e7582bfa5ba352186a5c10802259a3b6b7ca49",
                "md5": "cb72e2361ebd5d506b01ba164612bafa",
                "sha256": "60f9b27ef9351d12d28060f5c2264de9f2a1dafb22aa294671ce8c075d1cd054"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cb72e2361ebd5d506b01ba164612bafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 664273,
            "upload_time": "2024-04-25T11:12:25",
            "upload_time_iso_8601": "2024-04-25T11:12:25.943163Z",
            "url": "https://files.pythonhosted.org/packages/fb/bb/1275b7b62f508267b120b0e7582bfa5ba352186a5c10802259a3b6b7ca49/pybind11_numpy_example-0.0.12-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a1f2e782adc2c09300fd434154090c599fc178b6c7e6c8deff4a954db42cce",
                "md5": "c1b4657166b94cbcf741e3e6aec3c49a",
                "sha256": "df5805e18542e82ba64a0abac17c0d3d76f1a974aa2eac9b204ade07e40cac32"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1b4657166b94cbcf741e3e6aec3c49a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 607092,
            "upload_time": "2024-04-25T11:12:27",
            "upload_time_iso_8601": "2024-04-25T11:12:27.163346Z",
            "url": "https://files.pythonhosted.org/packages/67/a1/f2e782adc2c09300fd434154090c599fc178b6c7e6c8deff4a954db42cce/pybind11_numpy_example-0.0.12-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbdf27a1b0009516626d395ebe3c2fa7d2181ff2264610863b06e7ef29bb53b6",
                "md5": "1a595b1ae60ed5ef22aac153ba481b80",
                "sha256": "ac5e8e4efd8aaad8f09514f5f6bef21263dad7def0f8006f3cd7ea1407cce11d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1a595b1ae60ed5ef22aac153ba481b80",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 54263,
            "upload_time": "2024-04-25T11:12:28",
            "upload_time_iso_8601": "2024-04-25T11:12:28.985381Z",
            "url": "https://files.pythonhosted.org/packages/cb/df/27a1b0009516626d395ebe3c2fa7d2181ff2264610863b06e7ef29bb53b6/pybind11_numpy_example-0.0.12-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf067de924ca8558929dd7b6552cccca07c7b98c95cd1684811f843a8db07fc9",
                "md5": "8c39223c23982f3eeda3e9150e5446d2",
                "sha256": "93cba2c8f6c56d22e4332adcc24cbc7ba78702a54d47d4ba0afff5ef15f5a2a4"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c39223c23982f3eeda3e9150e5446d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 61834,
            "upload_time": "2024-04-25T11:12:30",
            "upload_time_iso_8601": "2024-04-25T11:12:30.526515Z",
            "url": "https://files.pythonhosted.org/packages/bf/06/7de924ca8558929dd7b6552cccca07c7b98c95cd1684811f843a8db07fc9/pybind11_numpy_example-0.0.12-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bef211b986986f073137de46d5c6eb9a558d7a591affdf5587ec9ee6de9e151",
                "md5": "9c6fb3c9e980b6c4fe6005333b8d0aef",
                "sha256": "a00d2191181fdc2f454f7138a92c0637dd2f87a50ae03fe5b8af4a9ff2cd81e9"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c6fb3c9e980b6c4fe6005333b8d0aef",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 55579,
            "upload_time": "2024-04-25T11:12:32",
            "upload_time_iso_8601": "2024-04-25T11:12:32.035567Z",
            "url": "https://files.pythonhosted.org/packages/5b/ef/211b986986f073137de46d5c6eb9a558d7a591affdf5587ec9ee6de9e151/pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "724fae248e2bb0be6887b48e898452c3660896b6b39a95d7c5a6ba6a8c939240",
                "md5": "96d2e9a0b9e5d5d6580771b6a424e826",
                "sha256": "4b5461eb5198e2a3893a9192103dc258324d4b67ffeb26e62aaea50cb285d94c"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96d2e9a0b9e5d5d6580771b6a424e826",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 52290,
            "upload_time": "2024-04-25T11:12:33",
            "upload_time_iso_8601": "2024-04-25T11:12:33.335618Z",
            "url": "https://files.pythonhosted.org/packages/72/4f/ae248e2bb0be6887b48e898452c3660896b6b39a95d7c5a6ba6a8c939240/pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f401e49ad3f5c77584ee4b42e88f5de642277b9eff5ec3ff0ab9d817886a9ada",
                "md5": "f63d56453db54c835bfac1d559834276",
                "sha256": "9a0cc77b613aad4df9496c8a38a0623c6c635d4d60afcf23ddf5bd8ce54885ea"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f63d56453db54c835bfac1d559834276",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 87853,
            "upload_time": "2024-04-25T11:12:34",
            "upload_time_iso_8601": "2024-04-25T11:12:34.485302Z",
            "url": "https://files.pythonhosted.org/packages/f4/01/e49ad3f5c77584ee4b42e88f5de642277b9eff5ec3ff0ab9d817886a9ada/pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bebe34442459a07ed9a5c5256820225bb559e95922301ef24269b4b0d9c125b",
                "md5": "99b9a8977db172fc48734c400952eea2",
                "sha256": "304e7adb3fbf8c51013976b3e9e0c0111ac6ff7701a0f100619dbabdd89b6fa5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99b9a8977db172fc48734c400952eea2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 82568,
            "upload_time": "2024-04-25T11:12:35",
            "upload_time_iso_8601": "2024-04-25T11:12:35.582498Z",
            "url": "https://files.pythonhosted.org/packages/2b/eb/e34442459a07ed9a5c5256820225bb559e95922301ef24269b4b0d9c125b/pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b3bc1d18b99d5be550fa7440336b3894ba7af74fa32fc404f36f0fd1d525d6f",
                "md5": "1218f1bdbceb49f23fb9b6ac7b0b2cee",
                "sha256": "0c3c895f7633734007d629815d6102b40c04cbcdc01ec842e73d97331d2b914f"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1218f1bdbceb49f23fb9b6ac7b0b2cee",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 62212,
            "upload_time": "2024-04-25T11:12:36",
            "upload_time_iso_8601": "2024-04-25T11:12:36.580178Z",
            "url": "https://files.pythonhosted.org/packages/2b/3b/c1d18b99d5be550fa7440336b3894ba7af74fa32fc404f36f0fd1d525d6f/pybind11_numpy_example-0.0.12-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fc47801ab401545a4976d8d40ba0a17963f68b9f36dad628e6bb3f2f5c7e571",
                "md5": "fe310cccf005ad2f7859e568ab6b956c",
                "sha256": "2a18bae380cb59b52ba9c8e865e39f73d1a9ed66da2b21f6a00da39a8c82b1e4"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe310cccf005ad2f7859e568ab6b956c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 55052,
            "upload_time": "2024-04-25T11:12:39",
            "upload_time_iso_8601": "2024-04-25T11:12:39.273180Z",
            "url": "https://files.pythonhosted.org/packages/7f/c4/7801ab401545a4976d8d40ba0a17963f68b9f36dad628e6bb3f2f5c7e571/pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1481b840c0b80906fb7f2eda819396d56f6bb4ddaf5bb13d8660819aee70eac8",
                "md5": "c607ac8e769dfd622b56075737af9b91",
                "sha256": "12849a6b5df2b9f20c49ee4831e601f2ec3a2b35f8ed9a049fbecc44cf238c58"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c607ac8e769dfd622b56075737af9b91",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 87229,
            "upload_time": "2024-04-25T11:12:40",
            "upload_time_iso_8601": "2024-04-25T11:12:40.843153Z",
            "url": "https://files.pythonhosted.org/packages/14/81/b840c0b80906fb7f2eda819396d56f6bb4ddaf5bb13d8660819aee70eac8/pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1db46147836e5f17909a639b886b48a78ffcbafe7f88de956ed54bda315f8c9",
                "md5": "4d8e13a266f45c8bedbd63750f38c334",
                "sha256": "daeb1d1f762e5355134204c50be6833343ab484f52b37dca570b1fb307616218"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d8e13a266f45c8bedbd63750f38c334",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 82025,
            "upload_time": "2024-04-25T11:12:42",
            "upload_time_iso_8601": "2024-04-25T11:12:42.573759Z",
            "url": "https://files.pythonhosted.org/packages/d1/db/46147836e5f17909a639b886b48a78ffcbafe7f88de956ed54bda315f8c9/pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "179e4e3e7f56ddfb3f3cfb294e1cc266984df05f733f84d89af6640e5c0176db",
                "md5": "408df6570aea34ffb7d18b1ed5684bff",
                "sha256": "3ccd95ff836ee3dfc9e731a4bed457310285826e3478107cbb5e081948e430f7"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "408df6570aea34ffb7d18b1ed5684bff",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 62021,
            "upload_time": "2024-04-25T11:12:43",
            "upload_time_iso_8601": "2024-04-25T11:12:43.528651Z",
            "url": "https://files.pythonhosted.org/packages/17/9e/4e3e7f56ddfb3f3cfb294e1cc266984df05f733f84d89af6640e5c0176db/pybind11_numpy_example-0.0.12-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5a1bd8fb06f31a73fbc9eead8c0e310244e7cc7caf82877c9b0a2d99294ee5b",
                "md5": "24ec60af247a15f61f427bbe37ff8414",
                "sha256": "a45cf40b5ab03e17197341940c127ddd15efe75f6d37a76c21afb71ba8f58f1a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24ec60af247a15f61f427bbe37ff8414",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 55558,
            "upload_time": "2024-04-25T11:12:44",
            "upload_time_iso_8601": "2024-04-25T11:12:44.519037Z",
            "url": "https://files.pythonhosted.org/packages/d5/a1/bd8fb06f31a73fbc9eead8c0e310244e7cc7caf82877c9b0a2d99294ee5b/pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "849eb7e81d3c46f9d094fcf2cffb8aac45e8c37ec3829b8f558a0826b7f726a5",
                "md5": "9e859ee8a88212073ed75a9b16cf06c1",
                "sha256": "ccf9d9e79b206d1ed5279fb9e3516f309a520f3dce2d52885f6db18584a55ae4"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9e859ee8a88212073ed75a9b16cf06c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 52216,
            "upload_time": "2024-04-25T11:12:45",
            "upload_time_iso_8601": "2024-04-25T11:12:45.782812Z",
            "url": "https://files.pythonhosted.org/packages/84/9e/b7e81d3c46f9d094fcf2cffb8aac45e8c37ec3829b8f558a0826b7f726a5/pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0d648cdb6fa31f62746212d09702201e2c59acb4e001b701a3f2ab2ce80085b",
                "md5": "66640ae7047bca060ffd48790a4d719f",
                "sha256": "66e905a530d59b4babb74fb4e1c6783acb29218427c177a6e777c6f202c87f0a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "66640ae7047bca060ffd48790a4d719f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 87720,
            "upload_time": "2024-04-25T11:12:46",
            "upload_time_iso_8601": "2024-04-25T11:12:46.850831Z",
            "url": "https://files.pythonhosted.org/packages/a0/d6/48cdb6fa31f62746212d09702201e2c59acb4e001b701a3f2ab2ce80085b/pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "833e8bf9edff62eaa52cfdf2b5698539510fca0de14bdfb036521f7cf549d433",
                "md5": "322278e15bf0b12c2572f3aee25dde78",
                "sha256": "95ab678ee0e404c9aa9c6c7e4c34bab6e0ffca4362225ae513537138ebfdb9a3"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "322278e15bf0b12c2572f3aee25dde78",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 82468,
            "upload_time": "2024-04-25T11:12:48",
            "upload_time_iso_8601": "2024-04-25T11:12:48.122662Z",
            "url": "https://files.pythonhosted.org/packages/83/3e/8bf9edff62eaa52cfdf2b5698539510fca0de14bdfb036521f7cf549d433/pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "617ddb022b800ece4c6ecc6965371542854c0da6949aa64eb12936a715f8377b",
                "md5": "a317092877d5cbbcd4f36fa3e5052c15",
                "sha256": "f791e76101444739008e77bb7b46fb2b5dc1062036b69295763fa5684a722aea"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a317092877d5cbbcd4f36fa3e5052c15",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 62259,
            "upload_time": "2024-04-25T11:12:50",
            "upload_time_iso_8601": "2024-04-25T11:12:50.079930Z",
            "url": "https://files.pythonhosted.org/packages/61/7d/db022b800ece4c6ecc6965371542854c0da6949aa64eb12936a715f8377b/pybind11_numpy_example-0.0.12-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e3ee54359aa93c32b6c4f9df5e97c93e3852503b85d64c359899d2cb4e41161",
                "md5": "61544f51474566e5f1e604988319bce3",
                "sha256": "3121ea9e9f9b54d49294a1e28c3eb6c6e6cf3081335c22fcf0963c8f75c0317d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61544f51474566e5f1e604988319bce3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 55544,
            "upload_time": "2024-04-25T11:12:51",
            "upload_time_iso_8601": "2024-04-25T11:12:51.187388Z",
            "url": "https://files.pythonhosted.org/packages/2e/3e/e54359aa93c32b6c4f9df5e97c93e3852503b85d64c359899d2cb4e41161/pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4753a5c2723eb4ab5d93c46f8d86d39ae701c3bbe34ed9530a33342ab5835417",
                "md5": "a25829929c301ab3e00df3f4bb6c9061",
                "sha256": "69e52ff02837fb8d91caee482ed8f77682f278e319adcd5d9a4354bb5ce5c866"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a25829929c301ab3e00df3f4bb6c9061",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 52265,
            "upload_time": "2024-04-25T11:12:52",
            "upload_time_iso_8601": "2024-04-25T11:12:52.868731Z",
            "url": "https://files.pythonhosted.org/packages/47/53/a5c2723eb4ab5d93c46f8d86d39ae701c3bbe34ed9530a33342ab5835417/pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f43ef8dc4526b033a106bb5e1fa0bc41ad34d73f9c65043b381d890a6f89c33f",
                "md5": "9366f0603b6711089f43623ea51fa84b",
                "sha256": "470ebcc99186cb1deb3cad737c9cd63b826c923ba7390f5088135adac9633b77"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9366f0603b6711089f43623ea51fa84b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 87675,
            "upload_time": "2024-04-25T11:12:53",
            "upload_time_iso_8601": "2024-04-25T11:12:53.832340Z",
            "url": "https://files.pythonhosted.org/packages/f4/3e/f8dc4526b033a106bb5e1fa0bc41ad34d73f9c65043b381d890a6f89c33f/pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9349bb5c5d91d8c5def38da32784f99e08b3fb4fe148dfc92ffc25019ae8a2e2",
                "md5": "dbb13ff7a3a1529aa321db9e6bc4df8f",
                "sha256": "7ebd1aea5e2056d939b9e3cf91a57ab3a3dc4ca2bf3f9ad4c971664975ba6b49"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbb13ff7a3a1529aa321db9e6bc4df8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 82618,
            "upload_time": "2024-04-25T11:12:54",
            "upload_time_iso_8601": "2024-04-25T11:12:54.867163Z",
            "url": "https://files.pythonhosted.org/packages/93/49/bb5c5d91d8c5def38da32784f99e08b3fb4fe148dfc92ffc25019ae8a2e2/pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb409181049969cd99987dd4c2603d29fb10321d168f2a88f17e17a8f94fde5d",
                "md5": "231b58f4a57c76e5392d31207e7e6e5a",
                "sha256": "d4a73f7f85b9f10e35ea212d25736cc39cd32d01a34bb9f6bf33f5121bc4218c"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "231b58f4a57c76e5392d31207e7e6e5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 62244,
            "upload_time": "2024-04-25T11:12:56",
            "upload_time_iso_8601": "2024-04-25T11:12:56.453351Z",
            "url": "https://files.pythonhosted.org/packages/cb/40/9181049969cd99987dd4c2603d29fb10321d168f2a88f17e17a8f94fde5d/pybind11_numpy_example-0.0.12-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5db572ac3ec209602d236f6bffda8436c666e1d9b8ccfdff4a3ce3892b9f5894",
                "md5": "040a9345a6125a0e747280a78ed08ae6",
                "sha256": "8de0d7b95516ae07068f5a1f55778dea52f36d4d8d4259b04c30710607e6c041"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-0.0.12.tar.gz",
            "has_sig": false,
            "md5_digest": "040a9345a6125a0e747280a78ed08ae6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 86768,
            "upload_time": "2024-04-25T11:12:57",
            "upload_time_iso_8601": "2024-04-25T11:12:57.422889Z",
            "url": "https://files.pythonhosted.org/packages/5d/b5/72ac3ec209602d236f6bffda8436c666e1d9b8ccfdff4a3ce3892b9f5894/pybind11_numpy_example-0.0.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 11:12:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ssciwr",
    "github_project": "pybind11-numpy-example",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pybind11-numpy-example"
}
        
Elapsed time: 0.26917s