Skip to main content

a Python binding for unofficial fork of MeCab

Project description

Unofficial MeCab Binding for Python

This module is a Python binding for unofficial fork of MeCab. The Japanese document is here: https://shogo82148.github.io/mecab

Installation

pip install mecab

or

python -m pip install mecab

Usage

>>> import MeCab
>>> t = MeCab.Tagger()
>>> sentence = "太郎はこの本を女性に渡した。"
>>> print(t.parse(sentence))
太郎    名詞,固有名詞,人名,名,*,*,太郎,タロウ,タロー
は      助詞,係助詞,*,*,*,*,は,ハ,ワ
この    連体詞,*,*,*,*,*,この,コノ,コノ
本      名詞,一般,*,*,*,*,本,ホン,ホン
を      助詞,格助詞,一般,*,*,*,を,ヲ,ヲ
女性    名詞,一般,*,*,*,*,女性,ジョセイ,ジョセイ
に      助詞,格助詞,一般,*,*,*,に,ニ,ニ
渡し    動詞,自立,*,*,五段・サ行,連用形,渡す,ワタシ,ワタシ
た      助動詞,*,*,*,特殊・タ,基本形,た,タ,タ
。      記号,句点,*,*,*,*,。,。,。
EOS
>>> n = t.parseToNode(sentence)
>>> while n:
>>>     print(n.surface, "\t", n.feature)
>>>     n = n.next
           BOS/EOS,*,*,*,*,*,*,*,*
太郎     名詞,固有名詞,人名,名,*,*,太郎,タロウ,タロー
は       助詞,係助詞,*,*,*,*,は,ハ,ワ
この     連体詞,*,*,*,*,*,この,コノ,コノ
本       名詞,一般,*,*,*,*,本,ホン,ホン
を       助詞,格助詞,一般,*,*,*,を,ヲ,ヲ
女性     名詞,一般,*,*,*,*,女性,ジョセイ,ジョセイ
に       助詞,格助詞,一般,*,*,*,に,ニ,ニ
渡し     動詞,自立,*,*,五段・サ行,連用形,渡す,ワタシ,ワタシ
た       助動詞,*,*,*,特殊・タ,基本形,た,タ,タ
。       記号,句点,*,*,*,*,。,。,。
         BOS/EOS,*,*,*,*,*,*,*,*

License

MeCab is copyrighted free software by Taku Kudo taku@chasen.org and Nippon Telegraph and Telephone Corporation, and is released under any of the GPL (see the file GPL), the LGPL (see the file LGPL), or the BSD License (see the file BSD).

Also, this Python binding is under any of the GPL, the LGPL, or the BSD License.

Project details


Download files

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

Source Distributions

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

Built Distributions

