hidapi


Namehidapi JSON
Version 0.14.0.post4 PyPI version JSON
download
home_pagehttps://github.com/trezor/cython-hidapi
SummaryA Cython interface to the hidapi from https://github.com/libusb/hidapi
upload_time2024-11-19 16:38:10
maintainerPavol Rusnak
docs_urlNone
authorPavol Rusnak
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            cython-hidapi
=============

.. contents::

Description
-----------

A Cython interface to `HIDAPI <https://github.com/libusb/hidapi>`_ library.

This has been tested with:

* `TREZOR <https://trezor.io/>`_ Hardware Wallet
* the PIC18F4550 on the development board from CCS with their example program
* the Fine Offset WH3081 Weather Station

It works on Linux, Windows and macOS.

Software Dependencies
---------------------

* `Python <http://python.org>`_
* `Cython <http://cython.org>`_
* hidraw or libusb+libudev on Linux

License
-------

cython-hidapi may be used by one of three licenses as outlined in LICENSE.txt

Install
-------

::

    $ sudo apt-get install python-dev libusb-1.0-0-dev libudev-dev
    $ sudo pip install --upgrade setuptools
    $ sudo pip install hidapi

For other download options visit the `PyPi page <https://pypi.python.org/pypi/hidapi/>`_.

Build from source
-----------------

1. Download cython-hidapi archive::

    $ git clone --recursive https://github.com/trezor/cython-hidapi.git
    $ cd cython-hidapi

2. Build cython-hidapi extension module::

    $ python setup.py build

   On Linux, the hidraw API is now used by default, and the libusb API is not
   included. That is, --without-libusb is now the default behavior.
   To force the use of the libusb API instead, use the --with-libusb option::

    $ python setup.py build --with-libusb

   Or you can also use the environment variable::

    $ export HIDAPI_WITH_LIBUSB=1
    $ python setup.py build

3. Install cython-hidapi module into your Python distribution::

    $ sudo python setup.py install

   **Alternatively**, you can run pip directly, which will call the necessary build and install commands::

    $ pip install -e .

4. Test install::

    $ python
    >>> import hid
    >>>

5. Try example script::

    $ python try.py

Udev rules
----------

For correct functionality under Linux, you need to create a rule file similar
to `this one <https://raw.githubusercontent.com/trezor/trezor-common/master/udev/51-trezor.rules>`_
in your udev rules directory.

Also you might need to call ``udevadm control --reload-rules`` to reload the rules.

Documentation
-------------

Documentation can be built using Sphinx::

   $ cd docs && make html

The HTML output will be in ``docs/_build/html``.

The documentation is extracted from the code using ``autodoc``.

Note that the build output is used. So rebuilt the package before generating documentation.

