Skip to main content

A terminal image renderer with support for iTerm2, Kitty and fallback modes.

Project description

terminal-qrcode

Python 3.10+ License: MIT

English | 简体中文

终端二维码图片渲染工具,支持图形协议、字符降级渲染和终端能力探测。

📦 安装

基础安装:

uv add terminal-qrcode

✨ API

from terminal_qrcode import draw, generate

# 1. 渲染已有图片
out = draw("test.png", renderer="halfblock")
out.print()

# 2. 直接根据文本生成二维码
qr = generate("https://github.com", renderer="auto")
qr.print()

配合 Rich 使用时,console.print(draw(...))console.print(generate(...)) 会强制走 halfblock 文本渲染

from rich.console import Console
from terminal_qrcode import generate

console = Console()
console.print(generate("https://github.com"))

🖼️ 支持图片格式

  • PNG
  • JPEG
  • WEBP

解码后端:

  • PNG: libpng
  • JPEG: libjpeg-turbo
  • WEBP: libwebp

🧩 API 支持输入

  • 本地图片路径:str / pathlib.Path
  • 图像字节流:bytes / bytearray
  • 兼容 PIL 的图像对象
  • qrcode.image.BaseImage 包装对象
  • QR 布尔方阵:list[list[bool]]

💻 支持的终端渲染器

  • kitty(Kitty Graphics Protocol)
  • iterm2(Inline Image Protocol)
  • wezterm(iTerm2 兼容协议)
  • sixel(DEC Sixel)
  • halfblock(Unicode 半块字符降级)

🔧 CLI

# 1. 直接根据文本生成二维码 (默认行为)
$ terminal_qrcode "https://github.com"

# 2. 渲染已有图片
$ terminal_qrcode -i qrcode.png

🛠️ 本地开发

# 安装开发依赖
$ uv sync

# 运行 Windows 开发安装脚本
$ uv run --no-project python scripts/install-dev.py
uv sync

📄 License

MIT

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

terminal_qrcode-1.1.0.tar.gz (60.5 kB view details)

Uploaded Source

Built Distributions

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

terminal_qrcode-1.1.0-cp314-cp314-win_amd64.whl (372.2 kB view details)

Uploaded CPython 3.14Windows x86-64

terminal_qrcode-1.1.0-cp314-cp314-win32.whl (327.2 kB view details)

Uploaded CPython 3.14Windows x86

terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (757.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_i686.whl (799.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (734.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (802.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (860.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (885.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl (612.0 kB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_arm64.whl (513.9 kB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

terminal_qrcode-1.1.0-cp313-cp313-win_amd64.whl (361.4 kB view details)

Uploaded CPython 3.13Windows x86-64

terminal_qrcode-1.1.0-cp313-cp313-win32.whl (318.5 kB view details)

Uploaded CPython 3.13Windows x86

terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (757.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (799.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (734.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (802.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (859.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (885.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl (611.9 kB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_arm64.whl (513.9 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

terminal_qrcode-1.1.0-cp312-cp312-win_amd64.whl (361.4 kB view details)

Uploaded CPython 3.12Windows x86-64

terminal_qrcode-1.1.0-cp312-cp312-win32.whl (318.6 kB view details)

Uploaded CPython 3.12Windows x86

terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (757.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (799.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (734.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (802.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (859.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (885.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl (611.9 kB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_arm64.whl (513.9 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

terminal_qrcode-1.1.0-cp311-cp311-win_amd64.whl (361.3 kB view details)

Uploaded CPython 3.11Windows x86-64

terminal_qrcode-1.1.0-cp311-cp311-win32.whl (318.6 kB view details)

Uploaded CPython 3.11Windows x86

terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (757.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (799.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (734.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (802.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (859.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (885.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl (611.9 kB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_arm64.whl (513.9 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

terminal_qrcode-1.1.0-cp310-cp310-win_amd64.whl (361.3 kB view details)

Uploaded CPython 3.10Windows x86-64

terminal_qrcode-1.1.0-cp310-cp310-win32.whl (318.6 kB view details)

Uploaded CPython 3.10Windows x86

terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (796.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (732.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (799.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (857.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (883.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl (611.9 kB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_arm64.whl (513.8 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file terminal_qrcode-1.1.0.tar.gz.

File metadata

  • Download URL: terminal_qrcode-1.1.0.tar.gz
  • Upload date:
  • Size: 60.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for terminal_qrcode-1.1.0.tar.gz
Algorithm Hash digest
SHA256 04d94bcb80f5079dc7bd3a7ea97796e7c9210708a3eca7e9bb3a6221e50dd638
MD5 a718aca339ec666c47152a7b34f99d83
BLAKE2b-256 ef3164657767ffd8ffaf609badd0dd30d30e5c9659fbea646e966e3685a3da4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0.tar.gz:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3774a26b55899cf43d9c30afe50dafa21c94eb057551023ab283761df39f1bb3
MD5 08df4e2d127773ff6c1c22e5786adbee
BLAKE2b-256 9a7e61f1408e415d79b98e0ecc7277833ef4a2c67df7567b90dcc629de7b5bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f24bea3b6b13121a4bc4d5bba6ef05ba9d50389252bd68d7c7a0e776af6155ec
MD5 1cc2518d730b71191e6d722bbeb19431
BLAKE2b-256 22d1a8f4768d658ae96684a931dae2fcf054e7ce6afe2b493a6d713d698920e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-win32.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a980f0b7462f96ce6443a5bcc37d8410b33e1723dca08e2bd10dac34bf0ea0b
MD5 2e46a8d20fe4620a1dc893e57567e81b
BLAKE2b-256 bfd9e9c830bce94eb1d996e29a731ed39d94f754173f63b776899ada3bcbedf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6f9f85201bbef6eec6cc1b7bce61b9704fd24ea9d748c797033bb293b9daeb8
MD5 f34f9ee4fca242b54e8111869c775959
BLAKE2b-256 9b78e413d161f7eb94630603dd730c19478dcd32757a25391c02b1d5d42424d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b02d1eecbce11732ef77e4de41afad4766cfaac0f53c1ac7fbe722add291598e
MD5 b8a1e6b878dad2f549c70665e2a572a4
BLAKE2b-256 27b48ca4914c31e577f651f6fe56f8d9d96e0785d337aedcb06b177df0cf1bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4ab85ac7e0eb2bba09befc8f41f4c309519c396aa5bc25b20a50fcda61107f7
MD5 85b2cbf58e024b6a5d679d63de2472b5
BLAKE2b-256 2116879481de6b16b94ea662a06f7324a67e00925e0a95783f66c499ea39de4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72263f159077dd72a0337de475669dc2afd9ee29089c6aa5942bb07785c05962
MD5 603c1a26f40357396c5af480b1cfa001
BLAKE2b-256 1c833e170c4042ee251d75f5d4ab1dcd13ad45692146840fc9c8776018d36b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 03df5b29c5a4d76ee4cff98c3d7a5a85f1f041b84a169db8cacbd0e2cb8c2da9
MD5 981e7979670b51ad98856f008c13b18c
BLAKE2b-256 06f77b15694fe4a7ab4d36307bd1009b3dd3554841452ce6e7c460d4fad9548d

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6055595c3a06253d7c675115d410a2eaf012a0db9173d63d6710f59c31cf3df1
MD5 12d4b1de0782aacfb62d64fd71703974
BLAKE2b-256 6842efd0ed440f227dd8d12e471dadac174b69bba3b3b8962bfebe72ef050a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 10f5fff27a14f67985cd9accc71d04285e93520d560f0d5e7ee7e68aff6f5801
MD5 ef9dea45dc5b43232cc67625fd7aa0c5
BLAKE2b-256 00637ece47b7113ab6789dc0f202e1b2512d8d71c6ce41842a28475b3ccdf309

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37b8f3f058b75946415b49ac2814f673000f81b17ae047c16bae9bc6e6c1f708
MD5 58f1846044da4eadff7fb75a311c7f28
BLAKE2b-256 4a2838aaf723f0eae3db5be7e338d3df0b8a25e587613998df293e9d03482b39

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c1b28708ef12e3f3297ed8a0873fd1febbd1e288db9210a3eb017c4b6a16da95
MD5 7e710f50bbc9cfc9ba66b13c5e43c9e5
BLAKE2b-256 94ea1a1c73b322c4e9cf2937a08cb969363026a87f042003e4c451162a9593b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a59d39b38e39cf5305d3f7d4607c7ae9e73bf80004701b01a349223e3a56b45
MD5 b60d46b43d4c01b0b8a2b409ffeab3ec
BLAKE2b-256 023284565c06804219f36531eba290b888646ca95856394ab544b2efa1f1bcdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9554e3404937c0c8c6f73ed0d92f20218c56d551ab9d56f604eef94d0a235cd
MD5 d8e6524c76e77f2e90f0df0b586d0435
BLAKE2b-256 bbed09b346def2377eb029e55f47b3d2335106ae3f8de7f609251932b2cc156c

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebbc7e98422357caf2b50df68bb77d4fc6b7062908d05ef0837b5febc51d5d27
MD5 2e31f10a92ae2ead63583471692ed9c7
BLAKE2b-256 9308f44829c1e1aeb90dac20d94f31d91139d36446670fe09e99d4eeb136e2a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf9985ac63c443b28b2118be3309d9f8eb4006160a26aeac5a5bbda7c876fc5f
MD5 ea8feb5fd9246b06f97e5b45272a9806
BLAKE2b-256 b29cff8da8e339808b79e03cdf09e6c8a219f8a68eeda25691835dd915ff5fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3420943ef219f36966f5376551e2c20a91511b83fa5b9c694c5cc34dcc73e31
MD5 b1301c2ada151a12bf1888c9fdaca2a8
BLAKE2b-256 756c1dd51fa73a468de55b659d93d637f2cdf778d44a90fff28d906b6ea53519

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5189c5ab95bf6595554d092d61f6b6b32ff63efd0c07013d1696948f37410cfa
MD5 2c4c279f99eae7ae740f941270934016
BLAKE2b-256 11e49f48943109268505bd5df3f67bca05c7d1df3a996df95f07dff50b1c48cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 53430e247f4bc873d5a94846b5859dc5065a439bdf23efb9191c46f326c4de64
MD5 0b0882e47638d1adab9d97f06095c5cc
BLAKE2b-256 a484e262b9d7c99f6af38e2db4373d71a7d7e5445654bbb24cfc0289ff7b10f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fdbad897b49ae3a5cba8651ee6cc3cc9655ef58729fd27142d8d7b129bbe1b3d
MD5 d9b0c00d1a65a682685fc98712623772
BLAKE2b-256 ff0a8d217a3e67b873021faa641c063da07ffdc746a826fe11ca42674fc60c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18664ea58db4198d0aa9a49e264bd8a89a4fd9442c208428a50749a68b6c90a1
MD5 625b79a4a363d8b17f14fe8a928023dc
BLAKE2b-256 b8aea59016451c03ea26c80dee9ab767f6792b3aab9723f906c53546e8610fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01ed185d793d2a89a6c01ff1326678f03f1a51c690e837ea46861e0335d30147
MD5 219cd3edc062aa3e9b47995f0429bed8
BLAKE2b-256 62402caba51fc4ec9095cc57924dfc76f1d3db7e9dc627e2000ca31626c03ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dcfdbf99eabb7bfa6996478cc8fa445783e2e521f416e5090e345ba0de29bbd
MD5 d9d5fab2d39ad71991303f4a4c327cf4
BLAKE2b-256 7977d8aa2b4c5d242c5249d93ed0c2586dc089047a0ec89d218741d53306d647

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 532e7934e47cb56ee682bd64ccd58c1a20491a79be3534ba974399a5e9b83a47
MD5 ae4e66aa1e90af1fc81ffaecf7e72b5c
BLAKE2b-256 3bc3860cccd3ab376fc5eb2e8b2a8013ae52ca85b05775d51d2e48e3d6dca038

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a02f2c637ff2df62bae9b2d3b428bfe7ee97b5aaa44beb9ada987ce1d2943d80
MD5 9e706ed2249f1a2c44f538dc206717b4
BLAKE2b-256 268b8989a6d54f1b177277bc526fb64b3ea00522ec5a0fcd0eb948affdb490b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a851e8b263dc969d540378f32fc255dc06629f7bb0f0bdbfca89e9b320382b4c
MD5 797db62832fd868a13370cfa78b42032
BLAKE2b-256 8521093fb9b190cd79aaf0982fa9630913b54be5ccb80cc3639460e1890d9813

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c9b8b6594d79a82aab37bd1c15e085cd326a35b4fa2ffb7a164dca9e845d33e
MD5 77d1fe5bcbffdb7f82b6c7408a85dce0
BLAKE2b-256 9f1a899a0c5addea5494ed5574c655a6e653702199fd454052d0ae0373ad405e

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f5e51f49ebae39acde660f0096db609a07f6751c61939ba78dd04c7afa00673d
MD5 6c882241bdb9022b992a1862a02b7eac
BLAKE2b-256 7b9952dd27554cdea679aa15a79dc2c89a2e82ed4c448f1e968d97c1e6b07505

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0a993b00dca81e45bb5192b1a39b3d592d705ac64cb96622fcf2b645991d0d6c
MD5 4b9fa473c917d4475738c6dd64fa8a6c
BLAKE2b-256 a20bbb4f052df8ee11fc84bcc6847522ad54f98aa83aac73ba9cfc9e66a99307

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 89a264d97f789343daf509921adfde1047ba46a3e9c24c0f57986dc9a4f3db33
MD5 ad0deb634d2d6fe1451ad8e236138aee
BLAKE2b-256 915fc8efda97d50b6562a79de84c7322c8895c338feffd2496428f6ea67e4b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f16379f327e09dd6f256e2804396fad876c0a979b07a7751e8abc17bd6f2f6db
MD5 fe8be45629c7a71737b3b285977bfa90
BLAKE2b-256 66ba041d4d7bedb7a63bfaffcbe89ef84a9506959ede221f3b73bbebbf9b26ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8cded98a844875e2d357d894158e6017b0653a0f1e1daff8eabc04163db773f9
MD5 57e1ca41f9c4f3fcc71d9b492917959f
BLAKE2b-256 9c26c6fb33d2df9a6130c1b2f868d541c6442e36b9ff7763cf61c62118b1b2b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 825db1caebb4623475c7ea72039570c0365ecff330574e111a21d334684c516c
MD5 8dd7c873aafc1d25657c9738c95b126d
BLAKE2b-256 aac946d8978e0ad89473494e4fb5f636ca6e06b3f2d1b8692b0b19ac5ccc3573

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54b2f070dc9cc392480ec189712bd13b6616378e8bac0f1a1975abb326ea12ee
MD5 205eb8c64567153002faa80e96dfa5a5
BLAKE2b-256 65dd23b0b8a882cf4ded5e139d57b3f16db1bd368512cbe5e700c9aa6f16429b

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c62b981344721d0ee85dc268ad521e784dc01b9cf20ef3c023a3bfb14d9238d1
MD5 1f380c71f7f98f54daa563634a7dcd3c
BLAKE2b-256 2415e3fd07305659caa6cfb1dfa746340d675151b47b4e9d1da194d6337dcb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcea4378ca165e65ba820dbb09589be55231d84e8793f74facf0577a4f038c4d
MD5 403b307506ab0e0331141727aef2846b
BLAKE2b-256 25b51435e5e6436e2beec9db93205a2b9745167027dd8d1a8d64d76cfc3b6f47

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b193ebacbd70b4607c534d97b0d38d7138acd590c764830b3cc83ce9f8a52ed
MD5 a2d97fc2524de4287edba2fea278edea
BLAKE2b-256 e6ec62611a98d6436e9bacc4833fd560419db7bc2121514149678a5dd6095f8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6f9c4ffc3552beac8cf2cbe61625d1a70e9a9453070bf93ce15a2adc9c8c6753
MD5 083986873b52917149b4778c9f142431
BLAKE2b-256 007f4324106bf9a2068440396d439081e52a62de93388808ea3ff0bfd034c8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8854c016e7c1bfd1687086e476f02d9cc8c32de8fa87d858c614c7693c04a31b
MD5 b35f7f96c0af7d5ca1a030f6cc60fda5
BLAKE2b-256 18ccd3e059f112190a8226bb7ab5da8cf7b76ca46bc1c0b92f5eec68deaf3945

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cb4b897c5dece7576b6a236b6810ff8db621048505cc28f68aeaaf5a2f0ee4c5
MD5 6f6098fffca5d2689dd91ade95ab83df
BLAKE2b-256 8d6317c963ac35c3532d34fcdc56124cd55372a03964bd025d523b453854665f

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9540ccffafc0d484d28010739bfe072e2a7d0ca1039c227f374697efb349ef08
MD5 581522e0a4603ab093a0d0f41ab17067
BLAKE2b-256 9329978540ddaa5fd866b50c2840a4ece4cf2f1327f3fbbc7c6ecd22bb466f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f6f10ded05b27fdbde61f2449c0334b29e76f479a4f4d4df4e7d79525ecfb29f
MD5 33a3035a5c5e3e4656a185ba27b1f6dc
BLAKE2b-256 7ca17fe62f47de810c9e56e14d19f95f2c61eb31ff8ae78e1781036ada405ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f023c4f3467c5b68d50c30f01c44d57815fae26564c70320bab8bd1cc8c5e130
MD5 c0082845efe291429c474fe2a9b682a8
BLAKE2b-256 402548b187f87c3918d9fc037988e6c76563416bdf5b91a58f1943233274c8c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac75ca5f2c6be1919769c70ce1cf943e5b8c4d529266148a126c6b5c33a5a43c
MD5 5168588c3c22b46a60e686f019895b81
BLAKE2b-256 17bc80499513e24d88c5363d11850765d66a906e0d00d0669e11d24076cdcd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5fd4539aed05756fe78bc2794dd8cb92e85cf2a96aef2825b29a6c94b4a572e
MD5 51370f75c71ec762e8a36d7ec5242529
BLAKE2b-256 d9554c26b9cb81d1929808d0d7055f6d980c036a1bcebcf8f3196b9776e97255

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 318ce6429d8ccf2218e8bb12082a868b48b87386ab88c65f2ffb8b2c1178e389
MD5 fb3d7ac4bc8506b3f0c1eaf390cabf1f
BLAKE2b-256 76939ab101f5940b3e48f4da7f86edcc864b62cbc904ae73a1c984e7cac1ddd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0e7b0ad6c9a9fe0ba28a977a3707275df80cafd5732a76b8176a1558cf93639
MD5 22ff5831f4d7e3e6dd41d51588a6b57f
BLAKE2b-256 50496a9ebbf4206f4f98eccf1b8b344aed26ecd46686ee938bafcabb8e73db51

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0d6f0b79087b975ae348885ca25d9066e722ff520e946fe10dfdfb93bb87d237
MD5 6a562baa4c8460159e9e5c9ff2bff030
BLAKE2b-256 981d337bfe697bce225416dbb667babe3bcf1d210c552915bae6a44692f9113b

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b5bf7b076042391a14e284a8aa212840bee31f9405344e4cfea946de8c12a78f
MD5 faf1d425db6c2b35d14b675ed111c5e4
BLAKE2b-256 cb2d825720965209732ced101aecbc6886cfce6c04efbec59840844ee4a0923b

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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

File details

Details for the file terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bfd68de5ff9fbbd6bc81a0898caf1c84f2978eab0c12fa63e54ed6774ca23d75
MD5 d23f211925117e889840fed9d308518b
BLAKE2b-256 1424ae2d2550bebe232360b6738d00820e8df3e0b4388c62f40a8150ea9defd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for terminal_qrcode-1.1.0-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: release.yml on L-1124/terminal-qrcode

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