Skip to main content

qrlyzer is a lightweight Python module for reading QR codes from images.

Project description

qrlyzer

CI Tests License: MIT PyPI - Python Version Sigstore Signed

qrlyzer is a lightweight Python module for reading QR codes from images. It offers an optional auto-resizing feature that leverages fast_image_resize to utilize SIMD instructions for enhanced performance.

Getting Started

Installing

qrlyzer is available on PyPi. Install it with:

python -m pip install qrlyzer

Basic usage:

Detecting QR codes from an image file

import qrlyzer

# From path
qr_codes = qrlyzer.detect_and_decode("my_image.jpg")
print(f"Found QR codes: {qr_codes}")

Detecting QR codes from image bytes

# From bytes
from PIL import Image
im = Image.open("my_image.jpg")
im = im.convert("L")
qr_codes = qrlyzer.detect_and_decode_from_bytes(im.to_bytes(), im.width, im.height)
print(f"Found QR codes: {qr_codes}")

Using auto-resizing

Pass the auto_resize parameter to enable automatic resizing (from 100px to 1280px in the largest direction. 5 steps). These dimensions seem to be a good detection range for the libraries used.

# Auto-scaling
qrlyzer.detect_and_decode("my_image.jpg", auto_resize=True)

Note: This can in some cases increase accuracy as well as speed, especially for large images where there is a QR code. If an image does not contain a QR code or the QR code is unreadable it will be slower.

Getting decoded text with bounding boxes (xywh)

Use the bbox variants to get both content and coordinates. The bbox format is (x, y, width, height).

results = qrlyzer.detect_and_decode_with_bbox("my_image.jpg")
for content, (x, y, width, height) in results:
    print(content, x, y, width, height)
results = qrlyzer.detect_and_decode_from_bytes_with_bbox(
    im.tobytes(), im.width, im.height
)

Uses

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

  • Thanks to all the contributors to the maturin, rqrr, rxing & fast_image_resize projects.

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

qrlyzer-0.3.0.tar.gz (276.2 kB view details)

Uploaded Source

Built Distributions

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

qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

qrlyzer-0.3.0-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

qrlyzer-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

qrlyzer-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

qrlyzer-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qrlyzer-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

qrlyzer-0.3.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

qrlyzer-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qrlyzer-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

qrlyzer-0.3.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

qrlyzer-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qrlyzer-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

qrlyzer-0.3.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

qrlyzer-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

File details

Details for the file qrlyzer-0.3.0.tar.gz.

File metadata

  • Download URL: qrlyzer-0.3.0.tar.gz
  • Upload date:
  • Size: 276.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0.tar.gz
