Skip to main content

Python wrapper for the MeCab morphological analyzer for Japanese

Project description

This is a Python wrapper for the MeCab morphological analyzer for Japanese text. It currently works with Python 3.8 and greater.

Note: If using MacOS Big Sur, you'll need to upgrade pip to version 20.3 or higher to use wheels due to a pip issue.

issueを英語で書く必要はありません。

Note that Windows wheels require a Microsoft Visual C++ Redistributable, so be sure to install that.

Basic usage

>>> import MeCab
>>> wakati = MeCab.Tagger("-Owakati")
>>> wakati.parse("pythonが大好きです").split()
['python', 'が', '大好き', 'です']

>>> tagger = MeCab.Tagger()
>>> print(tagger.parse("pythonが大好きです"))
python  python  python  python  名詞-普通名詞-一般
                        助詞-格助詞
大好き  ダイスキ        ダイスキ        大好き  形状詞-一般
です    デス    デス    です    助動詞  助動詞-デス     終止形-一般
EOS

The API for mecab-python3 closely follows the API for MeCab itself, even when this makes it not very “Pythonic.” Please consult the official MeCab documentation for more information.

Installation

Binary wheels are available for MacOS X, Linux, and Windows (64bit) are installed by default when you use pip:

pip install mecab-python3

These wheels include a copy of the MeCab library, but not a dictionary. In order to use MeCab you'll need to install a dictionary. unidic-lite is a good one to start with:

pip install unidic-lite

To build from source using pip,

pip install --no-binary :all: mecab-python3

Dictionaries

In order to use MeCab, you must install a dictionary. There are many different dictionaries available for MeCab. These UniDic packages, which include slight modifications for ease of use, are recommended:

  • unidic: The latest full UniDic.
  • unidic-lite: A slightly modified UniDic 2.1.2, chosen for its small size.

The dictionaries below are not recommended due to being unmaintained for many years, but they are available for use with legacy applications.

For more details on the differences between dictionaries see here.

Common Issues

If you get a RuntimeError when you try to run MeCab, here are some things to check:

Windows Redistributable

You have to install this to use this package on Windows.

Installing a Dictionary

Run pip install unidic-lite and confirm that works. If that fixes your problem, you either don't have a dictionary installed, or you need to specify your dictionary path like this:

tagger = MeCab.Tagger('-r /dev/null -d /usr/local/lib/mecab/dic/mydic')

Note: on Windows, use nul instead of /dev/null. Alternately, if you have a mecabrc you can use the path after -r.

Specifying a mecabrc

If you get this error:

error message: [ifs] no such file or directory: /usr/local/etc/mecabrc

You need to specify a mecabrc file. It's OK to specify an empty file, it just has to exist. You can specify a mecabrc with -r. This may be necessary on Debian or Ubuntu, where the mecabrc is in /etc/mecabrc.

You can specify an empty mecabrc like this:

tagger = MeCab.Tagger('-r/dev/null -d/home/hoge/mydic')

Using Unsupported Output Modes like -Ochasen

Chasen output is not a built-in feature of MeCab, you must specify it in your dicrc or mecabrc. Notably, Unidic does not include Chasen output format. Please see the MeCab documentation.

Alternatives

  • fugashi is a Cython wrapper for MeCab with a Pythonic interface, by the current maintainer of this library
  • SudachiPy is a modern tokenizer with an actively maintained dictionary
  • pymecab-ko is a wrapper of the Korean MeCab fork mecab-ko based on mecab-python3
  • KoNLPy is a library for Korean NLP that includes a MeCab wrapper

Licensing

Like MeCab itself, mecab-python3 is copyrighted free software by Taku Kudo taku@chasen.org and Nippon Telegraph and Telephone Corporation, and is distributed under a 3-clause BSD license (see the file BSD). Alternatively, it may be redistributed under the terms of the GNU General Public License, version 2 (see the file GPL) or the GNU Lesser General Public License, version 2.1 (see the file LGPL).

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

mecab_python3-1.0.11.dev9.tar.gz (78.7 kB view details)

Uploaded Source

Built Distributions

mecab_python3-1.0.11.dev9-cp313-cp313-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.13Windows x86-64

mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp313-cp313-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_universal2.whl (524.0 kB view details)

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

