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.2.tar.gz (9.6 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (661.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (637.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (698.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (626.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (467.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (662.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (637.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (698.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (626.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (490.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (467.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (662.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (637.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (698.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (626.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (660.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (635.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (696.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (625.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (487.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp313-cp313-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.13Windows x86-64

kwmatcher-0.1.2-cp313-cp313-win32.whl (249.5 kB view details)

Uploaded CPython 3.13Windows x86

kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (660.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (635.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (697.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (625.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (487.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (466.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (397.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kwmatcher-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (440.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

kwmatcher-0.1.2-cp312-cp312-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.12Windows x86-64

kwmatcher-0.1.2-cp312-cp312-win32.whl (249.6 kB view details)

Uploaded CPython 3.12Windows x86

kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (660.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (636.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (698.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (625.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (466.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kwmatcher-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (439.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

kwmatcher-0.1.2-cp311-cp311-win_amd64.whl (304.2 kB view details)

Uploaded CPython 3.11Windows x86-64

kwmatcher-0.1.2-cp311-cp311-win32.whl (250.3 kB view details)

Uploaded CPython 3.11Windows x86

kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (661.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (637.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (698.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (625.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (467.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (400.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kwmatcher-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (443.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

kwmatcher-0.1.2-cp310-cp310-win_amd64.whl (305.2 kB view details)

Uploaded CPython 3.10Windows x86-64

kwmatcher-0.1.2-cp310-cp310-win32.whl (249.3 kB view details)

Uploaded CPython 3.10Windows x86

kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (661.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (636.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (698.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (626.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (465.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp39-cp39-win_amd64.whl (305.4 kB view details)

Uploaded CPython 3.9Windows x86-64

kwmatcher-0.1.2-cp39-cp39-win32.whl (249.4 kB view details)

Uploaded CPython 3.9Windows x86

kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (662.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (636.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (698.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (626.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (467.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

kwmatcher-0.1.2-cp38-cp38-win_amd64.whl (305.2 kB view details)

Uploaded CPython 3.8Windows x86-64

kwmatcher-0.1.2-cp38-cp38-win32.whl (249.5 kB view details)

Uploaded CPython 3.8Windows x86

kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (662.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (636.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (698.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (626.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (510.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (466.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for kwmatcher-0.1.2.tar.gz
Algorithm Hash digest
SHA256 1d67fab1b7908ec0db3a47d98550947e64f8518f396363a2edc8abeff8f821e8
MD5 7ea526dd819411d99284c187000b41a4
BLAKE2b-256 a853e65e258b8ee246b51c1b34aa5f9e92ec37eaa51fd1e83504790314e3d2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f2759dcda8dc711c657125bef0827429b962e6cff3460d1383bdacc7747cb6a
MD5 7b866623b4848db176d2e2d0fba27392
BLAKE2b-256 8c12dcb7325ed4031c815d29d7008666a93f85e470b1fbd523ff404703d4ada2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af4c3e593676ddebb0a841852b7e4a8079af93bf03d41a680cd2ee9a4209c440
MD5 e4ff3e161164228117970c16a79db36b
BLAKE2b-256 45c5ab24266a67b124044981124db3ca70fec6d7c4f3ee6e8c949301edffdd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 662a5818eac3fda69d5c92b1faa73a91561a5cd3c66a234cea3780dec21692cc
MD5 83d1f43218d50a10619284d930f3e40c
BLAKE2b-256 36c8e92cb3fbd1860c5660af06a624d6205e50d42439105b411ff19db7810c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 781047777b4892ba1188703fae19d2795cfd8a642915ed402dcd72f8c051ed16
MD5 8e38b8339a353a483091f2fc21dd9827
BLAKE2b-256 3cad5d25f07eda74ca107a5f39608e94dda76ba05dd19b78cf5201e552d739b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ce32ca69f2d93b7a60184273d1f0ac63c18e9ae59ec9f113ca9514dbcf47c4
MD5 788092fec21004d693d1993f4788faaf
BLAKE2b-256 a38e8a2960d9c3d9d039e130e401fdf7ec4e809eb05fb60ccde1949419646941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a8dc70ad13295b53203389cedcbdcbdc379ebfd2ba33587df81ae545f2b7d1c
MD5 9f2322d53458a5513340eadb53903aff
BLAKE2b-256 c1e19d77c206a15620e92305f190008154336d7e51bfbf1178b3fbfb569713cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96608318194c5a53600575cba7a4d2149dc2e561e7ab5be6ca8b21585435f79b
MD5 e8e8f7b3ab4fcc636c8ec67fed40dcdf
BLAKE2b-256 1220765c13dfdd760dad147f25e307e42367cf0919f6cad6beaf3da2880b8c08

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfc60c3dcb98913b3208e69437c1f0a5adfa1e49b2f79052d8e03e86b426f203
MD5 d700d615320600497943cf3d7f52c76a
BLAKE2b-256 be92e47db7b98c65c053bccd2271a1e484001b86482eef1b6b3380426e08057a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e0665a5247cb485fc61da0f62b0eb013dc6e4d6194eb008d5b6ba9be86a9523
MD5 3d7602c870777df5b1758f468052c16e
BLAKE2b-256 4249ede3f4d5c33b620e3162b956f00adc5408ed3f7ff8db517f55dc406f5d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 281809efc404070e025d61e74bde6be00c0d91d716bde02213822e236f9aefca
MD5 d5d84842a46aa4b26d651bffad6507cd
BLAKE2b-256 c6ce75bab6d09da78c7db00a8e73db496046dc55f764ccc4dbd89e9c2b4615db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8447e5ec13d82d800aa25d5a3a4e6de4ef59d380058845ea25c80f22f6cbf84b
MD5 f4ed07f3804a8b4499a7801491c60082
BLAKE2b-256 27c83a00492d7fdc011b33ca5401cced7522b7aafc910dab0d1aed5332ea673e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb6ed55d4e697f20c76be2da68aed5da14f2197d19b9c3ac6b4f4507f9bbcf40
MD5 a29c19606714247fbc4ca37f6dc295a8
BLAKE2b-256 fb214c85cb43410087319fad4d4feb99612f33499fea086a273f9909b0bf8f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39f7d9bb3b70b9eac915c048da0a093b0efc41d0d0a9e028a9ebd884792c02bb
MD5 39ec8e52cc18f377322c91caa051ebd7
BLAKE2b-256 4fab1f7d8f706c0aba8ce5fb51bc73a4f1f6ad2c1ee7e69fff532861259f07c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323ba9105610579f7aa1df241d5414dff006056416c3644cdc200db534b9dce3
MD5 c71e82407b63315ded014f4c5725b3fd
BLAKE2b-256 b81a267300ea41456959fe8e5efdc723795281aa3f2b91aa68c3b42fbe451638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f337e4610a0a882b44ca72043bbddd14d0355c0d1347972c4bbf2535f711a08
MD5 808e8dfdb656eab3417f2f43bb78e4be
BLAKE2b-256 e12d06d13bc8f2f010f5c3157de4b16bb6c37e10dc07e9b21703f3a5e5b73be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e84a430819425c1d6e83bcd8b122f69b9b6257d8bbacd3ecf365799a772ab51
MD5 2eb11be644fe33f342843b81040d4516
BLAKE2b-256 c39ab6353bd3112335f54d01283630fcf24d48924efee25d4d0e4348fde86dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 affcfea32ba861249b18e5f70a40fd2e7259c9038169ce0e8ecb42aa9985fe8b
MD5 59561e2062a018e5e743017e1e630bca
BLAKE2b-256 66a14e633b34e0e554b64e388580aa9611adcb132ab9958215e838af8151fec6

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08d9f89a07e0739b26f4d75b8cf38be16d78dd2c2329d53164ac26aa882c5802
MD5 408629002620a161502c4ca79b19851a
BLAKE2b-256 b4acc7886dc142e5ad689759db5dc31f348706ebbfc2b952102d907286e3eaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d87fbdf7d140c7d605e02801d9cc1e318aab86a9fc89f25d8c44bf40d507417
MD5 5fc59e4bfe68d3b7a0cb0f778f39714e
BLAKE2b-256 c9a8482c067ca2c00029e2cdff5f5c33f2386a77631b5a73689b2f3b07044a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b6ce0522ccf3525acbd0a5f15c638cc64c7f65a471308b66ea7f765f26f479c
MD5 9311e4638814266f4a04e2e0a5ba23d2
BLAKE2b-256 288381b8ba749e11a1d0f82fb5bfa42fd3b72bced00c3a487bdc3abcca5c8912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27dd6dc26f7d3e481ce56c6f511be68c0ca36b68bf7746dbca6cde079539b981
MD5 e012c30278d6735e6c148da57b84c5f6
BLAKE2b-256 72d308c5550759f92fa9de24747a8d79b6d879546f2e3d4e5581b5b99b1f2e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae95ea1eafd87151cf2517710db2773368d47de7d48b23b8c11073defa87f939
MD5 26a5188493a428cfb4c8689f19f37521
BLAKE2b-256 3078850111599b4a240527eb6c968faf5c79ad4da23bba38068714f0f54fc638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06fa216d0073ffbe8ab8d8c04baafac28e9872910215be3d2ef64d7bc01af903
MD5 27d0e3b0c92d51bb7114005e2b135d10
BLAKE2b-256 349d29be557d7397f6216419576609df00ba2b3ac7be95ed0dabb547bd0a685a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c501b91629ff86e183d8f5205ee6cb4174afc98cb172051b14bfaa4f5a05667
MD5 9a1699611e9adf30a3da76371866aaa9
BLAKE2b-256 74a72a3d2941b01479d4509a4e4d44b2f6a78b1ee0582faa7514d85e7b5bf17c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 320d5beca46c51562124b431ed406e278312d4600eed1fa1c21d14ad87877190
MD5 e3b9d4833c09324334fdc17e5b0ee3bc
BLAKE2b-256 636ed9d0749953a32817ae206fd84a383326be6d6ddc2f72b8aad4546d1c9f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0210bc1237a2bce35c66bf22bfbbe14180e5d606be4404fe820586881ea483c
MD5 37ab372541150b86fc1e4a37829a6431
BLAKE2b-256 d077b70ccbc3030d0c30d909c70bb12c70f2a1394d444ebba2838ab4e74bb74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c732b75f422c6a75d82a683c939ef41e2980eebec19bb97d78fcabf85334b8ea
MD5 bbb134da5a64dc59a0346bc3fc68310d
BLAKE2b-256 14f0a2c8e1b10caa756e783046878d1a9a5693ba48d4b8b331bb32280fe28f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 478564c9f848dd3c10e4ec62eb8f7f7673e55de27bb4aea3173fabc1601c389f
MD5 7f177a905465f717a84a5521790d6616
BLAKE2b-256 57c33aa16dcdbe73b9c07df36375e0dceccef66cf28ba0f36c3423a72c8ef1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7712330c2b0a861eb243437b4962ecdd3f9a3c83d9689aeb4cc27cb3d42ec84a
MD5 d4712ec31af4f013203cd8896ce71e47
BLAKE2b-256 27dc5f0ef40b4d020c3f658f16beeaa10f9d675edf7c9c738f69b6f335424e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ae411db40e3dd71f58f81a0e743b2d5dbd1ff72d78267e149b0ca71af7a8a6b
MD5 f39149dcf98518de81d3bb6dd66e8c33
BLAKE2b-256 64994ca77074e6c638a004ab15b67f65bb7b599532fdcaa06cd239896f344cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbfa39c8f7706d5e9b6790515d7bb60c19f3a311ca949002a572ec24af4f690e
MD5 dd5a6af0db7bd4d4b73c2fe73c6cf92e
BLAKE2b-256 8c97445d77ef6191e542ad3a3966b0e6ade406892eb034633aad157b35838dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52287b41e42620d391cc3552073b7f9081f40aedc568d1468febfaaff2b22586
MD5 8c69ca6978705fcedc8edbe126633a8d
BLAKE2b-256 82ee941e983d381ee4d23e1c74a484865704f5250e7aaf719e49afea0793bff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dc6337a077f64915b20d1ec7882822b771eb526c14b5ef586b2394a77efe1c4
MD5 7af79c6af15256fb0e3993777c600d07
BLAKE2b-256 484ec6c79c4f34956cbfb431e2d0d75c12be825f80f5bfd8991055122f6a52cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 488aa779781265a3aa48b53e27e251258f6657d8f1fc4dbec4e792ecd48a6af4
MD5 0db01a73226313e9fb1ca3f472562724
BLAKE2b-256 42201ae092108eeb61c239a94d464e7a96d8de1412a129a5c76c0d3bbb59b7c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26190316ed22d60246b9afe4219dd5f82815eac59a0c4db53adbfc81ac004514
MD5 1f655e716cf1096d0951b604b0fc6ca0
BLAKE2b-256 3b0b2381c9dc644301e2adb1d8410e6f6580af17dadd086e74fda7814817e3a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee13438a911dee61a415a03201a6c226cee1da9ad9043fc64cc6768b591eb6c7
MD5 83847897372bd5ed4a36aa0310030ab7
BLAKE2b-256 51c805020544ff99e89e811748ed71f331e9c66380f922e40395ca4c101ed894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f49b4770f32b0a915d5545265a17258896f361c41138b66e1803cd6b1a0f5fa4
MD5 32f36000611f3c785b64205659c2e9e7
BLAKE2b-256 ac332d8e4ea20f8f1c20cd9dcade059d1f8a65bf7c0d1b6d79b8bdc1ff0f2c2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 249.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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19be565bc072f8cff500990a667da7a9c44955578bf73da0a408063e221e1aef
MD5 1c7d88559975f43594e5e516d5c3f8fd
BLAKE2b-256 08c9942464711a9cd4f5a6c7b5696dcc4e373129d673e184b513b10a98ae5ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02df597df12d7f1c28b0a53574e30d99b19b233f91ce58d303012e087ad39104
MD5 28a964c181b13603d0012e0150cead51
BLAKE2b-256 004de3a310b76ba894663a688fc05ba43a9a4af41c1c5c3574c6941616b55c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 379262f6fe845bde1aaae127caf42442c14bee3a0fd3d9513bafbc29b857709c
MD5 ba19d84b3d640ce123dd51d3ff248763
BLAKE2b-256 68b86a04b7994305afe76845d288aca4493722698450d82310c20c704e140b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 413b4307ba00785274d9469f75311b0e3c106391a4aec1727cc53180af8083d5
MD5 b95373d22c789cc5bda0d6207d574ee6
BLAKE2b-256 3d5159ad9e39e08c276505e348eb5e22e3cd92a26a60a4c88ae0b9974c67342f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68e46740cb673d2bcd9ef641f2e6b2e725028ca760ee0b07846bf21c7c699499
MD5 52c6e800277f21f328874c9277c4e944
BLAKE2b-256 438d023a350bccf4182f51ded0d60f42993c043f643624250c211d6b771a71a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e22f022184fec5c84ca97a4aa2779f4ee11add65db6f28ff0c399b46bacd401
MD5 9930815fa98a388821144509d5120382
BLAKE2b-256 b1f18b0d8511bb64482ce83b019e662d9ea308be7fdd44ec29fed693e9540ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15f0011f61e99748d514fd3d976e0043b0201ee580435d5e07ae6f3b0ee4c3a5
MD5 4107b919f47d116fda02789480f2010d
BLAKE2b-256 9d7a86771ebd6aaedf90445e9e40630849cc31d455d3de6cec648c706f3357f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca57e62fcb45e73654394148c961d8be8107ef37f9cb80346941802a40182525
MD5 b6c6e284e8cdf20a593154284220c1ee
BLAKE2b-256 6e6a8704ed77cf47c14e3eb92e6c6615044caf2555f1952240cd65809eee2a3a

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6f4137ec3214b5d2fc12014d0f70d09fbd036a5f3ddf1fe48844a5e76f4e9c3
MD5 e1e27cb2420284ce8b35d184a41610c9
BLAKE2b-256 8a579c20108af74d091f38fc1e5dca9401bf15da774b9c9e5ce880bcb351456a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d218ba5e16deb1a3296cb4d9712bd79d301f26a2f9dab79bb594637d3302c1c2
MD5 e350278e7a71a86722dd5597d2edca54
BLAKE2b-256 ef5682614c26b863b39ea660f62e8f5663160f5a676ac45471c118444cb75015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95a85decdeb53e70ac91f9b12fbcb7d06fdfdf2137db69463bad776da21749b1
MD5 2d1c199bc5ca5f0d1e2d11f101314ab1
BLAKE2b-256 fcde8a4f3c1138a70f03ce4c87ebb0e0d9b111727786c7493a9c200801a6913a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4dafa6435bb8e21fcb506afc21ba30251c8faa04c244e0644d19d38eb8febc1
MD5 0ca12278a2c2f9f27f635ea1d18cbfb4
BLAKE2b-256 715c6dbdbe285a01e4f8c4df8961c67d21565d80818e7fd7b42e939f11141e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18eaf91f25bd37bea490cc08473e893f7dae554a1673715910b50f05086c209e
MD5 06e4ce2bf23a672fe7c33a2787ee797c
BLAKE2b-256 ae3946eb836152e8e58ba66a5c12557a354f6a712715290ca1ae69e6ac759a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36fdb53ff3672f232db6a084731d0d9bbc7ccb1ddd5652a9cffdd01b679bc649
MD5 af34599f5b0f43462e1d6e29614c1320
BLAKE2b-256 b27566dd28d2a0a0425ce7989579fc938ecc883f346acfdeca8be12d383da5ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 249.6 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f2f31f7d1a066dc301f4b012da6f821baff20347995ab3b42c71eecc3f05c83a
MD5 88790e4a5bd4e53e70fcec6081aac796
BLAKE2b-256 4e8bb0361a21404901c1fc598bda0c53042c888824e84883b812c534e9580f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 075201e615707515718afae46b85c266de99542f9656f109015030873886c2b5
MD5 3b422508bad692b39369e4f27d95f8df
BLAKE2b-256 5a75fd72f0d40c26429afc076a99dbd1b2a47f6cd0c09f9e37e9aea0c0e453cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 609337f0bdd85a07479931d772f62a3eed11a6415b64e7e5cf48ac54ea83afa4
MD5 6f2b864f4d064a08b267ea71ad148e40
BLAKE2b-256 e7eb7e0b91bce48731fe9f9b9a0f00d3db669f4b8458c345b191c83fb2cef8bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96479101fa2047d7e760aec3a3212d9e0f7ee5d2c81826f4abcfc29f6d6d7921
MD5 f666e55a5134f615b3a589c8d5ba87c2
BLAKE2b-256 69228595ba495b369c55b2695867af52e4b39830be2d482827e5e372fed31460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d7a324db33cea0c51f4b9b375b5d96b80509fee090aef5c68e08b7cab050922
MD5 2f313d63312be8f6bbba6a72a61a9c09
BLAKE2b-256 24056144198bdc2926b0412e6633299dbeae42e29abb8396f2f8770d2ec3d306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e255d51e6f7008a4600d5930f706e7f831c6502e59d4cd57cc479d4633fde03
MD5 cdb4cf5e60f34c6ad9a69d452b4c6488
BLAKE2b-256 79235de36523b9cc0bd4fb685ea220d2792141901ae32bcc8311a2ee9d28ef53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e085cb8530eb4b5245e1fb148ec406a8d7d0b4c6664fcb9dbb378f07fbb11696
MD5 d77ba72c073b982908927e3f396af9c9
BLAKE2b-256 e7452b693dfd284d1c90aadd68edec95238a0658d8c880ec29187c42300f8e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23c7daed44f5d5b1ab6d87d05719cb3527def23016321e934437966eeebc13c8
MD5 478f9204784f907ec2a91863142b2213
BLAKE2b-256 bbf5e29dc0e212266a113909400b724273d05558fd0b5a899b41f6a9895bead7

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89129250fdc34e2beec5b8ee77531d0a9cb9d16478923c3a7784f77abbbc950e
MD5 5f7cca2fa8744f35717fde3a0f03d4c4
BLAKE2b-256 41c7a3ca54d02c2234f7f9b0c4929c0f9478eb0b7ac644b4d8cb532ea32d1455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62f0babb502dde73dc662cbf9306b08dadbaf892bb6c8330c242744890c6584f
MD5 67f8756969d1f48aff4cdd6ddb13d147
BLAKE2b-256 88673cb47d9a85daac0a88bdce169bc32f5d2911c15c9d9a7ae07f05cea0ea6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce05206040c214cc96dd46c71beebcf0c8c7f8209a2e2db6f8589422d1fe2562
MD5 332bbd21dfe9229a6f42491d8e153c3e
BLAKE2b-256 80ab723c51ce00c84d7ca31b0c8cf8770de26fb3d8350f396e61ff1f46e022e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7f8bf00d67a23780538aaca13969f2818f6fe790708e97d9349c8d939ac3f80
MD5 d85e220851935879a53e94a2978531db
BLAKE2b-256 e820d99ef95cd889eda2885a626145026340ba6e52298c0d162a37d0256657fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a54c63941e1dd7872ff4cc34fffefe441fb7bf12ad5775a3da17b107c5e0d7e
MD5 799f8f7ecc45f3594da23c4b14289333
BLAKE2b-256 805f7dffa3277d5982b36d1ecdcff8d76d4a20ea7542d538da4ecf1df160b76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c7004e6bb0ffb4a30794d182fa291917b3c75511b81ab09a4b04be8e8929f15
MD5 da6902f9d0fe00963269a48ef21e2e9a
BLAKE2b-256 1095dd85859d38c6209521a3adfbd038b0b0d652883e3d703090d9ddd6546030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 250.3 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 61f4a562f29c237f7dfa6a981981db7326fadf94903253950120084f04318132
MD5 6686ce7c9e29d62edd213f20f95d87dd
BLAKE2b-256 60944870884a1437a36e753537a98d38feaa099709559a47654042e55c2f8792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbbe5f652235eb00dc152c1fcce43239dad0fcf9ca87609f369830d9fdd8592c
MD5 a0d4f89485884591f0c95f913c3edc51
BLAKE2b-256 e96a71d66471a72138e9a9ec45c15791442121d93a51b5a80e424601138843c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d49842b6ecbd9fc6620e6d1caf824aa4af86247e523069a4089deca8cec542a
MD5 0f0f76b2940454788b915d6aae0bcbab
BLAKE2b-256 d8273712452f04693a12841d5cea7c9b67b8fab657f1248926d4d07b77bf325f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7069a443f8dd8f3111301d0128ebfd661da184e1d589612604df66f898e2f15
MD5 5d67041beab2b6b64e9c627f9ca175f6
BLAKE2b-256 01054a292b3c412b40eb489c680bf4a8d92d6faffc595d132864423946fe5fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b78cdba68ad92fcf0a3279c1379a96ceaa349c667413ec51b2b5ff4ca545ae3
MD5 06551506cf8722a1433429cbc8cdf634
BLAKE2b-256 599afddf7f35e7194c8c587863adace196f503f9698c98bb236e3a7dc9156e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cf24f6290bb1027c362aef992b39af5da127d83394ca66ce3cf313f7b7f2ae2
MD5 d4a57e5b8e8e7f42c57bad9222797d6b
BLAKE2b-256 46c996ed21e0b147d4da150f7aafee1260ecc200c13ea63b7d0276ee62d6c6f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3009392b6195bfc007c32f7cba6133f2bdf36a4f39a8db9573b1442dfd9d7695
MD5 49a7ccdf4cd36a376e2eeb686da94057
BLAKE2b-256 92d15643f333870a618d37fcef6b0d6552ec7a29f427e91367c6047f721a6052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0381aa16468619195961d081a2f4aeb7e44e2061c7aec38d582a5811cbc6ffa5
MD5 aeb8498ce12b0092610cc0a73dfba211
BLAKE2b-256 552f7b9728820da2775f1f5f1d8920bb16684ecc1dbf0a5ac19d9f6fcac41840

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85561822b146b78bc313145b8d84277590af8695661644b4d14c83c123580725
MD5 7ff9d3a3f91460002c8c7eea9a43aedb
BLAKE2b-256 657f7d5cf606be1fe1e287fede2d1aab491116bf443be8f205c200cd8b85cd98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e494a33798da6cf81f938c90189e7e1c0a31389ea7a7495c2797fe870c4ba67
MD5 f4d82f281db848c51b139b0a8399abf0
BLAKE2b-256 99638a4165d03adfba23f002fd207de0ba2cf4653fa13cd15f3e382fd40fe68b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c6db2e6387a443d4f8fa081ecc900561c979821be640fd76195a310e88b90ac
MD5 3507c1af89c93671461faae49dde37d6
BLAKE2b-256 08a846aed20da05034bd60fa12af8ee848391cd91a086752673876952b60a57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bee5d5350d9ac284c24cfcdf6eaf3447df0e6a6c1d2bf23cd1f5526b797513c7
MD5 3b492b2637c977514b267b7062aa3544
BLAKE2b-256 a58ef66c8caeebc71ca5911c2d5746e17f671912bfcd00b20157d7032082217a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2890fbaca419f4289ad02ddacfb14468f03d3a9137ed8c874162add35f38791
MD5 63ef78d959e2d83a092386c60e0f8f1d
BLAKE2b-256 d4b8cab95ff2158aeaf945197247b5f561b877682620e5c6c930f97582ec0f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e19982c4a75529cdf62c24cb6c61d9f9bdaff9efa2f56804d09fe479f76ce760
MD5 60a4d0778b8cd311471ad100266fb35a
BLAKE2b-256 64c670d3e557af39c11979b41381b81b4a25978a72ddabe4ac79dcdefa1b7eff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 249.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 593709932a5e5e7f57f8c282ca16a8a134e8cd3e253a751c903d64bb53f089fc
MD5 0d89d397426a01312b70ca4c0aacf525
BLAKE2b-256 986826aa9916b0c0b2ddf4df4a21cf8aa5a65669b42fe0aa3a0e572915e6ade1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c7715b4e7258508df44d60a3007d25ccc528fec7c105bb90a1cc9b8506bc5e
MD5 9b2609141645eb36829851b5b0cb6c25
BLAKE2b-256 999f614781d7c853ab47e149ce932eff59b556c780d9ec6f6f88aef30a318a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53416d577f795f29b5b179331b772baf7f01a026669fdbdb2b5463b9c9c0ba27
MD5 def7adf9eee536d79d7a23d80e1d234c
BLAKE2b-256 d7b1672483d937c8bec29906e223ad7a829f13a557732d4010636d5fd3ceb455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8e03edb0f64b1c8491e0993e77a10aa2199e00d69b883bab36aa3d33c59b9d1
MD5 041dfe4144d18b3b2a74cd2b605e1dde
BLAKE2b-256 1343cfc58e77626a7bb02f5d17f701c1c86768985867a77be9d97385d26fee7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0eb06e85a1772f37df9b18cd15819df1a6216fb75dc8ec842a4449da8b33feae
MD5 cc3435876e492480faf61d5b12a7e0cf
BLAKE2b-256 9b10f350313af34c0dc90844063ff9c8d6062020fbae3fdba24abffcae599883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25da43a984c06bab84746cb312301f50593073c1077b44899adbd9390045c381
MD5 014071ed66ae96a5101e84436c9f6bf2
BLAKE2b-256 f7f936f287c2f08be6554fbe4272b8bbf37456e8bbfc4759bb3daf0c7f385fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baed7e0103b13f99fa89668db4b55de743b0959704bb3c15a5d9037e780d331b
MD5 bf5b7d6a25d96224bf63081a4f524da0
BLAKE2b-256 4a146cade9dd119a06c640e645ccac0c37e3abef442eddbc3e903a9ffee5b78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f01d639b63a4353752e8fd431ca7cc8550bcacfab9320a965faa9dc96751e6ce
MD5 f424e0e2dd49185e741f8fa59adb1f28
BLAKE2b-256 eabdbbaf78bb8b0d22a35b37bdf9e781ecc3af045486c0fd6f034775e3e204ed

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fa5515e64d18ef724c2ed80924f7219eb5f509c719b8e3fbe3d5abde4517e67
MD5 a92c483f05e79913f5ed7638bc1e2cb0
BLAKE2b-256 ab7258af9be07fffff88a46578c84756867ecfc1424774e1f1df592faa931cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 101ebb7ba0f1b73def65f7e6c8f0771f51ef0ccffce654a64124f94e291a26c4
MD5 79c18205817115c4156938fd7c62826b
BLAKE2b-256 4d7d5ae65fd2845bb781a45cd2870d285e04584a51378cf9a99870cb64d82f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d39ba2d4e552a8d49288b626dac79b7a4bf9724f9bd00027a75598df3d83fb9
MD5 c0260a29048c71589531e9844e77c79b
BLAKE2b-256 5ff4c759d7992acbe5acdcb48244d1bffb2cdd6939c4e865ed32b9893ae923f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 305.4 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e5feffd607902684a5e1ae47ee9036ab2a9731def0247439dcc2c297da54202
MD5 bfc2a53a2562143c18fe01338af4cc52
BLAKE2b-256 e25410dfb083a03c6ea87af1ab51320938029f415eae24de9261ed6422fca059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 249.4 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a1280fa8a58174b9b0ce71d4e54660a885a16f103b8101afb390b58feb34fc29
MD5 504ce85b0a273286d96971343593b44d
BLAKE2b-256 b09d125cf5a55ee2239b570aa3d41b9b511bcc9069c960c27cf2d8ee134e4798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f065567b08a54d8100c8b1dbacbca009357e5a29430e902c0619e7211b970a0
MD5 f9b587f5cb34f354374d830fbfd0ebc6
BLAKE2b-256 c5a64f4a1fc5101f8ec338e131be32515cdf78dcc4d4491e5923602a5fabfadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c04791ef8eca06bbe1710ddcd2279d0a3ff7fd3b225c5f6d36b4fd93efd9145b
MD5 be124ec85f22a414b2629752061ac88c
BLAKE2b-256 560446448143a903edee139ee9e866a44847f79e3913482a5b10be34192d4f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1db498e7f579413388500e15628e1465edeeed4e3ccd87cc63315c6b6576733
MD5 3f576e06b6e33275c2a9fd5833f40aa2
BLAKE2b-256 f3a915fec02f90a60b04cbd54394187d14b0952b7d81769cf5f57a3d122d479c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e904b8cd12c34751ff6eb56f8947580d943e29158008b783f5e38ea5825add05
MD5 825ae513f88aeee076ee12397c107773
BLAKE2b-256 9d8fc59c3afcb35763ac5fa4d52f5a8376765dfeb3df8df6ae9b92912ab85422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd18aa69d76461c66c3bebc79f0bb54375d7ad966505be9cefbeefabf357a3b
MD5 5632b864cf35961579389c24d659c764
BLAKE2b-256 673f74cb991e82dfc81593d50e9094a7cad05a1b9183d193eb76e378ce0060c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5774eba362ecb4b6f1727ab270ef748cc2db06b22b12688fe60cff0b35f2bb91
MD5 b6dd9c2269fb84a637c369a8812c73c4
BLAKE2b-256 52c3626ddbaeeb04a43a695dc329ebaaccd7b347fadd0c8b715c851e3cefe54e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee7cbea1991b51fc48cb134ec90185a3dc189b08018dfeb8ae5722ef28c2b50f
MD5 e40da0e1ae6a774bfb49fa231dbfd5e3
BLAKE2b-256 a88b1552035908d62964988c0851e33690a0f5bc28ef6b7453b25ed2ce553ab5

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 829d5cc545594611231062dd30dc3e24d9263c8be1188b4989af07f1e8d38905
MD5 8f858aa486d4ae037ad33001b9af948c
BLAKE2b-256 49adcd2fa96b3307332453c06a4d878295c28df626a98f113c23325f7f63c4e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea88ae76d255aebe949354cc97c183294ce83d5e301fb19b0ab4e327be4322e4
MD5 beb6a8c888283c0ae0508340468fab7a
BLAKE2b-256 1c366e989fb5bfa08d776e3153a7042d83f3a141fcfd9e11ec72bccdf3a412f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eede9a0638a7a44d93c5c029063db65b93e9764464c3cfaa0dd3919648d0a4a
MD5 dc75eeb9fda6709423c2eb12e1546dec
BLAKE2b-256 92e08a050c13aacdc529132c89f498a67ff308817ff6d66a2c7b654e7e236b65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 305.2 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a4b513b5cd882a7279a85ea441ad642705bb22650cc8fae3c8c0a4a47d325f34
MD5 c53f2c58f5b85bd46e6aacb00bf105c3
BLAKE2b-256 7825433dc3612cc4f536ccafd90baf55caec7181f7edd308043e89c2b1a3e6c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: kwmatcher-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 249.5 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 117b6c7d2ba16620ca5fbc7325fe75c62ad98b743bb8df6d7db583f829db1a82
MD5 be5acb7eeef45d41acce28ea5663b589
BLAKE2b-256 6934029e502fd5d957ea33542ccd6be7f197cae77ff6a6b5fa04e670218841b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6577ee354fd9afde3c2d055a6a2516302487e927e096265d931834ec4538531f
MD5 c1a09a2e97b6bdd32d11fbf15f94547b
BLAKE2b-256 d989af997bd9d47921facbdd6ac9cc0eacf715bd42cb0a1811a1e303956a9713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d71b56d01f8dd8aca6a2d9e14d7aefd53c5cb6fc216b1866c446d00a8fa6ae24
MD5 3a3f911b4ad12cb1d6efe5eff1f3ecb1
BLAKE2b-256 36dc9d1b4bdf17c44a5ae2083c3c53c4cd64edda2e4a15140888f337b0b2afaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31a30fe1e2e8a925b7d0110a337b13d42f5b3e5056cf367cce6f29465e6d0803
MD5 50b5ee16b441b6563fd69de0fe7115f6
BLAKE2b-256 74196b15d6a16ffcd4ca71c77c154c56b60fe30087315ab46dd4140d77b94dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 983d92d0de9e70163646e3896dc84c0373db63cda604ac45329e44d59136e1b8
MD5 fb18fcb7463600c8b95656dda4cc226e
BLAKE2b-256 a4848ef5a8ff89a84f990558ee7fe50d104841f337843cd4ebe0659d98b5f5fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5c6cda3d70fc6d35126a0e31fbeffa1a1792c77c06e1a31bae655701db19d56
MD5 d6faf575a59a66332268a2c671f3c353
BLAKE2b-256 0b36e40f51ae343411314c9970551ab9648333bcf8cb8f8af2bce4ebc8a623a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7df56cda43ba65c81237786a5f80f3e842a506963531977cedbb9cacf187a5ec
MD5 656163eb26459a88578084fdb12eb080
BLAKE2b-256 16c9487f4cbf12b3e83daf5e0f7717f6b3706a9749ae279fd88160181650f056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9518098f5404ec7a618a9d8d9398dde05b909bb1b4bf98fafd5058791e8090c6
MD5 4bc0d440452dc2827b77a4a240562ed4
BLAKE2b-256 de3e283ce0ecc1bd51a5db9a809d96901b96685d83e12a1e42c10f92dbc69cf2

See more details on using hashes here.

File details

Details for the file kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06b0906a02fb138c8925f339dfd7974e29b127c5fdae98ee649f95c652d29647
MD5 34100ae1730ff1e238c46c58b2537508
BLAKE2b-256 f6b87bdf40f553d5c57013f0f3a9ae7109ed0b283145797d46c78d37044dff94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a5390ce46ca693a1e06ebd4563cbe41b3e5132ea1146208c4edb0d4ab22dcd1
MD5 9c55b16d86830ef7011387ddec9ad22f
BLAKE2b-256 bf7c004ac5a8157cec0fb0474593c0587efb97ff374eb5ec7d5f37de5fde0d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kwmatcher-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15694f5096ba8de4b703e229094a43e2e8e0d6239c125a971a834d4e85a474f8
MD5 216f6cae0b9c5c54f9b520311f2cd84a
BLAKE2b-256 65cdafa6e944bd1e34b35a97346422645a695c74b7bd6482ec2fc26dab257acf

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