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.10.dev1.tar.gz (78.7 kB view details)

Uploaded Source

Built Distributions

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

mecab_python3-1.0.10.dev1-cp313-cp313-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.13Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp313-cp313-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp312-cp312-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp312-cp312-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp311-cp311-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp311-cp311-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp310-cp310-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp310-cp310-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-cp310-cp310-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-cp39-cp39-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp39-cp39-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp38-cp38-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-cp38-cp38-macosx_11_0_arm64.whl (484.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.10.dev1-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.10.dev1-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.10.dev1-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.10.dev1-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.10.dev1.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.10.dev1.tar.gz
  • Upload date:
  • Size: 78.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for mecab_python3-1.0.10.dev1.tar.gz
Algorithm Hash digest
SHA256 5d17cd7c1c4c1f7b3109cee272556c076f35174404b157b9dbceb7cc538017bd
MD5 2e8cb875c0bca2a0e843af0aef32ae79
BLAKE2b-256 2d77dfe611e74ca1f5f13e824e39807769a39b6a3a7d2d9a2414964383bcea64

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0369300d3e2f1d5b8ed9e33b173a9be2c173c81e31c24854f4a850ed05457d7a
MD5 93f3f8c6e5d1b02b607fed981ad2aeed
BLAKE2b-256 d977ebb615c08cfa6f476dcafdabe934ad777d8b690ce328f623a590baddc667

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28a9c10769d47425585ea99963052ad117cffa6b1cc19669c40b71ac0b4d7584
MD5 e9fa2cde0b4caf8db3576be2bcfd5351
BLAKE2b-256 32b5b06279a62973084322a6ec8f66d117255d1c9fab4205f9f3eca6ef5ad5c5

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f2d48081322b0b0d784d6932cab7991a55cdc2462232565aca161503d843bb2
MD5 4a3968bb84c811105fdb8ee92f072cc2
BLAKE2b-256 fc4026b0b2b4ef26d7aa86a0b5f8e7ac62152f5fe0bbd30b100c4b1c0245a210

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d020a1f2d13c8159758cbcd2f72c35c095eadff22577730851f4ef695844622b
MD5 a11408693b9be20325af1f44a2c1b817
BLAKE2b-256 9328d5f8a6e198df5347f7f584bb09b058789f6364de3942f4f391fc8bacf212

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1637d2490023185798531823eac93b95117275682af36ec2ad76ff411afac6dd
MD5 9b6963f378101c096da0526705a01c19
BLAKE2b-256 ed8ffe6d1f4b90dbe361e507c3aa0d4b0260c9402fad650d73cf7feebcd4c76c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b1b0ef1d797aebe41ad3b5226c6af935a726c1a36db346cf38b01b0106422bd2
MD5 8d89a39a4671b612536c9078e26c4c30
BLAKE2b-256 c0fb6ba3bb28ba0e496ea371ae6dfd181edc747834af624fb34239664e691955

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c37c41226be126e9af4a40b6e35255c3eda2cd192e6b803e45aa2b2496344068
MD5 bf1af534505ec348aa2d9346e843fe51
BLAKE2b-256 d60fbd275df87b1538f11e926405694373ad33350c1f1055b74c1e645e2d9bbe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73dc53de1641fac144108f762673612e241dcc6ed651dc4c7db8426bedc5c89d
MD5 42fd08f25dc33a19d28914309b6e6945
BLAKE2b-256 32e2ae0ddcabc44bf8a1f2febe790f3b71a7db4d6b4bef709babb7c26f89399f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b93beb72d5544a59c70f4bd2551ef866b84cb65bdbc118eb6a2669ded09077c
MD5 d3bf23cd069d7e55dc86dbfd468c3416
BLAKE2b-256 39f1e6961c5a46d5e33776a57d59cf0846198ca4e69a4c12fb22ef7ac38d3543

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbeb4871c082d0bb6f1f187dbe3e7186704f06d91ad08cd11a7daf48b71b34ed
MD5 55231efa6e34aad91c740216343f2901
BLAKE2b-256 2f6e0250af5a1845efae7938030d52f370637d9837e6bcac5ad18a5c1df1c6e8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aec4a3db7d65624211f7728ee0b6b07a66f071948d256dbe365ce1db34263190
MD5 db58615ee719199357887717ee0081d0
BLAKE2b-256 1175f4dd082cf9afad90d931563a533f1b726ec33c738bd28083907cbdf410f4

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 460fe6ae65efcf10f734100be9440249fb573819713739563f178c55b68b7db9
MD5 a652bb0d61ed7a6c9bc6f5214025a029
BLAKE2b-256 66121bbdbe0575bc04e3cff13a93569cb81b5a494aade2082ca484415d4d7553

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c18d2e73df022ff2484d210b703f710c0f2a1c1088ce48fc3b958baa872568e5
MD5 160ca9385dbec82ceeaa19d73cd3632b
BLAKE2b-256 8d67d14dc95de7296b87b579a1ef9442de9d2a232e08aa305ae31a0b5de64bf3

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ee0786071d7c4e5b2d0b77ef1e366b96b88a16fe3d1406dee6f60eaf2a25000
MD5 a702f996319373566c541931a0182f66
BLAKE2b-256 e4e54ae0ff6599e17f2586a9ce66d303716e9123c0e786b0d33389221854011d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f2ab1218498d452b13586e7eb96a7322b6c3c0b6875c5432502f4c2d4e93d73
MD5 871023e392145f0841d411cb3ca0c41a
BLAKE2b-256 4771f63958ad9f3f6963913d23e35b34872408ac8a2385dcd9409271a2f91b0d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19d8d58ddc5c2c61c6046a5cdcd53f138d3b6f4a0abfd0cccea9d9e18ad0fc77
MD5 e82bc28db330f1ceb29c8d35b1c7c40c
BLAKE2b-256 433dc57757c52f0240426cb9f634d8a5b2451da35c33adbbc011bfdc01212828

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 331c007e7b2909a1e6e92f7b2fef7b0d951f63c04d705fd532360e2ac1da80f0
MD5 639e965c3f1b41d2c7832274456c2046
BLAKE2b-256 c60f9d54ce5c0a2f0f64372ffb396b435e34f8d17510ce79c997b561b7c330eb

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 030fd9bbd02462baf30bfe0ae73433a54daa68f58a9e5a96aeabbfa04d00c115
MD5 07a8c2f52fab89ac56ea6fab0226c8c0
BLAKE2b-256 c56f362cb2e7d1befff4b9ab9e7197be7e0657d05a44aeaf60c264e504b12a68

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95a647d7c8c206e3ff03121a7c4510225a644d56c70dc8f8d8692c4608fe67c3
MD5 e860e1ca74dd655846447f9144abc2ea
BLAKE2b-256 627f6faf7c6e4da62695d45581c8f3061a0e134be6343c5988b6dc956272447e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cada1431b89cddb394d47edad6aca5433babdf52705d78034f5eaa4e1289a4ca
MD5 3609aba2267662f236ddb124b06cb08b
BLAKE2b-256 7587f02f9add427b6ca15ec0cbd3c8c583a1a252c4700a0fe1fd8b5d63c3ff98

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36a5a2ae452819ceb49f975a134038281309748f8f20f59f3820946e5a9ccf23
MD5 383772f270ea332ac4ac1ca4119ef15b
BLAKE2b-256 6cbba96d7dab3d61994aaceae2eed50f0af3da4b2889d6acfe1881099f03f6d6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f185ba7e9aeec540b6eb3f646ead8c9277c2ed895e3ed477b9b79300af90cdb
MD5 91dce79cc6b019cc91451acc56ba2bc7
BLAKE2b-256 002c07f02b9bb1019c8e50536d30adb4ec2ad4cd9f02452f502c9882cfd0cfcf

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1af75e2ca8e987e5b2e0855de002062a4b860d7975bdb60a3c53000db4513d85
MD5 b081608fec681dfd338f8ba924a7f1bb
BLAKE2b-256 45db556b4a41481ee03698deebecfe78a718b21ce7c06a4dfe3e5225bffc3b9f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 16c8a1bf4c118821673ebf424a531bda2b6febf39bb50acdc80eb2a4e02c5702
MD5 207ed13b7657b986d9d96b6da0f3f203
BLAKE2b-256 ff80cc11342f3069f7f03d9c6f9cf2ea3b40c685c92073632d550495ef098b2d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ee14156ab5a938a96def1fd3f008b8fef452028cd8be2a59b2e6edf4a03c731
MD5 3b2485550da90a7a7b4a59d82b6fe818
BLAKE2b-256 3b41957556fc2dbe6f50c487411e84dc0611264972ca912418a7f674df05907c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 521dcae9631f005087d73a8650f5112485cfe54b48805b0e72777dceebd23ba6
MD5 7da0c1985525d26e895ef0bd43a1457b
BLAKE2b-256 052a8fb414394f2921f3fc9a1b381ca1665cfcb8419559cede7860d202790f7a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd560fdef55dda0c0c366e382e577eb14b6508285acc872ad4d814e6230a9ee3
MD5 5d9702be05b087f38c3abdd840f58dad
BLAKE2b-256 c1e110c284b3e0f3195d1007bc99132cb38adc638976bcffb9e405c502bd0077

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 249c943aafc95f6255799c4981ef1d322748a6607f1bf3ff446755b2588fc542
MD5 b3cef488095f7c2c93ffe82949e8881c
BLAKE2b-256 39d89accebb96c364b3a96f710eaabc4809211538c3255e0d6ac85d50f2b52c4

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5643bab90ba30f728dcfae88af7de9187fb61af7c0a66e77e78bb3d3404cb7d
MD5 403a5a32e7cdf9b3837f84b3538023ef
BLAKE2b-256 9a0dea47a94669dbf8c7aeffc07c52fc65784c13b998ee230cb1203f9b6e1772

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1deb87cbe2ebc594a3ca721e7f10ad81e7238cf09ce2170cf48b41269ad5cc9a
MD5 e2264da68b392c499724605142440b41
BLAKE2b-256 8c29e22045a1939c142f2b9433d947af1796610c3ff3ecf7f8a4976ae95cef22

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ceda505c6e98c746dabc2a42a6c6780441cfb65dfbaaec96882a17f8a8129c4
MD5 59f6d532b6fa27ec66b8329375d9a5ba
BLAKE2b-256 07375f809afc100971daf30befd0959c1250e667f65d51d294d18e040d06aaa2

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93f7d6607af63901a48a7a634e5024a204ccf6d4457bc6888a5f4fc4663f96e6
MD5 90b1459e989e4434b213266f721db413
BLAKE2b-256 d3f2fe3032f3f4495ca07787e3a03e81d566799f60d959289b5980d430f9f307

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30ec5206933c3ec32fb548af725332cff97ce813fd2986675baf06a6c48dbdc3
MD5 008e4440db5b6a3a59032c1899fae7e2
BLAKE2b-256 d101a4c9fe406d7dda624116e385a0ea108e8a40ad781629113ac90802154e8c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc02d9f1e7d45aa94154c6f6c24e4551f65f1946c9a46cf23541ef13eb7a5b5e
MD5 c257d6b79913c880bfdd0236969c853e
BLAKE2b-256 ea01d567ae657f22dea8de75b5775c244f6d33aba5b7d34b90e63b9de44f7039

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1b7ef3f9c9c64fba704034aa0f2636e55fd3c3b21944ff70369be90d611cd6d
MD5 cf5be2c570822634e88bc53016e19955
BLAKE2b-256 55d002193f5aff2a1114467dcb50499c9aea5ee02338718b97c170af81316d61

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7a92c62e345424da0564949b9f99e1f10c8913ce2addc34c6e4bece77190676
MD5 3fe28221963deb93fd37b2fb76270f86
BLAKE2b-256 5076cf3aba30f4fc1e7a16df4260d102689da5f1d05a8b1fb2ded2cbf3aadc0d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b931ecfa623e8b3f422e267c8b52d1f529a5d2981437a28f5b6f0617590d589
MD5 087745551c4677d32d374c936fd05658
BLAKE2b-256 db503e507c8fff3c15c8506318a85333bd3be2fcc328e27e35e963e39bc7ca38

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10.dev1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10.dev1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 834b0517b7f1fb6db9ff2cd32336c695ace1557a6d0f383ca30ffe1cf3b9b716
MD5 bd45b4b74ed8a63ec45c62c131d87206
BLAKE2b-256 6decf840ed2dd69f6cd3e650bf726e0c05124128d82b0f4233153e72a2ca6e5f

See more details on using hashes here.

Supported by

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