Skip to main content

No project description provided

Project description

kwmatcher

多模式字符串匹配工具,带有简单的逻辑匹配。

[!important] 本项目大小写敏感,请确保关键词规则与待检测文本大小写一致或进行预处理。

本项目不支持分词,请确保关键词规则与待检测文本已经过适当的预处理。

安装

pip install kwmatcher

使用方法

默认情况下启用逻辑表达式解析:

from kwmatcher import AhoMatcher

matcher = AhoMatcher()

如需禁用,请传入False:

from kwmatcher import AhoMatcher

matcher = AhoMatcher(use_logic=False)

build方法需要传入一个包含关键词的集合,find方法需要传入一个字符串,输出为一个包含匹配到的关键词的集合。

patterns = {"A&B~C&D&E", "X&Y&Z~M&N"}
matcher.build(patterns)
result = matcher.find("AB")
print(result)  # 输出:{"A&B~C&D&E"}

当启用逻辑表达式解析时,使用&表示要求多个关键词同时出现,使用~表示排除包含特定关键词。排除条件组内部可用&连接,要求组内的所有关键词必须同时存在。

假设有如下关键词规则:

A&B~C&D&E~F&G&H&I&J

将被解析为两个组:

包含组:

  • {"A","B"}

排除组:

  • {"C","D","E"}
  • {"F","G","H","I","J"}

如果文本缺少"A"或"B"中的任意一个,匹配失败。

如果文本同时包含"C"、"D"、"E"全部三个,匹配失败。

如果文本同时包含"F"、"G"、"H"、"I"、"J" 全部五个,匹配失败。

在包含组都出现的情况下,只要任一排除组全部出现就匹配失败。

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

kwmatcher-0.1.1.tar.gz (8.4 kB view details)

Uploaded Source

Built Distributions

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

kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (589.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (565.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (631.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (392.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (589.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (565.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (631.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (392.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (589.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (565.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (631.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (558.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (380.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (587.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (564.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (628.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (433.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (366.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp313-cp313-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.13Windows x86-64

kwmatcher-0.1.1-cp313-cp313-win32.whl (203.5 kB view details)

Uploaded CPython 3.13Windows x86

kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (563.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (629.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (556.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (417.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (414.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (433.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (390.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

kwmatcher-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (336.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kwmatcher-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (378.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

kwmatcher-0.1.1-cp312-cp312-win_amd64.whl (253.8 kB view details)

Uploaded CPython 3.12Windows x86-64

kwmatcher-0.1.1-cp312-cp312-win32.whl (203.7 kB view details)

Uploaded CPython 3.12Windows x86

kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (588.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (565.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (631.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (556.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (417.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (392.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

kwmatcher-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (336.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kwmatcher-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (378.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

kwmatcher-0.1.1-cp311-cp311-win_amd64.whl (253.4 kB view details)

Uploaded CPython 3.11Windows x86-64

kwmatcher-0.1.1-cp311-cp311-win32.whl (203.4 kB view details)

Uploaded CPython 3.11Windows x86

kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (589.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (563.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (630.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (557.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (391.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

kwmatcher-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (340.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kwmatcher-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (382.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

kwmatcher-0.1.1-cp310-cp310-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.10Windows x86-64

kwmatcher-0.1.1-cp310-cp310-win32.whl (202.9 kB view details)

Uploaded CPython 3.10Windows x86

kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (589.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (564.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (629.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (557.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (391.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

kwmatcher-0.1.1-cp39-cp39-win_amd64.whl (253.5 kB view details)

Uploaded CPython 3.9Windows x86-64

kwmatcher-0.1.1-cp39-cp39-win32.whl (203.8 kB view details)

Uploaded CPython 3.9Windows x86

kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (589.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (565.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (630.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (392.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

kwmatcher-0.1.1-cp38-cp38-win_amd64.whl (253.5 kB view details)

Uploaded CPython 3.8Windows x86-64

kwmatcher-0.1.1-cp38-cp38-win32.whl (203.7 kB view details)

Uploaded CPython 3.8Windows x86

kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (589.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (565.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (631.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (557.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (418.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (434.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (392.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file kwmatcher-0.1.1.tar.gz.

File metadata

  • Download URL: kwmatcher-0.1.1.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1.tar.gz
Algorithm Hash digest
SHA256 4e5d3642e1b80afaef2a66c40852675b23b5ddcf653c3f49a9565ab8b0c8e191
MD5 452eea0a357231e06fabab8c9a84a19c
BLAKE2b-256 26eec8e70ad07a636f6079e6ae804fb6249c9edfcaed8c16851e69b685476bb2

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5f7f65e40fdf9786edbba6cf1374773dbc8873346c1544b2b1e73b08df19726
MD5 feee3cbdc707402c61352ab0228351ed
BLAKE2b-256 02a4a57edb816ee02d7784b8d283e59e74cd2874853dc8db1ae7e4b16e55349f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61bf0b29804cba6ab0db9c9ed557c0daf0d049d864474d804c4dcdbc57386482
MD5 fd9caa0cd8fc716df1d1a53258b337b4
BLAKE2b-256 cff8d3e67eda861d7cd808baecd3c5a0b9592e9eeb097027f6e936c85fe6f423

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e97be2d40e7cd079fc328912d9010f84c903a3d1797b10bd69b01b6c2280731
MD5 1d113c63a3cbb65b171be248ae6d2f9d
BLAKE2b-256 430b54b971e7e12cc5a7c16cb08a60c6a9cdb429ccbf9ef76ccc724b5d66bc28

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a23369e9bd1d115003495e55c668c0fb695225a60242bd814cb6efe8e0935dc3
MD5 1c365eb0cfa1469bd520adb31e54a196
BLAKE2b-256 0472b161712f08abab855924d61490a1e98a20dd8a82c7467585283276fea5ef

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c99ffc40852d8908376d4fa5d9efe5734e07699280c159d5c2d0e440acabbdf
MD5 95283bd60c66d0f2aa4421873bee498d
BLAKE2b-256 f7320d4758745bb0da480c226efb8430702cd12fa5debe62708fb24d247ae30f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a135815cb075d56d195c373e03281cf8e853ec9aaf930754752e8f90bd6b1f41
MD5 71749e0dac36b41e964004f2764f72e5
BLAKE2b-256 2b8d93873ab871164b131864a1b403f6d4014a6487da1de127bb91568083211b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d64060ec524a4aada167bf0545a2e30ea5be58ee8d0f0a9005a4029371701f39
MD5 64f734ff1f69a8eaeadf803a44953f52
BLAKE2b-256 3c33778414e1a3a6ddae001010a479b3abec7f348c37042fdc98c274492dff78

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d02236b6f65d9928cafc7545483bba6faca7898369edb328b36b5fe7e6be188
MD5 6d1d37ac1a8986fc427e6f12787c2a25
BLAKE2b-256 61d7a09e54642e3d912fef1c176c409f0a62b2876055b5f58a1f83dce23518dc

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f6e2c4ac774c9f31690820c3121a02253a8dcec2a3a6913112c88ebfbb9f9b7
MD5 a59244d13eef3b5a0988414eb7f6c290
BLAKE2b-256 bef564ba9582c71bf130fc7404114f1ebd2cef6a9c677a31aeb4b54d541e2e3e

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55c16ca978c08d8a9f3b9a7c3119bd3ccea1939d26260248c2d8f6ae8e4e6c0a
MD5 0eeda157ccd1b3288ab762f5fbe9be41
BLAKE2b-256 b156e78362f70f8f33ca72740e354ffc38580c9823dbed329c2a32f9117b34c9

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f87a9bcdd5b32e21848eada03da8a6135f63268d2c43a82d025b7a46eb32ccc
MD5 6c7c43a133df0c76ccc4a302c90c4efb
BLAKE2b-256 79df19900b88d04f2c3ed3cbf9e5e858df485fb619c1747d40047c3f6034ed2a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc18b29743804cfb6ce7a49617e673540ebe46bb24afdaefdc964c4a1838924a
MD5 4cd7d850d60b464a8f9d79487d7355e1
BLAKE2b-256 2ef424853df3013a36f65c240591383e3cf10dc3744cef152bd7aaeb027583ce

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cf53022688c1fd4ade6f6b0ab59142437bf82209901e3ed14b8e8e9f21b4b4c
MD5 17c93e8e78ff73924f51fe8dec7761e5
BLAKE2b-256 1eea3f1733a3dad57142310a8df93c4645c7138d6a31c769a796c6c9d67f4612

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29c8e2f0922247821bcbe096674d191d28e9d3e8e5ec1dab4b7bdcb16ff71bac
MD5 dcb5309adc709a8d588b934c6b95b3de
BLAKE2b-256 e3f56123a111f5419fe58c0646b6099542eb3e453b85412e315bf539533fe896

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b15e4833d0a6cd989170036774f52c347b690090f3beec9a1af1302916423734
MD5 5bb8773a95cf52767cb5639b22075147
BLAKE2b-256 eea281ec858eda1e7ad6082d76942de1bc2d63641620d98e965b0c72ae327b5d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b6d153e4d05dcfd93bb069089bce50f2d4a04d37674f3903b313922ab3ad881
MD5 8be2080e58002555f75bf80058adc84c
BLAKE2b-256 a2080d7f5ee9fe0e7f5c24f739c8e4a012feca123fb622ec0117c00e4383ea18

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0c63c72532eb0fac0f7fdebc960d7c9acc2bef633502c0455d6c3ad7a5a29f2
MD5 10609a57c1175e231deb1e9b6c0e8396
BLAKE2b-256 b2b2ad4c8069a4c51de2cfd1a95f7b8c682d11fe42d5ca9c60e4d043ae4374cd

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91980adab85a2c5e758dc5aedff2c56bacecffd8035bf0fd25af4dd69778201a
MD5 f306ffdc57ded5d510b0b0e32a35fc57
BLAKE2b-256 7b37c9d11c24d84a71c2b4dcf2be0927440c7efb5f92df89986629984f4938d0

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d07594a4cabf154ee43964eea660d379ca2debf5e580d9dcf71905587016ef0f
MD5 7d7ff42254038adba4a5d54f6d5d5fbb
BLAKE2b-256 0b84a3e3d3092de9944c086921b2aab78bcb4ae7230409b3a82f202177e73def

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e06f7a3df69b0b8295a4f2da0102e9e7e1d6c43fb376e1c2858cd9bee8a4b403
MD5 0fc0d1a2d7fdcb11958336e8ce1ba392
BLAKE2b-256 72757ff3b16d727a5b68a04cc72e6dcec549b37b2a38a47f8c9b86408dbd6e66

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d07b1ff886fff2382b61ee169486ceef90d7b00ba9355983750a976fe9f37fde
MD5 259f5a48e5eb53351c098c37e67ed4d7
BLAKE2b-256 c29d8a67a94010e5093ced3b4ec73e376d37a1b92a18510533d563f18c57283b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95ba70511f37f98fe143333895b2b1fdd1605757c59d4cb0f1e65385ed509f40
MD5 0d75586529641338a34ca0e525410831
BLAKE2b-256 7b2ba2f5c24ce0898c38f4bd6946a63c5ed231bcb752ca676898943b05cb686e

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8e16b82273e013879c3376ac783ed237045a24ffe141647a9601a15dc88dadc
MD5 3a14a5db43e4438c57309a2b90d37268
BLAKE2b-256 e15f5da3c644ca612a3985b290b1a55900cc248df9e160f8696f7e475e23972f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd9f1c1daa751345b9ca0eceb2cc0ff93e68f03f674e0aff9c4bbbb4683ca24e
MD5 74b2e61eaa3d2b9464f6c87ba6bae073
BLAKE2b-256 5972fced89b16b5f988ae65c5ed02e4d358b186b7dabc1424aa1039339b75772

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31dc03107956e554f5e09a182c0e9e4f39a65e1dc82df75f927a1a7e8502fd2b
MD5 d47d0ae90765245fca7d0d6e837a169a
BLAKE2b-256 a308bc166bdc89cb1ed3d5d7d86841f32d02379a9a63881621bcf62529f46354

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ba8f0062178d63e38b3cfb78d9f37838845bc8428f498dca0763d0465b24db9
MD5 8b7a91e0821d94455cbc2816b703a21e
BLAKE2b-256 d25cdfcf187740f1fe5befac80a3e2f81c5fab47b81a33a2c5cc101ba7f700cf

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8525d970fa8e098ee9bbc572716893bc006c445df7137f5c9b1f7b8827622a3a
MD5 eb602a14ea65708babb6d3c311366c28
BLAKE2b-256 ab185497a286ca68efaef198360910a484fcad9583e0c3c3f1a9b5ff8cd60c0c

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f120b219bc28a9f5e58220f9f28679cba7ff85a7984251747013cfee7be0779
MD5 c2b9066b58d8fec5f7f588ebe8ecf5ab
BLAKE2b-256 2490eb36f6e9086ce595aa5883c362735ee903c43a9d7997cde1cd785eef6a27

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42d38987cbee32080bbfb3053efb9e122f4cf00aa12aca6a0e71ce58a9627591
MD5 e04a5f3c28b0fd8c9f81d4cebdc504c3
BLAKE2b-256 8c6888bafe7c928f2ce69786b08091537ebd99503ae0d9d9734f069c1d0d7dab

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08f3783053d4c141a8ffa3fffcc794e8c087bf0db2813facdf2e63ec32ab0937
MD5 72bda05b5111b5f08b3cfbc116fc2596
BLAKE2b-256 3bbdc672e662ac1d4ef8d05f0cc46635327c21065a5850ccb4adfed6d1135111

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c86be001487d6ef42949d43c263175357130f85bb287ddbcf59754305969af4b
MD5 d95df35f9ad300651b988b369b45d106
BLAKE2b-256 64c26b3fd900b708f2fe4e21becad7261850a9105992a23cc70051b8b18ebc96

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f19323fb6a5b20df2a149af357f9da5463fd7a8a9d1fb4cb94feaa0ab88be08b
MD5 1748cafcf66e239dbc7490c4b5394d98
BLAKE2b-256 1c3698733384a7c9c1601c435d6392f3d5f635901e251d64cf6d013a642d1754

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6c30dcf566f450f6bd6b421aa4b0730b953c330ba79f945f19900ed8d2fec12
MD5 40f65b4807e6dae5151d2f838575c5c8
BLAKE2b-256 dc0435160e4a84ee010eb500274a6df96b662a2df2560cd25a02eb3d5c95094d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbbf369a598f369613979edfa593e701c2901fc847bcce2b83163554f2c5bfe6
MD5 7c39aa3e152b39d40fa3077699f2c2be
BLAKE2b-256 8ef07aeefdf0c5ef32bb6151584a8d6b1ed2fbee67393f61ef30c6ffd4e9e464

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb6e458a62af9236be65b78cd22cfd27830cfd3171365dc9fd70be6425093bd1
MD5 e5919f155fdb64b9e7ec9d7b910ad6d6
BLAKE2b-256 ef2d678ceecddf2e2fd04064d4b7bf138c61b699dc7e9e0150d984b6ede837af

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4baed859728f99596ebbe3243588abd0dcff0bba47801f2962e238990f79765
MD5 b2e84cb61812a2a38bd26d8f71cd212b
BLAKE2b-256 f61d54e3f9d052722f477026dbee7d0bd8050e50e134d6264b4ce3d92597563a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3bbe129dc0a9846b4a8f4856f1e18b3bf4c8bc00a8ebdcf2b8f3ccaa0cf516a6
MD5 fa09d56906b9c04c092eae99e237116c
BLAKE2b-256 b90ee633cf33333d1ab4f97b209422c5278268a559ca133779cb8e27f2a05ed4

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 203.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 53c23e3c56461bea44990da23fa9ad687257ae3d58aab51e539324c3293c41a9
MD5 bc7127bdcec8e38d0fef195a10680c99
BLAKE2b-256 a2a0d3bd28750f6bab767114b78d4aa2f793147afef17da159f864cb5193dfb4

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb2a13679d884e9423d65b8752c9b34a5693c4b477fb17bbb5a5e6df5d649b2f
MD5 5716913ddc7b12c18bbca703c147e521
BLAKE2b-256 31ca9cdf914704f5efe447e9493edd62056fc02bcead82842e25107104bdb146

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 133de9b4b4075cf9cb06ed05eb227d4330dbbdd40dd948ae3b8057762d24df78
MD5 a7b2d8fd6399c7af06eb5a91652d84eb
BLAKE2b-256 7a9db2c85b86d5d95448375e0b9f845bb32f32cb38f7a2b82256872a11723b26

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f144f8c11f923919fd78c8ebb46227ddbd5a36d1fd26f9a4abda0dbc9a9f300
MD5 e30de998946903c5af952b6d5c2070e2
BLAKE2b-256 99dfd0488ec2acb4bc1e838517202bcac0832bae43ffa11f80111b343e1beeba

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df0c6298e15cd88f4c262fade43f3a902d614922c517e33697ed61d5af10bb5d
MD5 a152ac947df8c8172a1083eb4a67985a
BLAKE2b-256 9d032e620b2dc4b7bd6e2054f34fdcece5907a3509c0d041e5039b2a59a7dc94

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4fa7aafc6bdba78bd672366e1c7e66a24089c50281a026b881a077de13bf5c8
MD5 0cfd5c99c8fd482ca9d1472ead2f1c87
BLAKE2b-256 a13c0b782b8613520d41e083b0d31ff0e354b772c12d3bb387c8552c0a42dd69

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40431dc8ef12dfebd40abc6456aa466298ea0e782a4ce2c02c3a7b917dc1945c
MD5 f816933d1bc228136407d7cfcafe6e6a
BLAKE2b-256 825a2d909bfd98d2e78e69c4a8fb6c70e1b8b6e9e4e5f64dabd848df6a7f52dc

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d35f85210dbe8233a628d714bf7b1d6317d3a37e78b2901fac8c1deb63530f62
MD5 eafd943d5c818e810b6d924a9bb01187
BLAKE2b-256 d9b1661f70b091654899b73ddbe1c277fd93a7d2b99cc436739066fe19ceea6a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a39bec0e5334bbb3bf7b2f41e4b33c46d71b39fed296ebe467c775c82ce2988
MD5 8c2d6f38a6da322ec499421c5525edb9
BLAKE2b-256 6f328a7c41b0c292c2d7268b2bf82aba0204fb804116a3de7a72d2bc00ce3fd3

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33c43387f753c77dfa2d7c4b6d60fe7a5b3caa8ce3879ba21315991fbc8d06b5
MD5 93d95fb2dd8b458c39d70cf4fdebb8a5
BLAKE2b-256 f2644b5cb2ff6f9714d2729efe1a7ffef1bdb405be7b8ec07faeecbcf2ebdda0

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7991a8f4cec93de40981f7d33e7c4b8f61f23854d6a55df2acfc11b5b135d3d
MD5 c9a47a8be57b4d4801e6909d98923349
BLAKE2b-256 6b64710330d8465ff819c2229ab3ede5002523fe38005c3e950bef5fda56d6f1

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dd72410213ae58d243fbbbd5aa50ab07f2336ce09c50ce26ecf27f4029cfc64
MD5 8f5e63a7d2d96b266d9b783c9c7142e5
BLAKE2b-256 087d85fd54603e8bf94d30efede3229491cd6d5129abbe257b00da30630573e5

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3953eed4e31d2bf4ab647283a941f05a656073bd819de8248ed1e31a755b054
MD5 8797f4cfe2890f8048830b1a12ca6771
BLAKE2b-256 e7304ea55d9aa7fd4e98d74e2fdd8a448b8dfa4e720e65e533e9dc39e54f57d5

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a07273b0c219772dfbf76bd0aaabaf18e529e442980b925fda39a869a63dc51
MD5 036b4a4098fac4333e5ee03c88103b1e
BLAKE2b-256 90fee628e6d9eab43d5cc571a4719fd60babcfa1defcf622f1fcd4d31c7101f6

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af4e23e8c57d4d5b99b98c036c87fe1cd199d685cb3af5d7de6aff0a85b222bc
MD5 04fb396fcb263ae687d7facc0446c64b
BLAKE2b-256 65156801610717d1dc6891485336166629da3842dd7bbbb2b94609a7ece58ba9

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bd3c6d223eafdd8b5460dd6d0a107bb5212bc1f2200640ff6ccf44b7cd674f8
MD5 9cbe3c1d678ef49e8fa0c0d6a46719de
BLAKE2b-256 9fd94b68f7ff224bcbad3dfbadb2f61da66035ba733a4ce27a9a7eafb2ef53a8

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 154f6a7eb8c6aaa8b150f829745059d7d2e04b5973b3ea09a6680fd3801ee686
MD5 fbfeec799191d686b47c9ebc6162ac4b
BLAKE2b-256 bc8a18da2d1e06085534e3b03b982d47687f693b1c03e4ca23c4622375ceebd6

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 587dcf2ecad71d4e5591fc92e2d79744533953a6182ff25de1524f079456ea7e
MD5 c346730025ef8f79e55b77383c6de585
BLAKE2b-256 19965578cc6851c2af793fcce037425765b655f78e71bf007f2ead344b277ffd

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee536494239df54e52c72fb92fd5f9ab006453e82a871d799ca9dd0be75c0774
MD5 4c38706a421befb070e01c164ad7e6a2
BLAKE2b-256 3f0a0a9f7cd80e16b10351fda9ab0e9b431c556e0f73cb0258e644d3f851f415

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12745246f7947b415994913fb5d24f02416a6178583647f601ce44f5a40690c5
MD5 bc1a886580b713bfd6e52ed6b546a0e1
BLAKE2b-256 bcfbe8409e95d800e11888ae15f7beada8be74039d511ca6c64fe5b6b005943d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3090ec4e4162a54fe60078b5bf6ed76e9cfe7d06cb06057642fb9732a60b91d6
MD5 47566e6410fe4717d396a413cf40f5c6
BLAKE2b-256 110ce7a2dd78c2d7dd73aaf9e6afd2e1a51b25c757193df1422be07ace6ef76e

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f41263311a3a645c180a47daf2e11901340a5c31e451305e6a3f0339b58db961
MD5 aa32550af440204d5bbb69e2a2171e1e
BLAKE2b-256 001e796971f123eb0844534a754102b92e4b3a8e4fefaac827e6f9edd933382a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b266af3dd5194ca25b7b314cb6af0ded2bf14e935b7631c8e1c4493d35b30c7a
MD5 1fa646bf253aeaa2c493c28da80b0ed9
BLAKE2b-256 6795b331a8a963eec609bb40d1ac16b33072e7c86d73356cef6e0278a912b76d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b8d28c4c5dd99a23ab59eca95273ac30fe4aaa82a46f307bef5f1c427d31acd
MD5 51cb20f75bfc6cb9626d790bd36f9eba
BLAKE2b-256 affca4035266e02ce71388e214f73662bb2b9042c018bbddfd5a9eb26bd723a4

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 773e15a8057b9b478274671b5cbd5631a0969501f34c2da08984267901d46f57
MD5 e600736386befa4685833a50c0bd2813
BLAKE2b-256 9920ab30a8923ab8acea7de659518463178604f22a10ffaaf6aebdc4d36d8dc2

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19e0f3baff18061e1d142c71afb524e52b482c218e5273fcd1f57fcb77fb08db
MD5 7091ef21d3cc12baea61f86379f6b9db
BLAKE2b-256 409c7d143ab0afdc8fffff42daf8f621306ae81376e76860d36291ec652fce28

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fccde862ba65dbbae1887e1505138daadbc5e32209cdf1973352fb08475c1dc4
MD5 e2c1b9fb90306e1a363460ca5dde0c20
BLAKE2b-256 cdec4c316c6d7de51b0f7a38cbcc916e73a063b157d7e6accbf5d1a044068b80

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 69f534156faf39de566d25e9e8a674ff6d2e0be8a83922d809c4e42b30fd38c7
MD5 359953a7f01f03e5885aa4287c79bdeb
BLAKE2b-256 22de77cf58eab17961e2bc036395fe3cadd4f011c06881b49e22fcab3b95ea72

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 203.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3b9f40bee0df0f7d89122ed1e404328d876060ff2c0db725a5ca9835768a09a6
MD5 5a384d35a813cf323d62d60867ad5999
BLAKE2b-256 095603d982725c2d6da18030875fbd0cd4580a4c126351bafeab96720a1edf1d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbe18d592949591508df652b0178d21c86191a334272883bb18c8a5ef0561d4d
MD5 0f67739b345dd2b3e442bae99de73c02
BLAKE2b-256 1b80d191500004ee031138d0832bc824fc2961c4bdb7d027c8ed81546493f15e

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc01e0508f4755fdc8aa11ab5a1d90cf3591b39f58203baaa2d8e0be33f4c8e7
MD5 68458c2719451e41b6295e3d0f9d6178
BLAKE2b-256 e7d2abef4bc418524ef39e2dcc25ec268cb9c562b79977da125fc1294b5582d7

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d40280f0b7ca675e78942778bf65fd1120d2707c3d1cdee9ff662e4c10ede2d
MD5 6fa6b53ba1619fb7f1963feebe62cdaa
BLAKE2b-256 544f5acd749ac73e4314b649ba9d9fdef969d960d12e18ddfbb768b9c766abb7

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72607d6f380a96a3b1dba3442596db65c4ddc04ce55b2a18f6bfa9617e59021d
MD5 2a0606989902c775aa581973af3580db
BLAKE2b-256 832004ebd0c4ca67be7f95d0585ba5c40c7e56db83109014aaa2261b64577025

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84f954dab420153d4edbfd32bf0b181aa5e08672e81c880d0162df23adb17a50
MD5 c1ca7614b00ef75259f2e8c409b05499
BLAKE2b-256 87e38c568b19b9acfed68e4d9c8f99f3eaeafb4fda39640b13fb05a9d773f8ed

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f2bc2d514a30fcb3f0c6b464107cb699551f38743e71e801ed5bb161db4e8b0
MD5 a9d0e32aad2e97ff4b518609161472ab
BLAKE2b-256 2ba4fdf1fcd2593d4ab73a4f745e552d6ec062281b981298709cf8ba5b976389

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4064133825bd97728edfb43d0f384606b3fbff4e855d1af727b12d74138ade05
MD5 c88e490c6db4150c80a70109d8ce4bc9
BLAKE2b-256 85a9c232d67659a55a23ca49c808f6c6a05df8e603f7d95581b0b0f21058b8dd

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9d7708cdd87af59b426d1dc5d55242c60b20f268abf4c9fed369b0347f175d1
MD5 eda1e4ebdde72e02cacfd99576630904
BLAKE2b-256 97debfb7ecc61fe71f5eaf6d8119cbeab2b15677a5241ec89137ac9fede4b6a9

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 727bd311cb34068f37df5f5979d3dcb70ebbdf2a31e1dccaf7820b9a6d819d2e
MD5 a3ef42f3a146683c08e8727c388d036c
BLAKE2b-256 4d33572c870c4c29c180d2b4c979ff06345b52b4007a31505178933b8853813b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0c8b72466a2ee229194d59558e2170d4d63cda5a4d1a788b67220207b50f2fb
MD5 4f5aa1a05f24b3ba63bcabd1320529b4
BLAKE2b-256 59c1b2ac8a9573a56ddbb7835a8471ab267e10bbb53cadb843d25f5fbc6b7b8f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e25cec2a76bec434aa840887e207cb50c6b18853cc03459f7a1549854901da0
MD5 1a702cfc19013608e9e9e6deaadbd897
BLAKE2b-256 834a5ea91fca8152c8ec6c066bcb3a4ab747d298dd0292c97860f6bea6fa699b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 789f1a3a51a336274c3e8cefeab389971b22742312793def0ffc037a3988174c
MD5 85cd2a0cd9f1914a9787c3fcaee1ac61
BLAKE2b-256 1e4d573d01476a566c11234edaa0f646c1b3b699ee814ad440f6b7a5fabe10d8

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da887548a0ca0f6e900bd2e05e97c57f33d22ad1af416dc98202eef7fdfe397c
MD5 fc226ec0b37a1d4eecb5b5a4c6e5b8b4
BLAKE2b-256 66e3f2103c36b4869b9ba8e7daf693dc5a27a69cf29dab72ad052b37dbf4ba35

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 202.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b38e00215999494f346c70a91aa58b56446bb744f90c3195c24a70017c3caf9
MD5 655d14b03ab1d23fea745b328c038598
BLAKE2b-256 99c586f85dc0961d772c575aa67d63fb417d63dc41d923b0bddff4394f07d183

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6395b9f2706273903050c3aa7608bea01bc442db99ec799db80ff9f7ef24ab42
MD5 92824ea76b53fdb6b04d476fcdb2f2c6
BLAKE2b-256 3b673271aacf2515e1b3ba7009c2062475368f976e4e04c6b8091c1d652fc4d8

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a322f503af6158dc697d4eaf90e189eec7f3bf6d37fd928b92115a29982cc1a3
MD5 f2d5d73065d25e2521ba334463859b70
BLAKE2b-256 4bec27de126e4310a4e421eca090a6db54267ae0276e9b036d855c628607b565

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8d3120eb01b7d6787e2a0b97b71733051e81d4cbb4198d7047bfcd023cc6d0f
MD5 1fed9d0bffe2a408a9238bee664070ca
BLAKE2b-256 dcb380fc39e7b926d24a941987f58701e00e59a4df11dcad08d3be763488629f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 939f248f2431e1d1a753aa5aeb04c62e9efb01b3ea7dfc7e4333a87860fb0790
MD5 a69a1699c765336aaccf6d81e246d06b
BLAKE2b-256 71cf26c6ff19976b4a196a8df77332bcf32bd2ffab06ea4609f0a1993d121a6a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d97584fe795191fdefc2b49bca874701d1cdd150dd1ae0971a02e267128460
MD5 47330606ba5de2595202856e3d29c0d3
BLAKE2b-256 6e63195030f0b835c8fc7581f3d2f0a3c8a0d237c8d884cb5256d8f44ef7ff5d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f387488e8b8a7eafc0b4529409634bcbae7745086cdc92588f0f30ccdc627ea
MD5 aa9832827dfceb2399320cb6dfa95b77
BLAKE2b-256 622a0fd61c5a26a13676ce4634318cc2542fc09dd02341179274a7599aa20109

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 800dfaa82556cced998388ee0edc5c3294e510ccd73de0909c5b2084ef7c8b9d
MD5 56186ef8d9bc9f2649b26124ea4ea047
BLAKE2b-256 d5020ea39718dcf789f306abbd80d10b52351b4a58dca71e3b6a6798f848cb7f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df5e9687b73ea290acc4afc7a11a8c5dace911132610b41841a111bb1279c3f3
MD5 d6180e2bc916da0935d86df0a16ed6fb
BLAKE2b-256 1e938869d6359c7ba007172165e89971735c705af0e291b47dcd5ccfa8a51ab0

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d65f3a30782a6beb35c44cc6e0ffb1f95114ea5f73d3f8efd0e14313f54b847
MD5 182a23d62a32aa1a15861d0833251a2e
BLAKE2b-256 49908b54a1a6be5b27f04b45e6e296fe1bb5a11d33fb822a67e7009170fbf8c3

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25f030818b26db215f7e137be15975c947442aedeb11d4e02d87effa1e087315
MD5 982fc9ebbc31062a792d96f6991f7cc4
BLAKE2b-256 dc30304491ff729c34e2d723a897b14375556ee158d2b9371a12b20504770a68

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 253.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 24b066772d386afcb182c8f9959beb32af22843125aec323a2347b83a340c36d
MD5 4685134a46a62e557b964e97670efd6e
BLAKE2b-256 b8fe2c38e1647b4ec2eb2071528150eae4659e03209f06d89e75340174c57086

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 203.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60e0c7d18428dc4f8a8527d88e29458a3d7b3c293ab34348aae7c34f0582fa4b
MD5 2050498707ecdbf36d08161ad232c4a3
BLAKE2b-256 f0b4b3604f1c4393c48da15bd27c1d0196134aa17dc71912dea9c7fdba67209f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06fd78c3814497cc27bd3a32bdb9d851ca256cb3f3b27b5f48e8f23027000905
MD5 87cbcd5a7674e4a4a4d81edb2d4f09b9
BLAKE2b-256 b0c7159395ce630601685a68553bc5d927740988c4a4c86d585e77ef33e8545e

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09cd7341aab053acd6992940266db4ea17165c3135d7a99e33f615f26c4786a4
MD5 9f84c47a5737c36a25d5c77a588739ec
BLAKE2b-256 456cde9369e6a2955ff4b2f238f94ea4f5ae83a4c69e298082c246ef52b1cd86

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2026b37f89efb46bfc2e59a1fd2d6368ba528499a997a1e0b38d48f6cbf7030b
MD5 69c08d3e814a34a92b5cf729a2f7da4a
BLAKE2b-256 a139de887de2dede92354585dd976c55ee29a450e48b21ad376704915be832e8

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5f89b0faaec1f0f491f5b0e61fc487092cf83dfd76c3e3ec9f5a179117b720a
MD5 9748c4a297ac65ca6d5f3e4726de4330
BLAKE2b-256 eb1d6ab3e21249c95b5ab379c09837169a85bd45a05aa5bb5b8a7dde4aa0e2fa

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b21c2e0dff042e7d7ff90216fb72c8fd7ff5642f4f620c8c996ef857351dc8b
MD5 effc3b908b76b42727a238233ffecff9
BLAKE2b-256 92710ff71db0b52d6f59e3983e168de26816f3c52b57ac1d1ec0c739173fcfa2

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 081a9faa41e7c91ed562af28728ba63b0e0cb38ad4c848f8267a27769414c6ae
MD5 345501a5f518b0c91f0c10d3e63d0691
BLAKE2b-256 e5d33b4b6dcdc15bd8c8dbf93f69517ef3d73fa410693de63211600ee42f21a0

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b20085935ed5727efc4752ab29319f853cfc97cf4c7533ae92593f3c27d42b9
MD5 cdf00beec4023ac0911712b1c1da317f
BLAKE2b-256 69e3824f6cd722c5018191b97a5ed1ca9f8b94a8b619576a54523377ed869160

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c503925e89513d7584b2b9232e24d2bb9dd58abe332535406a3ba33a658c17fc
MD5 560fe72bfe3ff4d2faf7903a037374cc
BLAKE2b-256 492685921bf798e143225bcdcfc80293089b4d5816df6385b3b754223d5f4da5

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a30846267a27667ab0a1aa086017ac3fa71bbb041500c7e2d24cde2f45647465
MD5 efcdc4bcdee29f50cfb7fb1f788cba3a
BLAKE2b-256 269bd4c0d2b4e2fdae1c6a02fab076b2bb25e2c0493f9cf5ea61f0c196558b5b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1d7a413dc04251b1d073c29cf4d04c8a9e02da622c44b7098ff86503095cb84
MD5 464942ce8211e5d6206363136f33886b
BLAKE2b-256 cb34e321bfcacdba4e854d7685363b9164bfcbd4105b71e60d5e100a44ef4ab5

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 253.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b55bfb43903ee66f8caa038188bc0123cd1f2a3fd849fe9a973312b27f9966ea
MD5 7fdc60757a31bf6c7833a7a54ef327b1
BLAKE2b-256 c855a847bb469f11fcaee28610added1f889a8a4a5bce4700fd035626b9ecb82

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: kwmatcher-0.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 203.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8b8b1a7fd4a2aabcc4d66dd13cb27a9b9fc6f47676fa76c6f0270697b27dc890
MD5 fc2b7a520dc36886f3f52c39ed482736
BLAKE2b-256 ca65b9ebc0d4b52d619587b6b06f75268f19b785688dddf522167d9bf562a49f

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 373bb81d6ba8db229fb407980a9f0662a9d45f60e524bb394d87f784edef9a87
MD5 4266197005f9b8c56d009520cd97ba51
BLAKE2b-256 64184c341a7855323c1807516c4b900a929db46840337cc0cd73a6e4b56c8d1b

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76518a0131c1906b219c95ca055732ed0ff1d3eab86f2f60cc94608f5d9e741d
MD5 063fbe1f99ab36cdc95e65e479f26b58
BLAKE2b-256 219cffab49e2163ef40277502530f96b95163541d1af7ac4286145b4be48c922

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e4e70c7ff7441c7c689aadfcdced6f9b68d6eeeb6a1adf7b4e93b506dae7fef
MD5 02c2ee6dca2c9b99d70cc68a5f8b1795
BLAKE2b-256 eedda9c79a0667ef7ab72ddb9722b9ffd293108b6add06260ca64602138a1eeb

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc301b533fc88382bcce1de2c06efd4929608bf99df445c36e2a0f130b3e2948
MD5 3b05fb708c5a855c5ae3d3ee559983ea
BLAKE2b-256 17aacffe2f9d805e14f1d342ba08b682a9031c15c3c6fb107e36b6b3671ca96d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4bcecddb674658f242a5ef8eb0c801e34971cbf6849a4c22a748a5fa3fef2f1
MD5 c6652b97c8c52079d173136b200ecc12
BLAKE2b-256 4d60995dddfb92000058b013a915b7ccf6373e78596c6a7ee3fe4b183ef7ac2d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be436085703fb8ce997ae765499622bf233be2fd48cec4594a742da80113b694
MD5 9ab8a1a017ca88dd5c9109940754e873
BLAKE2b-256 4f777cd449c67ce247126ef4c93b6bd95a26e4a3785e1d27e69ca4d3d1442c85

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65c687c2839896084b5d1eae71675270061f7233bc13a2b5606697cb6f473e20
MD5 7a03bd82abb82d7cc564bd08f6ee8957
BLAKE2b-256 14f43ffb7297443cc1a874b20903ff62a772139ed47d725a84ea6a84d638ff50

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b908fa7c6202fe0053762b3f49a06283c9d5770d73463a533a69854e34979b0
MD5 803f9e654188583594fd7390edbfcc27
BLAKE2b-256 94106fb7c8d5badb099d6a579e5a9fa14d86387c16e685ad13fe230f2b625fab

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10aaa46cb987cd0e147c7c225d6f125a302f93130055adaf636572a5fb3d88ab
MD5 db72e78e1ce4a760a2998468a65b13b5
BLAKE2b-256 5dcdcae234303a1971ae3ae79b46fe7ee26685a218f8aec69144454f6bc3df0d

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 480fde196ab37f4764f814a9b70e119a397026385c859ae66ec1da5f795814ce
MD5 c7f230007b968d3678bafd1d870b3c1c
BLAKE2b-256 679fc14fc3e411e4b66e78a230f8e400b211046651de0e202267234ea4b3260b

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