mecab_python3-1.0.11.dev9-cp312-cp312-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp312-cp312-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_universal2.whl (523.9 kB view details)

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

mecab_python3-1.0.11.dev9-cp311-cp311-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp311-cp311-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev9-cp310-cp310-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp310-cp310-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev9-cp39-cp39-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp39-cp39-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev9-cp38-cp38-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.11.dev9-cp38-cp38-macosx_11_0_arm64.whl (484.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_universal2.whl (524.4 kB view details)

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

mecab_python3-1.0.11.dev9-cp37-cp37m-macosx_10_9_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.11.dev9-cp36-cp36m-macosx_10_9_x86_64.whl (487.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mecab_python3-1.0.11.dev9.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.11.dev9.tar.gz
  • Upload date:
  • Size: 78.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mecab_python3-1.0.11.dev9.tar.gz
Algorithm Hash digest
SHA256 3bbc6ab45408899bbd1525b0ee9c674b1a9f7401ebd1a2568445ce4f00f21521
MD5 9583d435df997925fd63df80149c793e
BLAKE2b-256 8d777ec44710a15643f6c9787e6b405efce36827335d88447af09400b9e308ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9.tar.gz:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb50dc52d57d52f9b41b3fd046f58c17d2f9e329e72bf0efa97c93c6315f00d8
MD5 a3c95424086998ca2d697e1c066bb3f6
BLAKE2b-256 71dbde31f25d1f0a8cd8b72f3f957dc6ce4ab0b83b0665c937bc146530057958

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bd8186a9efeca76791977f6544addf7f89e97acf7557b1b8b40ceec733cc7a0
MD5 cb184725f7e7ee4d9b61a33672d5a926
BLAKE2b-256 97d596b749490428ce61d9467d51d4178ec34eb04ac8143420055369215fc8ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a7162dc46e9aba25c7829f765b34cd6f543a54c32be5b39633859cd903ca774
MD5 567cb0c6df553dc9feb26eae2f71eb6c
BLAKE2b-256 66355af52319a5a734f746694c72d8ea0913908c645d9d8096c262fc0bbe1d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6afe9a910e423130f0fd8c5f4449fcf3069f7a9ea8b2b54024bff180bac837d8
MD5 e20decd72dcb51ed94ec831259bee3d1
BLAKE2b-256 341dc5abc7299a2b4f31fa7c117386616ff321b2f2c66f17713aeb54e04a0921

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30285e03ff98a28cdd913054be279155d6604940e60ac87a7593e6124f0a0442
MD5 b7d6c54cb6993b1290fd962d8999b77f
BLAKE2b-256 d9f694a301b4a1c94a47e50462b7ce53db9ef6ebeadf10fb99d424897d5467de

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4bdb0e41568454f88d0bb4c672de95a401b0c762ad8180fc68218fecfcc2109c
MD5 c0d045f2f6f5af68de2b1e76bacd791b
BLAKE2b-256 d2761f6db835a84444ca3b03554aac215e1a7531f9503a1ff8569ada49ed9151

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d351ee3bd6ce27b3206dd5d8117abc00067df24e851cf76af15a4139261702c6
MD5 14c6a33c07f86d0b8a709b8b0bb525f0
BLAKE2b-256 41f8920763f4e734e7c33c92352d691dafb3619445b671da37a0a3a8c4a5084e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cdddede78f8532e8db397b4f98628aa543ac7539c68378a39f57b625963d6c
MD5 1875780d4db7c656bbaa02b153b84bb4
BLAKE2b-256 8324bc7dc1fdbf59be0969fa38e3483403cd0f492826cc928ef511c1dd165ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8ba64cf5831e177ca93818e6daf00b211195fcace49b0b39d849893ad85c827
MD5 d68bda64b8554cb30c7de85564d577e8
BLAKE2b-256 441dff8df65438e42f4bcf0425291f2e174556e1acbc0552447a79e930ea7958

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cd2923afd595b0e620de689b30ab54b07b5175bad03f942c48acf9b70392b3d
MD5 aacc75a7dc41f7bb0a88e6621059b0e8
BLAKE2b-256 368893b5a9e7a2f5065a8ec6e4e020d81b02968fc9ea556a217dbac9d754d4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fd0d7688f5066c24ea7bffe5a3d1d0f7a760db250f4065c984083796ccd4ae85
MD5 74f1f2726dcaa2ba7e44b341fdd1831e
BLAKE2b-256 5b4a27c9ebad9b9a6e8653e1ea48f7f81836d1f732c6f69b4c89a5e7a11d2025

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 df16b3b85cf082f446f22776b09e436e02b0306a7644bf990e880eb246bd6a32
MD5 ec8f1e51f69cce6bdee67a603bd9c750
BLAKE2b-256 4d3ebf5fac04e16011b2188996811d02fda59fd62bbc79739511189c96bf76b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54dafe6b1c359870f5deb66130283e416fe6b9bf8facb7de46d670d7b42beed1
MD5 6b9152a98d8b4ff7cfd51d71ae410b78
BLAKE2b-256 e977d25ab327d8bc11daa1704d52e55777a51b68b6719d247eafb5bf7ecf8089

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e8684a16f660ce1617df557e82b13ae7f92fc79a721efde97d88d672e0149b8
MD5 7fd49c777409cb1ac42657f3ea26a023
BLAKE2b-256 c117d8b9e056fbb76be8f47312e928a82c1eff0eefe656ddf428b36e43d2a54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebe503e1541d886ac8da37efe9ad97cb22bb12ae8ba4b1d3484a0cc2d18d0cc4
MD5 85734a0327b2463dd8bd8c73f1c43149
BLAKE2b-256 2f1c18aae79c6d50a55d8bc33e2e440a193b3431aab78fa59b20683ca0913c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 563f06031eaa7c71aa6d6d65699370440ee73855225b464dd10afa3f2fe21808
MD5 f22d1cd09b1761345e6b5eba72e2eb72
BLAKE2b-256 d9440b8584612efcd983bcd588976f0baee86b6ffc5705f6fedfc70ceb6adc24

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 deae70ddd7222271ced760473143492fb08db69382db18e911760c1447eb828b
MD5 b1f1b71cde6781d43410f3ca5b4a42f4
BLAKE2b-256 3f029ddf8157e59286c6a3b0fa416c1f911bbb28aa554ec9fb003cf0d3d28abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 30b2f89b1032b5cfe21317befcd1da4de2c223d5ad10a43af7f082347551a813
MD5 6e977ec6135f26c7ee3b9d24fd6068b1
BLAKE2b-256 873409f4967b8de8801d377b1a5191f763456aa3282504b938ccb172c42eec3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0efa085804aa768e612c6755f1871f56ad598d5b3114a43e5e98a7ac7fea6c7
MD5 b6c0461cd13141510fae44cf451caf69
BLAKE2b-256 f45102db639cb8879f705f14659e588ef10cb220075d0c589e8a6a228a4bf0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45909d219aa066fd68311971e84ab97629db6e4264f5a9a7eceda9b052a28f2d
MD5 0abd923c75f600532a2cf19f3afde22f
BLAKE2b-256 345f22846c44429e5af07ac450d11ded6437f92663c9d2d4c17cf7f3f4aa0d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3213484181d7228b1baa40e1f600ffe78cb3f8ed38dd2729b93741829a24a6da
MD5 f4ca74adeb4d9229b38aedebcf2be151
BLAKE2b-256 f149418234bb2e804dd0281a405ab1b7fc8ec7805fa9391baf22dfc7eb3c9c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2d2503a0dd73aa9c0e2a82a358eba45da2afcd301f9443ccbb278bb858de63f
MD5 de70f0e0bc94bcd8cb4f1898ff0748d9
BLAKE2b-256 3eb268e3957f1a2917425c5cfb0feaad34d15e25c691e22462330e11efacf428

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57cb6e13149319f00aa96cdc3ef58de7664b4f0286023f06557ffdd06d6b2877
MD5 1e21ee106239ccf0c44a4759add6122c
BLAKE2b-256 5626d808db104328e94072e3079496dd4b82757b838a399d34987e0ceb135fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f948adf0de6a9922fb693d4378f452920cda3ac3a19130ef1f37e13223285cb
MD5 2ca2dc838fec6f340813fe5ee5d2abbb
BLAKE2b-256 06e3b1f231138b6bc013246ffa0bf46352b06bb1922ebdbf708c6e115b13fe94

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3013007edc56e2e92bfd89ac9073840404e41b8591856c841d400e8409ba0959
MD5 cbf28143131b6cc711a87fbe73b2d1d9
BLAKE2b-256 f2849d4939c40b8eea311061fb7c4dbac3e12a734d6bf083f4625ee7f0bce493

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d7051378f8b6bc9237f2ec5054d14a40c9e3799183e10bb94c29973b78daa02
MD5 78a6115375da45ca108ed1880fd76196
BLAKE2b-256 4511f314a0abb3525b1578a99baf3efca79250f5fada5b1fe7e60fd6dd11b2ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b0b802300c8f1eb1db24bca306fc2d56bd6da9fbfeca14e60a60118e1f39db
MD5 20138826f7e9d2efa3df9d87663273df
BLAKE2b-256 07406891f8c16c6b034f10dade68fc10df2f9bea0800fc3a2f7651609b2d594b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6d6d42f7b142332b94677b2d52ef916c3b67b061f8644cd362387336429187d
MD5 c88ecb5425e5b2e93caff62ec95d9ae5
BLAKE2b-256 8051b03b46d5d600477977355a734e13023a6b9d915ece3d770d977e73bddf74

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45ee84d2a7013881e9a3812974218e5b77cc66ab11ccec6c2fab66adb5421dd2
MD5 70c8e03ee54a29798e06b17919b70230
BLAKE2b-256 6d5f5f61a3c75e7a634be739cc5c9e7465399d29e3e40ba17e4f620c0cfaf151

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 69df9015e13f437601ab5bd0f60125f1657cebc973e9a61752883a959d65aeb3
MD5 dab3e9e3d95c48e8fc7c139120d76b33
BLAKE2b-256 c8b3e15a0403cd4731618f9d936e8b16e5f1c31555178b1e6266fa7114b3bd74

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e8f7b552787c59505025dfec4be82ddffccaab18d7ae33aa21c171c6f7b102b8
MD5 71aa782bd8d81c6a624320d62e82a10d
BLAKE2b-256 2bdaa5ca851089b00164a05f3ec05aa03ed136236f9573d629925f78906daf03

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-win_amd64.whl:

Publisher: windows.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c93770d7d666ba4364154bac100e5fc661e969a4b303b44dc40286a41e2a92
MD5 c80e975483784d520610dda90cf791fa
BLAKE2b-256 99fb1bc92e83c50c0adabbc3456fc29c7b398953515c00192ce6878518a77da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aac21f740b87e23c2cecfffe29e03a9053ab01a634b4c6ebf8a0761212248ccd
MD5 1a02e65fab5b0d170ca2ced173f39ab8
BLAKE2b-256 c96508571c86e8623d311c67c8fa1f4ca1fdcdf3146cafa453128748eeca1432

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: manylinux.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 225ab42686d961efd43942adaf65489f8c293977c5935f53bec4ca740765c57d
MD5 2a7bda57669469c23339d9c87da95a69
BLAKE2b-256 7fc83a309b26c278853a61f6bbda182ee7c5f352e8b3f3a2b14d3971e221e188

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0c609c27a3472bdbe5e3625c60dcd0a95db6a8959c694aa05e680037d6594e5
MD5 9a457457c0880b2685427ba1fa9ea8ca
BLAKE2b-256 cbe417c2e479e11ad925489081b5b6718fbf64c45ca677ed537f450c56d8e9c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6c9a67bf3db2f161da8d44c6aea9a3378666fdf6354e872e346c1036bb414cfa
MD5 708e901c0e99ca8db8f2f2a1b3240d2b
BLAKE2b-256 2e7b11179665f6d1a7115515e42eb5c8b271dfd3f5fc922b9103dcda4b4abfdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18ed6e224dce0106873121eedb9650ed5a7e68f8633fff302daf1d738b32ad27
MD5 fb0812930324717534a8d0d3133169ed
BLAKE2b-256 b032d1b90c21a84e0d13533382122ff02e4b5bf5b4d9e001989a26caa8e3114b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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_python3-1.0.11.dev9-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbe7f3aef92e0eccaa3628d8e9da905238a1879bf187a4604c67d3c1067df695
MD5 df07ab28a4ebc8e78962c0101679a893
BLAKE2b-256 b2425ea8fdd5a4a5c3de63d9047b29dafded2f44fe6db0e5eb560cf5330f9f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev9-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: osx.yml on polm/mecab-python3

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