Algorithm Hash digest
SHA256 8f9c6aa652f679d1b9775ef191806e9382aac09eebd39a8c11c1a0f724953732
MD5 58449d7f13698eae71ed9cb4febbd69b
BLAKE2b-256 5f397fc936500d7ade52ea6e1a1dac84ea7f8ce59ae710d3e1b812ae94451c1a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4875119a6402278021aa2c1418e6a2fe797a135f04f9ab469c99492a7f218b6
MD5 aaae5bd3363a90eb2a2f8c48a6271ae9
BLAKE2b-256 2efd7aa8db548f35303b602ac57dee9bb72fb68611d36bb5bcda9f023d6f7cba

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c1463b74f04373dec8a1a4b027814222721d4d1aa8015f80f2afe252ef27cb6
MD5 6fc7371d707f212ae20142b2b9731b2c
BLAKE2b-256 927b0fb98eaf6e6b88c2a870bfc22af7144c409a297b309d9ea15614390a86df

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bc9c165c3bfdd81d418335d3d6940ea783bd82a65e988892fb62f0673b1414e
MD5 98232c4ad51b24a36c2e265027be14fe
BLAKE2b-256 ca5d4d7a54e0f371aa228097d7a1f150858b4aa36945f0c7550d29504ad6f60d

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c203a893ec7cc1ea4db398a73b94d6078d160efc839ec4e8382def491e4da9dc
MD5 62bc39cc3b4905104b0aeaadabaf6213
BLAKE2b-256 9080edc6df14b67fa31318d3a0aea0e0238603a2ca776fd6a44c8e19ce3a2a00

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61d7a1b868565224706bc1358d680d0fdbda77dde78b26982c6fac8a647d1a06
MD5 8ebcefbcef9dfd95a3d5d62fee8cc0bb
BLAKE2b-256 c599e10e4ba9bdbd4fef0354ec8fa4b84424c8490f3cc9ddb0798c8b1a496ff1

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9030c310373a146d5576c77440684998c936594e0b90dbc67bccc5d6c1876bc9
MD5 2cbda42918899b3f86d9eb58dd287b16
BLAKE2b-256 8fcf913b6ac9c13a919877c7bb9d9d0db8833d7d4536b8dfccd7ddbc23a7d35a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4021314f476981d3ce1cfa978531e80edb70da45169b0c48b2e8e682bdd0a9b
MD5 73f39540fd54161b9dda39672f63a774
BLAKE2b-256 5b7954c67870834e270334915058b0241309c84d64b0d647f675a62ce72bd69b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1f573b89e2a3e8cef5eb7407933192f7e87eb16176ce8b9a09fd7ffcc1eb737b
MD5 3b82c38a4cdf5bd9c969f030d18bf728
BLAKE2b-256 2dab9e5adb274dc618d1b1bdf91d579acfbe40ff0fd6e4d0475557bc88cb8e50

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6871ba6aa1cff97d7615f92ee4b9d48967f3e65fc59d8e9f3b0f6682a7cb08cc
MD5 fbcd32f45da40e990697093090f99db4
BLAKE2b-256 56ec7829720c954a4581316334375f3c42102b3899bb3a6a288390a9302b19aa

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7abc4d19c77a2696616ae235e2a288702ebdb471d085c2f3b82c704192d636ac
MD5 0eefb324463c47fe0de1332c20ea5e20
BLAKE2b-256 89aace668a8d7656315739363b42966ea68d05d51cca4f17bf051c0fad8d14bd

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa1a8904f32f1854e93ecbd78828f9bf0e159febd80a20804b46be2e6fae0aa3
MD5 55866106b76cb36f2ad3db72a0da12f9
BLAKE2b-256 3c299375482b1e9fea5a4d674808a62719ea24aa3d935fa54b6a3f792918f6ed

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 978abfd1e2c005fc240c4bc3373412ee0d969ca5c82e21f0b848418e270d78d3
MD5 9e0710b7a304ec6c0ea1cacd9494e7f3
BLAKE2b-256 112fccf3541bc6eba57d5439fab22f183ae3fc42597fb47fabe4566c39061a6e

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7005fe37786ff242aaaa1e2689f2127802b2120285e0a13b1da7e101e59d33d9
MD5 0b2b0bba86e3402910f99420ac88b0df
BLAKE2b-256 3738100a818f03500f1392514ff7c36bbaab000b69e111564ee617ab5b76b9ed

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff3cd9eb4384a72a976b4129dd84b9a57dfb6db48b5a0942040ee5113147164b
MD5 ae5e2ca09ebadf05251eb3f24806ec79
BLAKE2b-256 688411444217cf8394de1465f6d824888bd8af7e5d8d7b1ecd379a686c326ebd

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f83fd1a7812ae83529fda5c9dbe92c2d6ebd24f6a8a97c1e9a7358cbd1c8187b
MD5 056ab1461284da18e6434d45402d4f98
BLAKE2b-256 d9d32d847fe140a63dedde9b6819c0040ab28d146a92f55091042a36a6a9d299

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aeb6a78384b3f5eb2cd8bbafb1de77f435021d1fd7f319d1c2b65320711434b3
MD5 4a10444450e93e95aca728e5a81fe865
BLAKE2b-256 02249a2c84a4bd6ee885fd68f5fc115c9c42a549d8a4e879e8a957f5de72e44c

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a80b77da2a714ff9a02dcae76dcac9d06112fe51b0f09e9af44c30795894084
MD5 d7957d55a780b20bed9ecb76016248da
BLAKE2b-256 6c3dee51b21df597d876d512264b759e99d7611f03ebb1e14a3f6a1f2e858b8f

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a765b2042d767eac8afc7680431e1fc2a87f9e4d749cdc83c3522d0d3e3ef9df
MD5 8b4d8fe7384254a268f91dea82c7667e
BLAKE2b-256 13023d94484d2d2c4847511d6c85963424f19f69307a60d35fb701b75e9fd312

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f5b6df5991a447d3628b8bf72a8d4dc80d72a46e147e484c4cf490e2509aa4f
MD5 8341ef22ee9961aa68d6c404a960469f
BLAKE2b-256 c3958dc8a491d40567ea58e0a01d65ccc9de809062f074b3d9905032364af063

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65c95b47106536cd452596cbf5d5c77fde093b374f5980463e5d0b4fecd09fd2
MD5 0bac4d4e678cfaeca7078b1e2bdc92ee
BLAKE2b-256 1b9629e7cb0e5f459fad64ae08775dbf6c0d095d0a725c058003d48714b7ce09

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fd82d6c7d11c54b95fae405ba92f223ee3e1eb9b456e6e09b1ae0e391140759
MD5 d02abb9a3b9d6f9f26d7cd06b47f88ed
BLAKE2b-256 28865b0fa5fc6555dd9f9bbca5b2807f0347eb3addaf1011f84b5566e44b9e6c

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d41742a83b76a29234c26074b541af1c488e903362aac7c727ec296c48ca2be4
MD5 e7d8f7418a73c6a24a0b481baee33529
BLAKE2b-256 99f72dc5d8c7216d67646ad48ce7fd8130957494e870023475b8fc5206819e2b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed2e8a8c63699d214d648f86af89a90dee8a577b4be9cf449d62bd408243bec8
MD5 b0df2ea927effc2fb52010984d532a6a
BLAKE2b-256 f2a6cdbab9c95abc329cd3d0aa57b66c589f7a6948fae18b3494bebdc7753957

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1da615527b4d1c20306c18b530904c8ba3eed0976bc39487e508a87a6990fa75
MD5 b0339fb96650f8d0618bd24798894dfb
BLAKE2b-256 8a69c5fe1783d6b2abaea3ac0715614ef42ff0de65e534722bd61faecb22f3ae

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff5e3520547fcaacdff52877a668d38ba4916b2e01fbecf9c9d7c4410fa5e00
MD5 21bb9642234a534c1ee220776bfd1d46
BLAKE2b-256 3c83e143d997292d0c68570f7406aa02a517eed71ca42d4fa5f1874357492962

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bf543b045c576a982901efce555bde55410aacc9128d8e48e24b17d32811a67e
MD5 c0c4b901ee359ffd6101249d62680f64
BLAKE2b-256 07758a0ab69c3f62a7e9de14dd943c8ae3367b5ca90f503fc664ea54de2920c8

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22bc9925aed777457fa9381368537f9558ebeabea959261e644f1ccc31425f5e
MD5 a4cd181cc2de5e85859f5cba70a1f613
BLAKE2b-256 d0c3b9b9a15c4a4c0d5ad2e837282f54eb5c518568390e45aba88a44db56d4c2

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da58a8e116e465a20878bea8f74c090a3fb3a7d208de1f52ea45f38d4c501b0f
MD5 82340fd85cc485c9b91511b4ce9b7b74
BLAKE2b-256 c276635e62b1d419ced028a536e5de043da8d58d30951d5c35232ca7af597ed0

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34545ebb5556e0089ff8e5153a67b199e3999862f0b761568d20b3a2a9e9269d
MD5 e556185fd56029289544c05674aa02dc
BLAKE2b-256 f3af79ae842d5fdc3c028894863fc653b834edaf09817d024e02bd0ba18fda63

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c363b0877208e3b076e75650d2b00957744daee2dd822fb9db7f01d1320c4b16
MD5 20c09357a7061c9255cffa0e12a12a1e
BLAKE2b-256 8cdf70616160ccfc024a4e97f7e86d514e66277a73d42316ae8b42717923ae4a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32fe2684303e9a33bc4b807e3f655411a1fc9c5eaadf975ed398a8c92964ee0f
MD5 9d2d7e48a07cfdfdfc4b93b15190af29
BLAKE2b-256 9da682da50a7d40635e4810690db3fda5c9a84149ee67dc6e56da3d4389165b8

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76f8ee7c54f4547a2dae4a5d1cbd3351d7253ce8a00cad90bce6dd86f0fdb0ee
MD5 82570a7f083613e4ebbe9870cd56f764
BLAKE2b-256 caade282d769a02cceab90814265b1ddd1c8f7e25db8766a39e618c05949ce53

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2b401b6ce59cef26968afd2237937d69798d2643ae49ed252a1e8fd6a9d73141
MD5 b4e77314cf124da7fe00b1915b68f17b
BLAKE2b-256 44cbe61334220ad098a68d456505514aa01299c96d54957b76047b7b3a1d316a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb18e94c28e5a2b1a8175c71c4a20adc59bc9ba3e73706f1cac34aa611629904
MD5 7e4286eb5f5c62d6f7f74b186b15dee8
BLAKE2b-256 a578430683664b67f81d65337bc2dfb5bd5288eb318c465858a1bbd7967e0bad

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36b0d1e08dd8013f8b1a70fae30e6ae9d66d481726014c55a93796bf5dc604b6
MD5 2631439f849ad60ce9f91aaeecc53986
BLAKE2b-256 43ffe054b7f3cb907617b928315cb2d2b73eaea04394d3fc9424b0ebc5dfea7f

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a312bc6090a51a0b8a0850ade825608c6cc85ee46b1dc6f3e7813031e6ec934f
MD5 ea93d9164f923163d2b3933cfb034ad3
BLAKE2b-256 3b0d8377d259c7e8a9226789104e1633c89ca0265685af179ba88419b76f7888

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3907d1fa51c68afc292b4cd6925d18129740e2e2b4f6e6505359ab0178244881
MD5 6ff7c2853ebec39ce54375092368133c
BLAKE2b-256 70a9c20c1761af1b2d8d7e31c7d188324f1311f944eb16a6304bc0e081f5c21b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d054bb65749dbe1133e2499682b040dbec61b0540a22c3dacbffe08a8a8aa8fa
MD5 6dcdc5d47371ee150f01cdae0116c0a9
BLAKE2b-256 0c64edaf06198af1f517e4462a37fa37507711a7c319a0f78329c119ddc28d3e

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2b4647c47d1ce73442baf4ee714053af11089c8c8cca54b13fa96060e7260d9
MD5 7233fb5ac2215d021cff5188735270ae
BLAKE2b-256 da13bc6965cb0051cecc0ef787d72aadf5689a01e9873005a4b6273c7d0664bd

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83d4c1a49f83ff5d60eda9ed42e526f9d1f5c12bfc19da8021f9650528307e4f
MD5 8a1d41921d31a2cd8f61e970b5365a6c
BLAKE2b-256 4c1811d31c3ea6ea8e2ce3c07858f4c2d1e55bcfad5cad5de235d3cd66b42677

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 908019c01285c1692023ace4206097bd917bc704f554efeaa893aacee4c00e72
MD5 1a29dc6a7892de8acea78c0747ce19c2
BLAKE2b-256 0bb722e7f712605bebaad323be48fca38a9c47d26d278c51a87d1cf95ff8d0dd

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb4ae70b9cdbaa77d03c0dd4265bc9819b29bf461f2be7bdb62ea1322a6efe6
MD5 e86aaa061991f1b63282f68593abee1b
BLAKE2b-256 22623386d53adc1234dea5d02cd593d3754ed0a23be7241c1a823956d73a1385

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b9b859fea2e5293744b7e4cfcf9e547a4dbb819b1b95dacc96dfce79f416a31b
MD5 d3fc0270a9b75afade920ede39ed3723
BLAKE2b-256 dfc30cc5d2769b2284a4ded0fc552a7b81bc19ccba1ae3d1c946f1adcd5a7c10

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ebdefe55820c5f72541dc0bc14f393dd69049bc76b4e5635a08be0e7270cfa42
MD5 c813dfd36eda9b6c65384eb70c8aec79
BLAKE2b-256 9c6263734054eeacd59985debbe70b2c5754b0679f7687056b8dcccdae7f7ddf

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 474cc5602f031ffcc12d3aa12f2f3006f3ee2d42622b2546dcc0b073c19fa3fb
MD5 1a1c90b99b92a768f0df54d640c2bc9f
BLAKE2b-256 721e126426a426a8443e4f52f2586160040a6c8bb47713e5adc319bfa826c25a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53b6bb8e58f4f8a1170d674d42df13c70d65244d02c9a32c52dda7f492aa8592
MD5 4c51ce5de3ef20f7f654d0c8034d8b34
BLAKE2b-256 468c82e4fd79beb71dca48e18445e6c7b965d9d70b857d379f9b82149c79b8eb

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8af2970168aee6ce7c55a2ad9e8ca1177b559d90840462352a060214896cda88
MD5 411a8fb1e5ee1694a5c9cfcaa3a6aa22
BLAKE2b-256 f566e23a5efcefe969ddfa5100388adb9dcbf5b48e32b6624903e5990c6a85f8

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11b711ab0881d9727005b005c16421063d1b9a005de8041a6b68cda78851e7d3
MD5 9d176fc1ac441f48e0e0402392616765
BLAKE2b-256 7c1b10e6d3781c7ae8c43bcdf4333ada35aa1bc575af597d0a365acce0fb3c9b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24cf8e5f0b893bee4e868d1631b2980d02f687c3a722a207f080bbc25cd5b1eb
MD5 36ff74769538cb5cee8012cf18c333fb
BLAKE2b-256 dcbceef2cc683cf58a2c3a14b124fb3c846da0984a580c1aa943c7d0d6bc606a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e185fb5bf877d82640492c9775b4b99de21155c2892594e4365272e378ec398
MD5 04bb41e0ef223f8acc71c0de4afa32b8
BLAKE2b-256 5b8d0a8cbe85089bf1ea85d8ae72cf880dbf1a73b4d82fa52503d9d943cfd519

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcdf9912882bbcfe29aa28c953a0f429e1e35a728a3b94250568c2ec15d55c41
MD5 8396c4e5fe2c410ce7da403f02a1c5f3
BLAKE2b-256 3695c9fcd8497667fa513a19ac969467e1aa0bce1ded1b4bee9efb69ed4cfda2

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5e3f8e7a56e838b7783715a1125cfd9e606c50a5374bec619faeee16cf33f2bc
MD5 763da47b085a8486b4d229131f0f006e
BLAKE2b-256 fa775d541977d321ef6285066f6355309036111923167366b04f1cba1b97b83b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 664948541b7cd9bf194fcfd69fa8081ef09b3b4256ba0f620489a174de4ae2a5
MD5 08cf866c3bcbd45f60e43b504c70a836
BLAKE2b-256 2defb4c49aea70b8712a31ee3762f266642426f91b93d4dc380d26b358f8c195

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33ffd1ad4298a3d4363d682670bda81be80e58845df9074febff0c88c8ceb0f8
MD5 cc3bfdee77cf45a1e7054390b8f60838
BLAKE2b-256 89922b45f3355fb813cc2a82d84cd38f06c1df3caf2715565b4437adda264622

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 202eafcf6ad89f4a859b992ceb8bd1e570bab98fce293f4ce6b5e322bcc8f20d
MD5 0566c21cb289ea9dac3a67def4a3629c
BLAKE2b-256 48a0ac77550f3cea7ca8f1fdafe1a09fc1c21cd0fb276164f43c3727847a7d15

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5af0bdb82e4ceca4672078fa7b7faf450353e39aa1a8a95db414194949ebfbe6
MD5 c6098c37e329da177e006713bca68df6
BLAKE2b-256 e1d91a82d00b238d21f4dc9e3170d0d3a96ec0ace4d7084ff9d1ba71c04deee5

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1362c855af7f231562fe8f800af99dadd3361a4d6733defc85195a7c4b110537
MD5 57065d1ced3ae19863395987f27f3fda
BLAKE2b-256 e35ce21bf026148fc6502fa8553b7ed83c7472d0a8c215c0fb893df293b24e1d

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa4e0f8b0fe10444388446323974752109d02837208c33e451d0dc09ab855df0
MD5 5a4407045d55419ff4c7f2987ffae408
BLAKE2b-256 72bc9b1e339c8453a2aca825681cba11145b710cad9803af9bb6fc544e0bf6da

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9af7484b5a89c0a1bd75472662833dcef0e3012ffe3fe5915347f0fd9292e6ef
MD5 587a44b7c664b13e452be4524bf90180
BLAKE2b-256 ace2caebfcd1f872d219fecf1dfbe214a32280216edb958b848ec70ffcfca292

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0c17c0d1a1e1fdfc7d9f055d6605b26e99170b230a52135354f7d37f940870d
MD5 2dde79b800d946264625dfddee535c9a
BLAKE2b-256 297d66946d9d66a31189bb7dda824db6783aa6d317127808d73e18387fce9494

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8880078f9a139d0a3db20fb6d24e3c7f79a5227c1218ef6f3ad71cce4fbc4159
MD5 c481415171ad40e2e8d91d579e73c556
BLAKE2b-256 3de86f090b16d8fc67f3738cfb769e70a2583dba99d8ddfcb37a02dbd612090c

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 278b8d7f07fa3e1b95086ac13a88ad6084276b757b00a28e7437a5b272973734
MD5 f2dbd4dcd149ee9c061c889714a74d1e
BLAKE2b-256 7df54581a5505fd879f30c18b76c64f004df2ba41042469c90d5ed8dae7bf4e0

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d47b8ab02660ce1e96b28a85320e180e15e5fbaea92c344d30cc4858bfb99892
MD5 ddd01f280fab1500cadb786f3d449cf7
BLAKE2b-256 2514e81b1df9583b67d437e81e2f5167e8b656a95f8486a5e6654698a889d37b

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6dbf5e9c532e4d5d996821d400e0bdc6b6cbfbf1b9924f39e18c8c7b9723bdb
MD5 af9bfbe6b9c8194292593806682a6444
BLAKE2b-256 dda732c1735f67d9024cf4a18d5f9df0d3552f1b965e6d3fc0df585cff64c1d1

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e4f70ee3d37028110602c4c3b73973c905bb509f45404fa67a68aa9562452d9
MD5 ffe9df9145101ece5830f45d6d913b0a
BLAKE2b-256 86b55f9f7d3a6b881c4acf3b1f8bc2bc11e1f6c43842450a976d14aba1026e03

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: qrlyzer-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.2

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2656f54fc1281e81b3198310ae8ef771efd59a160d614bcf87ba11b2c6b15ee6
MD5 c68cca6ea72bb832867bbaad08b100cb
BLAKE2b-256 7778263006a55fc73bda436de832d69b4c6c47afbe8206ee93c37d707a25b8b3

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0219005bf3a4db8d4f4a9b3a061297630116dd07e7e954133b185a161eefd9c3
MD5 737479577d40947982eaa9f14d0b0b13
BLAKE2b-256 faab88a42f20b1a11e5466a4918e35f3bb925f2b5ef8274c1dab25ac8b55c71f

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 435e5218b8c6bc9695c11367493f730ed7a46536a55b6903c30ea8976ced48d2
MD5 5013f3482d2a2cf4f2a1db33375f5b4f
BLAKE2b-256 f6482399ec2092fad09c5268185450ad67de758d418f6a6a5b70ce82fd97c7d8

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22100fa56e6b7d692cf58c36de873b6e7db316d8f535f1e60dda5aa23ca1c8b5
MD5 009eb3b2ddc61a95e40fd4451f251c3b
BLAKE2b-256 63268ae606d353190b7c3bafa40cbe3514ce3b3ac3e47566df8e4d538d745c42

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8e1dc028c1174187028384537716e8bfed016db3ead9f23d06a7e33db32f48f
MD5 52afd89581bdccb0276366b41bfda97d
BLAKE2b-256 d84c6c84cd8689a90093115f31d7a94b68a57b9082b8329d58504891d66ec81a

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a732c350123ba59e6158201abbea017d3cbfe92d4c5c0a29a5ac8b7a6521745
MD5 27e3b5c0d648bda6f83f9b91d90f7f67
BLAKE2b-256 fc0f1e9264191263508666feccf50e94197c3534b1b7f4e6eec5825ccc547ee4

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9390efb21ad7d42f3f96903d54ddd4a38cebc77094c32c009e01a2cd583696a
MD5 2fff3b9430984777ab44333ad8cd7677
BLAKE2b-256 0d79e0ae2609bbaa10ad177afa3c2ff7143d5b0667c58ac37cb5d72ac855cf71

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d011be244a4c51f5faa72b609d24ddc4d0fbe92b4cfb78969ebeef62e8a67d2
MD5 81fbead48de647003f152e2528ac19f2
BLAKE2b-256 6c7ff605d3f896a672a9b605fc48c12a031b024dc7fd6e889757f18c2d8d661c

See more details on using hashes here.

File details

Details for the file qrlyzer-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qrlyzer-0.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c22af10959551151c8d811bc35f944d3d30e606dace9cf4054b048c416f9b4d
MD5 3adce300634aa289d57b44641d2428a9
BLAKE2b-256 392e70a1f56050fad531277b5b95e758fe347bba8d414a214442542c056bfcce

See more details on using hashes here.

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