Built documentation is also deployed to: `https://trezor.github.io/cython-hidapi/ <https://trezor.github.io/cython-hidapi/>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/trezor/cython-hidapi",
    "name": "hidapi",
    "maintainer": "Pavol Rusnak",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "pavol@rusnak.io",
    "keywords": null,
    "author": "Pavol Rusnak",
    "author_email": "pavol@rusnak.io",
    "download_url": "https://files.pythonhosted.org/packages/47/72/21ccaaca6ffb06f544afd16191425025d831c2a6d318635e9c8854070f2d/hidapi-0.14.0.post4.tar.gz",
    "platform": null,
    "description": "cython-hidapi\n=============\n\n.. contents::\n\nDescription\n-----------\n\nA Cython interface to `HIDAPI <https://github.com/libusb/hidapi>`_ library.\n\nThis has been tested with:\n\n* `TREZOR <https://trezor.io/>`_ Hardware Wallet\n* the PIC18F4550 on the development board from CCS with their example program\n* the Fine Offset WH3081 Weather Station\n\nIt works on Linux, Windows and macOS.\n\nSoftware Dependencies\n---------------------\n\n* `Python <http://python.org>`_\n* `Cython <http://cython.org>`_\n* hidraw or libusb+libudev on Linux\n\nLicense\n-------\n\ncython-hidapi may be used by one of three licenses as outlined in LICENSE.txt\n\nInstall\n-------\n\n::\n\n    $ sudo apt-get install python-dev libusb-1.0-0-dev libudev-dev\n    $ sudo pip install --upgrade setuptools\n    $ sudo pip install hidapi\n\nFor other download options visit the `PyPi page <https://pypi.python.org/pypi/hidapi/>`_.\n\nBuild from source\n-----------------\n\n1. Download cython-hidapi archive::\n\n    $ git clone --recursive https://github.com/trezor/cython-hidapi.git\n    $ cd cython-hidapi\n\n2. Build cython-hidapi extension module::\n\n    $ python setup.py build\n\n   On Linux, the hidraw API is now used by default, and the libusb API is not\n   included. That is, --without-libusb is now the default behavior.\n   To force the use of the libusb API instead, use the --with-libusb option::\n\n    $ python setup.py build --with-libusb\n\n   Or you can also use the environment variable::\n\n    $ export HIDAPI_WITH_LIBUSB=1\n    $ python setup.py build\n\n3. Install cython-hidapi module into your Python distribution::\n\n    $ sudo python setup.py install\n\n   **Alternatively**, you can run pip directly, which will call the necessary build and install commands::\n\n    $ pip install -e .\n\n4. Test install::\n\n    $ python\n    >>> import hid\n    >>>\n\n5. Try example script::\n\n    $ python try.py\n\nUdev rules\n----------\n\nFor correct functionality under Linux, you need to create a rule file similar\nto `this one <https://raw.githubusercontent.com/trezor/trezor-common/master/udev/51-trezor.rules>`_\nin your udev rules directory.\n\nAlso you might need to call ``udevadm control --reload-rules`` to reload the rules.\n\nDocumentation\n-------------\n\nDocumentation can be built using Sphinx::\n\n   $ cd docs && make html\n\nThe HTML output will be in ``docs/_build/html``.\n\nThe documentation is extracted from the code using ``autodoc``.\n\nNote that the build output is used. So rebuilt the package before generating documentation.\n\nBuilt documentation is also deployed to: `https://trezor.github.io/cython-hidapi/ <https://trezor.github.io/cython-hidapi/>`_.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Cython interface to the hidapi from https://github.com/libusb/hidapi",
    "version": "0.14.0.post4",
    "project_urls": {
        "Homepage": "https://github.com/trezor/cython-hidapi"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d830fb21c7ec91045c9bc4b4e8c6aeb99d59c040380618e50f0142ffde459490",
                "md5": "b47629f10a441d9b4f50efe623205a51",
                "sha256": "01747e681d138ec614321ef6f069e5be3743fa210112e529a34d3e99635e4ac0"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b47629f10a441d9b4f50efe623205a51",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 70384,
            "upload_time": "2024-11-19T16:35:51",
            "upload_time_iso_8601": "2024-11-19T16:35:51.274427Z",
            "url": "https://files.pythonhosted.org/packages/d8/30/fb21c7ec91045c9bc4b4e8c6aeb99d59c040380618e50f0142ffde459490/hidapi-0.14.0.post4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acc48bd7e052d5bcca3c535e341e4154237ec452ef943bb4373b01ec9b29ec71",
                "md5": "fbc499425076b1335f665b52d2349f28",
                "sha256": "8e20d0a1298a4bd342d7d927d928f1a5a29e5fc9dbf9a79e95dc6e2d386d5070"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbc499425076b1335f665b52d2349f28",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 68114,
            "upload_time": "2024-11-19T16:35:53",
            "upload_time_iso_8601": "2024-11-19T16:35:53.435111Z",
            "url": "https://files.pythonhosted.org/packages/ac/c4/8bd7e052d5bcca3c535e341e4154237ec452ef943bb4373b01ec9b29ec71/hidapi-0.14.0.post4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70adc882d4c37173590010577322802b9cbbe968080e36e6e619b1b895270d10",
                "md5": "6d24a5d68ae68718da0de3b211ebc747",
                "sha256": "f0cc21e82e95cb92ef951df8eb8acf5626ac8fa14ab5292abdab1b2349970445"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d24a5d68ae68718da0de3b211ebc747",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1026316,
            "upload_time": "2024-11-19T16:35:55",
            "upload_time_iso_8601": "2024-11-19T16:35:55.596830Z",
            "url": "https://files.pythonhosted.org/packages/70/ad/c882d4c37173590010577322802b9cbbe968080e36e6e619b1b895270d10/hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d8eb39cdece9b5bc75599646cd997fdc5cbe0ed7582729b62f41e543157f907",
                "md5": "d9836bd0c11c478ee31e85e20351b030",
                "sha256": "cb1a2b5da0dcfab6837281342d1785cc373484bd3f27bd06fd2211d88075a7bd"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d9836bd0c11c478ee31e85e20351b030",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1026477,
            "upload_time": "2024-11-19T16:35:58",
            "upload_time_iso_8601": "2024-11-19T16:35:58.158840Z",
            "url": "https://files.pythonhosted.org/packages/2d/8e/b39cdece9b5bc75599646cd997fdc5cbe0ed7582729b62f41e543157f907/hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87b9aa613d155250fbfe1d5500f724014b910747424e7bd3fa039858addc7e0d",
                "md5": "c4fdf9ff66f37623ff89446c780b8a2e",
                "sha256": "e11d475429a1bc943ceac4ad8da4be63b240e00da5e10863fc3cbd9a35fdb51c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4fdf9ff66f37623ff89446c780b8a2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1018595,
            "upload_time": "2024-11-19T16:36:00",
            "upload_time_iso_8601": "2024-11-19T16:36:00.467807Z",
            "url": "https://files.pythonhosted.org/packages/87/b9/aa613d155250fbfe1d5500f724014b910747424e7bd3fa039858addc7e0d/hidapi-0.14.0.post4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbd43a07df2acbbadd133d5c4064d296c2ac1703b72cbaa28c78685fd93ea18a",
                "md5": "09a5a2b285ebd3a0e154d4be9c06a205",
                "sha256": "2d1c102f754b2085b270e7c29cb8a148ffb05e10325c373d05ac16e2cbce131c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09a5a2b285ebd3a0e154d4be9c06a205",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 634502,
            "upload_time": "2024-11-19T16:36:02",
            "upload_time_iso_8601": "2024-11-19T16:36:02.259935Z",
            "url": "https://files.pythonhosted.org/packages/db/d4/3a07df2acbbadd133d5c4064d296c2ac1703b72cbaa28c78685fd93ea18a/hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a23c8b55b71ca3306fa83735ef04129e6a68648c736f29280ef0ab6b8b34f0a",
                "md5": "3cdde216b743ba8921cd9ffc1198d4cf",
                "sha256": "7d099c259aadcab2bc3f4fb5a1db579ec886c2cade7533016f62778235150746"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3cdde216b743ba8921cd9ffc1198d4cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 623671,
            "upload_time": "2024-11-19T16:36:04",
            "upload_time_iso_8601": "2024-11-19T16:36:04.774240Z",
            "url": "https://files.pythonhosted.org/packages/8a/23/c8b55b71ca3306fa83735ef04129e6a68648c736f29280ef0ab6b8b34f0a/hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f47e88e409dec1f9539dfdad7a9bc95c3dfe781176b3eeaba56006cd90d19bf",
                "md5": "d9de8839a128ae1337908074f9c3d129",
                "sha256": "80fa94668d21b12daf62b034f647d71236470a8ba9a7580e220c47e9c119d932"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9de8839a128ae1337908074f9c3d129",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 647046,
            "upload_time": "2024-11-19T16:36:06",
            "upload_time_iso_8601": "2024-11-19T16:36:06.910003Z",
            "url": "https://files.pythonhosted.org/packages/8f/47/e88e409dec1f9539dfdad7a9bc95c3dfe781176b3eeaba56006cd90d19bf/hidapi-0.14.0.post4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3f6b935841fc49e43df51422bda68be506407330c498a05eab8ea23908c932",
                "md5": "b4b3ec3a6ab0ea83e0bfb70f0799634c",
                "sha256": "21ebd1420db116733536fae227f1cb30ad74bded5090269cdda4facfa73a8867"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b4b3ec3a6ab0ea83e0bfb70f0799634c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 63056,
            "upload_time": "2024-11-19T16:36:08",
            "upload_time_iso_8601": "2024-11-19T16:36:08.869208Z",
            "url": "https://files.pythonhosted.org/packages/ce/3f/6b935841fc49e43df51422bda68be506407330c498a05eab8ea23908c932/hidapi-0.14.0.post4-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e2bca6f1590f5eb6520124518141f9d759eb0744d5a3e622b4bb9c9044640e8",
                "md5": "ad07127d1afbf155394651fbfb852fbe",
                "sha256": "a90cfdd29c10425cd4e4cff34adb12d25048561fc946f3562679e45721060a1c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ad07127d1afbf155394651fbfb852fbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 70327,
            "upload_time": "2024-11-19T16:36:10",
            "upload_time_iso_8601": "2024-11-19T16:36:10.005589Z",
            "url": "https://files.pythonhosted.org/packages/2e/2b/ca6f1590f5eb6520124518141f9d759eb0744d5a3e622b4bb9c9044640e8/hidapi-0.14.0.post4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59b26666dfae3c48986a3cf77d049ff8bc6e6620ac0402443ef235b82684eeea",
                "md5": "5026b236c341b5f94b31e04bc4b11a67",
                "sha256": "74ae8ce339655b2568d74e49c8ef644d34a445dd0a9b4b89d1bf09447b83f5af"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5026b236c341b5f94b31e04bc4b11a67",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 71068,
            "upload_time": "2024-11-19T16:36:11",
            "upload_time_iso_8601": "2024-11-19T16:36:11.123569Z",
            "url": "https://files.pythonhosted.org/packages/59/b2/6666dfae3c48986a3cf77d049ff8bc6e6620ac0402443ef235b82684eeea/hidapi-0.14.0.post4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35ad5c3dfcb986de80f3ea61908bb2c7ff498900ee79df59a894d834e49b55c9",
                "md5": "b98a59a9ddcafb530614d7668de927b7",
                "sha256": "e749b79d9cafc1e9fd9d397d8039377c928ca10a36847fda6407169513802f68"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b98a59a9ddcafb530614d7668de927b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 68750,
            "upload_time": "2024-11-19T16:36:12",
            "upload_time_iso_8601": "2024-11-19T16:36:12.902768Z",
            "url": "https://files.pythonhosted.org/packages/35/ad/5c3dfcb986de80f3ea61908bb2c7ff498900ee79df59a894d834e49b55c9/hidapi-0.14.0.post4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ab94ff5dc6c66227bbf316cf8b056145922d1ca931a37092519e8247214df7",
                "md5": "b1ea08bb48739980fa1b05845ef05552",
                "sha256": "4169893fe5e368777fce7575a8bdedc1861f13d8fb9fda6b05e8155dde6eb7f1"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b1ea08bb48739980fa1b05845ef05552",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1072450,
            "upload_time": "2024-11-19T16:36:15",
            "upload_time_iso_8601": "2024-11-19T16:36:15.306211Z",
            "url": "https://files.pythonhosted.org/packages/a1/ab/94ff5dc6c66227bbf316cf8b056145922d1ca931a37092519e8247214df7/hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11771e8c35728a17baae2c61646d7060062249f1f01ecd2c28631d07aa8547af",
                "md5": "7b1faa5894a1379766abb3066b4a7233",
                "sha256": "0d51f8102a2441ce22e080576f8f370d25cb3962161818a89f236b0401840f18"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7b1faa5894a1379766abb3066b4a7233",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1067973,
            "upload_time": "2024-11-19T16:36:16",
            "upload_time_iso_8601": "2024-11-19T16:36:16.932689Z",
            "url": "https://files.pythonhosted.org/packages/11/77/1e8c35728a17baae2c61646d7060062249f1f01ecd2c28631d07aa8547af/hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9982540a15251d27287742a4c9f897bed01ccc82ab2ea6e4321ed3468741dd33",
                "md5": "bfc60727a8fb77777af6bebce528d27f",
                "sha256": "ff021ed0962f2d5d67405ae53c85f6cb3ab8c5af3dff7db8c74672f79f7a39d1"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfc60727a8fb77777af6bebce528d27f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1064054,
            "upload_time": "2024-11-19T16:36:19",
            "upload_time_iso_8601": "2024-11-19T16:36:19.530353Z",
            "url": "https://files.pythonhosted.org/packages/99/82/540a15251d27287742a4c9f897bed01ccc82ab2ea6e4321ed3468741dd33/hidapi-0.14.0.post4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7293bb8ed59a06faa0262068486f3f01b49c68e0ae055940f5c9c65bb97064c7",
                "md5": "533114521ca02878fe88b85db8a94f56",
                "sha256": "d8ab5ba9fce95e342335ef48640221a46600c1afb66847432fad9823d40a2022"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "533114521ca02878fe88b85db8a94f56",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 682621,
            "upload_time": "2024-11-19T16:36:21",
            "upload_time_iso_8601": "2024-11-19T16:36:21.214850Z",
            "url": "https://files.pythonhosted.org/packages/72/93/bb8ed59a06faa0262068486f3f01b49c68e0ae055940f5c9c65bb97064c7/hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5342e262091785d25b30fcfeb0c87b8e0b96ba935336181bab86e7ee25181dd1",
                "md5": "b73fbcd79da5e0b5e881da3e3c21c58c",
                "sha256": "56d7538a4e156041bb80f07f47c327f8944e39da469b010041ce44e324d0657c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b73fbcd79da5e0b5e881da3e3c21c58c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 669789,
            "upload_time": "2024-11-19T16:36:22",
            "upload_time_iso_8601": "2024-11-19T16:36:22.725020Z",
            "url": "https://files.pythonhosted.org/packages/53/42/e262091785d25b30fcfeb0c87b8e0b96ba935336181bab86e7ee25181dd1/hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6debb0516fadd686ad5b3d99df0db4e16d4d93ae5f74506ac0b2cf4452733e49",
                "md5": "839cb06ef04e640337f3a223f31d9118",
                "sha256": "a28de4a03fc276614518d8d0997d8152d0edaf8ca9166522316ef1c455e8bc29"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "839cb06ef04e640337f3a223f31d9118",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 696581,
            "upload_time": "2024-11-19T16:36:25",
            "upload_time_iso_8601": "2024-11-19T16:36:25.283463Z",
            "url": "https://files.pythonhosted.org/packages/6d/eb/b0516fadd686ad5b3d99df0db4e16d4d93ae5f74506ac0b2cf4452733e49/hidapi-0.14.0.post4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3b535f053d1268c61e1ce6999059d416118d11fd60ba496a3e29c9adcf2ecd7",
                "md5": "d2f1f179f65828fb7afcb97298e0e326",
                "sha256": "348e68e3a2145a6ec6bebce13ffdf3e5883d8c720752c365027f16e16764def6"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d2f1f179f65828fb7afcb97298e0e326",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 62950,
            "upload_time": "2024-11-19T16:36:26",
            "upload_time_iso_8601": "2024-11-19T16:36:26.496875Z",
            "url": "https://files.pythonhosted.org/packages/d3/b5/35f053d1268c61e1ce6999059d416118d11fd60ba496a3e29c9adcf2ecd7/hidapi-0.14.0.post4-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fe9d91652ad32f4266c832f8b09879ac1cad9ad5b1660ef35d9ea7171a9e39b",
                "md5": "9567a6110820fcf469c3d479e1dfc8fb",
                "sha256": "5a5af70dad759b45536a9946d8232ef7d90859845d3554c93bea3e790250df75"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9567a6110820fcf469c3d479e1dfc8fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 70396,
            "upload_time": "2024-11-19T16:36:27",
            "upload_time_iso_8601": "2024-11-19T16:36:27.630911Z",
            "url": "https://files.pythonhosted.org/packages/0f/e9/d91652ad32f4266c832f8b09879ac1cad9ad5b1660ef35d9ea7171a9e39b/hidapi-0.14.0.post4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a9a9b7d5d5e2c003aed2fecdc348caff8d3b6a8ead0220da489ccb822d7e5ef",
                "md5": "5300ede40289921c9ed0d452df9051fe",
                "sha256": "129d684c2760fafee9014ce63a58d8e2699cdf00cd1a11bb3d706d4715f5ff96"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5300ede40289921c9ed0d452df9051fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 71668,
            "upload_time": "2024-11-19T16:36:28",
            "upload_time_iso_8601": "2024-11-19T16:36:28.666590Z",
            "url": "https://files.pythonhosted.org/packages/1a/9a/9b7d5d5e2c003aed2fecdc348caff8d3b6a8ead0220da489ccb822d7e5ef/hidapi-0.14.0.post4-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ade5a919eb542a692cc27dc58b1997dd860cace0e4c64e38c8bf9236ff8b95b7",
                "md5": "f656e937b17cac46c1cc5ca7e44a3a86",
                "sha256": "4f04de00e40db2efc0bcdd047c160274ba7ccd861100fd87c295dd63cb932f2f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f656e937b17cac46c1cc5ca7e44a3a86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 69146,
            "upload_time": "2024-11-19T16:36:30",
            "upload_time_iso_8601": "2024-11-19T16:36:30.484744Z",
            "url": "https://files.pythonhosted.org/packages/ad/e5/a919eb542a692cc27dc58b1997dd860cace0e4c64e38c8bf9236ff8b95b7/hidapi-0.14.0.post4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "377c63316c8cba89cc039a952bb8805c3fb585e79f7fc8a5d27acaa6beb2fe81",
                "md5": "e41d4fa908abe3bdd613d3b1608d1146",
                "sha256": "10a01af155c51a8089fe44e627af2fbd323cfbef7bd55a86837d971aef6088b0"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e41d4fa908abe3bdd613d3b1608d1146",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1083772,
            "upload_time": "2024-11-19T16:36:32",
            "upload_time_iso_8601": "2024-11-19T16:36:32.798627Z",
            "url": "https://files.pythonhosted.org/packages/37/7c/63316c8cba89cc039a952bb8805c3fb585e79f7fc8a5d27acaa6beb2fe81/hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aa8bb222e3f096467d8e37c717000b9b0c6acee043c1145eaaeba4abfc8cffd",
                "md5": "3ddc0915dd336db1dc01786dbf2af95e",
                "sha256": "6eaff1d120c47e1a121eada8dc85eac007d1ed81f3db7fc0da5b6ed17d8edefb"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3ddc0915dd336db1dc01786dbf2af95e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1081215,
            "upload_time": "2024-11-19T16:36:35",
            "upload_time_iso_8601": "2024-11-19T16:36:35.512195Z",
            "url": "https://files.pythonhosted.org/packages/8a/a8/bb222e3f096467d8e37c717000b9b0c6acee043c1145eaaeba4abfc8cffd/hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bac852134f7d3e09fd4feb7756ccd872c55bfd1899ee81ceed4f8ad5ae39f457",
                "md5": "03fd44e1416153f3fd1acb25495daf85",
                "sha256": "fedb9c3be6a2376de436d13fcb37a686a9b6bc988585bcc4f5ec61cad925e794"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03fd44e1416153f3fd1acb25495daf85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1077222,
            "upload_time": "2024-11-19T16:36:38",
            "upload_time_iso_8601": "2024-11-19T16:36:38.062356Z",
            "url": "https://files.pythonhosted.org/packages/ba/c8/52134f7d3e09fd4feb7756ccd872c55bfd1899ee81ceed4f8ad5ae39f457/hidapi-0.14.0.post4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8da88ebbd465dbaff04e9ef3bbdb4a6ca9d24a3458e4726878dbe26bb69236e",
                "md5": "6b53dafbf0b5d9e437936856869bb662",
                "sha256": "6270677da02e86b56b81afd5f6f313736b8315b493f3c8a431da285e3a3c5de9"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b53dafbf0b5d9e437936856869bb662",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 694510,
            "upload_time": "2024-11-19T16:36:39",
            "upload_time_iso_8601": "2024-11-19T16:36:39.572705Z",
            "url": "https://files.pythonhosted.org/packages/a8/da/88ebbd465dbaff04e9ef3bbdb4a6ca9d24a3458e4726878dbe26bb69236e/hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "daf0ea437ed339c5f0b446983011000d8cad8c4f8a51ee39e837d16e101b66da",
                "md5": "370897ef882e1b0b2bf9c4060a0dda93",
                "sha256": "da700db947562f8c0ac530215b74b5a27e4c669916ec99cfb5accd14ba08562c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "370897ef882e1b0b2bf9c4060a0dda93",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 682635,
            "upload_time": "2024-11-19T16:36:41",
            "upload_time_iso_8601": "2024-11-19T16:36:41.350044Z",
            "url": "https://files.pythonhosted.org/packages/da/f0/ea437ed339c5f0b446983011000d8cad8c4f8a51ee39e837d16e101b66da/hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01e914e63f1a5ec0c2430b84695d28e994b2b63398544adb20d910f6dc41ac66",
                "md5": "078f706c0f640a05273f40556676da2a",
                "sha256": "707b1ebf5cb051b020e94b039e603351bf2e6620b48fc970228e0dd5d3a91fca"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "078f706c0f640a05273f40556676da2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 701667,
            "upload_time": "2024-11-19T16:36:43",
            "upload_time_iso_8601": "2024-11-19T16:36:43.135880Z",
            "url": "https://files.pythonhosted.org/packages/01/e9/14e63f1a5ec0c2430b84695d28e994b2b63398544adb20d910f6dc41ac66/hidapi-0.14.0.post4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df3d8a37ed1b250ae45eb7fa5cd3227c865d38a1ddf9ccab626f4f6adfbd424a",
                "md5": "e08f825376fe9eb67d820382cb82eadf",
                "sha256": "1487312ad50cf2c08a5ea786167b3229afd6478c4b26974157c3845a84e91231"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e08f825376fe9eb67d820382cb82eadf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 63123,
            "upload_time": "2024-11-19T16:36:44",
            "upload_time_iso_8601": "2024-11-19T16:36:44.329461Z",
            "url": "https://files.pythonhosted.org/packages/df/3d/8a37ed1b250ae45eb7fa5cd3227c865d38a1ddf9ccab626f4f6adfbd424a/hidapi-0.14.0.post4-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4fde642211e579875e35015aed12d3b2c2a25f6a731ff846a2c2aaaf4bf8898",
                "md5": "1d5aa83517590364534c4db10337390e",
                "sha256": "8d924bd002a1c17ca51905b3b7b3d580e80ec211a9b8fe4667b73db0ff9e9b54"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d5aa83517590364534c4db10337390e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 70478,
            "upload_time": "2024-11-19T16:36:45",
            "upload_time_iso_8601": "2024-11-19T16:36:45.388774Z",
            "url": "https://files.pythonhosted.org/packages/f4/fd/e642211e579875e35015aed12d3b2c2a25f6a731ff846a2c2aaaf4bf8898/hidapi-0.14.0.post4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38c78601f03a6eeeac35655245177b50bb00e707f3392e0a79c34637f8525207",
                "md5": "550cd35dc4264d5317319f6af56a72e2",
                "sha256": "6f96ae777e906f0a9d6f75e873313145dfec2b774f558bfcae8ba34f09792460"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "550cd35dc4264d5317319f6af56a72e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 70358,
            "upload_time": "2024-11-19T16:36:46",
            "upload_time_iso_8601": "2024-11-19T16:36:46.405215Z",
            "url": "https://files.pythonhosted.org/packages/38/c7/8601f03a6eeeac35655245177b50bb00e707f3392e0a79c34637f8525207/hidapi-0.14.0.post4-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c15d7376cf339fbe6fca26048e3c7e183ef4d99c046cc5d8378516a745914327",
                "md5": "56137af6f02cce73854bc6e0d33d38e4",
                "sha256": "6439fc9686518d0336fac8c5e370093279f53c997540065fce131c97567118d8"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56137af6f02cce73854bc6e0d33d38e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 68034,
            "upload_time": "2024-11-19T16:36:47",
            "upload_time_iso_8601": "2024-11-19T16:36:47.419317Z",
            "url": "https://files.pythonhosted.org/packages/c1/5d/7376cf339fbe6fca26048e3c7e183ef4d99c046cc5d8378516a745914327/hidapi-0.14.0.post4-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c5a4bca20898c699810f016d2719b980fc57fe36d5012d03eca7a89ace98547",
                "md5": "688a5625d5acdc21974d5b404be85e7d",
                "sha256": "2acadb4f1ae569c4f73ddb461af8733e8f5efcb290c3d0ef1b0671ba793b0ae3"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "688a5625d5acdc21974d5b404be85e7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1075570,
            "upload_time": "2024-11-19T16:36:48",
            "upload_time_iso_8601": "2024-11-19T16:36:48.931226Z",
            "url": "https://files.pythonhosted.org/packages/8c/5a/4bca20898c699810f016d2719b980fc57fe36d5012d03eca7a89ace98547/hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ac666e6b7c27297249bc737115dff4a1e819d3e0e73885160a3104ebec7ac13",
                "md5": "1f5c3818fc934b05241e03262f34a7b6",
                "sha256": "884fa003d899113e14908bd3b519c60b48fc3cec0410264dcbdad1c4a8fc2e8d"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1f5c3818fc934b05241e03262f34a7b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1081482,
            "upload_time": "2024-11-19T16:36:51",
            "upload_time_iso_8601": "2024-11-19T16:36:51.021257Z",
            "url": "https://files.pythonhosted.org/packages/6a/c6/66e6b7c27297249bc737115dff4a1e819d3e0e73885160a3104ebec7ac13/hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86a821e9860eddeefd0dc41b3f7e6e81cd9ff53c2b07130f57776b56a1dddc66",
                "md5": "ae054db01aa12a3a3c68151614477de1",
                "sha256": "8a2d466b995f8ff387d68c052d3b74ee981a4ddc4f1a99f32f2dc7022273dc11"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae054db01aa12a3a3c68151614477de1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1069549,
            "upload_time": "2024-11-19T16:36:52",
            "upload_time_iso_8601": "2024-11-19T16:36:52.808957Z",
            "url": "https://files.pythonhosted.org/packages/86/a8/21e9860eddeefd0dc41b3f7e6e81cd9ff53c2b07130f57776b56a1dddc66/hidapi-0.14.0.post4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8013adf46a7ea5bf31f12e09d4392e1810e662101ba6611214ea6e2c35bea7a",
                "md5": "152c9595fbb1ec614fc18dc300a5c97a",
                "sha256": "e1f6409854c0a8ed4d1fdbe88d5ee4baf6f19996d1561f76889a132cb083574d"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "152c9595fbb1ec614fc18dc300a5c97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 698200,
            "upload_time": "2024-11-19T16:36:54",
            "upload_time_iso_8601": "2024-11-19T16:36:54.606891Z",
            "url": "https://files.pythonhosted.org/packages/e8/01/3adf46a7ea5bf31f12e09d4392e1810e662101ba6611214ea6e2c35bea7a/hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f019db15cd21bef1b0dc8ef4309c5734b64affb7e88540efd3c090f153cdae0b",
                "md5": "1804dd2e33911c9685bd1b0dea0fabd9",
                "sha256": "bca568a2b7d0d454c7921d70b1cc44f427eb6f95961b6d7b3b9b4532d0de74ef"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1804dd2e33911c9685bd1b0dea0fabd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 671554,
            "upload_time": "2024-11-19T16:36:56",
            "upload_time_iso_8601": "2024-11-19T16:36:56.200511Z",
            "url": "https://files.pythonhosted.org/packages/f0/19/db15cd21bef1b0dc8ef4309c5734b64affb7e88540efd3c090f153cdae0b/hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f523f896ee8f0977710c354bd1b9ac6d5206c12842bd39d78a357c866f8ec6b6",
                "md5": "38b06aa035dd9064302deb5e05cf3ccd",
                "sha256": "9f14ac2737fd6f58d88d2e6bf8ebd03aac7b486c14d3f570b7b1d0013d61b726"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b06aa035dd9064302deb5e05cf3ccd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 703897,
            "upload_time": "2024-11-19T16:36:57",
            "upload_time_iso_8601": "2024-11-19T16:36:57.796669Z",
            "url": "https://files.pythonhosted.org/packages/f5/23/f896ee8f0977710c354bd1b9ac6d5206c12842bd39d78a357c866f8ec6b6/hidapi-0.14.0.post4-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a5e3c93bb12b01392b538870bc710786fee86a9ced074a8b5c091a59786ee07",
                "md5": "7557d0b3c3258e414427c24695f5a5cd",
                "sha256": "b6b9c4dbf7d7e2635ff129ce6ea82174865c073b75888b8b97dda5a3d9a70493"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7557d0b3c3258e414427c24695f5a5cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 62688,
            "upload_time": "2024-11-19T16:36:59",
            "upload_time_iso_8601": "2024-11-19T16:36:59.124442Z",
            "url": "https://files.pythonhosted.org/packages/9a/5e/3c93bb12b01392b538870bc710786fee86a9ced074a8b5c091a59786ee07/hidapi-0.14.0.post4-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6aa60d43ac0be00db25fb0c2c6125e15a3e3536196c9a7cd806d50ebfb37b375",
                "md5": "14e0101fe5e31a9318eafc1a45b23938",
                "sha256": "87218eeba366c871adcc273407aacbabab781d6a964919712d5583eded5ca50f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14e0101fe5e31a9318eafc1a45b23938",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 69749,
            "upload_time": "2024-11-19T16:37:00",
            "upload_time_iso_8601": "2024-11-19T16:37:00.561108Z",
            "url": "https://files.pythonhosted.org/packages/6a/a6/0d43ac0be00db25fb0c2c6125e15a3e3536196c9a7cd806d50ebfb37b375/hidapi-0.14.0.post4-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c2de5fd895419e69d1666d1924d9cff5b25a4ded2247efa76bca35789bb5c51",
                "md5": "6bb8281bf732f911e4c3665d68eb3daa",
                "sha256": "e9af3c9191b7a4dade9152454001622519f4ecfa674b78929b739cfbf4b35d51"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bb8281bf732f911e4c3665d68eb3daa",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 69167,
            "upload_time": "2024-11-19T16:37:02",
            "upload_time_iso_8601": "2024-11-19T16:37:02.245594Z",
            "url": "https://files.pythonhosted.org/packages/4c/2d/e5fd895419e69d1666d1924d9cff5b25a4ded2247efa76bca35789bb5c51/hidapi-0.14.0.post4-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d08ea6433d201fec9e04a2addd88a1aaac75170425b2bd2d29df570582c4afa",
                "md5": "25252d2a9a95b8d14f1c041115e177da",
                "sha256": "a2c4c3b3d77b759a4a118aa8428da1daf21c01b49915f44d7a3f198bcee4aa7b"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25252d2a9a95b8d14f1c041115e177da",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 957683,
            "upload_time": "2024-11-19T16:37:03",
            "upload_time_iso_8601": "2024-11-19T16:37:03.986275Z",
            "url": "https://files.pythonhosted.org/packages/2d/08/ea6433d201fec9e04a2addd88a1aaac75170425b2bd2d29df570582c4afa/hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50be9edf0bcf99d074c6a4c0be4983d2c24580df5e6470bfc03ca5967b60002f",
                "md5": "5a5cb8e68e0e9e3a3c2e60b8a8825dd1",
                "sha256": "5c14c54cbfd45553cd3e6a23014f8e8f2d12c41cd2783e84c2cb774976d4648f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5a5cb8e68e0e9e3a3c2e60b8a8825dd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 959955,
            "upload_time": "2024-11-19T16:37:06",
            "upload_time_iso_8601": "2024-11-19T16:37:06.441756Z",
            "url": "https://files.pythonhosted.org/packages/50/be/9edf0bcf99d074c6a4c0be4983d2c24580df5e6470bfc03ca5967b60002f/hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "967ee99b33a8d5986f46f4bdc2219abd6c2937b6d39ac1e5ff4ef866559f92fc",
                "md5": "9e3b862d830ac333de2949960597b6b4",
                "sha256": "04357092b39631d8034b17fd111c5583be2790ad7979ac1983173344d28824e7"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e3b862d830ac333de2949960597b6b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 953408,
            "upload_time": "2024-11-19T16:37:09",
            "upload_time_iso_8601": "2024-11-19T16:37:09.015355Z",
            "url": "https://files.pythonhosted.org/packages/96/7e/e99b33a8d5986f46f4bdc2219abd6c2937b6d39ac1e5ff4ef866559f92fc/hidapi-0.14.0.post4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e7afbe739c3728479534d18dd128d105e688927171518ee219d2f4daecbd078",
                "md5": "fc8224e92ef937117a76ec4898209400",
                "sha256": "949f437f517e81bc567429f41fb1e67349046eb43e52d47b2852b5847de452ee"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc8224e92ef937117a76ec4898209400",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 575814,
            "upload_time": "2024-11-19T16:37:10",
            "upload_time_iso_8601": "2024-11-19T16:37:10.853302Z",
            "url": "https://files.pythonhosted.org/packages/5e/7a/fbe739c3728479534d18dd128d105e688927171518ee219d2f4daecbd078/hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a29d90c235bcc255a79b96a4ca70347d38b71d1321ccaee6c8f82b0212e6a97b",
                "md5": "5f4968f135f5122c63aed2458e0d762e",
                "sha256": "f787b76288450f60250895597dabb080894f0ea09ad5df0433412fee42452435"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5f4968f135f5122c63aed2458e0d762e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 571983,
            "upload_time": "2024-11-19T16:37:12",
            "upload_time_iso_8601": "2024-11-19T16:37:12.373236Z",
            "url": "https://files.pythonhosted.org/packages/a2/9d/90c235bcc255a79b96a4ca70347d38b71d1321ccaee6c8f82b0212e6a97b/hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a87b5242faeabc6494624b6b4977ab86d66c21f445e5afbc919749d96c9114f",
                "md5": "5a9d87e21b05d7df267140bf2753aa0a",
                "sha256": "41d532d5a358a63db4d7fc1e57ea107150445c90167b39ba6f8fb84597396a48"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a9d87e21b05d7df267140bf2753aa0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 585870,
            "upload_time": "2024-11-19T16:37:14",
            "upload_time_iso_8601": "2024-11-19T16:37:14.179204Z",
            "url": "https://files.pythonhosted.org/packages/3a/87/b5242faeabc6494624b6b4977ab86d66c21f445e5afbc919749d96c9114f/hidapi-0.14.0.post4-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba6b13cc29281da593374fa31015302961b5d3766daab29ecfeb3471415c6ff2",
                "md5": "5ccef202a36216cb1f3ee5964d45644c",
                "sha256": "3253d198b193065d633cde3f9a59dabeeb1608ece26f0f319a151e8c7775d7ae"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "5ccef202a36216cb1f3ee5964d45644c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 67261,
            "upload_time": "2024-11-19T16:37:15",
            "upload_time_iso_8601": "2024-11-19T16:37:15.570860Z",
            "url": "https://files.pythonhosted.org/packages/ba/6b/13cc29281da593374fa31015302961b5d3766daab29ecfeb3471415c6ff2/hidapi-0.14.0.post4-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2966fb6f623b6f8c9c4a7e98f9961b20c835bb5e3191b56be0ebd37837f4ae68",
                "md5": "4ba6190344209145bdfa21a2622641ad",
                "sha256": "1bee0f731874d78367a3bf131cb0325578bc9fee0678ed00c4ca3ded45d11c20"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ba6190344209145bdfa21a2622641ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 77444,
            "upload_time": "2024-11-19T16:37:16",
            "upload_time_iso_8601": "2024-11-19T16:37:16.661395Z",
            "url": "https://files.pythonhosted.org/packages/29/66/fb6f623b6f8c9c4a7e98f9961b20c835bb5e3191b56be0ebd37837f4ae68/hidapi-0.14.0.post4-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b122ef36e7db1c12aa5e31eddeb6927b2bced85e3ec488813c1cebeaf624c5d3",
                "md5": "945fc5dcd8a292e82d2e219e1f3add26",
                "sha256": "1807ff8abe3c5dcfa9d8acd71b1ab9f0aeb69cdbb039ddcbb150ed9fbbfd1ba7"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "945fc5dcd8a292e82d2e219e1f3add26",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 71220,
            "upload_time": "2024-11-19T16:37:17",
            "upload_time_iso_8601": "2024-11-19T16:37:17.732845Z",
            "url": "https://files.pythonhosted.org/packages/b1/22/ef36e7db1c12aa5e31eddeb6927b2bced85e3ec488813c1cebeaf624c5d3/hidapi-0.14.0.post4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fdcb972d938c42b30aa06b405a8311466e438d1a58c08850806657ec7c3a111",
                "md5": "04ab0201b44a83099217d064d10555ce",
                "sha256": "4939faf6382d1c89462e72aa08636bbfe97ecb5464a34b14997e0ca3e1f92906"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04ab0201b44a83099217d064d10555ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 970906,
            "upload_time": "2024-11-19T16:37:19",
            "upload_time_iso_8601": "2024-11-19T16:37:19.603213Z",
            "url": "https://files.pythonhosted.org/packages/3f/dc/b972d938c42b30aa06b405a8311466e438d1a58c08850806657ec7c3a111/hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79fa6f91273d6f7e7c56b3710f3d4614a8ee5fa6692d6b251820cdd8f2421917",
                "md5": "d7e2ac0aa60118068329fa9b8e2e9544",
                "sha256": "ac3e6e794a0fd6ee4634bf1beea1c3c91ab6faf8b16f3f672a42541f9c5ea41f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d7e2ac0aa60118068329fa9b8e2e9544",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 973333,
            "upload_time": "2024-11-19T16:37:21",
            "upload_time_iso_8601": "2024-11-19T16:37:21.568516Z",
            "url": "https://files.pythonhosted.org/packages/79/fa/6f91273d6f7e7c56b3710f3d4614a8ee5fa6692d6b251820cdd8f2421917/hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d5086a292fa775cc2b6a178e087ab0cafbe490899226ae99a492478f48754cf",
                "md5": "1e34387bb294a96e0120ae0551cfc628",
                "sha256": "c45a493dffdfe614a9943a8c7f0df617254f836f1242478f7780fbeafb18a131"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e34387bb294a96e0120ae0551cfc628",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 967457,
            "upload_time": "2024-11-19T16:37:23",
            "upload_time_iso_8601": "2024-11-19T16:37:23.382275Z",
            "url": "https://files.pythonhosted.org/packages/6d/50/86a292fa775cc2b6a178e087ab0cafbe490899226ae99a492478f48754cf/hidapi-0.14.0.post4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb087ee43ab34244a4dec61d0eab93d15006a0e25c284287c29cb2356423dcee",
                "md5": "a9519653bacd4d23a78635eec332eecb",
                "sha256": "142374bb39c8973c6d04a2b8b767d64891741d05b09364b32531d9389c3a15bb"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9519653bacd4d23a78635eec332eecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 596312,
            "upload_time": "2024-11-19T16:37:25",
            "upload_time_iso_8601": "2024-11-19T16:37:25.007669Z",
            "url": "https://files.pythonhosted.org/packages/cb/08/7ee43ab34244a4dec61d0eab93d15006a0e25c284287c29cb2356423dcee/hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6a004338d229cf6600a3d2aea885188de872744082a7ee962f607d8ac62baad",
                "md5": "000837df285b3b98f2705cad0f5daf1e",
                "sha256": "da777638f5ecf9ef6c979f6c793417f54104d56ac99a48312d6f7e47858c2dd8"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "000837df285b3b98f2705cad0f5daf1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 578731,
            "upload_time": "2024-11-19T16:37:27",
            "upload_time_iso_8601": "2024-11-19T16:37:27.305051Z",
            "url": "https://files.pythonhosted.org/packages/d6/a0/04338d229cf6600a3d2aea885188de872744082a7ee962f607d8ac62baad/hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f3c7678fcc7ea9de95fc36bf241e410943cc99f843c76fc957677e84fa3ccf0",
                "md5": "a57c7e9bddb376bc2019a0ea92540cd3",
                "sha256": "20a466e4cf2230687d21f55ffffb1a2384a2262fc343e507dd01d1ab981f7573"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a57c7e9bddb376bc2019a0ea92540cd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 606157,
            "upload_time": "2024-11-19T16:37:29",
            "upload_time_iso_8601": "2024-11-19T16:37:29.099463Z",
            "url": "https://files.pythonhosted.org/packages/5f/3c/7678fcc7ea9de95fc36bf241e410943cc99f843c76fc957677e84fa3ccf0/hidapi-0.14.0.post4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5898d1d67727dc54ae91ac1e2c80ce0a166cdd44886a681c89502d29eead2f2f",
                "md5": "c790cba8215e82ef9bd565e249ce5102",
                "sha256": "ff67139fbaa91eed55e7e916bdc1ccdaf8c909a80a9c480011caa65c4ba82a97"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "c790cba8215e82ef9bd565e249ce5102",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 63415,
            "upload_time": "2024-11-19T16:37:30",
            "upload_time_iso_8601": "2024-11-19T16:37:30.320853Z",
            "url": "https://files.pythonhosted.org/packages/58/98/d1d67727dc54ae91ac1e2c80ce0a166cdd44886a681c89502d29eead2f2f/hidapi-0.14.0.post4-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0230f4eb05e7d9a69b8649ef42240b9494a20ec11201fadff97d006dbf76f996",
                "md5": "b47a97bbb9f562489a1121a595d09560",
                "sha256": "1304fdeb694f581c46e7b0d6aebc6adfa66219177f04cacddbec0bd906bd5b7c"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b47a97bbb9f562489a1121a595d09560",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 70805,
            "upload_time": "2024-11-19T16:37:31",
            "upload_time_iso_8601": "2024-11-19T16:37:31.356941Z",
            "url": "https://files.pythonhosted.org/packages/02/30/f4eb05e7d9a69b8649ef42240b9494a20ec11201fadff97d006dbf76f996/hidapi-0.14.0.post4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73af0b9e5866a7c606a964bdb37f13a8ce302a37e0f3b3687ddb0129eb9bc2d8",
                "md5": "38d2b0a6870465aaea7d2616f036f831",
                "sha256": "9e4b462fc1f2b160442618448132aebadb71c06b6eb7654eae4385c490100a67"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38d2b0a6870465aaea7d2616f036f831",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 71386,
            "upload_time": "2024-11-19T16:37:33",
            "upload_time_iso_8601": "2024-11-19T16:37:33.255506Z",
            "url": "https://files.pythonhosted.org/packages/73/af/0b9e5866a7c606a964bdb37f13a8ce302a37e0f3b3687ddb0129eb9bc2d8/hidapi-0.14.0.post4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18eb77f70acbf6490662948617ca18ac1385339f15ae41470d153576a48b9678",
                "md5": "40016271c63413b270832d7c36c1c31b",
                "sha256": "68d7e9ba5c48e50f322057b9f88d799c105b5d46c966981aa8e5047b6091541f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40016271c63413b270832d7c36c1c31b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 68923,
            "upload_time": "2024-11-19T16:37:34",
            "upload_time_iso_8601": "2024-11-19T16:37:34.986938Z",
            "url": "https://files.pythonhosted.org/packages/18/eb/77f70acbf6490662948617ca18ac1385339f15ae41470d153576a48b9678/hidapi-0.14.0.post4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "758b50ae9117b9b31ae47a444a80449f018c6ca41496f41427d3e926d9ec610e",
                "md5": "78161546c84aff259fb6c328220f17ee",
                "sha256": "293b207e737df4577d27661c5135e7c16976f706d3739d7a53a169dde1aaebaa"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78161546c84aff259fb6c328220f17ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1028806,
            "upload_time": "2024-11-19T16:37:36",
            "upload_time_iso_8601": "2024-11-19T16:37:36.803134Z",
            "url": "https://files.pythonhosted.org/packages/75/8b/50ae9117b9b31ae47a444a80449f018c6ca41496f41427d3e926d9ec610e/hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b58dac1d9da608859a91e847af078f8a19d1d7fa0e102042317e175bf4aff04",
                "md5": "14b2fb7c212618212ca7023cb14ac266",
                "sha256": "a18af6ebd751eea7ddfb093ddf7d0371b05ba0f9a2f8593c7255a34e6bd753ff"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "14b2fb7c212618212ca7023cb14ac266",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1029763,
            "upload_time": "2024-11-19T16:37:39",
            "upload_time_iso_8601": "2024-11-19T16:37:39.371163Z",
            "url": "https://files.pythonhosted.org/packages/3b/58/dac1d9da608859a91e847af078f8a19d1d7fa0e102042317e175bf4aff04/hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76d55b72ad4a48c685dcddc9b3d5ce7bf7c9042b1e49edbf520243d71fc0bd1a",
                "md5": "304883a1f8d9f9d62852b527aee0286d",
                "sha256": "380a74e743afe7a0241e0efce73ce9697f41d4e2e0a030be5458a44f9119427a"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "304883a1f8d9f9d62852b527aee0286d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1023448,
            "upload_time": "2024-11-19T16:37:41",
            "upload_time_iso_8601": "2024-11-19T16:37:41.345749Z",
            "url": "https://files.pythonhosted.org/packages/76/d5/5b72ad4a48c685dcddc9b3d5ce7bf7c9042b1e49edbf520243d71fc0bd1a/hidapi-0.14.0.post4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb19cc8fb49c9ccd77359fc965e6a68aa1b8fc40d9310a73ca1b053cbed121bb",
                "md5": "50630346b5bfc5f8743530d4a5a1cd3b",
                "sha256": "6e08884ee9e1e3963701c1cdf22edd17c7ff708728f163efc396964460b3f9b4"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50630346b5bfc5f8743530d4a5a1cd3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 645900,
            "upload_time": "2024-11-19T16:37:42",
            "upload_time_iso_8601": "2024-11-19T16:37:42.970381Z",
            "url": "https://files.pythonhosted.org/packages/fb/19/cc8fb49c9ccd77359fc965e6a68aa1b8fc40d9310a73ca1b053cbed121bb/hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "362cad571dc9413d5a518fd7734144a1e88a6902b79af5a0e0221737a067a9dd",
                "md5": "6d1cd3515ab467c0ecdb4ab6421c38bb",
                "sha256": "fbd2835ff193d0261e0de375fea006cb7cb18a30ae1657af48a43e381f6a0995"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6d1cd3515ab467c0ecdb4ab6421c38bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 633659,
            "upload_time": "2024-11-19T16:37:44",
            "upload_time_iso_8601": "2024-11-19T16:37:44.469170Z",
            "url": "https://files.pythonhosted.org/packages/36/2c/ad571dc9413d5a518fd7734144a1e88a6902b79af5a0e0221737a067a9dd/hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1da0befd611d701af4c1fd4b591b5ef73042dba6383e971620878e11815cc9bd",
                "md5": "6ea579b0bbd8ee4a4faf301e446df8e2",
                "sha256": "6b424ec16068d58d13fb67c7fb728824a3888f8f7fb6ffa3c82d5a54d8b74b7f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ea579b0bbd8ee4a4faf301e446df8e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 656107,
            "upload_time": "2024-11-19T16:37:46",
            "upload_time_iso_8601": "2024-11-19T16:37:46.104967Z",
            "url": "https://files.pythonhosted.org/packages/1d/a0/befd611d701af4c1fd4b591b5ef73042dba6383e971620878e11815cc9bd/hidapi-0.14.0.post4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e73d5bcd849b9e21518519c630a55bccc3dba0aca3c4de31a3147147513a753",
                "md5": "d899141ab6cb69eb8e64b5d8bb28f72a",
                "sha256": "8de94caca7f2616e41466c0ccdf7a96f567914e9e85e89e0b607018777fc0755"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d899141ab6cb69eb8e64b5d8bb28f72a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 63732,
            "upload_time": "2024-11-19T16:37:47",
            "upload_time_iso_8601": "2024-11-19T16:37:47.481749Z",
            "url": "https://files.pythonhosted.org/packages/7e/73/d5bcd849b9e21518519c630a55bccc3dba0aca3c4de31a3147147513a753/hidapi-0.14.0.post4-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77c556a8909235e1c53991beca2debee4c39c13cd4219e8005a7ca10110f80b0",
                "md5": "7a0ffaf0671771c5546935041c4cef3d",
                "sha256": "1591e98c0e6db4cc1e34e96295b4ea68eaf37d365d664570441388869e8e3618"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7a0ffaf0671771c5546935041c4cef3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 71065,
            "upload_time": "2024-11-19T16:37:48",
            "upload_time_iso_8601": "2024-11-19T16:37:48.710270Z",
            "url": "https://files.pythonhosted.org/packages/77/c5/56a8909235e1c53991beca2debee4c39c13cd4219e8005a7ca10110f80b0/hidapi-0.14.0.post4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e53dc81b57a89591e041f83d3e8b0238816628c6dd4d278adfc1e1754285c8da",
                "md5": "cf8cd7ab9f200c4ec97e0e5302d140f5",
                "sha256": "58a0a0c029886de8b301ce1ee2e7fd6914ae1ca49feb37cc9930c26baa683427"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf8cd7ab9f200c4ec97e0e5302d140f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 71026,
            "upload_time": "2024-11-19T16:37:50",
            "upload_time_iso_8601": "2024-11-19T16:37:50.268358Z",
            "url": "https://files.pythonhosted.org/packages/e5/3d/c81b57a89591e041f83d3e8b0238816628c6dd4d278adfc1e1754285c8da/hidapi-0.14.0.post4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86a953d824f6e7bab48851797824ede894f34604501b4293ea18ff1816837631",
                "md5": "bd70cbaca6f474b99721bd571aa3da34",
                "sha256": "e70eab52781e58e819730d99e3c825e92c15ec2138b6902ed078c8cd73317ce0"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bd70cbaca6f474b99721bd571aa3da34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 68705,
            "upload_time": "2024-11-19T16:37:52",
            "upload_time_iso_8601": "2024-11-19T16:37:52.102748Z",
            "url": "https://files.pythonhosted.org/packages/86/a9/53d824f6e7bab48851797824ede894f34604501b4293ea18ff1816837631/hidapi-0.14.0.post4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "325a15833a49e121f02e9527cfc07506766f41e3d3c2f1259510ffca29fc4493",
                "md5": "0f54541327fed1434f70648b995ff64f",
                "sha256": "97192b7756dd854cb2ebc8a1862ffa009cdc203e0399777764462cae3c459d58"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f54541327fed1434f70648b995ff64f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1033872,
            "upload_time": "2024-11-19T16:37:54",
            "upload_time_iso_8601": "2024-11-19T16:37:54.560197Z",
            "url": "https://files.pythonhosted.org/packages/32/5a/15833a49e121f02e9527cfc07506766f41e3d3c2f1259510ffca29fc4493/hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e818d7904ee0ed21b0c9ee11847bba49cd0e4fb33f63b44eddd78a60c35d6e08",
                "md5": "4ce13f36300403b245cb7ef0620dabbb",
                "sha256": "f27c74deda0282a97dd0f006fd79d6d08fdb16c7a3ba156d52fce85e48515b0a"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4ce13f36300403b245cb7ef0620dabbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1032703,
            "upload_time": "2024-11-19T16:37:56",
            "upload_time_iso_8601": "2024-11-19T16:37:56.757113Z",
            "url": "https://files.pythonhosted.org/packages/e8/18/d7904ee0ed21b0c9ee11847bba49cd0e4fb33f63b44eddd78a60c35d6e08/hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fed86dafae64a041eb80c63be77ba2bc57c08ac1f44fb6579046bd6b123d94ef",
                "md5": "59d2748ca2e2301722e2428202d46d0c",
                "sha256": "c8f722864a03c1d243a9538f0872e233d07fc3fe1d945c66c0cb632060d6d009"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59d2748ca2e2301722e2428202d46d0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1024884,
            "upload_time": "2024-11-19T16:37:58",
            "upload_time_iso_8601": "2024-11-19T16:37:58.712015Z",
            "url": "https://files.pythonhosted.org/packages/fe/d8/6dafae64a041eb80c63be77ba2bc57c08ac1f44fb6579046bd6b123d94ef/hidapi-0.14.0.post4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9767c3e33dee7cfe899ab8eb38669e2d7263e2444e03585427c3f42dedcc0b7a",
                "md5": "451adccbf5cfa973f0f0fd4eec772645",
                "sha256": "f67e60eaa287e0fa35223f2d1f9afda81dd7312c7ba07e08fbdaf1af8a923530"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "451adccbf5cfa973f0f0fd4eec772645",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 640660,
            "upload_time": "2024-11-19T16:38:00",
            "upload_time_iso_8601": "2024-11-19T16:38:00.918229Z",
            "url": "https://files.pythonhosted.org/packages/97/67/c3e33dee7cfe899ab8eb38669e2d7263e2444e03585427c3f42dedcc0b7a/hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b140ab4f320c22d5b164e0fad6f8193d01efede3d56c62f8778ab9a0d9304b5b",
                "md5": "cae45dfb2a43e1fe1419eb1866d13fce",
                "sha256": "fa66391be8acb358b381c30f32be5880d591a3358e531d980832d593dfe83d5a"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cae45dfb2a43e1fe1419eb1866d13fce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 629637,
            "upload_time": "2024-11-19T16:38:03",
            "upload_time_iso_8601": "2024-11-19T16:38:03.316249Z",
            "url": "https://files.pythonhosted.org/packages/b1/40/ab4f320c22d5b164e0fad6f8193d01efede3d56c62f8778ab9a0d9304b5b/hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef4f2867e593edadf6b8b9534da4417b2f9b61974d794b553ea8561dcc93e9df",
                "md5": "ad244f18970f2abb2731723dcb7e4458",
                "sha256": "f3ce310d366335e1ac9416d8e4a27d6eef2ae896fbee0135484d39d001711bea"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad244f18970f2abb2731723dcb7e4458",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 651274,
            "upload_time": "2024-11-19T16:38:05",
            "upload_time_iso_8601": "2024-11-19T16:38:05.676250Z",
            "url": "https://files.pythonhosted.org/packages/ef/4f/2867e593edadf6b8b9534da4417b2f9b61974d794b553ea8561dcc93e9df/hidapi-0.14.0.post4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "995a237674ac9dcca1254157522619150f46eabc9327190c08567f5bd24ec119",
                "md5": "057f9c4b052f1597027bd37aecd25f7e",
                "sha256": "60115947607b8b0a719420726a541bad68728ece38b20654e81fef77c9e0bd2f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "057f9c4b052f1597027bd37aecd25f7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 63640,
            "upload_time": "2024-11-19T16:38:07",
            "upload_time_iso_8601": "2024-11-19T16:38:07.251662Z",
            "url": "https://files.pythonhosted.org/packages/99/5a/237674ac9dcca1254157522619150f46eabc9327190c08567f5bd24ec119/hidapi-0.14.0.post4-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fcfd48f6b604546f8df09214481ccc3b3526fa8ed6ab5e2ac5daacba3ea4aff",
                "md5": "4d825b5011459a1a3306155c7476a917",
                "sha256": "21627bb8a0e2023da1dfb7cb7b970c30d6a86e6498721f1123d018b2f64b426f"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d825b5011459a1a3306155c7476a917",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 70849,
            "upload_time": "2024-11-19T16:38:08",
            "upload_time_iso_8601": "2024-11-19T16:38:08.326697Z",
            "url": "https://files.pythonhosted.org/packages/6f/cf/d48f6b604546f8df09214481ccc3b3526fa8ed6ab5e2ac5daacba3ea4aff/hidapi-0.14.0.post4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477221ccaaca6ffb06f544afd16191425025d831c2a6d318635e9c8854070f2d",
                "md5": "e40ef74132829a8e51bfa9005f8ead04",
                "sha256": "48fce253e526d17b663fbf9989c71c7ef7653ced5f4be65f1437c313fb3dbdf6"
            },
            "downloads": -1,
            "filename": "hidapi-0.14.0.post4.tar.gz",
            "has_sig": false,
            "md5_digest": "e40ef74132829a8e51bfa9005f8ead04",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 174388,
            "upload_time": "2024-11-19T16:38:10",
            "upload_time_iso_8601": "2024-11-19T16:38:10.316695Z",
            "url": "https://files.pythonhosted.org/packages/47/72/21ccaaca6ffb06f544afd16191425025d831c2a6d318635e9c8854070f2d/hidapi-0.14.0.post4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-19 16:38:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "trezor",
    "github_project": "cython-hidapi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "hidapi"
}
        
Elapsed time: 0.43548s