Skip to main content

A Cython interface to the hidapi from https://github.com/libusb/hidapi

Reason this release was yanked:

broken pyproject.toml

Project description

Description

A Cython interface to HIDAPI library.

This has been tested with:

  • TREZOR 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

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.

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 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/.

Project details


Download files

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

Source Distribution

hidapi-0.14.0.post1.tar.gz (172.6 kB view details)

Uploaded Source

Built Distributions

hidapi-0.14.0.post1-cp312-cp312-win_amd64.whl (64.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

hidapi-0.14.0.post1-cp312-cp312-win32.whl (57.1 kB view details)

Uploaded CPython 3.12 Windows x86

hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl (349.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_i686.whl (335.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl (346.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (711.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (738.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (717.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp312-cp312-macosx_11_0_arm64.whl (68.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hidapi-0.14.0.post1-cp312-cp312-macosx_10_9_x86_64.whl (70.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp311-cp311-win_amd64.whl (64.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

hidapi-0.14.0.post1-cp311-cp311-win32.whl (56.9 kB view details)

Uploaded CPython 3.11 Windows x86

hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (344.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_i686.whl (328.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (705.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (727.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (711.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp311-cp311-macosx_11_0_arm64.whl (67.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hidapi-0.14.0.post1-cp311-cp311-macosx_10_9_x86_64.whl (70.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp310-cp310-win_amd64.whl (64.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

hidapi-0.14.0.post1-cp310-cp310-win32.whl (56.9 kB view details)

Uploaded CPython 3.10 Windows x86

hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (318.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_i686.whl (312.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl (312.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (684.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (707.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (690.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp310-cp310-macosx_11_0_arm64.whl (67.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hidapi-0.14.0.post1-cp310-cp310-macosx_10_9_x86_64.whl (69.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp39-cp39-win_amd64.whl (64.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

hidapi-0.14.0.post1-cp39-cp39-win32.whl (57.6 kB view details)

Uploaded CPython 3.9 Windows x86

hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_i686.whl (315.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl (315.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (687.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (710.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (695.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp39-cp39-macosx_11_0_arm64.whl (67.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hidapi-0.14.0.post1-cp39-cp39-macosx_10_9_x86_64.whl (70.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp38-cp38-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

hidapi-0.14.0.post1-cp38-cp38-win32.whl (57.7 kB view details)

Uploaded CPython 3.8 Windows x86

hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_i686.whl (313.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl (318.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (710.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (691.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp38-cp38-macosx_11_0_arm64.whl (68.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

hidapi-0.14.0.post1-cp38-cp38-macosx_10_9_x86_64.whl (70.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp37-cp37m-win_amd64.whl (64.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

hidapi-0.14.0.post1-cp37-cp37m-win32.whl (57.5 kB view details)

Uploaded CPython 3.7m Windows x86

hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_x86_64.whl (294.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_i686.whl (288.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_aarch64.whl (289.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (659.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (682.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl (70.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

hidapi-0.14.0.post1-cp36-cp36m-win_amd64.whl (70.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

hidapi-0.14.0.post1-cp36-cp36m-win32.whl (61.5 kB view details)

Uploaded CPython 3.6m Windows x86

hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_i686.whl (276.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (652.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (673.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

hidapi-0.14.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl (68.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file hidapi-0.14.0.post1.tar.gz.

File metadata

  • Download URL: hidapi-0.14.0.post1.tar.gz
  • Upload date:
  • Size: 172.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for hidapi-0.14.0.post1.tar.gz
Algorithm Hash digest
SHA256 90b773cc4b917e92804153ee55a7a8bab948e51ba72d4838887c83e49ec2bf5f
MD5 d998e0f70afb96dc7a19d5762b8abfeb
BLAKE2b-256 3b8e8c0e2c81f155413e4127adc4ced9e10059a0c67c9aaf35d32e3cbf44f0f4

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 581c60dad4cb027f7a19e2c45ef928d4890c53be2736250161a2ac05ac3aeb7c
MD5 a5890c9c91259412dc6e9a6ecc7b7dc2
BLAKE2b-256 4e102f90d0749dc19bd43a64284accba2d702bc9248554dc5c7304c859fc0a51

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04ea14b3b91b4b0910f389712ab847598270ba4a1472ba76eec225fd6c066659
MD5 b385d550c6fed6fd92626768ff97ad07
BLAKE2b-256 e4e28020ae392280941b0f21ed909c192acac305cecf90f5d7cae23de0ce2cf1

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4fd9c6e1107bcb79ab7a4ede9d3c0ec13f6a16de6b034d037a89150b8237cfd
MD5 7a9cf15d59bc43ac989b84aa5252b6b3
BLAKE2b-256 e1723ba272d7e535506275d563e0517625e8786b5113f4e162e491d3963710ad

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffae8dfb471bb7716490f4d414dcb0e25102c38d075574be1bea7b421e91e392
MD5 3f9adbce01af89af0c7d5405d6f4da45
BLAKE2b-256 ce5cc36f7f53d7e58b39bfec570d602e85bac59ee6f04e00b36fe09b561c2764

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c58f6b0f18c3573791e1eff9c1fcd6bc149ee9b213d58987a0061232a4d08a8
MD5 affd116e1caa24ac9f8784745ac6c672
BLAKE2b-256 e1bffaf3123ad3e6ffe1580b806999f7688964b7234b868a1a00b047f4ec6cf2

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6906f7bc8982b83f05850aed7d40e104cf029ff3d416a73ae7eaea4bd7b2e90
MD5 bd537b3299e724166bd5b0c3d7864fb3
BLAKE2b-256 ebb6136928fffac5969e5adcabc5ff36c214b3b15aea5adaafeb337a61b6c9e8

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1454c0cba673aa9c0bef3bb94a8ef658fa4b700fda9f89a164cec83c005e090
MD5 5c5b48df81a33112caff23a3726aee57
BLAKE2b-256 6ed71c8988e9f6d9b2780fb15c55866b930513fe0f79c538818e16f2c5f56290

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c54e965fd9f4fdd0574a9f3302712c1cd47baaf10dffb1cf83861d8489757076
MD5 16c68f98e32b26a995bbb7ccba7d638a
BLAKE2b-256 54507d832f6972d69a6e1f4e31a6058beed2fc19e3e3dd851b20589d1cbbb958

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc975db25d111728e09f43865b83a01a935dfff7cd4dc6778a38819bef377a7
MD5 28808081b457109fbe019ed149f4fbb7
BLAKE2b-256 b77fc4fc5bd5d6ce65b3063d59bf7db547f13e03effee57b0a84e3cb46fa0fab

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e7b6066324378baaa7277295f6b07edfd603d6f12c0515ac1632c161a7b427f
MD5 efa6e97aced19df47217c32ff5d40d0d
BLAKE2b-256 f1bd65a8c50a6a79cf67d91113f9476756d5fe15f025aec2f73afa24f9c77cd4

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44f67c853afff875a42e9cb7339dbf5b89dd3a2a74eeb3fcb08110e61a8a4614
MD5 6d1218f7bfa578cf8bf829f6c1b9800e
BLAKE2b-256 b6f020be8797a33f4a9d7f765f51a2938cff88c33bade54cec4b69c157a460dd

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d182fd71ecd81e013aaab1dcc63413240a622d2e065fa3907f4a0834d46e4bb9
MD5 b962926e2961acbf01e30245cccb3b54
BLAKE2b-256 3cda8761e921e1518e92a13e58c87cfeafd803dc36ed698880a0c845158b92cc

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7a251e1f489d1930945d39ac141d9e44214ae1119afb792bbfa07598f8090eb
MD5 7f8e37c0caaa3eb1e681c3cd60a25112
BLAKE2b-256 4583c3de08b62dbf3e02b7ac11389bedf64ac70c35b6f3bf151bf18aa7b791b3

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77e0cf4c0bd119d2d821ddf2647fc0af4529e3bb5aa73dda09750f67f31265a5
MD5 9bf272ed04c884daa6c211f07d2adb73
BLAKE2b-256 789cb074b4d8e6857f912fac3e5ff01b3e6d180acd23293e8650a501a320464d

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e812cf73f494f2e2cc04b5a3f55d495c5397f582d3d09801c1e9fc4974eb624
MD5 4d9eb3f3878f035e1fc88f8a8315ce57
BLAKE2b-256 d6919e77c6bd502330dc793fb18cf5af3896f94c9b7cd513356afab11cf11f9e

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 752f234bda1d98c23694b2d33c071f640a849a3713a351e333edbd0442e4bad4
MD5 69f12d30295fb847096a845452d93ca4
BLAKE2b-256 62ec5a25e523c6b43d43dfbbcce1587cbfeaae45e87ecdd1d7c232f51fc87d59

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ca8a315af3cdc1d58cbafe3a373913b726e8c91fc5d86d5dfdc23bcf4dec6cb
MD5 76e36f3fbe9b9294e6c2c4fd462a888b
BLAKE2b-256 743d3aaa2b71c8d3c306b4c744c18ee2c7aa848dcfdc895e91acdedf4fd3c936

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abc9fedb1991a5ce12f12d8db7e0da473f29d0ddaa137759fcffe244f23ed0f1
MD5 b611b18de095a637158ddf0897514a1a
BLAKE2b-256 4aeb9dc3b3d7ea6be80fd9dac49361c0b374b8ed1b9e3d97891e43aa885f68a1

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263011605e06ae42c19a47b339bfa0c1059dc5ab94e6825e3d9df965a8dbe98d
MD5 aab16b3ac656f85c05635531f5cafec1
BLAKE2b-256 281a662f8f6dd9359044a2217ebce27ea11d73ca4acc31da63b5910e92057911

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6622809f296bfef2ccec0dc786292ace1d4671ae9c1f44f26a9ab4813dc70f40
MD5 2c719e6e5ac69038c66714b0910b4ce0
BLAKE2b-256 fd84c7f02a9475174dea2ab9a02a4f0130b655ad4da5f3d9d396d0d1eae8176b

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 984e8688ac66a0be6be97dd1bc95ca0108b0ec704681b551e7985c7c9067e66f
MD5 52aad7cf85c6dcb89cdb47a87dd4cb81
BLAKE2b-256 0003ca9d3174a85889cf0203b6942ef437c2ee2d613b990b3e6e837c57896592

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1a070871e6f6ac0320af6d10f4438945cc051a7bd4c2abe63d88e913e2357033
MD5 4435db6c94d11650b1fa566faf6f7671
BLAKE2b-256 e85ff6a02596f56a4121a1c234622c099788dfb7fda149dcc6fcb1be1fff5ac2

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 febb51081becb3c37c67028711f88fefe3e72dc6c85e5d95a9a1102717671493
MD5 71472a8ef4b7bcf7adc2ff8cf1dfa02e
BLAKE2b-256 c5d65ae95295531e7e1d2e298e20e57bcd0cbf7a136bbf3cbda5242265800c4d

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66466b62036f5d00dbc13ee094e56892ef8b7604a239e7fbbe932dc5e39fdc4e
MD5 aee9734886fd7050b2df5fb00d1f1146
BLAKE2b-256 50046795ea0982cfaccd233ca0eb5609de158f6ebf084994f931c91bf361496a

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ba54c010389a4dd3d989add76e3e524449a0da7df1908ad1417d40cc3e9003e
MD5 c711934d2d50ad47c68502ddc305c6cb
BLAKE2b-256 36666ac33f548fc9ccfbbbf183bef2dba631fad3a3653db433faff98d068e12d

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84c6c3ebd9f6c2cdb0f4397621bc5c9aaa22ef7ea701db75850f1cb33537a91c
MD5 5daa7c4007dc9052ec8e3d269f08a7d2
BLAKE2b-256 b7839c495ed8d549e547bb8bb33f1d0898a97847ee0c7931e4c621e9dd6badb9

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e6aee0d50a09a5fc7fe71751a7a3d42c43514809c20479ecf3caf1b59fac677
MD5 9c3d476a350bed30349b8552f6ba40ca
BLAKE2b-256 e8ec7bd355b8a622835cc973c46532a4216ebd4d2280ac78d006a3f863758f10

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f10d9b358b0bfc9e53959959d58d2ceaf19613954c60b2929f8b315d74f76e22
MD5 304bea36bee9f23de1e5cc355ae22892
BLAKE2b-256 4dfb7159f531653bf07f45d8a490cd7e49d4bb06ff23b96c06f4fdb8fc4b2e95

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3f55fe5f0b5fd4b90e08ba5c214ba27e74896005b5cb9ea81df33ff657e7b31
MD5 340ea880afb73d6040cb9be975a72200
BLAKE2b-256 4ddad546b0b63f01d4ee5db74362f9058897837014fe1225ae0732ff90e1723c

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8732804e81302d6b532f8a1071b57282fce5fcc1f98a2eb2336f80f7a42bf42
MD5 61c5cf22fb98d36df0bbb18369177346
BLAKE2b-256 356ad026c9bf0220e82c777fe52f8db175e2835ae733a96d59fd361479d0faa6

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 df53bb719d64eafec6a9d245cd2e53a34c8422b9535ea0a753d942ef29ae188c
MD5 4abde54ace56475ae2b4785a223ea312
BLAKE2b-256 0f884ed636c7f46c2aa42bd4883c215dcf4dedd1ed332392f6fe04eb4ab2b9b2

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: hidapi-0.14.0.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 57.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8d706fbb53806d20b3a2b3fafa6e76323de3c0b0d3e4276df7669e7808c637bc
MD5 d74d7d5c7638dbb1d80d8018e169d9ba
BLAKE2b-256 4072ef4152a0f1763a01a9ec6d961a6aaf7133a76fc7f9e479c25c563a382df2

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44c67b670eff1c861cf1af0d49003d1212e56bb032bd16dc571f04eae5294393
MD5 9aa8351a5e3a7ca09b6c7605f3dae87a
BLAKE2b-256 62d2b8aa0dff50be1da468980b0337c989dbad04d6b91e2a2f969990655b5329

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 451ee0582a5d904fba2ad699ba44ace42051fc3b4ede72284ff95f4e17b094f2
MD5 86e3d8d66c6f8d769273e23d5886baa6
BLAKE2b-256 7e0ce0e320ac10cbabfa191c4416c16cc360b011b78c801a2b1d7799a7df6ada

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f31d5ab106a36450e88a09c94e3805bd0db180eff5da20123bb59755449325a
MD5 08994a3c54ffe134bb2a007f60f6ab41
BLAKE2b-256 4f4c1c429679144136c2c5ad9d4acd8517359d251f1734a247114586dd90836b

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9d67f9d0e07c0b76a56c9a927d033f71c905fc3ad6010077f1db2f2896f3f1c
MD5 50f7c45172f07ad026416dd3fd1b6ef7
BLAKE2b-256 58ebb3558ac8709ab06aa4cc56bc6d2e8036fcd4b3691c070c62280ef97c8fe8

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49a56c5929e2dd28bbfac7ae24d520de9d2b1d919d62d7ff3b38744b9ca89877
MD5 bfcff112eb4f9a3d84ffcad13fd1c678
BLAKE2b-256 61c5219c0e726260606d65dd0fb98f4a8fc333366f92cbf5ed9ce580fe8da62e

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3c64375de71e96fbb94f45f845c85faa79c7271cb2240fcd1f0dddef06fbf0f
MD5 a4d31cc8f0faafdc5574fac85391f2bc
BLAKE2b-256 29b577848cb18c61a3e5381192fe87939d21f600663a7d9508a1ae04d159a49a

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae8cde87a26b2f11a58a936b7b98bd0f83cb426a45a150d91eeef9a5ef4e8057
MD5 f4c3eac02fb2810af8b02bf41db01d72
BLAKE2b-256 80c17396b11c61e1e51a0478d92f4fe44097f6d6c731956af49da28f08771053

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16e2a4b91faaf4332344b0f4d27d6c67bbc70bf8824cb2106fecd64d77946b5e
MD5 ef021b1aca78421161f875f2adaf49a9
BLAKE2b-256 a51ef592a3f35aede456bf071a9a18115f8eb97fa09e655d5a98f965e62ab400

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1874cc3ca62e1455856f5dd678b68c371dc0465e9ba4b54b8ee81dde6fc7ff5b
MD5 0c4cb4f45d8221d4d218af0dd9379b41
BLAKE2b-256 c5c2c7a28ad6be6a628aa9f8bb028de485b2b3a54808fa15d574b4b0d49e441b

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-win32.whl.

File metadata

  • Download URL: hidapi-0.14.0.post1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d38189a6e5b7f23049382aba532b717f751953c47b811bcbb23cf08c1c5f3df6
MD5 d351e370585a394872dab6e3d4f95c8c
BLAKE2b-256 628fed13e8389623b5a9a02487c4ae3384e2d314a0f79154b671700f8a330b8d

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1899287765ac8f3fab9603140f0993b5c304e56873ff4f9faea371f05ca69b3
MD5 002611ef2c7fb55b3d9f5be95f47aa08
BLAKE2b-256 79db236c51e3f133b38f0cb0a0a0d9dfb1fb73b75e8bcb325fab628f793a1704

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a8c39888fd27e509f1ee7a958070191370775240be7f02a35121d2cc9f8cb72
MD5 6e959f0e94ce1e5aed2d40bdf65a0432
BLAKE2b-256 3ac4fcc0350530cb19d07e403efa0b260422ab65140e17ad9bacaaad56286977

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bcd90e3f20577c5e3498704dde72cf455ca1fc11e54866bb3cf779ddddbd42d
MD5 d3969c58db7739b052416e8dd48005b1
BLAKE2b-256 4e52042842cce4fd9ab600c33175624d8e71f9c59847c8af3d558b86d4404a84

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f6eede44f67dc98d58510de8fc9f20dd1888130b4861291854989b34a9b191
MD5 f01eb3bd678c0d6daf2ef408eb87b8bc
BLAKE2b-256 07eacaa398554395e9aacb314783d28bb2b2bf0d18a430dff41f49bab6bc0c1f

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ff08e33dcbf0767f68c3cab5facd95a9e10ae467bb190d6cea5ec2c5040ca14
MD5 bdc1b74d82362e865f0c8c9f74882cdd
BLAKE2b-256 a99473b422076af3cbddac36ea75acedf57948a5332fc36ce8ce3f8870f1c45b

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35ca5389c8a55bb0449206d8aaa7673895cc5542b8d69ecfa990f353df529295
MD5 355ac881c504fa2105fe2ea30c67bd60
BLAKE2b-256 469429105db3c6d7fc0f2aa664d081b459dfdcb9378b6473bca4baffb79194ab

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ed9bd669bda182055c80cd6a2da344964cf8f96a12ea00b664ebcb6e45cf968
MD5 3e81783ef82f138d8d2f33c8d9921754
BLAKE2b-256 d659e3937e7e053a5e4d441d319f1ee1d0283b9b337717b8807fa4a26537fb49

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c05a3fa5b74e3c413fa52e2b0fb760754c513f47ecffed4fabe9e483b43e5ccf
MD5 f9bbe5903b94580f8ebc3099891029da
BLAKE2b-256 edcda28b3acf852130a57d317d59fbedc32adcc475f25df6c4623baf9b95911f

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 95de53544f48a9da39aa538073c223d5aafcd5692accb8ad160209041899fb2d
MD5 251fee0d15d1688a83ad7246495b9b42
BLAKE2b-256 d162c7e5d5c69f9564a9431487915460e1afd9917d096c5bbb5b38b41a8b516c

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d786bd642894846171d284b6e10cc9e8053b16a027e1a56c7d17bec8048ffaf7
MD5 746f96b95960cbe194eff3b5ebda7b5b
BLAKE2b-256 581556aa11bb95a13749b285744e666558385d3be89da67e6330d4b49c247005

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11ed52a47561fd57d67a650db5f9ef180d16fb578eec30afdc084f728ffab947
MD5 8527bf1d549c07bb3d20630c085b12c2
BLAKE2b-256 db72daad07c255fce1158d2228166981cad2ae7b1497ae3fef82a15853920e6c

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49fdff1d7ce2af2ec0cdc76546a5866702b3cc4fa01ab7a0efc672bfd36b7235
MD5 5feb16107669890d9aa237313b449990
BLAKE2b-256 2168fd8e2b25543b27c0cb0bbd8bad3f22f73c8d345b10e1c563d0556040a030

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 364a988413d7648857e54122ec73f9a2fde242dd7a2ac24f5f5aa943ae7b560a
MD5 66bfc305d3aa0c113e3604ac5497c809
BLAKE2b-256 6a191b8a16a4c26328e775be44896a8c71673447a1f537da79cca4b83cd30a40

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8eb1868f56350053ab2e7efe686e4e7ebfb78000d43c4140171c8b5fd38e5772
MD5 8a6066e122d226fb29f3d4afd9bb72d1
BLAKE2b-256 7190b28988293d4cad1fa675298b59cf6ee138ebe3e94a4c542b09b9a35d3149

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d51e59839f8771ead59294517cb0f1e59589177e96390e9bd9538d57149d2aa6
MD5 c3146215e624651124388f40f898559d
BLAKE2b-256 4f86f5fa3027d8e572e07142de10057af6622176ac903f5ebd505ce99f5c0db3

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f79d64d700c9c4f1ef51faf65a1f18f8694734a327a029a2ab19f53ac0d82c80
MD5 b680cd4e1c836370e8725c0c6d6c5cb2
BLAKE2b-256 e8b93f04ab22829c7ced1c02515f4ff184948b20564834b81892f3215bd6c2c6

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32c87b724c0f7d3a6444b3211d3e587d88850b9b54cc2a439804c8dd229f2205
MD5 017756a26cc230b5532eba1467680a2d
BLAKE2b-256 b3f27e62575e363baec3c7d07abe717c603bc4997abc6eeda26224fca74c1594

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aaf8e7d9d19bf4d6d83d363f7c408c80b3f990d3774fbc099f09aed9a8179bb7
MD5 a82510038347e039e19f3d05984bf6f6
BLAKE2b-256 d41c89ae6efd40579ee2a7f4e806803ad391627774b3541236b22f4cd8163c0d

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d511ea07b2db304589719e0c42533d651f9caf93db419deaffaf741a8db7fcd7
MD5 5d76ea74b0b16ed5e2fcfa03924b3724
BLAKE2b-256 2e2e02dde1846bbdb0be01e77a787603da625876470a53694df29c3bb853007f

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 396cd0e5f7c7a7fdf8e07a73f8283dd6ba437e34ff8e31774363cdcc48681f34
MD5 daf2a3b2b832fc921df093b9bf8f07bb
BLAKE2b-256 0a072ee4491bb282748732f25dd4b444222f84c649b11903a44bfa5a75eb2684

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba117ca3fd6eac320adc511a300b2f13a61dbc0ec0b5f4642fcd3c1b74076d72
MD5 9205751ae53ba5a7fead0097e9b3e3fb
BLAKE2b-256 70bf6a38644d292dd1eede561c4528e3bd0d62d4b6f46552b3f84304702c747f

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f07ba13375374faa1f9e60b22723296515d7cce7a3c3a0ad05277769e5214a2
MD5 3a8be8453fb32e761e71d87fd112f2ed
BLAKE2b-256 f038fc6debd0907ac0fe6549223246eacd7d2f0c543e2b6603f23736bcf36bb2

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d146968a5a4aa44566a1d1c57bd40e06deacdac8e3470414e27149f77e91cfb
MD5 4caebd1bbdea71523abebc8de3d52b49
BLAKE2b-256 c8734daf3f82407994587179b07bbf8b0f0dbf651b4ac9a39dd80ae6c7bc2ca9

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2e93f698b1efbd4800aeaabd3c3e03d6861dedb5dcc35ae1272711914384d9d
MD5 2809a60b932c0b1695d3f7e7a4ddcc61
BLAKE2b-256 445af50aeaaf4b2a6995b53f4d4dfcd2a459f83a241283e215b402d45c9bdfe7

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67f02d665362b62fe92ba47f9a1bd1e11cc45d092ee2c9b68d492e32bf56824f
MD5 b36b36c3cae4280487667b841781f455
BLAKE2b-256 77d2fdb4ae04811c5bd4cc997be8e087ac85594331328edd5043fd104b026fcf

See more details on using hashes here.

File details

Details for the file hidapi-0.14.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hidapi-0.14.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 334e300bab210dbe1b4c8e42fd7dd2323d9230f04a9d3681675e5567ea3113a8
MD5 f39ff955c5a3b58598f17a240ddae8b2
BLAKE2b-256 6591e3c8b7b8604be730252692ec7b4f1c73ee9e7b763b734e995409621d72c0

See more details on using hashes here.

Supported by

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