Skip to main content

Package containing libusb so it can be installed via Python package managers

Project description

license pypi versions

Mirror of the libusb-package repository with automatic wheel deployment for the latest release

[!IMPORTANT] Use libusb-pkg instead of libusb-package for installation from pypi

[!TIP] If you need python>=3.12 support you can specify enviroment specific dependencies

dependencies = [
    "libusb-package; python_version < '3.12'",
    "libusb-pkg; python_version >= '3.12'"
]

Container package for libusb

This Python package functions as an installation vehicle for libusb shared libraries, to simplify installation of tools that require libusb. The main use case is so that users don't have to install libusb manually for projects that use pyusb. However, any Python project that uses a libusb wrapper can also benefit.

See libusb.info for more information about libusb.

Note: Currently the included libusb is built without udev support on Linux.

Note: The libusb upstream git repository is included as a submodule, so you need to clone with submodules enabled. You can either clone with --recurse-submodules or run git submodule update --init after cloning.

Installation

All releases include wheels for Linux, macOS, and Windows for multiple architectures. In addition, a source distribution is released.

If a matching wheel is not available, the source distribution will be installed and libusb will be compiled. This means the libusb build requirements must be installed:

  • Linux and macOS: autoconf, automake, libtool, and m4. As mentioned above, libusb is built without udev support, so libudev-dev is not required on Linux.
  • Windows: Visual Studio 2019 (Community is ok).

If the libusb build fails when installing from a source distribution, the libusb-package install will still succeed. In this case, an "empty" libusb-package is installed that doesn't contain a libusb shared library. get_library_path() returns None and find_library() falls back to returning a system installation of libusb, if available.

You can also install from a clone of the git repository by running pip install . from the repository root directory. Editable installs are supported. Please note that running setup.py directly is no longer supported for PEP 517 compliant packages. When building from the repo, because libusb 1.0.24 does not support out of tree builds, the build is done in-place in the src/libusb directory. make clean is run before compiling to ensure a clean build.

APIs

There are four public functions exported by libusb_package.

  • find(*args, **kwargs): Wrapper around pyusb's usb.core.find() that sets the backend parameter to a libusb1 backend created from the libusb library included in libusb_package. All other parameters are passed unmodified

  • get_libusb1_backend(): Returns a pyusb backend object for the libusb version contained in libusb_package.

  • find_library(candidate): Lower level function that returns either the full path to a library contained in libusb_package with a name starting with candidate, or None if no matching library is found. This function is suitable for use with the find_library callback parameter for pyusb's get_backend() functions.

    If get_library_path() returns None, indicating there is no included library, this function will fall back to ctypes.util.find_library().

  • get_library_path(): Returns an absolute Path object for the included library. If there is not an included library, None is returned.

Both get_libusb1_backend() and get_library_path() cache their return values.

Versioning

The version of libusb-package is composed of the libusb version plus an additional field for the version of the Python code. For instance, 1.0.24.0. The Python code version will be reset to 0 when the libusb version is incremented for new libusb release.

Examples

Usage example for find():

import libusb_package

for dev in libusb_package.find(find_all=True):
    print(dev)

Usage example for find_library():

import libusb_package
import usb.core
import usb.backend.libusb1

libusb1_backend = usb.backend.libusb1.get_backend(find_library=libusb_package.find_library)
# -> calls usb.libloader.load_locate_library(
#                ('usb-1.0', 'libusb-1.0', 'usb'),
#                'cygusb-1.0.dll', 'Libusb 1',
#                win_cls=win_cls,
#                find_library=find_library, check_symbols=('libusb_init',))
#
# -> calls find_library(candidate) with candidate in ('usb-1.0', 'libusb-1.0', 'usb')
#   returns lib name or path (as appropriate for OS) if matching lib is found

# It would also be possible to pass the output of libusb_package.get_libsusb1_backend()
# to the backend parameter here. In fact, that function is simply a shorthand for the line
# above.
print(list(usb.core.find(find_all=True, backend=libusb1_backend)))

Source distribution

Before building a source distribution, be sure to clean all untracked files from the libusb submodule using git -C src/libusb clean -dfx.

License

The Python code for libusb-package is licensed with Apache 2.0.
The libusb library and its source code are licensed with GPLv2.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-win_amd64.whl (90.9 kB view details)