mecab-0.996.11-cp313-cp313-win_amd64.whl (507.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

mecab-0.996.11-cp313-cp313-win32.whl (450.7 kB view details)

Uploaded CPython 3.13 Windows x86

mecab-0.996.11-cp313-cp313-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp313-cp313-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp313-cp313-macosx_11_0_arm64.whl (468.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mecab-0.996.11-cp313-cp313-macosx_10_13_x86_64.whl (472.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

mecab-0.996.11-cp313-cp313-macosx_10_13_universal2.whl (505.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

mecab-0.996.11-cp312-cp312-win_amd64.whl (507.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

mecab-0.996.11-cp312-cp312-win32.whl (450.7 kB view details)

Uploaded CPython 3.12 Windows x86

mecab-0.996.11-cp312-cp312-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp312-cp312-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp312-cp312-macosx_11_0_arm64.whl (468.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mecab-0.996.11-cp312-cp312-macosx_10_13_x86_64.whl (472.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

mecab-0.996.11-cp312-cp312-macosx_10_13_universal2.whl (505.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

mecab-0.996.11-cp311-cp311-win_amd64.whl (506.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

mecab-0.996.11-cp311-cp311-win32.whl (450.5 kB view details)

Uploaded CPython 3.11 Windows x86

mecab-0.996.11-cp311-cp311-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp311-cp311-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp311-cp311-macosx_11_0_arm64.whl (468.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mecab-0.996.11-cp311-cp311-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mecab-0.996.11-cp311-cp311-macosx_10_9_universal2.whl (506.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

mecab-0.996.11-cp310-cp310-win_amd64.whl (506.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

mecab-0.996.11-cp310-cp310-win32.whl (450.5 kB view details)

Uploaded CPython 3.10 Windows x86

mecab-0.996.11-cp310-cp310-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp310-cp310-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp310-cp310-macosx_11_0_arm64.whl (468.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mecab-0.996.11-cp310-cp310-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mecab-0.996.11-cp310-cp310-macosx_10_9_universal2.whl (506.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

mecab-0.996.11-cp39-cp39-win_amd64.whl (506.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

mecab-0.996.11-cp39-cp39-win32.whl (450.5 kB view details)

Uploaded CPython 3.9 Windows x86

mecab-0.996.11-cp39-cp39-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp39-cp39-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp39-cp39-macosx_11_0_arm64.whl (468.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mecab-0.996.11-cp39-cp39-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mecab-0.996.11-cp39-cp39-macosx_10_9_universal2.whl (506.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

mecab-0.996.11-cp38-cp38-win_amd64.whl (506.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

mecab-0.996.11-cp38-cp38-win32.whl (450.5 kB view details)

Uploaded CPython 3.8 Windows x86

mecab-0.996.11-cp38-cp38-musllinux_1_2_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mecab-0.996.11-cp38-cp38-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

mecab-0.996.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mecab-0.996.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mecab-0.996.11-cp38-cp38-macosx_11_0_arm64.whl (468.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mecab-0.996.11-cp38-cp38-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mecab-0.996.11-cp38-cp38-macosx_10_9_universal2.whl (506.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file mecab-0.996.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9c00b234b0dc0995105512b52df35ddccbf8e5832b142db33f7e0878bb18891
MD5 e13f58c2b497094e91ec034e2835d7fe
BLAKE2b-256 aeabc68594c44997752029786edd9c1b06f5f7de71719e29ec9a870b4a2ee4ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for mecab-0.996.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9050e9c9e4f2b3472f0c5cc64d58fac646b413ea872237a2f83be93dc2bc7fc7
MD5 64c3100bd321ddac5572609c0b592d77
BLAKE2b-256 d49950317d4f7f57b580263556512988e10f3c8b8f12a2e4c308588ee470e75d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 275412b9e48f0b5e9f4bf28d10b8dc096eb4107cd8959aabf53146267ed328d4
MD5 ac6c705a28cc6e1b6cd25affa551490a
BLAKE2b-256 d208e86dfa44f27f96631ca4d62c6a807604ad2a378964edcede5345520a6ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 024c770e3b2f5f3eaccb5d3d135d001831b981ac3ded2fb80264865095fe255a
MD5 75c3da211928a5d74c18e43a44101c02
BLAKE2b-256 217e0ea1ef9c826c9af3f0d679823f99995e950c2a64e038cd787ebcddd29d67

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b8d3d084ef84342aa7126ac4bf5022d60de50e077d98fc2b2f653353ffdbad
MD5 6b38bf5461eb3fce7301c619faaa33d3
BLAKE2b-256 19436c953cd0abd66f0545d51d11501795e265e6b5f2cf2e55c1952bc4824990

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff57964a7eed8df1c132b68a2a0e3497ae541a9fd066e6e7a7c263bdcd0489e5
MD5 a1c7cad16ec6e618139f6040b2b20017
BLAKE2b-256 f8736ce27d218513524a906c9bd402be8d5b2f5acc5dae0ce665e0b751849238

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ff32329bf25b4499c9c7c17caa5a4bc995d101474002b496b56203b1ecdd857
MD5 bff32a8cb203170f2a7cfda6e0c5f525
BLAKE2b-256 437198130e75980f3695f669bdf8c7e3c7a5688edc600186e90319a12965d7fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3521452f46b5d764c58c5c0eb5f9b83c8f3696b9c216bf64cd35ec0904794115
MD5 a6c7b0d22bab64d91a7a6f1ee568cc20
BLAKE2b-256 eb503245c2d56f05eb6ff267cd4bdd2d1130da9b15366f014df0205ce9e64e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e2e4c2b3d5773c178d970a7a5ef3d8c9bd390f31cce043944789c5f5a26f7ee7
MD5 03fabaf27f403c220decc35c63fee0b1
BLAKE2b-256 0db9a1cd2bf34f7f8f3ba329c8871685533d7ca34e9a7faa3b0ca6b96d162d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 507.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0422134e8c3b82383c3ab86c14b81fd7b23c497c44055584444624d2f04a622e
MD5 60e920af48872c85d9eae55ea4607418
BLAKE2b-256 94a84db36dd4df3a71b98346a8fe475c2d0a820b3d63cafcf910f14ab86e4b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for mecab-0.996.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04482a6b8292a9239b423e4755141a9c19da9b9dc407f89b623556fb6883aef1
MD5 4efed05ed918662a20801f7241822e39
BLAKE2b-256 6a2793975526cfb6afec0b87e7c491b242d8a017801568edefe04bb562b94752

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61ec30dfa05f5d755765a6e495b52b26a4fe08874d7cc3e1c8b7758d8fbfc1d2
MD5 2b7675e7cc57b36969111cd4e2e78485
BLAKE2b-256 974dbfa459db1fa1ced0a54f17a494eae3fb317e7e02831e930714d12e7611e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1bdd31b8317bf6c02b9cd17784caaafaa341fb7b8574fc574b3dace1c6d95a4
MD5 cf68b2204a5d1d806b9c2af2d3203d1c
BLAKE2b-256 3a4bbc6a89955a9b9aa5a5afea5f88db1da74c3acf7d9e27eed6fa1d85969e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c6cdc8c62a8983ceb39fb7c1a26330554916a9e3ce37a262a4f08f31439fa49
MD5 00ee4161ed7325f185ff6ee94ed326b2
BLAKE2b-256 eab0c6e138ba09a707aec6b2ad869599ce85091e2efc67faf270fe7601de90eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 746d0b56a7b92e7a03652f1d87313b6f7bcc54d50cdc2c3975de73f907096c10
MD5 2fa0049515c532de245e3c3e0b2c01ff
BLAKE2b-256 a0623040ef454daa622d23129ec6551550d1583adb21b16ca8d5929e3894e913

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14835cd994fa4cae79ee0e8dceadd6072c979d92c5ab747337dd723b31aad689
MD5 a495ec580ccd053e8bc52206be405ea9
BLAKE2b-256 7c4e00b03f0b90cfc2171558aeaf473dec28c97b7c926f3167506995fbb7ddb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23d30a44a7188786af5197bdd63a9df81dedad91d49cca6bd085871562e1d455
MD5 9de67568696cd5ada9e48755e57530be
BLAKE2b-256 690a6cfb11ff7eb4be009ca715223117eb44915c5ceff1100e0fa976bb55d57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 83ba4c1a42db6b2a0404d07c8988043088b03b7027e3211fa79349e87bd9246c
MD5 60fe5afe15b890f4871758f9969ce0ad
BLAKE2b-256 7cd978f48cb6c299cee721b5c7a78de96837822c891306532b063d0fba94b006

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 506.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 745fa34f183269935a09af1fef4cbfd555e53c5be7a3a3e749b5a2c8cef7b57b
MD5 43337fb296e88b8eb940200a017043e0
BLAKE2b-256 d305545bc4135e032604119c699facee4c901dcd433b96232e10f7f33c7e5019

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for mecab-0.996.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 879645ed9548a33c1235c5367e180da146a67d51e9e7ec159f456050d223df04
MD5 5faf8d57b89d0e4b1ad92a5f72950174
BLAKE2b-256 5420566da7a39740237f0bedd7fb7b23f85cb9e04df0f178832acf3fa324a982

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55fbfd88e94e4fd11eef8bf567ac3e40f6e311e344af2903c3efd6bcebb0f9e5
MD5 71268acaa944505e84d3342e852ba017
BLAKE2b-256 acd6707a6ed9e28bb3537218ef77fb2fb423a8ad4c854683428e7f88d9d96550

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c63a1b7340d2b85622046806245aee5430db60c1c21b98100e20f5f29b7e018e
MD5 05617085d55f77e089b951e30a109ad9
BLAKE2b-256 a28be9605f47f6c59f5487dcc4cd8e71917dcdfce872ac9abb651558e9a99e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d2da3d1e9528019a1280a221fb502e6a687f8403bed2dc1a1abfad6b846e145
MD5 690f954fc84e1b09f46e2b086abebca2
BLAKE2b-256 fd866ff5eeb792a1e95a104f7c9c9e429606bf31d825defa77788808c5a73bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a8dc062da360a2883ac485d66e4749b1815522e90ab3cc6cdeae16c4bdf0ad0
MD5 0de7d2a0e8780f18c5d94c9f19a96c49
BLAKE2b-256 43c32952ba1c2c321f4f2b05c8f31f85a0d4b5d7ffc2f025a8cd2e65da6364a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0df83313cea0a0f700ee78a66ce04976ba95aad03da26c7d60a595026ffe9379
MD5 04a6933dd6a237f813ea3dc041691f2c
BLAKE2b-256 41876ccd1137410f5ef4c28c5ba6161f433a632cf5db2f6495533fba6e5f9561

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08abc53e3cf6df909a234b045b5a0f45dd25a77b606890c5604395316edb7ded
MD5 aad81ad1a92f7cb4871cb2e1075f1456
BLAKE2b-256 0b9cbdfb15c7b0246403f1cdc01244c6082711cdb7c60ed1c95019e21f6a5d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 08fd6fcf0e21eae1916d4f5f482606cdc6ae35c6c52776469516802cd55568e9
MD5 44c7d1787cd467c15a8a76d0c7ac4b71
BLAKE2b-256 223fbf29593aedaa30e870facb8334db5cec27862e64985bda860ac8317585cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 506.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44b48bdd0aed77fd78fab12c4026d0d09f8f7e0c95c98ca9a6d8634773121f88
MD5 0139aabdb32e74740abbd7403992df61
BLAKE2b-256 9dd0c77870ea0fe9002e053573099f1c8df92df76f41d8cbca7d59443b0399d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for mecab-0.996.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 069bfd0ff130964a18c92ba9725591c06280c64c799e5237f1b721537fc938f3
MD5 c1a440f57d5c0748e4b1e4e2a1f987b5
BLAKE2b-256 de7be1e828dcc6fd5faf586eb1c520162a40340183212186a1d93b7ca66042dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b97dae38a594dffcb839be479217778330eb780e5a81f1370e8026f0de7891ae
MD5 91913c13f872e22d3c5e30bd3cbc97a0
BLAKE2b-256 6b853f32eece0457c4f806fdba9410be2dc4ffe0e85e4db6b6f19c1486c70302

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6abc759cfeaae22154713b4f0ef266c87d0e05217ba522b3187641e836027899
MD5 29b59b3d04f4aede1d3e7ffe558e7298
BLAKE2b-256 974add88ef5678e56d84adc860fd657674a0ed093587d7684cce91cd6617deef

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86fb96e5d270773e963618b0ea49a6c4dbbe8683bc5c48cb6d246d55aad92583
MD5 2a2d98ff72b368655702b25f0058d3f9
BLAKE2b-256 ca07af31d5a17d689840f04e1297bb0c34623dbd94a641ee8d9a00c85966d127

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5df8d3ef7b8739739034c1f1f127c5b1f09917937bc20a4ba7c770b185a9268e
MD5 831f4785b875e8ae424fbe856e1120b7
BLAKE2b-256 3ced48ae9c6575cbed77cd9b938948d30991d9eea099eb631024a4a212fb4780

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 406d7e49dc2e0ded8556d1360a5713bf99545f4997db55773bb49eca43a89463
MD5 c3190fe9b01c9faac1d73505abff9cfa
BLAKE2b-256 f0f4216a29fbe75a8e5661a729a5060ab7f6e4548680699b9be7e0fa0e59df27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f5647623a0a1b9ae79dfb87541b435d7414aee336103dd4e4063be5507593b3
MD5 1b30233499e19aaa3473438110019799
BLAKE2b-256 c0632910de5e10c776577a866598ca528300309e846d5cc57a8c21432a913cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02d0ceca820f66be2c39ef1e7c2318851f7fed112b51e77de3b243b079875a77
MD5 c41b5e8c55aa34f4b7c92c5cecf3c9a7
BLAKE2b-256 1550516ef4692effd168e86fc0c97ab258c0c85db40726cc22054f3a0f7a03d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 506.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cab16403926f0fcad4c1abc6dc9e651c3d033e39bc94f0caf6d0eebcb7745ba8
MD5 a329179fd09a0260c14ef345b3806559
BLAKE2b-256 fae153a5ac1eee864ea0abe0a351a1c43aece5b527e52d88d4e9a83c3a3a4fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for mecab-0.996.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4287add1eb4bfbeaec4ee3edc660874657cf8c34cccdcdb31ed57a7cb8ffe1e
MD5 0e16ce4e0d9aab03d5d421be13837ca0
BLAKE2b-256 c50829b0d9c0aef3889692406becd419ae55892d329ff71b6ae52c4c6f67f035

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8256ce1182d0d5b958b1a8ffac0a18769e5909a000f9bdae74ab85200f7becdc
MD5 3ca407724d09b54ada3a0b4c32c07d77
BLAKE2b-256 811351de9e78c9ed3f25127497fdeccf050d940315cf7990fc113f77d005289e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcbb5815a7a8697a54da4771f289a17ffb8015c0872bd672dc1927e4dbd00944
MD5 8d701a14ecc4c813b5b521cce0ae34c0
BLAKE2b-256 c428f91e187da5188dead15822a063a1f8edb64e1cd1bbf8a37c3063a364d072

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8800f6b602fec3293211a89a94ab430e5a6658142d26f8b09172bc9f13e1f404
MD5 7e648fd069e6f7ed091555195b758bff
BLAKE2b-256 3fd7d6fe6f4251768e96c6b34ff5170f058dc1d1a5d3a3cfc1b534daed88d0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 029dd49fd1876409c7253e66a91436b4431c95bad78e88e1ec9bb193dbb2d81b
MD5 5ebfb34275224c46082dab0357e379d2
BLAKE2b-256 4108471bbd62e30b17b91969d8a5092e0e3e89d7843d1815ef5abbde3fad4bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a79c7bc73f02d6fa6681dbfe153055c3ff2bbb8ddd9ed3a800d18fd2309d56c7
MD5 4265c0d2fb1842e39516bfa13af14bc0
BLAKE2b-256 6b76e1d5ef6e58bd090cb7a1ae39f45d346b4119c8cbae6ce686cf85ecf79bb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c1a21242247977b23a7b4b27599560ec1bc5e3d316c7bc921f5713e3ce72519
MD5 b188171d96eb3e3c69a0add22dfe2138
BLAKE2b-256 0eb102915b46e02f30d8aca88d58a88eee587603ba6d4bb3363305efa355ba07

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9c8461cda3b4fad1f8a31b30272b5547c8c568f763b6783f92f8d7259bf12059
MD5 6f91e060b3bc40f8608e4d8be39721ba
BLAKE2b-256 ac30e16a9cf45e135df0cc9f6957f8a007e1625fba9ec30d5ea99cec00c0af1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mecab-0.996.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 506.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dbacef6eea693bcac602d43881d67bdb0352e5aa5618abd247d65538cde1a088
MD5 777607110c5b26a26b5cfddd7b635955
BLAKE2b-256 4c919179c124bf7242637d0544d4825e133cb3ab6f1d6ca196217be88e0c58a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-win_amd64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-win32.whl.

File metadata

  • Download URL: mecab-0.996.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 450.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mecab-0.996.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c7f92d5e90b6942e0d8e6199b3bfc13d5519b1248e6de7ee4faab0d7522c6dff
MD5 c1656a1f943c3e48963ab4cb58464173
BLAKE2b-256 6e37d32250a2c028d0e60549d29b300b9b57148576e36c20a55fc689792c1ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-win32.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30b5415c27cea09a1d4c89c09ba40dbf9a6c7440ef89c735f8381565d38bbd1b
MD5 35199a16473bc57fc5a203009674ca63
BLAKE2b-256 9944e4b67ac12a78f00134f9be48751a8bf50a842ccda3008cfcb269d06a7388

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65372aa4d85d18e880daac0ab0f603171be5e31daeecac74350899c392237b70
MD5 3531a2e0a1bd27177f7f8ccf4c9a5565
BLAKE2b-256 b42375b373b9b79b99a38eb2ffb1bd8fffb33412ee1c01ba87914a59fd220705

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a4fc514fa97777781e7e987a76e3b3cc240affcbea9e7f307386e1a826872fe
MD5 1ca5ba6e7bace673cfcc31bfb0f74c88
BLAKE2b-256 d0c011a83bf569f3548b181aebb03a71e33534048b1f095d6ef5f0aed6e56651

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d55d32e342b9462f5894977c2af6db23cf95a71e757e0ec1279464f9bbe0e84f
MD5 ff57c1eb6a80c31ee3893a392b3b561f
BLAKE2b-256 3e77805e6adeb0eb1d4230a6b48457c7a93d05b7178797ffb7271964f28148a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96920e149583ad51fd61ec65830560e97a064a973b3ec23fe298125f162ac05c
MD5 5765aaf451f7c9eaece5d7a86ffe54c4
BLAKE2b-256 0975d33a4167f1b00327b27a6bb1e1f28be93a17f7dea6ecbef0600c6c2d3b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14612c1a996ddf535b37713ebc19221949a7d63bb034e5dc7ef03737ff9beecc
MD5 6aaa271ca7ba9aec02afcfa5de024ad7
BLAKE2b-256 1707d3353d5936c63dfaff049347c40caacc9cbe8f520d29cc31c45f8e684f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on shogo82148/mecab

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

File details

Details for the file mecab-0.996.11-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab-0.996.11-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 76ff1016fc62c5aa3579a4085ca09617fbd215636d3c9a858bd5bc30fb8c9800
MD5 39bacf97c3910d524e5330e1067178ee
BLAKE2b-256 d91e717cc502087b92c3b8cbc8069c804e2993dd89998482ca71e44a082acaea

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab-0.996.11-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: release.yml on shogo82148/mecab

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

Supported by

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