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.9.dev7.tar.gz (78.6 kB view details)

Uploaded Source

Built Distributions

mecab_python3-1.0.9.dev7-cp312-cp312-win_amd64.whl (501.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.9.dev7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.9.dev7-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.9.dev7-cp312-cp312-macosx_11_0_arm64.whl (511.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_universal2.whl (554.9 kB view details)

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

mecab_python3-1.0.9.dev7-cp311-cp311-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.9.dev7-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.9.dev7-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.9.dev7-cp311-cp311-macosx_11_0_arm64.whl (510.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_universal2.whl (553.5 kB view details)

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

mecab_python3-1.0.9.dev7-cp310-cp310-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.9.dev7-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.9.dev7-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.9.dev7-cp310-cp310-macosx_11_0_arm64.whl (510.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_universal2.whl (553.5 kB view details)

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

mecab_python3-1.0.9.dev7-cp39-cp39-win_amd64.whl (501.1 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.9.dev7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.9.dev7-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.9.dev7-cp39-cp39-macosx_11_0_arm64.whl (510.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_universal2.whl (553.5 kB view details)

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

mecab_python3-1.0.9.dev7-cp38-cp38-win_amd64.whl (501.3 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.9.dev7-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.9.dev7-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.9.dev7-cp38-cp38-macosx_11_0_arm64.whl (510.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_universal2.whl (553.7 kB view details)

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

mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

mecab_python3-1.0.9.dev7-cp37-cp37m-macosx_10_9_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.9.dev7-cp36-cp36m-macosx_10_9_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mecab_python3-1.0.9.dev7.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.9.dev7.tar.gz
  • Upload date:
  • Size: 78.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for mecab_python3-1.0.9.dev7.tar.gz
Algorithm Hash digest
SHA256 b2fd0b140ebb988b898a2e037abbc35ab531fe90daec8dfe77781b3c54489334
MD5 7d961b87bf4804ce79a0bde4024f79f0
BLAKE2b-256 7824918953eda9510a2a26e20a20b448b019b47f57512d6fe6db149b9e3e4f9f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19902dbd2842bd69bd887e0f4ecc4252a22f802080daef0da99a6655ff00a0b4
MD5 1e0f6cc550a0c9d71489f591e800bb63
BLAKE2b-256 865da76e405acd652151e1c3fd422a1f795b8d1236ad20ef9c19e746c6f469ea

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9c136bfde862db85018ea131bd094603e1c3d061355364e1201cedfa526325d
MD5 ffefe6ff0071f0d022dc5359420d4fb4
BLAKE2b-256 df562c7683cb0099b0043c947ee6122641332f6038e56ed3ab4df67b9edac568

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a55decf818ced1f6e9305e70199d32fd311af5c8df44be714fdb10347f947b1f
MD5 2beae1e513fc52fcef91f671fe57cde3
BLAKE2b-256 d43a4aa9112674686ef29f88ad6ea7b888597d5a3eacb0b91884ef85f8591aee

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 731a0a194fed99827f629d81366393cff84c02c93312367a106766a1065e23d8
MD5 84dcfdec56746924d0112212c0a32368
BLAKE2b-256 1b9c1748ec707366ca13ad33c43a16f95a696fea43b5a440244bcbb4c1eca0ec

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c24483bd46b457f2c942525c33daf8743a392b47845065afb97235587372c80
MD5 426a02f7a1b1ce05ee8094cf1592985f
BLAKE2b-256 9c9c9e5193a99206d871bd5fbff607021689079e2e2e5b3f2acf19f1a417ac84

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1b378da93ca18c14d0920bf4e0d9bde8fa3a6b1a13655a223279c18fa01606b8
MD5 68b823b4be826b57a499ae508fefb391
BLAKE2b-256 f1145f1b678a4a10ebca581072781391e22c311ef40019a01d13bb11f048ad72

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e84365e35781f317fe739f39e1f4ffb2d70eda5d6fcd86f1bdd52fb619b96e0
MD5 371bcaa823babfdd5c4114e892f23aa4
BLAKE2b-256 0da18bbc7e3127c47b637f82437f0e95f966b70de2b4c19d997a254b2244b8e7

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c20eb59813d325e362a85dec0814dbad7132b0a4dad048247f1666e2ddd187d6
MD5 3f7f4fb6d897375f3ff7923afbe26099
BLAKE2b-256 76ff1721201edd1bb70d14c0fc0876b5d65313966033aa6183f3b31de4b85244

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c118b01255996641104719207d0b225e52eb56ce96e976cbd4aacbe5858a883
MD5 afd34d43904c5daadfde545830121a33
BLAKE2b-256 989696518b1b912eb0397eb4ec3fdb95a4683352c3983cc45cc05f9b3abd2633

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ee9ed92f576f781f7bfc46a2cac6d98238668bde97490aec600d2f9b7967253
MD5 d24d9940d0ca289f5e2af7a9b679f6a3
BLAKE2b-256 f2ee1bea1b9887e2f59b913df71afe75298c143fa5d5f16c1089657208024f94

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 219b1825a221163eee22eea4c15ab0ebd7db248e3c1f4c594d65b8e7e3b048dd
MD5 912eda3b4d88408c3b8fd53fcf7927a4
BLAKE2b-256 20ef5833c3fec91a3bcef9170401c86a24a04326725575bb88d9256a03e75c64

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 792ad8f44b11c6d04a94e543972f8c01c0938564c0fb6a79d907ed7828788d94
MD5 a4013edd38e99c0faff836cd7407f3ac
BLAKE2b-256 023176d8a185ad62160b4bced3b46a00894e319f485b5ac58347072bdca78252

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4f3629f9759ad28aeff71bc744096eaba2d8d9da9780336ed74f1ae3ad416b7
MD5 b5b2a0ee05bcbf5e10428cc746f3fa4c
BLAKE2b-256 1f2876bce606409d0d4ebec22e96bc9dfb803746f1f8e5c6e24c0bf19c4a80d8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fad686d9385195e57d3c640f657c49c272b5e1adef49b327150e29a0645750e0
MD5 72ea3a3860c11fa810a54e09078affc8
BLAKE2b-256 2bb85d9915cb1590b1fa5f7e3b7b9379b141c13ec694fb0bc21f9c2671db8488

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed8e098171a877926f3bf10da3ade0191df9e8770eef625885e57a75f9170992
MD5 e1823c35d9e36aadc82cab4d354fff35
BLAKE2b-256 cc088391802065e2283f250c0c2a3d7b0c731e055bde5339e054ab70e97e2624

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f6191951e00a73faac40c9fda1bb8c209e86603ac71ddee71b15a0416329481
MD5 d3048f4b213d0c69e4eed08ecb3fd64d
BLAKE2b-256 b471580160fbeb44c96ab9d6719c8f360a638268490814fc73c72e2b0c16db25

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64440e8e21de8ebfe744f0d61eb538e81a68cde3a9009ea8412e8b6663221e9f
MD5 c5acab1415e3d7d97cdb36e90a7d2aa1
BLAKE2b-256 6cd8e6db4db3c97b48db49e8b863e54a92c6b74cd563feaae88ef3b1fe69abfc

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b172206a8f81d2c9483ef0d6af2328d850ebb0cba4de16890c42ed480a4c95e
MD5 6a1c72a820d312eeb4b8ef6c4f680d2e
BLAKE2b-256 62ca2d45985f9f3701f5d9a56dbcd3946cc9902716d23950b5b2c11082c9bf7a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7cc4b43368acdf05685e7f257f0ff18aff3d6509072d824102d3adecd1088f3c
MD5 2391b49b764a0aa9ebaedd204175c7a4
BLAKE2b-256 db70291aa65e8af5f8d43d291f95f131751b2a0ffaebc3382c566c548e4d6bbb

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c59a5615faf8e03f42508b4a19b9d63483da8363c9fa4e94c8b71be46b7c64d
MD5 fb00a7da38ebc23337a61365f2c4bcc6
BLAKE2b-256 7743d6e39ebee2c9a08c9bcf592502e1ac0a2b5954b9110f8ef2b46e889bc2df

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 216bda8089ce824333752d294f8111b176403db50b8e313b7c2ab0fdf8d5bfa4
MD5 ec4aee0c09abd89e46bc8ef83e8581ed
BLAKE2b-256 96e561e68d1c5e02940e39d3b1825fd814b62bff428955c969d6d0726ede8acf

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13f60137458195cf507f71d324c7434643dbc1af947d75dd492c69cd4d7be7ed
MD5 61fc8969593f854ce55d2896291bce83
BLAKE2b-256 35393b5f5ebd72e7b8387b196a01f121640a1d9f68d4587d6c28fa812dda1b2c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 125e55e96f2007a150236b955b84dc8f83d27978fc9c8cc14bb4cf708d67be57
MD5 20c000dc8a1b4fecade53cb590bf364d
BLAKE2b-256 18271f9b3ec37cf9a6731707f14a229f5734d475492c04c99291f7c235ecec86

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b6be08e3ac21de524dde7eb66a7b99341cf485e95f8fdfb4965085fddd4ddac1
MD5 ca857fe86501e7a4ef7d463c25c151b9
BLAKE2b-256 fee0cb8ec956732d53de5f2866c3761829bec9b5007dd3398da3b9de067c149e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d3f551022b351a049660d03ab68523c91b8ede30f5b0804c4dadefe314b26524
MD5 56304aa92767403e39c17aaa41a9432e
BLAKE2b-256 3dbcf92c5f995d92db7779067f56ff50671e1942a3d504ff746f130dd57db405

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ba2b18714ae476a3ba851382c71f8d91661aaa6c22d7f0cd8a0842ce55676f5
MD5 f45c9b10ebcaf70fb0ae54a634d33a2b
BLAKE2b-256 1708b698275f6382d3633e6de1fe507ac356d6c981829981acf621d2d7148379

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5309a62c8fe00d65773d316f9910df640170e1870750d507858ab9c971eb3e3
MD5 efecb892dfcfd40d358743d9bf7a4ba9
BLAKE2b-256 e6b236d474cff1c060fa5422502c4ee55061496d9f387dffa24b5618130282c4

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fabdf71430b01d6740e683b8e27780743af3d9011952d260e77eda2ecad257b
MD5 78c5852aa97ea31e7de111aa1f1b99f6
BLAKE2b-256 850172a65ac6dbd8f5bb043a97672a015659c49e0c882083f6f344037900a34a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b5ca2a5f60a11ff725e99cae6ea9c1b641b40aca4f7694777de7179a83e68ab
MD5 83a5e57490e0bc56087e38e578ef99ec
BLAKE2b-256 28093902eb0f8e823b3892231f19e2b2a03773bd629a234ac115f1b7ef5e54b2

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a72c0bee0d9a538e7b94edbf45bb3b71d66acd6f6b408f982a7a8b0eaacbbe9
MD5 28ff2f541dd721adf4fba185e40eceba
BLAKE2b-256 9bbc5bf53615db15cac82cd9f659da820cb56db8c43709619df2d7b5e164ccb6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a9374b6287f57204893c8a373cb976c439fd810d878370cd17f4a811e4aa6ab
MD5 68171e539d700e56f690152bc65cb944
BLAKE2b-256 780894e241dbb74b5111b578e9a572a5cad83af110778567354cec24fcbe29ea

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f67a7da205c59e25859112708362b37645b51a30025f51e763c76f6df7aa471
MD5 3b6e034473427638d2cf7bdc8c70a611
BLAKE2b-256 dada7192be3e36a64408d33bb8d8d28f68bd331c5321fe0105eeb4e26b4b848f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a50cdd71dd1d0e71599b60acc13961e294f295c8d40dbb6a936ee58cb45e91ba
MD5 f812fa440bb57c38fd2a43308952d971
BLAKE2b-256 89546239345213611cf2e2f400465882e87d52c81f42b7ccf0c625b7e7833391

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9.dev7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 508f4e7c08577099f56333cc52e9d71169a1b578133d7393de24e4fc9f168dd5
MD5 a0ef5fa183e03604137a0660b1bebeb9
BLAKE2b-256 7269433d6c97a2003c287aad16b4d8ac6ea5455f805d95a3815465ef86f6a62e

See more details on using hashes here.

Supported by

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