Uploaded PyPyWindows x86-64

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (62.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-win_amd64.whl (90.9 kB view details)

Uploaded PyPyWindows x86-64

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (62.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

libusb_pkg-1.0.26.3-cp313-cp313-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.13Windows x86-64

libusb_pkg-1.0.26.3-cp313-cp313-win32.whl (77.9 kB view details)

Uploaded CPython 3.13Windows x86

libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_x86_64.whl (71.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_aarch64.whl (72.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-cp313-cp313-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libusb_pkg-1.0.26.3-cp313-cp313-macosx_10_13_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

libusb_pkg-1.0.26.3-cp312-cp312-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.12Windows x86-64

libusb_pkg-1.0.26.3-cp312-cp312-win32.whl (77.9 kB view details)

Uploaded CPython 3.12Windows x86

libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_x86_64.whl (71.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_aarch64.whl (72.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-cp312-cp312-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libusb_pkg-1.0.26.3-cp312-cp312-macosx_10_13_x86_64.whl (62.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

libusb_pkg-1.0.26.3-cp311-cp311-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.11Windows x86-64

libusb_pkg-1.0.26.3-cp311-cp311-win32.whl (77.9 kB view details)

Uploaded CPython 3.11Windows x86

libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_x86_64.whl (71.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_aarch64.whl (72.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-cp311-cp311-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libusb_pkg-1.0.26.3-cp311-cp311-macosx_10_9_x86_64.whl (64.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

libusb_pkg-1.0.26.3-cp310-cp310-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.10Windows x86-64

libusb_pkg-1.0.26.3-cp310-cp310-win32.whl (77.9 kB view details)

Uploaded CPython 3.10Windows x86

libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_x86_64.whl (71.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_aarch64.whl (72.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-cp310-cp310-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libusb_pkg-1.0.26.3-cp310-cp310-macosx_10_9_x86_64.whl (64.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

libusb_pkg-1.0.26.3-cp39-cp39-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.9Windows x86-64

libusb_pkg-1.0.26.3-cp39-cp39-win32.whl (77.9 kB view details)

Uploaded CPython 3.9Windows x86

libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_x86_64.whl (71.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_i686.whl (76.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_aarch64.whl (72.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (74.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

libusb_pkg-1.0.26.3-cp39-cp39-macosx_11_0_arm64.whl (59.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

libusb_pkg-1.0.26.3-cp39-cp39-macosx_10_9_x86_64.whl (64.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 79bd9d9a271a7d0193bb7160371db0d463bbbe78af00b0252e295ba0c367f9bf
MD5 8834e601126f334adc7d0e7364876a22
BLAKE2b-256 516a402a7f0279754e33e4b0ce73e20d5735b76e06774c04238a6f3ccc89aec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd9eec06b381b7f2f774558a34e489e0c58b5cb31b9c7aebf5257210061330c
MD5 81e7b490ef46fdcb4a28b4b3dd4adfa6
BLAKE2b-256 c1f7963a6daf14b16f9fa1423e9ee8edf423e44903ed720ce7511d8584bdb559

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45a7a7d75f7f921d650351f89e53dd3626dff238793356d83e336d15745ea518
MD5 d937e98ad21aa78ccea4d83bd63b9cb4
BLAKE2b-256 236917de9c5abcc1eb611f4edda74b36ad94b2a48020f9a83de2f216441524e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7becf295e4c3ae5f4a4cbf81c01fbfd1e291ef9455be5d410c6b6d4c4ce7b730
MD5 89699621565cd96b31c5284fc6fd90c4
BLAKE2b-256 c4102f06e7ddf9afbfff8f070248cf1ec759e8fdd384d452a2e2c503d68c1b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c7e70cdcd37d30603e44f2a0bf210fc58ccdbe019062365d759199242e76b39
MD5 3e50e346f6c8de888c618c9160449389
BLAKE2b-256 b141fff3d5ae1f89a1b1552aacb5daa2a7c6fb3eadb88a2cf12c1d32fdb7e77c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 315b72fa07dde49d6fadc329187869119dff3bd77d7f0b96a5376ccb38fbdbf1
MD5 38c3c40836c3feeca08addcd3b12a015
BLAKE2b-256 f256364c4fcd1013291bf234f269ceb88df9a1f9b42b5ae218f79ddf48d63eb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f9d2b4a458fd84a90fcbc2fdbc058d44aac110438e403daf955e39e57ba8674
MD5 35c2451feffa4167780775e9e3f0c13c
BLAKE2b-256 267a4b20a6a2d355d14eaded2b2b94cc4df135174db6ccfd2d2159c5b1ff8c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea07f4de751cfaebb7f1a59297465f570b5ffb7bfeeb1fa54a1a3c7fbf5e4581
MD5 1d1a93698d3a027a974fa9b55c3b0bfe
BLAKE2b-256 aafe9ed31b3867643eb94923a4ece6fd568cf83c2a187c01bbbedc661e1bf02c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7a267140a7983c20cd0063d97a5c9ae15a75e947e4c054110bde7ca01feb214
MD5 f5a74d1548934e84cd7a6f4e25b3f9f4
BLAKE2b-256 fabd3af006e273a51c8dab4be6c7c1022f636f2cb005082857e385feb4234910

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cff726f10c2964bf7b9d174380d67cab8ae58479703ff4fd3ec7a80d8039c93
MD5 a248d4a72684b02d7e15de2ebe906f55
BLAKE2b-256 c3f17d0c86d68543baf669cc2782ca9e8567c9e6c759561a5a42fde1282377c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223466cc591f38ba3f155ce3d54aa9ceec8c18d249a3244eeab3f12909493bf8
MD5 6278b0efdcd59bc51abef9bd557b1250
BLAKE2b-256 33af9b2a8eeabb8b99bb4dffc1b5f5a8eca3d64d285c0577f7ce41319a6f219c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 39300e9dce7d5d662334442bcb9d96b0497dcabfb084291e0f2b89ccfac3cf77
MD5 70c735fc6ee7ea144746b0f7c2d0a2b8
BLAKE2b-256 4d616c3c6ccfa4865449b29ad9511d7bb3f07bc0cf99221590b2442fb71e5dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 126552b3e93ea46fb8d5f80401e0e7eb2fa60111111dec92173280475bcc0814
MD5 d76c5116f3943d38a526006448e0e10a
BLAKE2b-256 d96920113357e7aa0bbf34d6c4900a97205e389db88c9a25f15dfcdb3a47a44c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: libusb_pkg-1.0.26.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 71f1ad768075972600363a3d50b5ebbf5fd7ca947842581b30209b33abdc957c
MD5 feea1187ee59c1975b872d261a362a2d
BLAKE2b-256 e4f9a5d2bf36788c98bb48551c87edfba5370fb39898ef182d227d1a1c86edb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-win32.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e6dd6d62e145c05f819a35e36ad974415c88105f616a9ec87eee54aafc1a05d
MD5 db2b7cc6e33a9ca3bc761f6d20eb9176
BLAKE2b-256 5e41861dbc79f9988b31e6ef6017ca4a2c82f1289cc1087fe9af024cd31eead6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f47f237de3ef972a8d75c5905e1a9a169fa65713835b240e5a8c8b9c8cc8dd20
MD5 2375a895849d0623a04bc2e5b049d7f7
BLAKE2b-256 dc7657b8b53bf3f82a4e352fcd1745be128be58c50af14de3db0fa82c4254883

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0ffaf8591f275255e4179237fab651ed8141f114c4592a8d10c557273a64f18
MD5 7980cc04761dceec612db16c4c77f916
BLAKE2b-256 bf5cfe5e6002a0db31cd917f680bb5f8b6e5a213822a1d729d249271562c4b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 517f848c038d8e4309c700108ab43941e41508ea53228aa66f6d22de58628de3
MD5 6feca0f73f93fb3f4e7565229af1cdcc
BLAKE2b-256 1acd6bd6ff294e84ec35bd1d61741ff2bca03c8699d4a625499924fae6a99360

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85089c9fb5ba0fb15f77de21d90256c047de2ebe2b87890a17edaf893941a863
MD5 0634a3f88afd99564d8976a65e73b318
BLAKE2b-256 04b6b222474e90b78e0571a6cd164a18c4df268d04f2bc1d73fe44c6f8a29dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52b3b26f2639808c9c02a077349e67a50c58b71188732e9d817bd472b371f0ae
MD5 1a6adae59874f6da6c4c45e00f5f41e8
BLAKE2b-256 9fccf1ed277a738f1cf56f65a1459e3677476aedaf9257a9770644768717e127

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a021d5167a2959efd61608f898bfd309798f51d2529993b95c6c07d5e5c5ecdf
MD5 37495fa29ad14e52a5306790180991c7
BLAKE2b-256 7cfdab396dd30d53aba57a9f7bb4737cea3a9f0f8f31ebf25d8a3d3f28873ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fcc8182f1480fe9bfe9ec0d20e34cb9130e97b4649c045eb14af67ac3ea47ce
MD5 aaf94f51845abb5be6e40da22e430644
BLAKE2b-256 0cfc8f80cad05fc96d3e09a5c0a3aa7b3a52cff42a51f43cb6c45c8b4c8ccfc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1367e200d1223e5992e139776c9f4e21e3e8ba6f5d04e11dccb69bc303f54d34
MD5 60fa58a025037827287f854758b2c4b4
BLAKE2b-256 a961ae27ca36e2f1926c469c92cfb6a0ada23384a492385a42c1f23d0e44a09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: libusb_pkg-1.0.26.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c3a7c9468c9229fb1ecfe91209084ed5f9dfb2b6f00df4bd5d62f0d01911e93
MD5 a83d8df5fe7a8058e10e0786233190a1
BLAKE2b-256 86475f8e0496414e8057313c6a394ab5018c5418afab769d5dcac6a9aae06aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-win32.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a40d5e5c5d5d99c0650e7c437ce35511a5fd3e259aa0747fda10a81b3c462919
MD5 dd6eabd9609b06d568bccbf22ff03ebc
BLAKE2b-256 4266f57aceec0732e810f3d56bc4b84cd8ed5f5fec8f05c32418082317d1c28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 337c3a075189aa03ebc163efd1ec087f313f53c1fb679bdb6c38d248003f9a74
MD5 1c8e19935fa6596eed8a27eb7b8d929f
BLAKE2b-256 a3adc9f7b1e2b5beb9a8a20b626f7633dd0c77c132092d774fda8e650a3092b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3543b396991c661e29b7f16b31042265df5d2856c90367fca816f6326d362675
MD5 ee467c75c0574c17cba6c43ffc8e241f
BLAKE2b-256 f102f934170ef26d7a00f563d9f2ff790f1464eedb6b6cf4b35d648308e98978

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33dcf085e14ba95f9a2ab78d8cd8eaff4d4076f7618fc2280cea253d9c36c33b
MD5 3532110fae375332cc0000703bd9c3eb
BLAKE2b-256 8c46d9d04588bfbcdf7ca1867f0bfb249e2fc2374e91e798f57639f451ce87eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c19e73563acbc5c40784c88bf67d079ff5674c1aab9a3372e328a4baba0ece67
MD5 1067998322f91fd09bafcc4290711cf6
BLAKE2b-256 ddea341f5cc733ddbed4675d60235fb967bdf490436afc6c5dd7b8488553c05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06c9a1c9c3bb3b890ae345a41a0dddb07cbf838da242721bbe29ed12cea0d016
MD5 a8fa3266d5ec243815e7c5c32914908e
BLAKE2b-256 995a9f893326d79e1453c7109fb872fd2fbd78a48c019e0291053f928bfa778b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 619d12d774ef2417c37ee50da463584f021c095b078e03b22fe1a78818141f60
MD5 7e012a60d859112b6a0c6300cd1310dd
BLAKE2b-256 798789fdbdfc2cbcb513bbf0282ba72c20f1b77e03485bb2a854c2381b135508

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 70eca84746b76565bb364e82ad1bb8ff2e63b44ec36f9f48fff04ee0a8ad6bee
MD5 660fc954aa40619b8ea37e627ebf4d0f
BLAKE2b-256 785420d91918868d7f742c94675a24eb2aa05b06ee482aa623cb34a4410e67b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36f514a36997d4533d58471ba667215f0f5412f0a23c64a04c6c70999e92e51c
MD5 77938698d2f2bfe2306b7e60ff643e0e
BLAKE2b-256 7a1370b8983c315f3b806967cd1e8452baf92be49a3fb7ce5ea1e235ece48286

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: libusb_pkg-1.0.26.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a48ed9767539d7bd1bc307c04dca4eb0a68fb44315b7b30959dc35ab00d73209
MD5 1295526aa61da866ddc4c4126a5cd47d
BLAKE2b-256 098652f5b83239d4424859b331e374e58997a778db6663eb1b5c532fd503a848

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-win32.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fb44220bb33e52782a5cdca90ba113b3ca72a3f5a921a41f7a66d231d193f7a
MD5 43cc401b3c6d268de2e19c5261f2ebda
BLAKE2b-256 11467e2d52069a297b4c1d9c933e2c1ec6a2a611c2e8ab446141da827764af10

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a16ea38344e464431d3900c3df77655fe868236db4e78e07868be82af65d863d
MD5 c290a6f9eff792bdae2871a455a7465f
BLAKE2b-256 8a294097de0d3a1e69d4e542c1026a4d236a419189a5a4e609956ae41bf44ab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fab65499ebe82e38f95c2468d233d0bfdbb05ad77eb21362376e9c6de235b6e
MD5 564a3bf0ea1de2ec57211ad14fbe69c7
BLAKE2b-256 17dac663d3d2bea0cb4d5564951ea15108c260aa0f1245b1f36d4c58ab0795a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06e7a43d988b6ec23b5cd6475fbbe8f23451b1be5b2f5fdf088788e341a92407
MD5 84b083640b54025f3288f1e26d187a6e
BLAKE2b-256 7a3d945ac5307a5399f9a36890d7b5f973a8f585eb8d71f9ba43c835a0da1502

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 245ed6b272da73e0d4520f349910f2aee13629c160b0e9f446025030e5e97565
MD5 18f23f6b7345d472abd5760e73efc343
BLAKE2b-256 cd290192973dfba0201fd3a383ea9debe4c84e78c90237db6174341888e0c549

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60964388b2acb05a7f1e664982fabe222435d1efd989bf835ab5768b195d3100
MD5 24cc2257fa77c750d44266ca6cbe2450
BLAKE2b-256 df20ca0a703a9e3c783475c413eeadc1a0d53d1b109822127c397697ead2ce1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69f7ce7e341b11461e009b762d9d68f24b37adf20c3851da69e259efdd213c34
MD5 63c05c7ef4dd49530cef8c0f59f5cf4a
BLAKE2b-256 f32b32f5cb33b7b7bf5939035d6d6f63d1561702c8936833cb44c81a4f138fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3192eab2736bd9eb0825773a7823389cb6b76d8004412a297c4a5d2983cfd8ec
MD5 858b795d8130fb30e62a0fddc8ef031f
BLAKE2b-256 bf41b87dbe63605ea383c6abe21fa93e76a6908e67f3b8719b6a7c1f050c1a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 64d32af717fdcc8037e781f14f924140067a948967df2f6d32510cedf4483c14
MD5 9bdf3853d76ea461050a964dd6394567
BLAKE2b-256 16a69bcc6672e5bc02b564d5e7cfb38d24927fa17fab5d522d052bb31da348e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: libusb_pkg-1.0.26.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 36ded81090e7d9b4a3d295d888b98575dcd1fc8eadf1449dc491510abb690f42
MD5 ae4e1385374f1f3381226c62100f864a
BLAKE2b-256 b85c2e3dbe2fe7b5457759f147eb2d6038b2d392be271e50b7f9d65fe07ef127

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-win32.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b428b4b74e7841f9ac185cc944e0bd382bef0d78fc5e2bfc811df7426d139ec2
MD5 bc230344c3986c9c035383f149535aa8
BLAKE2b-256 7be95a8780c79193e85baa56282ea3d1fdae9b00e6548cc5dcdc0e1aeb3a038a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95109ca873ae74cd5b5bee1ab6440d4a40bc6319a4220145afe6755bcc1dc613
MD5 a81b4ceeae80a8ada295912e868ff1b4
BLAKE2b-256 0e1ec9bf6b25cfbb93ba51d2cf496ef76fbc51d268c4acc598bbb529aac377ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5392240d3e490abefc02cb62809918fcf827ce60c6029ad86b549f674aaa9d97
MD5 bdff9f921bb448a42fc1b665e8d28b84
BLAKE2b-256 b1d2de3b102ad6fbb33c5cc626989422c30df43d59404328dd944b3c73548fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3070553d823e9ad1b23ff0489d5b52b0f7d12270417f02e8a136f593b4cb60c
MD5 e2c69cd17cc0a11a2efc6a8a50cb8b24
BLAKE2b-256 e1ab7236707b869e0ccc6af21141e61f1c0cebaed9d44fbf6e54874e7ab413f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc9f72f1ff13acfc3d574e9b7171836521b3adc7490a7090237b7dc0407bcbf0
MD5 f79ea784f641dc481fca58999f27ae63
BLAKE2b-256 6f058b9ee69901403299f38727b87fc92079d150a8ac1b547435d13faef2fc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4818d0f3333eb3a35e98628b481df8dd08f0a0f1611cc777526793e7094476b5
MD5 13d680bd4609d0c2625a8e66750b304b
BLAKE2b-256 3544f1c69ed2240f8674a4e691333e6c78eb27af85ed5b9671d56e9372b032c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c2fd86985ca9b1043a3cabdd854a3548c4af29e2d63e87f1d669bcd075cd3c
MD5 209b4d22b4f8aafd5070a6fbceef33b8
BLAKE2b-256 e5ea4adf49578226e5a476ebc9efeea35607fc830b4ab4d90d3c7b214d6d7a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ab21daca426980d327872d4f65d1e823a179df7e9512097e1ec6c8db37f68ea
MD5 244156668a097a0c14baddd63a021aa3
BLAKE2b-256 6951beaf1973683ce861149f3dd69b53408c97056c5f8833c9e24e7918f3b938

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 479de24e4d9a74bd21afec2ce46c1f26c542fcfd5043dd388e12299579c75735
MD5 31058e424c45664d24adb57c3df18bfc
BLAKE2b-256 ba41e154b35a50c477ee1a9c18389c8aeeec38d8f722a386f83521f7ca78b398

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-win_amd64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: libusb_pkg-1.0.26.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ebf3e7ddb5d963ee9df340b2c4480be6f721dd2e1a2093a46eb25a610d1050ed
MD5 f8e6c993b64a758610f031bc700b5351
BLAKE2b-256 609e8fce88e9e6a2b5205fa7ca7ac741759d41d409635351f87a2ff346aa82d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-win32.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60c772b8151629e363e0f0e65ef66e86d8a689e250592e7a7e4145ca850460d5
MD5 f687b0af532c932fbf40e7128960d021
BLAKE2b-256 74f69a0e1191b255364dc0f6f693cf11675a13c081a3d76f2398dfc0fb7a5517

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8614d30f85a2ee2832b139b49f3e08477de3de2de4922a402b2e20835e14b58f
MD5 24e81f6e5167c81da93f61df007b84d6
BLAKE2b-256 c61c391e6369307dcf7024acc691dbcd7a01bd006bb81981ecdc1b6e7520ff7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 feeab37f176e8e33c96b56943c12532fffc0b173532cdf2822603c6bc2b1bdaa
MD5 6bfa4b06527976f17f1d9994900e3161
BLAKE2b-256 99ca26d274bb5a1ae0de95a40b210875e83a1a4beeab590bc61d10bc18324778

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 655982c6fbf49b3194980f31c3560e987e57bcb8c48846f6c79d5ecb52942faf
MD5 3cfd6d6e19cc580c731ca6f735cd6106
BLAKE2b-256 7c7f87861b0aaf370b94bb3b70f7a6da0cb069451c8b7f261a174e6fda6dee2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 baf0ad4a8b15004a2490bf727e503609a7c1ad7991a77317f8e76b2e01269a63
MD5 b40b3a61952ff3da0473d53e9f0223c7
BLAKE2b-256 7d7193d32581fdcce6392e67aa25f08f7d9c3363f8b654d61a20fb28fb6026ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6a625c38c14d1c675abc78b356a032a973c79a9f49aa42462d9eb6d82a21efb
MD5 5aaef430ca7c944700c936b24f29af1b
BLAKE2b-256 817916f02f1f5d0432a5d6e28e65de767cf15982ad6bab16a98f73c6b4c29aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d31116bb01f44ddf2ba46569e6db56d2593a4be1fe9d01caee65728a36e652c9
MD5 867e0205cd3a36f0b72f572ad0533619
BLAKE2b-256 b5629c2179e3227b92e34e9711e41770745e507231f6ca6b07c60f284e0f8e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file libusb_pkg-1.0.26.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libusb_pkg-1.0.26.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37538b342d23ffae7efcc2264e0d1c2ceaca65a5d7a3b1c6a1b334909cde8934
MD5 57fc72fe436dd8946f3fced2f32a3611
BLAKE2b-256 a535903bd4aa65d6a4b2c0d1005a6572ed050c41288b2b71845a579d694d7994

See more details on using hashes here.

Provenance

The following attestation bundles were made for libusb_pkg-1.0.26.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-deploy.yml on o-murphy/libusb-pkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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