pybind11-numpy-example


Namepybind11-numpy-example JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryAn example of using numpy with pybind11
upload_time2024-09-09 14:36:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords pybind11 cibuildwheel c++ pypi numpy simple example wheel pypi conda-forge
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)
[![Conda Release](https://img.shields.io/conda/v/conda-forge/pybind11-numpy-example)](https://anaconda.org/conda-forge/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/) and publish this as a library on [PyPI](https://pypi.org/project/pybind11-numpy-example/) and [conda-forge](https://anaconda.org/conda-forge/pybind11-numpy-example).

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 a new release including binary wheels for all platforms to [PyPI](https://pypi.org/project/pybind11-numpy-example/).

The [conda-forge package](https://anaconda.org/conda-forge/pybind11-numpy-example) is generated from [this recipe](https://github.com/conda-forge/pybind11-numpy-example-feedstock/blob/main/recipe/meta.yaml), and automatically updates when a new version is uploaded to PyPI.

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.8",
    "maintainer_email": "Liam Keegan <liam@keegan.ch>",
    "keywords": "pybind11, cibuildwheel, c++, pypi, numpy, simple, example, wheel, pypi, conda-forge",
    "author": null,
    "author_email": "Liam Keegan <liam@keegan.ch>",
    "download_url": "https://files.pythonhosted.org/packages/73/7c/6e137f8607fcc4fd896001efc1764900dcec425057a69655c79366437424/pybind11_numpy_example-1.0.1.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[![Conda Release](https://img.shields.io/conda/v/conda-forge/pybind11-numpy-example)](https://anaconda.org/conda-forge/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/) and publish this as a library on [PyPI](https://pypi.org/project/pybind11-numpy-example/) and [conda-forge](https://anaconda.org/conda-forge/pybind11-numpy-example).\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 a new release including binary wheels for all platforms to [PyPI](https://pypi.org/project/pybind11-numpy-example/).\n\nThe [conda-forge package](https://anaconda.org/conda-forge/pybind11-numpy-example) is generated from [this recipe](https://github.com/conda-forge/pybind11-numpy-example-feedstock/blob/main/recipe/meta.yaml), and automatically updates when a new version is uploaded to PyPI.\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": "1.0.1",
    "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",
        " wheel",
        " pypi",
        " conda-forge"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7036a1e75bf30ccd09a38579e777c71b7c74cad848bc326e246b55c0dac7bfa",
                "md5": "fc7509892c30c2bfc1d9a486dd78d559",
                "sha256": "c4c32dd6304d89a74236a006441da636f91ab67faaf9f3a3b6684f444aff37c6"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc7509892c30c2bfc1d9a486dd78d559",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 51657,
            "upload_time": "2024-09-09T14:35:12",
            "upload_time_iso_8601": "2024-09-09T14:35:12.735177Z",
            "url": "https://files.pythonhosted.org/packages/d7/03/6a1e75bf30ccd09a38579e777c71b7c74cad848bc326e246b55c0dac7bfa/pybind11_numpy_example-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "983cdf91a97b9b19b56678c20ee229704e82e0977848731eb687f9bf12715eae",
                "md5": "df2094548c22f88b580a0b4009ad60b8",
                "sha256": "9d04623ffbfbb5cbef77b0a33a3793ffb7bb17d8250c0c29d609611ba439baa6"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "df2094548c22f88b580a0b4009ad60b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 48802,
            "upload_time": "2024-09-09T14:35:14",
            "upload_time_iso_8601": "2024-09-09T14:35:14.383519Z",
            "url": "https://files.pythonhosted.org/packages/98/3c/df91a97b9b19b56678c20ee229704e82e0977848731eb687f9bf12715eae/pybind11_numpy_example-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5edc30e9db083fa4b3dba9079349c41af0ba632e9c0b2477d00d5993ffa9808f",
                "md5": "dda87378eff689f466e200c29a651c91",
                "sha256": "21a97e153e188fbf8433a1f4ec5828bf921e7efb83162e83a700d1cf040cb5f5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dda87378eff689f466e200c29a651c91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 84463,
            "upload_time": "2024-09-09T14:35:15",
            "upload_time_iso_8601": "2024-09-09T14:35:15.503154Z",
            "url": "https://files.pythonhosted.org/packages/5e/dc/30e9db083fa4b3dba9079349c41af0ba632e9c0b2477d00d5993ffa9808f/pybind11_numpy_example-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df7056d5cc481e684eb615df60b84be6e4ae53e7128a3b799e547108fcc120e4",
                "md5": "779ae8597f4dbe5a93913d1c445ff28e",
                "sha256": "4f79f898016bba8d5d952334171b972f38ac0eb55fcf6da56d8c59699137748e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "779ae8597f4dbe5a93913d1c445ff28e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 78648,
            "upload_time": "2024-09-09T14:35:16",
            "upload_time_iso_8601": "2024-09-09T14:35:16.624089Z",
            "url": "https://files.pythonhosted.org/packages/df/70/56d5cc481e684eb615df60b84be6e4ae53e7128a3b799e547108fcc120e4/pybind11_numpy_example-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a211ab0bb4171c6392df96a9a5c960a6d0f70e58a27c1a823c99cd4f2d209f00",
                "md5": "b2ca8e3e98b4e83bac375933dd444faa",
                "sha256": "6feed76125f36263add5fbdb8c062e06162ddbeae24b1990043a4ef267dc9b6a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b2ca8e3e98b4e83bac375933dd444faa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1148538,
            "upload_time": "2024-09-09T14:35:18",
            "upload_time_iso_8601": "2024-09-09T14:35:18.824267Z",
            "url": "https://files.pythonhosted.org/packages/a2/11/ab0bb4171c6392df96a9a5c960a6d0f70e58a27c1a823c99cd4f2d209f00/pybind11_numpy_example-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5066759302411009dfd730c2705bde020ce9a1b087b092cfea5d8c86bc3724a0",
                "md5": "34bd3fab357fb41b117cc8e5a217d402",
                "sha256": "f7b974819ca0311ceed3b443dcb1693d22fcb93688b2079850b68c5c509d1218"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34bd3fab357fb41b117cc8e5a217d402",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1051607,
            "upload_time": "2024-09-09T14:35:20",
            "upload_time_iso_8601": "2024-09-09T14:35:20.201707Z",
            "url": "https://files.pythonhosted.org/packages/50/66/759302411009dfd730c2705bde020ce9a1b087b092cfea5d8c86bc3724a0/pybind11_numpy_example-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7c25e74b31d89d50645df33c724383ac5ff96890df4eda3399e001e95d566a4",
                "md5": "f69e2f743e3209a36bb05c8ff6865689",
                "sha256": "9840ff921c1f09ced98c9c9c71bf0ff743f18c177e66c590244551fbba9ffc85"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f69e2f743e3209a36bb05c8ff6865689",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 53088,
            "upload_time": "2024-09-09T14:35:21",
            "upload_time_iso_8601": "2024-09-09T14:35:21.920040Z",
            "url": "https://files.pythonhosted.org/packages/c7/c2/5e74b31d89d50645df33c724383ac5ff96890df4eda3399e001e95d566a4/pybind11_numpy_example-1.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8a625f7e094e63204029c5aa8fae543c32c062f1ee185e9ccfdc6ce5a105502",
                "md5": "3fd254d6e060744aec7766d9a3e79b79",
                "sha256": "5f15a501574d3243245407b1259f924f9a1c1fe73849ef8300d08918ec492dcf"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3fd254d6e060744aec7766d9a3e79b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 59594,
            "upload_time": "2024-09-09T14:35:23",
            "upload_time_iso_8601": "2024-09-09T14:35:23.157255Z",
            "url": "https://files.pythonhosted.org/packages/a8/a6/25f7e094e63204029c5aa8fae543c32c062f1ee185e9ccfdc6ce5a105502/pybind11_numpy_example-1.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a51d29fa58699acc642deffe91f2633de11c34ed71eacc8f409d8016492c559f",
                "md5": "5ef6fa3cb2224be4246d3e582b63dae7",
                "sha256": "239550d5a5e3fd6aa7e4f0899f0433aa8c83a4961a543b47cee28ee6eab7ce6c"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ef6fa3cb2224be4246d3e582b63dae7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 52996,
            "upload_time": "2024-09-09T14:35:25",
            "upload_time_iso_8601": "2024-09-09T14:35:25.461695Z",
            "url": "https://files.pythonhosted.org/packages/a5/1d/29fa58699acc642deffe91f2633de11c34ed71eacc8f409d8016492c559f/pybind11_numpy_example-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c730f488d0f92a9b978125fbe933253f5d910ff3191fe0a7b70d2cfafc070aee",
                "md5": "61d4823c9a05ba36713595abef4396ad",
                "sha256": "e3f2b3ce078e839ba29e377d2d577849a6dc5853288a80b9791b455b75bec056"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "61d4823c9a05ba36713595abef4396ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 50109,
            "upload_time": "2024-09-09T14:35:26",
            "upload_time_iso_8601": "2024-09-09T14:35:26.995901Z",
            "url": "https://files.pythonhosted.org/packages/c7/30/f488d0f92a9b978125fbe933253f5d910ff3191fe0a7b70d2cfafc070aee/pybind11_numpy_example-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67f1cf6e2aff943b9262b3ff5bdfc044ca38af7e10c8636d121fecc43471450e",
                "md5": "8e3b9dcd1b4929b0e030f66616c3ff88",
                "sha256": "133c9ada63ed17c54424c4ee85346763fc9ea64e5d977d74bb7a070125e7a5b9"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8e3b9dcd1b4929b0e030f66616c3ff88",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 85878,
            "upload_time": "2024-09-09T14:35:28",
            "upload_time_iso_8601": "2024-09-09T14:35:28.669160Z",
            "url": "https://files.pythonhosted.org/packages/67/f1/cf6e2aff943b9262b3ff5bdfc044ca38af7e10c8636d121fecc43471450e/pybind11_numpy_example-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5902e91c227880367d16463d10f8577c2b439674db12c5c3694fc2902dfaa570",
                "md5": "f29446a78d56b43a06e51553ad8dfcb2",
                "sha256": "4dc547966ea84572420095a87d7f36bed106f8f86e2f27777004ff6bdf65b093"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f29446a78d56b43a06e51553ad8dfcb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 80383,
            "upload_time": "2024-09-09T14:35:30",
            "upload_time_iso_8601": "2024-09-09T14:35:30.036988Z",
            "url": "https://files.pythonhosted.org/packages/59/02/e91c227880367d16463d10f8577c2b439674db12c5c3694fc2902dfaa570/pybind11_numpy_example-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9806f25833ae80b203af681f6e4190b71b8c368ae1652ff06296c0226193a284",
                "md5": "d30c29fe0aab121200e873e10dc41395",
                "sha256": "2c54d9aeb9d81a3961be99f7c50b4c2f3878ebea6ff926118247c75d4c339adb"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d30c29fe0aab121200e873e10dc41395",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1149837,
            "upload_time": "2024-09-09T14:35:31",
            "upload_time_iso_8601": "2024-09-09T14:35:31.660789Z",
            "url": "https://files.pythonhosted.org/packages/98/06/f25833ae80b203af681f6e4190b71b8c368ae1652ff06296c0226193a284/pybind11_numpy_example-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84d438c77691f129a0bf0d1f56d9b21c6d54d46fe78e7576d72ea6de9fb57d9c",
                "md5": "119a6c7f2016850f95c4b60e42938794",
                "sha256": "ac3fbbffa8671a324dfdf4fc2c27f94e1482c10c61014748f1c1df1911e5c0c2"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "119a6c7f2016850f95c4b60e42938794",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1053146,
            "upload_time": "2024-09-09T14:35:33",
            "upload_time_iso_8601": "2024-09-09T14:35:33.256408Z",
            "url": "https://files.pythonhosted.org/packages/84/d4/38c77691f129a0bf0d1f56d9b21c6d54d46fe78e7576d72ea6de9fb57d9c/pybind11_numpy_example-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e23649feaad8e1a1b25a6c91167d351f1fb57ed866ebc769786c2f9785977333",
                "md5": "d49f8a976465e9714e8d54eec3c80812",
                "sha256": "c61d389e820c05cdc1136506fbc1c757163f97456f5ea6cbedeb07e4e83232bc"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d49f8a976465e9714e8d54eec3c80812",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 54003,
            "upload_time": "2024-09-09T14:35:34",
            "upload_time_iso_8601": "2024-09-09T14:35:34.328396Z",
            "url": "https://files.pythonhosted.org/packages/e2/36/49feaad8e1a1b25a6c91167d351f1fb57ed866ebc769786c2f9785977333/pybind11_numpy_example-1.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78ec05dc82e5f0114277d7fbb90a25899d86556967c9154d3bf4ece6651c7fe8",
                "md5": "e1b78fa8d73025de68a90a1df4b67bc2",
                "sha256": "2cd0fae6bf291c8d10f8ea9bbc2e1ce4cc24b13988c790d0aa82e99058fe3bdd"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e1b78fa8d73025de68a90a1df4b67bc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 60649,
            "upload_time": "2024-09-09T14:35:35",
            "upload_time_iso_8601": "2024-09-09T14:35:35.715432Z",
            "url": "https://files.pythonhosted.org/packages/78/ec/05dc82e5f0114277d7fbb90a25899d86556967c9154d3bf4ece6651c7fe8/pybind11_numpy_example-1.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1573da5e886845497259cb352595d3ce7da43844bb7f6e73a314efcb2de50aa",
                "md5": "0e981f069476f4814902b7069f8c5977",
                "sha256": "ff7ee0ef1eb07c5037f88d4134071b9aff644b92ac24404c812ed4bcdd0f92c2"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e981f069476f4814902b7069f8c5977",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 52272,
            "upload_time": "2024-09-09T14:35:36",
            "upload_time_iso_8601": "2024-09-09T14:35:36.688748Z",
            "url": "https://files.pythonhosted.org/packages/a1/57/3da5e886845497259cb352595d3ce7da43844bb7f6e73a314efcb2de50aa/pybind11_numpy_example-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e279b543537cf111f38e8e16f895d801d69e69400c9f38b33f7bcb2cad707be",
                "md5": "f53cc933f09f5a1cfec7133912fdba7f",
                "sha256": "7ec7b3508fc96855edea9bc40ec8b4e42e8bb3a2e98b4ad9b05df0ca45b69a78"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f53cc933f09f5a1cfec7133912fdba7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 49405,
            "upload_time": "2024-09-09T14:35:37",
            "upload_time_iso_8601": "2024-09-09T14:35:37.743475Z",
            "url": "https://files.pythonhosted.org/packages/4e/27/9b543537cf111f38e8e16f895d801d69e69400c9f38b33f7bcb2cad707be/pybind11_numpy_example-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2693db53feaf9450bf78455cee0dfa3a3485280956da08b45db0148f04571d57",
                "md5": "c19576e7aee8909511e1e0bdade575ad",
                "sha256": "ddc5eef9b724209f021ca594d2e9ddf5eae6857524b39b44ebc43a552fc7d006"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c19576e7aee8909511e1e0bdade575ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 85505,
            "upload_time": "2024-09-09T14:35:38",
            "upload_time_iso_8601": "2024-09-09T14:35:38.814842Z",
            "url": "https://files.pythonhosted.org/packages/26/93/db53feaf9450bf78455cee0dfa3a3485280956da08b45db0148f04571d57/pybind11_numpy_example-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce1c492279597801d37403f5554c0c997b3f7b948f32ee53f2dedf8993fd1475",
                "md5": "7f833f472c325ba72e3108a962025555",
                "sha256": "9819f4897009f50c82bac2418a6cc4bb282f518b3bf6ce16e91ce0688954c588"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f833f472c325ba72e3108a962025555",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 79891,
            "upload_time": "2024-09-09T14:35:39",
            "upload_time_iso_8601": "2024-09-09T14:35:39.817708Z",
            "url": "https://files.pythonhosted.org/packages/ce/1c/492279597801d37403f5554c0c997b3f7b948f32ee53f2dedf8993fd1475/pybind11_numpy_example-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea15da5bfe9cf4f68c6526e2bd207d0b101729fd853588e27136fd923ff3f068",
                "md5": "4c61a88f6f2ed8118dc9dc16e04fbf3e",
                "sha256": "6d487dc4b2011ba9ac4cf98c12a041aa5887630e286894ff7c6347c66deccbbe"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4c61a88f6f2ed8118dc9dc16e04fbf3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1149393,
            "upload_time": "2024-09-09T14:35:41",
            "upload_time_iso_8601": "2024-09-09T14:35:41.165207Z",
            "url": "https://files.pythonhosted.org/packages/ea/15/da5bfe9cf4f68c6526e2bd207d0b101729fd853588e27136fd923ff3f068/pybind11_numpy_example-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caadaabd8d07aca08d1d4b7e29c179cc9357f4163c4bd06cb5a060425a735bf1",
                "md5": "bd9c4dde805170b6049e26fca71f0233",
                "sha256": "ae94841c2db4e31a2cb4aea71a35e9745f3329a956621b8ab43310250ffd0fa8"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd9c4dde805170b6049e26fca71f0233",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1053638,
            "upload_time": "2024-09-09T14:35:43",
            "upload_time_iso_8601": "2024-09-09T14:35:43.230842Z",
            "url": "https://files.pythonhosted.org/packages/ca/ad/aabd8d07aca08d1d4b7e29c179cc9357f4163c4bd06cb5a060425a735bf1/pybind11_numpy_example-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a385b62f677f315a7b758ba17da4f714ed189fdf79b3a4e757314d134114f3f7",
                "md5": "143d863fe9955ec872de2046c6097cad",
                "sha256": "bef2c2015cf01243230ffa16841410acd6c18d8a307a49c1554fd87d99fe787a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "143d863fe9955ec872de2046c6097cad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 54292,
            "upload_time": "2024-09-09T14:35:44",
            "upload_time_iso_8601": "2024-09-09T14:35:44.696822Z",
            "url": "https://files.pythonhosted.org/packages/a3/85/b62f677f315a7b758ba17da4f714ed189fdf79b3a4e757314d134114f3f7/pybind11_numpy_example-1.0.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d7eaa0ee541e368053fe5cca57c3972bb4b14fb1d659dcbe2816a9b99941b03",
                "md5": "edd4f9a7a2066ab5be9a264e36def426",
                "sha256": "307e75af2956d4f6a8ed57c6043850056d4c3804b6c4cb8321e265cd2c5639d2"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "edd4f9a7a2066ab5be9a264e36def426",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 60744,
            "upload_time": "2024-09-09T14:35:46",
            "upload_time_iso_8601": "2024-09-09T14:35:46.115539Z",
            "url": "https://files.pythonhosted.org/packages/3d/7e/aa0ee541e368053fe5cca57c3972bb4b14fb1d659dcbe2816a9b99941b03/pybind11_numpy_example-1.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81efc3ceaa0749771bb0c49d501a57462547eaa1641a5648d179809dfc10f8b0",
                "md5": "7148269dda5409ffab745f2ae6f1a5c3",
                "sha256": "cfd2d05cbb6a756b2849ca26cdec6256bafb39609b20e7679d8ee784d5f41e1b"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7148269dda5409ffab745f2ae6f1a5c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 52328,
            "upload_time": "2024-09-09T14:35:47",
            "upload_time_iso_8601": "2024-09-09T14:35:47.094193Z",
            "url": "https://files.pythonhosted.org/packages/81/ef/c3ceaa0749771bb0c49d501a57462547eaa1641a5648d179809dfc10f8b0/pybind11_numpy_example-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be759a7c252f741eb71fa840da68b7b4b6cbe96f4588c73ac52dda188c689869",
                "md5": "506236b9ac588061483b5517e8248347",
                "sha256": "85e46f5a03b14e3c26bd90c7569ae08ed2d7bb143ef9f045c72ed42befb49513"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "506236b9ac588061483b5517e8248347",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 49463,
            "upload_time": "2024-09-09T14:35:48",
            "upload_time_iso_8601": "2024-09-09T14:35:48.120370Z",
            "url": "https://files.pythonhosted.org/packages/be/75/9a7c252f741eb71fa840da68b7b4b6cbe96f4588c73ac52dda188c689869/pybind11_numpy_example-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d3c35b1e05822124bee9072a02bf36ee6c7d11d1156301aac59f00ef090966e",
                "md5": "67d38e580c0e7f25c5df931fdc52ad31",
                "sha256": "5a1462a7a3440e1b5a75e42a55383072550f0691e5ab34cede8d04a0eb17dace"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "67d38e580c0e7f25c5df931fdc52ad31",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 85491,
            "upload_time": "2024-09-09T14:35:49",
            "upload_time_iso_8601": "2024-09-09T14:35:49.114293Z",
            "url": "https://files.pythonhosted.org/packages/9d/3c/35b1e05822124bee9072a02bf36ee6c7d11d1156301aac59f00ef090966e/pybind11_numpy_example-1.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1de8d85314cfe4ccea78a8190b95ec60d71eabbd3db4684d1c9025cbe2ea692a",
                "md5": "19985873114afacf0109d0eb6308d788",
                "sha256": "bad7caf3de2bb6f54b0d098bdc8b475f00202228f9dbe8def546c7d865a19b34"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19985873114afacf0109d0eb6308d788",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 79816,
            "upload_time": "2024-09-09T14:35:50",
            "upload_time_iso_8601": "2024-09-09T14:35:50.528300Z",
            "url": "https://files.pythonhosted.org/packages/1d/e8/d85314cfe4ccea78a8190b95ec60d71eabbd3db4684d1c9025cbe2ea692a/pybind11_numpy_example-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17d7099613ef8f5673891e647f620ca866bc3f40725df6eb8b39286cb425aa95",
                "md5": "b90e01b466a7291071790a5781cc6c9a",
                "sha256": "2eb07e3a1d52f09ee5f27a1598cc3a328f4ec5b837b5e6b00f18583704e6f55d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b90e01b466a7291071790a5781cc6c9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1149264,
            "upload_time": "2024-09-09T14:35:52",
            "upload_time_iso_8601": "2024-09-09T14:35:52.070438Z",
            "url": "https://files.pythonhosted.org/packages/17/d7/099613ef8f5673891e647f620ca866bc3f40725df6eb8b39286cb425aa95/pybind11_numpy_example-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c274c70a80ae80c6989ce4184772c88151e4f6ba074fb1f6f1625966e09648f",
                "md5": "3386a5827f61e608383438fdb9bc60bf",
                "sha256": "bffffbbe35eb4c06a506e7528d3150fc30b5cc5452032483a28060f3a6062591"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3386a5827f61e608383438fdb9bc60bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1053573,
            "upload_time": "2024-09-09T14:35:53",
            "upload_time_iso_8601": "2024-09-09T14:35:53.501407Z",
            "url": "https://files.pythonhosted.org/packages/5c/27/4c70a80ae80c6989ce4184772c88151e4f6ba074fb1f6f1625966e09648f/pybind11_numpy_example-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "223fd6c4ddaa93e76153815fac5f67972b587d29376cd4a3f3aae5e9e602e764",
                "md5": "d75bd1a7904f5aa24d7f610075b7a30b",
                "sha256": "1bed310e25cfdbcc9b285f70b0b8df933e6bbef35ac9de0f00b99219732962d7"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "d75bd1a7904f5aa24d7f610075b7a30b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 54332,
            "upload_time": "2024-09-09T14:35:54",
            "upload_time_iso_8601": "2024-09-09T14:35:54.657644Z",
            "url": "https://files.pythonhosted.org/packages/22/3f/d6c4ddaa93e76153815fac5f67972b587d29376cd4a3f3aae5e9e602e764/pybind11_numpy_example-1.0.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "493ecb26dd2f70e3ec39a0309f9148dd031e66af5dd80f9f31492ac9190ba6e6",
                "md5": "7f85fcf8e5a475e715e6dd4cffce450e",
                "sha256": "e00e56b68a8ed1ba383268bc2453e02858f8a985243a43306efee052bbc0ec9d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7f85fcf8e5a475e715e6dd4cffce450e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 60742,
            "upload_time": "2024-09-09T14:35:55",
            "upload_time_iso_8601": "2024-09-09T14:35:55.708782Z",
            "url": "https://files.pythonhosted.org/packages/49/3e/cb26dd2f70e3ec39a0309f9148dd031e66af5dd80f9f31492ac9190ba6e6/pybind11_numpy_example-1.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa69fdaa51ad861bb5f6dc15be70cb09fdd447ba2c511c376ed6e666cc536bad",
                "md5": "f1bba5bfbb47168a3b45782d9556e67c",
                "sha256": "71d711eee1e64fecbdf9d2aa5c09718a75881d5e30b5c7729a3845e5ab6ef766"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1bba5bfbb47168a3b45782d9556e67c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 51506,
            "upload_time": "2024-09-09T14:35:56",
            "upload_time_iso_8601": "2024-09-09T14:35:56.847892Z",
            "url": "https://files.pythonhosted.org/packages/fa/69/fdaa51ad861bb5f6dc15be70cb09fdd447ba2c511c376ed6e666cc536bad/pybind11_numpy_example-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a2279947c04c1dd9bea54e8b4f4bc274322b1c3c36003eec2cada518c8ea029",
                "md5": "55a7bff4ce4430920e547dec29e58171",
                "sha256": "ebcb3a01e2a68a9e7e78049c8590cff5ef530a83917cf4f436666cd105cb2c18"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "55a7bff4ce4430920e547dec29e58171",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 48675,
            "upload_time": "2024-09-09T14:35:58",
            "upload_time_iso_8601": "2024-09-09T14:35:58.156681Z",
            "url": "https://files.pythonhosted.org/packages/8a/22/79947c04c1dd9bea54e8b4f4bc274322b1c3c36003eec2cada518c8ea029/pybind11_numpy_example-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9767827a602f51510d05380cabeb52106fd950f9dfe13ec9e1495af68f7a9a4",
                "md5": "c539f24a3d5a99c00029198914042842",
                "sha256": "9afca0a58c4b5d839c8fe94afa43293ea49e9c29b4ceb8718678dd728b46ea66"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c539f24a3d5a99c00029198914042842",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 84173,
            "upload_time": "2024-09-09T14:35:59",
            "upload_time_iso_8601": "2024-09-09T14:35:59.446978Z",
            "url": "https://files.pythonhosted.org/packages/f9/76/7827a602f51510d05380cabeb52106fd950f9dfe13ec9e1495af68f7a9a4/pybind11_numpy_example-1.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d67d598d522e2eb942035f201dc63505e08cb3a123202872e1d3426abd63b9fe",
                "md5": "f7684ec8d5e2882af2b0fe605d43458e",
                "sha256": "8898e3597b10cc0d9ef07d041f0fa2448fad656ed535dd35c1b4e966f1f47143"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7684ec8d5e2882af2b0fe605d43458e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 78543,
            "upload_time": "2024-09-09T14:36:00",
            "upload_time_iso_8601": "2024-09-09T14:36:00.496055Z",
            "url": "https://files.pythonhosted.org/packages/d6/7d/598d522e2eb942035f201dc63505e08cb3a123202872e1d3426abd63b9fe/pybind11_numpy_example-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f034360c121b8fba640669ceba00cfb073690426aa450cbd58b4b27823e9a09",
                "md5": "e71a52c6e764a0f508c06d44d56f1b3f",
                "sha256": "9a265bde0e29c9cc1250415706921b72571d38469b239bc2202f55df57cef85e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e71a52c6e764a0f508c06d44d56f1b3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1148538,
            "upload_time": "2024-09-09T14:36:01",
            "upload_time_iso_8601": "2024-09-09T14:36:01.927146Z",
            "url": "https://files.pythonhosted.org/packages/7f/03/4360c121b8fba640669ceba00cfb073690426aa450cbd58b4b27823e9a09/pybind11_numpy_example-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ab21f99efcab3b661614c59b1b91c762ff0f64b51bfdb0f1bbf5c6eec0a467f",
                "md5": "1ebeb8e7e06807da1fd62368437e237f",
                "sha256": "9fb6f6d5c40cfec1af5bdc39150b84e7f10bc95f4d82868d62b1bfe6a2ee3cb6"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ebeb8e7e06807da1fd62368437e237f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1052238,
            "upload_time": "2024-09-09T14:36:03",
            "upload_time_iso_8601": "2024-09-09T14:36:03.644545Z",
            "url": "https://files.pythonhosted.org/packages/0a/b2/1f99efcab3b661614c59b1b91c762ff0f64b51bfdb0f1bbf5c6eec0a467f/pybind11_numpy_example-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8127633182c6cba8a3ebfb238b3cdb40a8e9e8331b13c11d19c6b59e4403018",
                "md5": "995260d4b19b808aa7df044db9b193bf",
                "sha256": "82eefb7e923a06f34d66c7b52b17ab341e26bc2775b0f147267065aa1a2c8586"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "995260d4b19b808aa7df044db9b193bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 53051,
            "upload_time": "2024-09-09T14:36:04",
            "upload_time_iso_8601": "2024-09-09T14:36:04.847458Z",
            "url": "https://files.pythonhosted.org/packages/f8/12/7633182c6cba8a3ebfb238b3cdb40a8e9e8331b13c11d19c6b59e4403018/pybind11_numpy_example-1.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8d39adc30161f5f873cf276f447e088bdcb4071bb120aef5e53a766144078be",
                "md5": "21a075538f1e2bb08b6428972001983d",
                "sha256": "4215f46614087519ecac8f7a0f179133c0b9be96dfad23ccd42c33bd361090a0"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "21a075538f1e2bb08b6428972001983d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 59661,
            "upload_time": "2024-09-09T14:36:06",
            "upload_time_iso_8601": "2024-09-09T14:36:06.589388Z",
            "url": "https://files.pythonhosted.org/packages/b8/d3/9adc30161f5f873cf276f447e088bdcb4071bb120aef5e53a766144078be/pybind11_numpy_example-1.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d347fa812b4919207f7317926074e9f829e96594871629fc040718b71b3edc4c",
                "md5": "f618e9544c99795ffa4b4482fe15ad31",
                "sha256": "f3258c114c76bb5cda8087fb218d7b666381c6df6012299226cbb0d60ae67afb"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f618e9544c99795ffa4b4482fe15ad31",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 51743,
            "upload_time": "2024-09-09T14:36:07",
            "upload_time_iso_8601": "2024-09-09T14:36:07.900612Z",
            "url": "https://files.pythonhosted.org/packages/d3/47/fa812b4919207f7317926074e9f829e96594871629fc040718b71b3edc4c/pybind11_numpy_example-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "046b3cf8d96c952c889700bf5c8ed50203fddb46f72be1b9475e56d2e1c2e222",
                "md5": "db9bdd937aa0d18f82bf7a5351f76036",
                "sha256": "04b8cae7706d518067f440e7a214111fab9e5a5373beacc0bf581dbf807903b5"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "db9bdd937aa0d18f82bf7a5351f76036",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 48884,
            "upload_time": "2024-09-09T14:36:08",
            "upload_time_iso_8601": "2024-09-09T14:36:08.966829Z",
            "url": "https://files.pythonhosted.org/packages/04/6b/3cf8d96c952c889700bf5c8ed50203fddb46f72be1b9475e56d2e1c2e222/pybind11_numpy_example-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdab34f981e3f2c01914b229573ebf6b7fc7595b6a2af05a80230d7d4209d47a",
                "md5": "a86a4e5549ae0ca82f87393493d9f359",
                "sha256": "fb0c5ed52cdc270c99527fedb402ae9930870ed55471782bf85d21b13f772983"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a86a4e5549ae0ca82f87393493d9f359",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 84469,
            "upload_time": "2024-09-09T14:36:10",
            "upload_time_iso_8601": "2024-09-09T14:36:10.443293Z",
            "url": "https://files.pythonhosted.org/packages/bd/ab/34f981e3f2c01914b229573ebf6b7fc7595b6a2af05a80230d7d4209d47a/pybind11_numpy_example-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91df55d2d482322bd07ac10505cad1162164da0de5a314d2d658d24c9d52f68b",
                "md5": "a41bec77545842885b725211aee3d536",
                "sha256": "6dbf81855f24cce9052e0df0571ee19922932301930d2fc171440ca26a2a8be8"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a41bec77545842885b725211aee3d536",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 78581,
            "upload_time": "2024-09-09T14:36:11",
            "upload_time_iso_8601": "2024-09-09T14:36:11.485820Z",
            "url": "https://files.pythonhosted.org/packages/91/df/55d2d482322bd07ac10505cad1162164da0de5a314d2d658d24c9d52f68b/pybind11_numpy_example-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7197feca50b79cbac3a0724ecc485b5a4c0ee8d33f68fd64abe5049f99295e7a",
                "md5": "1b7e5c93e31c851e60608ebc6c5cab69",
                "sha256": "fd493dd7b20a6a219d5b24acc0a655d2e5f3ca292b9e22d2abc75dc6b857c727"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1b7e5c93e31c851e60608ebc6c5cab69",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1148708,
            "upload_time": "2024-09-09T14:36:12",
            "upload_time_iso_8601": "2024-09-09T14:36:12.763297Z",
            "url": "https://files.pythonhosted.org/packages/71/97/feca50b79cbac3a0724ecc485b5a4c0ee8d33f68fd64abe5049f99295e7a/pybind11_numpy_example-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5b2c5cb13ce200800c38b1b9be0c1c1e02253722322be2e3c481005c6cd5dc1",
                "md5": "99d6d8bf912b78784568e8f6cd1838de",
                "sha256": "9200d1800490ff5583f18740ffcf705b295dd835e2bb3ea0e9400b33bf8eb633"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99d6d8bf912b78784568e8f6cd1838de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1052500,
            "upload_time": "2024-09-09T14:36:14",
            "upload_time_iso_8601": "2024-09-09T14:36:14.178161Z",
            "url": "https://files.pythonhosted.org/packages/b5/b2/c5cb13ce200800c38b1b9be0c1c1e02253722322be2e3c481005c6cd5dc1/pybind11_numpy_example-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ece42c128d4ff8ffd0bf61df078bd324bb998a4113bd0fd55b9efca0aafa430d",
                "md5": "fca475790c9d843afa4340af3532f462",
                "sha256": "c5cc8bdb339f144758ae6af345259731098b720341f7af8229fa132b926f3bb3"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "fca475790c9d843afa4340af3532f462",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 53262,
            "upload_time": "2024-09-09T14:36:15",
            "upload_time_iso_8601": "2024-09-09T14:36:15.396058Z",
            "url": "https://files.pythonhosted.org/packages/ec/e4/2c128d4ff8ffd0bf61df078bd324bb998a4113bd0fd55b9efca0aafa430d/pybind11_numpy_example-1.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90a85ebaf257f44e49d6bf3b5386c6b9b10f4d8c5d95574d9d80719e7a88dc14",
                "md5": "8d201a8d7929bb747b716c033861de2e",
                "sha256": "1e4c31bce5cab9e8c8647bb10ac600f1dae63312490c9ac3e48950b49296519e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d201a8d7929bb747b716c033861de2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 59373,
            "upload_time": "2024-09-09T14:36:16",
            "upload_time_iso_8601": "2024-09-09T14:36:16.427340Z",
            "url": "https://files.pythonhosted.org/packages/90/a8/5ebaf257f44e49d6bf3b5386c6b9b10f4d8c5d95574d9d80719e7a88dc14/pybind11_numpy_example-1.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9727322bbb51ccab150bfdaf47e2a5a21f55509c2a2204b2e8189cbaba46446",
                "md5": "a38440a8aa4d1ff47d2b6d3fc1883df4",
                "sha256": "2ce6782e2988ebd10a1730ceeff2ef90c22c9b54bbe474fab029c815c16fa3e7"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a38440a8aa4d1ff47d2b6d3fc1883df4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 52229,
            "upload_time": "2024-09-09T14:36:17",
            "upload_time_iso_8601": "2024-09-09T14:36:17.536831Z",
            "url": "https://files.pythonhosted.org/packages/c9/72/7322bbb51ccab150bfdaf47e2a5a21f55509c2a2204b2e8189cbaba46446/pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc80b8c805a51524dfa110aca817365294d745076b6e50a387129e2aa233419d",
                "md5": "24a320104d8c06ff3e1edf253fe43571",
                "sha256": "d5d8c1ee160991529ce0ad52862326bcc3a38865c29116a13f7052c244bf6e83"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "24a320104d8c06ff3e1edf253fe43571",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 48976,
            "upload_time": "2024-09-09T14:36:18",
            "upload_time_iso_8601": "2024-09-09T14:36:18.807335Z",
            "url": "https://files.pythonhosted.org/packages/cc/80/b8c805a51524dfa110aca817365294d745076b6e50a387129e2aa233419d/pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d43125a788dae54d33d6a4cfd0cca01f98082d2411fbeab1b8c1e9411ad47f19",
                "md5": "0745e00aada4965802f5f0461dc31eb3",
                "sha256": "e8ca10b08f985ec62fbe207572266df66642951dd7f56950da91552cdf0bf86d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0745e00aada4965802f5f0461dc31eb3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 84148,
            "upload_time": "2024-09-09T14:36:19",
            "upload_time_iso_8601": "2024-09-09T14:36:19.870094Z",
            "url": "https://files.pythonhosted.org/packages/d4/31/25a788dae54d33d6a4cfd0cca01f98082d2411fbeab1b8c1e9411ad47f19/pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16ff7e3de856b98a8d2b0d253fcc4757eef90f55989a8ef616bc490231ad90f0",
                "md5": "ad1d5a465a58c60dabef7ee495786acb",
                "sha256": "a62d7ee88a86a5ee7afd61b432f070d9114260fa62b3874ebf86fcc8392ff9dc"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad1d5a465a58c60dabef7ee495786acb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 78833,
            "upload_time": "2024-09-09T14:36:20",
            "upload_time_iso_8601": "2024-09-09T14:36:20.933624Z",
            "url": "https://files.pythonhosted.org/packages/16/ff/7e3de856b98a8d2b0d253fcc4757eef90f55989a8ef616bc490231ad90f0/pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f25700818b5058856b2ecedcf3d63b1f5638b0eccbd24024a414fda90457ee6",
                "md5": "f725a46d53a6d67f0448689b60264ba8",
                "sha256": "88c6301168a5d2cb56ca80af0edbd50b199340450b450acb5b3f397a6b418eb6"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f725a46d53a6d67f0448689b60264ba8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 59765,
            "upload_time": "2024-09-09T14:36:21",
            "upload_time_iso_8601": "2024-09-09T14:36:21.946438Z",
            "url": "https://files.pythonhosted.org/packages/3f/25/700818b5058856b2ecedcf3d63b1f5638b0eccbd24024a414fda90457ee6/pybind11_numpy_example-1.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cebeb50086c48e9762cf8868c637040e77b06e31c830f879df27ef804194fac",
                "md5": "73796ba411c4f2880b73ed8cc3cb0b8f",
                "sha256": "e4957decdeef6ba714e7dfe12fb506f662a987f1a49f4628e52b3e11d5ebf474"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73796ba411c4f2880b73ed8cc3cb0b8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 51930,
            "upload_time": "2024-09-09T14:36:23",
            "upload_time_iso_8601": "2024-09-09T14:36:23.048085Z",
            "url": "https://files.pythonhosted.org/packages/4c/eb/eb50086c48e9762cf8868c637040e77b06e31c830f879df27ef804194fac/pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3f547eced9f6e54ba482e633e27cfe1c8207f68c4add146738445be0390f277",
                "md5": "55aa05780d1afcc3a57088b2eefc2a11",
                "sha256": "c94db486088a3930ae6dc7b97e582cc5de67c7bf6688b536e8e003d0f3468add"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "55aa05780d1afcc3a57088b2eefc2a11",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 48923,
            "upload_time": "2024-09-09T14:36:24",
            "upload_time_iso_8601": "2024-09-09T14:36:24.095998Z",
            "url": "https://files.pythonhosted.org/packages/e3/f5/47eced9f6e54ba482e633e27cfe1c8207f68c4add146738445be0390f277/pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f938d27048b30262ad68f7a432e1f565963c188383bdd804f23bdaa5acf14364",
                "md5": "87b7921cd849162281dd4256dacde170",
                "sha256": "ddd833276de6b56b65999e0f64b9779546b3cce8fb6c32ad079919e293caf8ee"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "87b7921cd849162281dd4256dacde170",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 83860,
            "upload_time": "2024-09-09T14:36:25",
            "upload_time_iso_8601": "2024-09-09T14:36:25.819469Z",
            "url": "https://files.pythonhosted.org/packages/f9/38/d27048b30262ad68f7a432e1f565963c188383bdd804f23bdaa5acf14364/pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a55aa4dfa828e86dcfa089f6b5940f42aa95abc502655a1b191441436835506c",
                "md5": "598cecce46932a0caee97ec3c0c816e2",
                "sha256": "babbf46797d7996b73237693e4878af1bae6f44cd9eb0c9498e39c44e98b575e"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "598cecce46932a0caee97ec3c0c816e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 78673,
            "upload_time": "2024-09-09T14:36:26",
            "upload_time_iso_8601": "2024-09-09T14:36:26.877093Z",
            "url": "https://files.pythonhosted.org/packages/a5/5a/a4dfa828e86dcfa089f6b5940f42aa95abc502655a1b191441436835506c/pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c8da64eebcdcc6f3b07e757fedf83f90c07aa321cd82be29e9b21d818c427ef",
                "md5": "7e898fa991e75032e14b26fbd3cf9386",
                "sha256": "6e802e54425aa7fd8b7829032851dbe3755daf015cbb90bf2cbf0e5803b88bde"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e898fa991e75032e14b26fbd3cf9386",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 59878,
            "upload_time": "2024-09-09T14:36:29",
            "upload_time_iso_8601": "2024-09-09T14:36:29.215822Z",
            "url": "https://files.pythonhosted.org/packages/4c/8d/a64eebcdcc6f3b07e757fedf83f90c07aa321cd82be29e9b21d818c427ef/pybind11_numpy_example-1.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "587a07d78f8c50953678dcd4679e84d573dffd50c572536ec0d7b5dec2256be2",
                "md5": "4f2a92553571995cc1a62a755bb47f26",
                "sha256": "3cbe98d55e23e36a3c497c6baaeee1e7f3e6c7c95140090cfc50de4eae441e5a"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f2a92553571995cc1a62a755bb47f26",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 52179,
            "upload_time": "2024-09-09T14:36:30",
            "upload_time_iso_8601": "2024-09-09T14:36:30.559246Z",
            "url": "https://files.pythonhosted.org/packages/58/7a/07d78f8c50953678dcd4679e84d573dffd50c572536ec0d7b5dec2256be2/pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd4252f13cef13c183b31c570c6539ba8f5356309cb685b424fc9198f892edb8",
                "md5": "8b5b5f4f7a660f81f2f1ad68893427fe",
                "sha256": "7800eee6ba6e2b56cb087b54e63cd66239f417b5360d9e2ecc18abb029077f65"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8b5b5f4f7a660f81f2f1ad68893427fe",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 48957,
            "upload_time": "2024-09-09T14:36:31",
            "upload_time_iso_8601": "2024-09-09T14:36:31.656446Z",
            "url": "https://files.pythonhosted.org/packages/bd/42/52f13cef13c183b31c570c6539ba8f5356309cb685b424fc9198f892edb8/pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66be1e4a314c50e2c48d0d20c7198b239941007b551293293fa0dcfd823a3760",
                "md5": "24eb0f44033f60296d7815c7e8fa1c9c",
                "sha256": "61c0a170c2ad424f636e8b64a703f89245cdf9e06d11eb9ff959bec55f0ea917"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "24eb0f44033f60296d7815c7e8fa1c9c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 83853,
            "upload_time": "2024-09-09T14:36:32",
            "upload_time_iso_8601": "2024-09-09T14:36:32.770580Z",
            "url": "https://files.pythonhosted.org/packages/66/be/1e4a314c50e2c48d0d20c7198b239941007b551293293fa0dcfd823a3760/pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b78f26b8fe4538151dd77611b142bad120c2d12479c97493e2e62b2781804a71",
                "md5": "dd739e002c90f877520b9351b151420a",
                "sha256": "153633e531669d01c4552ab26cbae54bb5b20767c72e30f2bc57efc37abce6ac"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd739e002c90f877520b9351b151420a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 78727,
            "upload_time": "2024-09-09T14:36:34",
            "upload_time_iso_8601": "2024-09-09T14:36:34.224067Z",
            "url": "https://files.pythonhosted.org/packages/b7/8f/26b8fe4538151dd77611b142bad120c2d12479c97493e2e62b2781804a71/pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "967414bc5c18ee16bb4d82b221d437e8eb303ea0335f0e6288c6823f2f981200",
                "md5": "acdd7cad3483035ac8ab535fe82bd2a9",
                "sha256": "f23bf2e790a20e2c9b62c192fca45138c3d43ecde08140765d195b9fc3a7aed0"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "acdd7cad3483035ac8ab535fe82bd2a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 59884,
            "upload_time": "2024-09-09T14:36:35",
            "upload_time_iso_8601": "2024-09-09T14:36:35.894350Z",
            "url": "https://files.pythonhosted.org/packages/96/74/14bc5c18ee16bb4d82b221d437e8eb303ea0335f0e6288c6823f2f981200/pybind11_numpy_example-1.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "737c6e137f8607fcc4fd896001efc1764900dcec425057a69655c79366437424",
                "md5": "6cffc551127f7dec482ac33212fe62e3",
                "sha256": "7cd0ec6b8dbbcba29f5df14cc1c8c80d7cd8268b893298059559bd19508acf0d"
            },
            "downloads": -1,
            "filename": "pybind11_numpy_example-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6cffc551127f7dec482ac33212fe62e3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 87153,
            "upload_time": "2024-09-09T14:36:37",
            "upload_time_iso_8601": "2024-09-09T14:36:37.411042Z",
            "url": "https://files.pythonhosted.org/packages/73/7c/6e137f8607fcc4fd896001efc1764900dcec425057a69655c79366437424/pybind11_numpy_example-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-09 14:36:37",
    "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: 1.27415s