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.12.dev2.tar.gz (78.9 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.12.dev2-cp314-cp314t-macosx_11_0_arm64.whl (436.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_universal2.whl (476.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

mecab_python3-1.0.12.dev2-cp314-cp314-win_amd64.whl (513.9 kB view details)

Uploaded CPython 3.14Windows x86-64

mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (590.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (569.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp314-cp314-macosx_11_0_arm64.whl (435.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_universal2.whl (475.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

mecab_python3-1.0.12.dev2-cp313-cp313-win_amd64.whl (502.7 kB view details)

Uploaded CPython 3.13Windows x86-64

mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (569.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp313-cp313-macosx_11_0_arm64.whl (435.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_universal2.whl (474.8 kB view details)

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

mecab_python3-1.0.12.dev2-cp312-cp312-win_amd64.whl (502.7 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (591.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (569.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp312-cp312-macosx_11_0_arm64.whl (435.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_universal2.whl (474.7 kB view details)

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

mecab_python3-1.0.12.dev2-cp311-cp311-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (589.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (567.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp311-cp311-macosx_11_0_arm64.whl (435.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev2-cp310-cp310-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (582.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (560.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp310-cp310-macosx_11_0_arm64.whl (435.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev2-cp39-cp39-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (560.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp39-cp39-macosx_11_0_arm64.whl (435.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev2-cp38-cp38-win_amd64.whl (501.9 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (577.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (555.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev2-cp38-cp38-macosx_11_0_arm64.whl (434.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_universal2.whl (475.0 kB view details)

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

File details

Details for the file mecab_python3-1.0.12.dev2.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.12.dev2.tar.gz
  • Upload date:
  • Size: 78.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for mecab_python3-1.0.12.dev2.tar.gz
Algorithm Hash digest
SHA256 13723cd6e893741eade508dc7020027b87e7871bc9d948bc704837fd33bc1ac8
MD5 78b9fa4d64e310ec58e7bd270508ceea
BLAKE2b-256 9676f3dbcd85f383a3ae43f4edfb8735ca7883329d39c88a3329fe416d123a3d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0a29a1b134e9ffa38f308ac6c247200831e2a14753dd3741bb4bd468b92d35
MD5 cd29d7b4647f7487cdf623d6761a3c67
BLAKE2b-256 0ef600a3b3ee7550c36612bc65e0247d625ef3b93420550dbdb8a8b9ed3edf1d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0278d43338d604b84d1caedf23f61b6c2bb59e4cf4eaef1ed159cbf4eaff7d26
MD5 a25211bea1ee460679a54dacc9d7cb5d
BLAKE2b-256 7b4eea864570571b69e48305acbaabc436bad468bb70ffc99e43a9c8d34bfd35

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 57ebcb8778297697cc60e6bd4dd5190360b137d5c07ab886729a2b84f5758ea8
MD5 0d73a17a2f0b959c08cb15bd82e2f338
BLAKE2b-256 682c06ce88b43a13fd8fca165153e8b2d76d3271bc3ed71b47857f6630a5f0f3

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c5685d8b3542f239e7bb0ec4ccd13a0cf0c88a63d7d04a5f5737cb990498712d
MD5 d846d53f76ef07a7136d4d69bdbfb1fb
BLAKE2b-256 4ac30c8843d5ddaec3df3cdc725ca113851d07e8de55e2688627c68775877660

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b67aaa1ce358ed86082cd0f5081de8941732901edfc38265d99d0dcb58b01ce8
MD5 2ff3b39aaa9f51d337997803dd4f08b7
BLAKE2b-256 3f2d51553737409c5351059282481aafd8207f335b14a465df48f39a09fdbf70

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 39a22885a6152c1b85fd16e618c37a5f22e96a2bd85e0f53cd6d870e5cf2970a
MD5 b56dd60fa5bac8b39c92e163f7b16905
BLAKE2b-256 c7d4fb97198b118badf6780787bda8c037c8dbe06f825c5d5174ac34c4699a84

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15bf96d0bc4fb28a5c89c62a38062bd8f7278523784f798a853bc2837d7604cf
MD5 49955fbfbd31ce86688b74f6162e1d92
BLAKE2b-256 b9f01a39e52994ffdec89d56558127f236c9a11431949ed4685ba6cb3a36e6f9

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c9342406044a4f2c673021579fea97434efb1657cb80686c57e36dd0ffccaf3a
MD5 15118f5bb71f35dc2ec3a346bfc56c80
BLAKE2b-256 2d5a8c3ec48de5c0cf559567c2cfea4e467b2b8916e6af23244451b76793c0fe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6356c687239cc11268ff626769153d05144dd3cb5cdd6d4e6f35abe3760c32ed
MD5 d6e95ed66ff87fa88dd72aafe10f0c3b
BLAKE2b-256 e9762117b495c417d97bdc3499b3225e0becaef74d992ed0d5e59e65b87930f4

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b5841de15fff490ff7fa9bbec78fe0c258f74233903c6faef4df8c8298de548
MD5 b2f46f51d1061e954275de58aa0cce4a
BLAKE2b-256 2cb8e6712ef9d05ab5e0a2f5bfadd5cf968f19d4a183ce8eff11459497f08c47

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 605ed0a9c5962826c1c2a62939a5286eb750a8b0c1b6517c976d504e2a626ce1
MD5 1c3279a6f72054dd6a8f6d604b784705
BLAKE2b-256 9989ea588922b393a5e3df6afd3e910ef4f7506d065173205ad24d6e116884b5

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 868611c2d742cd1fd0e4d099a9fb3a21b61384349ec295c1c7066cb89cfffe06
MD5 e440e2517e8dee417f1157ad286d8d12
BLAKE2b-256 e02412f40bd79269999a9e7d3b6472743b88226250a9b474bf55075ad106f055

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0f6cecbfb70f611040ef3a2b25b7e9f2e229eed30f796656f296f7964b94d84
MD5 52e20576115af09deea7506f9ca1e56b
BLAKE2b-256 c7b61624fee566b9f268a963bfc9bb26eb63d47c39d9c09b69a2cf241bf537a4

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 633b0563c0dea8f719c43757dae2eac3ce890adfac1f696645a8717de4518a87
MD5 32016b6bab2b2d6e30215da55b9c1fe2
BLAKE2b-256 eb39e0fc8e18f58c2d671e2f709f82abcf64aff159e7949f8e3c806930489846

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e6a12a8e6fe3c69339d544b9b690898c275969dd4010e60fa6b6e3f889d5ab3d
MD5 a13349d781c3d9c3c84d663b1c4cb286
BLAKE2b-256 5d4edb41e17ddb0b9a43340e8938bfb94ffe0e9d7b24a76cfe60d53ad9e82a2c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 946428c865cce8c5e95f857ff9f975c0e88dda31c6a4b6fa16463ba7977039f0
MD5 b981c9e602e6d117bc0fc315bf1b172f
BLAKE2b-256 1f3bded1efde4cadbdcb949d34ad7c3faec4592d889dea6f2b98f6ed1f189f6d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5ee03f28c5d8a4015c26f1e38e802d68eb9733303dac26be655c7c2192ed9237
MD5 6ad23336005d3101c51c36a563fe687c
BLAKE2b-256 8257dda98aa995e36da62176a7c8d1c2dbfcd7db11b628db5dddd9f4f236d2db

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 818af3fce72c2324d3de91be6457685ad2aad9b871d1a294cc99e9302d3fc40c
MD5 0ba950aa43d0a51cc12d5af11652b0c8
BLAKE2b-256 02448886e11a1a7669845cc8e3ee87ce1cce64d2487025f090b0934f40611975

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2816d6fe661efea2da2fe478b0966b618ed981348378569ee4bc915f8a5de441
MD5 f60fe051a4c01043515b5735f9b4297b
BLAKE2b-256 2fba4aabb95afa4d21e1213a6dae872a130f3baafaf03cc091690bf7c1c07e93

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e1024522e76b08b29f9b7050020dbab7a29826352baff83e61ded3c6c94e55ef
MD5 eb83326de7a7ee91ab697da0ee83ea72
BLAKE2b-256 2782f8307ab7f7a0d6868579574c443b3b33eb7bbff40d307e7772b3ed15fa9f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0fdca016a6e57c37ad8c64152b69dc2138b8ecf63c167aaf599cad7d7cfdc161
MD5 76e801243356c9793740409b4758ca55
BLAKE2b-256 fdf65f237e88d5fbd7316247ab141469995c61c49b86536bd2968a37cb016df0

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37ff35dc707d9706d2cee47d471eb2fc306c213e7e48de874dcfeaec88e51701
MD5 2d2746ac5480fd40b07a7aa8330db833
BLAKE2b-256 f5da52d5119486a7e00f510b379c999485bc387572f00d80b7a2802a49dc2edd

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 24f4c6975e07929ad50854f2cf6b6fc969ac1bea08ffdc7373141412f50808f0
MD5 d5c0fec315bb2c1fa6065a4ffcfab73d
BLAKE2b-256 4c2c76b7c3443eff58880a06f024cb048ec58f9cf465ac3e115c7071cf4ea879

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6ea651acd391fc4f0b3ba747bb69aab5921151ddf37d4a1bde5be5edaa3d49a3
MD5 d5b47941d654202ccdcd90a4230f4f5d
BLAKE2b-256 7e66ecbd49c4afdfe5d83ee364ad39a9e817e26e9c724efc352df604f5139d38

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f90bf96f6fd097a1e433acfdfe3ec6d600dcdcef91805e67ee32df6d7fc43ef9
MD5 32203270a8294f3b30e05961dba39783
BLAKE2b-256 45d50ec2389fa911d485887a719bf99e909d0d0d66f087558d88af81abd3e426

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25634a06b43adb44381879c5138e93931f997a550c624559fb063a94f5daedcb
MD5 b86591ee61e2451f499c8bf4a5e34c11
BLAKE2b-256 2b238eadefdad6e1fee38830c79ab1777388ded6ddfb9078236f044863ccd05e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 70258b7795b4df7237c6966cf03a78727e15774be6918f8c950bb3f39fe85947
MD5 5abeef34891c9d6674de704dbb169d5e
BLAKE2b-256 1c8b454c90963990365c445eab24120ac7bd470bec2493c142f668283180a77b

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4943d8f6f395348b77873c939292753d1ee397a08f43dbbd1f7896417e8f1674
MD5 acda79c3f6dfbb92b5d84bf33a095184
BLAKE2b-256 04ba8412b4e3117de08b6a97f5b58464dee10815ad3249f219321f999fa9d0b9

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e75a63642a4d251e62f0ffdb444732abde21aa84e6875ea07b7c0450a04588e4
MD5 1c14322261d3e33761118b7732e257b5
BLAKE2b-256 75225ebe9224ffa1c04599121dc81a681313908e875cc59c68ceb282654ce749

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 13d918d541566c826b8df6b7e237f5207fdbc72e5066465adaa31868a364f95f
MD5 c0d0b9bd2ce3a89a4216391816e2d27d
BLAKE2b-256 5b35e9b69b595f15dabf495d659f50a4b012eb06f141e703142fe44b8e02f96e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6b5654653ce68a028e71ec3420a985fb43ecfc6b7aedff49b5a227c5576468e
MD5 100399f5c12e3e10cbcd38a50bf0909a
BLAKE2b-256 d851f13c0a5bfcdeeaaa96ac95c08610f30ab6e588c534f332c0181b297b4f6a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9c894461e84cf5de7b4552b61b6ae3355a716cc9b594299b50e866afeca917f
MD5 e3b92db2d5af7780d0aa34238f11a845
BLAKE2b-256 537e5168df859c004d53a66dfe36d6c46e2f9344629961669e5c80643f41a4b6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8e9cfd62e32bae080fad72b2f032e3ac93c5be7215a843d13321ae21aac6a77c
MD5 43e6366cd840ac967a823f800c50b58a
BLAKE2b-256 f50bbffa0fc5409d97314d183617e9a85bda495b13a305844805d4d9c058a323

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6cde7bf5b91b667e59edcba0a5b8621641e8ec53432f4a24d3bce0faf4a9a887
MD5 e7153f787c0286b0febe154744043fcb
BLAKE2b-256 800b3cf681ddfd5b6a5a45d104650b416f33cafad4e8b5bb8b7549270b1167fa

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 687627a4250c7501cb66e38d2fe5bf94aa1413c1e3747ee56694052667a2fc84
MD5 fbbf7414bae854f96242f3f2ad173376
BLAKE2b-256 46789f9905542c2c0063a848f17db26a6eca69a6f7bbe296fdec88ac7d0a4452

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 24ff0a52aae29ef3ed9dbd5042e317eb663082a0d50dbd860b598f53ab3f214b
MD5 dcba56cb2d9a770279ac340bd2417891
BLAKE2b-256 f64c33e031bf807cc3456a163d36f7efffc4f6b86a8aace9f7525a0583abad87

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b56cba99508b9de5e0558e8cf688baa1a30867e449236adab9e553453a9648a
MD5 1e7379db2dfcd0f44e8a76917183ff9f
BLAKE2b-256 cd92d80dcfe8525bb7f8e8a6ad5707a45eedca3c983041713bb6e3a16f6d4039

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 667e6e50c29b48fbfbf5fd7fae7b9e86c964d666fc636c8f24aafe230e4b6d9a
MD5 71764bb9a4814ebce41ad4df1017b090
BLAKE2b-256 6607d587d34eea104f2c122fb27fc8860328db59c522981e14392940772a47f8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 42ac1c9d55863cabda114f95620f37f770c42f972c84d1ab0a3ffbf68ef5060d
MD5 41bc74d34e886988d8bcf3ff123e69c2
BLAKE2b-256 14425bea521eebbae7c6cbd804399410f9417eea194a8c8345acedb90cf70991

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 596509bae68998160a5fccfc0fb627528e7e5b1058ea2ccaeda671a5e6ba997a
MD5 7d37d2ead0363494957d33f92dd2720c
BLAKE2b-256 c7256f47c860ea0bb67d7cce6a32546e79eb52e3bc82d87e3d0e803678e2d723

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7b2592a29f5cd40e987a5781d266bfadf0ab063767ae06a1baf93288ef1c97bf
MD5 4ffe52690eea3711efc6120e58279844
BLAKE2b-256 a9a5d272940288a96b1f2f5793b93772e1132dac73520bc6f66630dfd41ca69e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6f2e2d179d85dbda768b4ca053d3633398972cb4348a9a96ae7cf57fca577390
MD5 5e52826882f44f4c8c2c8a9e864db5e1
BLAKE2b-256 06e74c0620629cdeab6da79d88cc48793f3915f124e82198cb2aeb13217db894

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5edead3c846b4b2b1769c844c02118cea4bf4495bb9ccf927a3860162924f5
MD5 5e04b9461e56297d8f2b6c29f44ac25a
BLAKE2b-256 d544be81afc697d982184b369077f3060f837701462a6fb900a1a0c6f5640b1e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e84063f91f63f2ae677fb77f9803ec56102a2122060de96f62934e412ae42d9
MD5 0522d24b0323511d38f1a589816d77f0
BLAKE2b-256 1a1e77685d7337722b434c770367aa01a1c40f8278a1728d709274383bae80b0

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eda90ec84bad99d7731655c7fe82fa36b0d639b467d79f28e7a85f7c0fa8ce24
MD5 166aa6484656d5e37de67a92827f8b6c
BLAKE2b-256 4ef0b98cb874f34afded2f879df14109f58ed17f3a562d393bfdae0b3bf5daaa

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