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.dev6.tar.gz (78.6 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.9.dev6-cp312-cp312-win_amd64.whl (501.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.9.dev6-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.dev6-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.dev6-cp311-cp311-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.9.dev6-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.dev6-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.dev6-cp310-cp310-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.9.dev6-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.dev6-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.dev6-cp39-cp39-win_amd64.whl (501.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev6-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.dev6-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.dev6-cp38-cp38-win_amd64.whl (501.3 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.9.dev6-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.dev6-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.dev6-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.dev6-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.dev6-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.dev6-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.dev6.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.9.dev6.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.dev6.tar.gz
Algorithm Hash digest
SHA256 5c2e243e0dd009446f1086d84fd71c0f2de217fd619edbc07721eff17459fe04
MD5 38b23fe1bb42b8ee0a3b4772ecc84537
BLAKE2b-256 fc0c7654c11de2ac0aaa7e387c7add25594a88f37276a237a92cac80531cac80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a56cb9198b897778977fdcd30422f154fb614b45bce8c25a405230420581b06a
MD5 edcfea8e5c9a49a6928618f8a391713f
BLAKE2b-256 20289a2d5b71152a6f94ace8e1d75f7d53557ec3586d54217b065e9e5e5f1cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23fcced2638cde2252cbc7057eebe61d1b960d3818c59fc7631a4f17f6feb28f
MD5 f96009cced1b271fb56203a8fdf59892
BLAKE2b-256 336878157fcca995f99c26e9b0c9c88b4cdc00e712832b81f8d3a0c0cc439813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f6bd7162221304faa2cf129d8f7478276135bbdf105dff67742fca487026bba
MD5 6c2c922cece67b59b71c127b376cd9cb
BLAKE2b-256 0756627631e0bb2707404952cd39786491b347b3f17cb0edbc718882d2609d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e40bd3e55d926736d04df48ee44a5ecad675bac4f5aeb84086215111faf84f0e
MD5 6fcccf18b1404a5bb9082657aaab754b
BLAKE2b-256 e170a3d79c03c63d40b0c285626d358eff8dc57d9784f4391f46dcd6a777c717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1407de181c5ad673d075e8fe760a582657a970a598dd75de2fcfb60937f4a652
MD5 5fd63acf406c853bf7110738a1c43558
BLAKE2b-256 3346aab1d488d75612b03555c708402af0ece19f8a7ec264c4f11e26a0f05424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e34d667a3e8e9d040f726a79c2ebaa1d657c9c8ae94409c00c32da344a760609
MD5 27027035b160bb7d0791830f8573d6d8
BLAKE2b-256 6d210e9f8b39ba6789ac6484bd05e58c5fbbf2b696a2d0ccb9a81b6fa91cf99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d2978c9e491b546eb19ebf10cf5028f032b8fea702624ae8e64f84d4419ef4d
MD5 f2fa680aadc72a6e31b6aa2d4b3f9694
BLAKE2b-256 a70f0fa32904d7688bb18f296920225fca321623e9849f931864d960ce4659ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 196ea3e91ecdd787c55d41d79fcb9895e8b57db56ef9a3a8e148be2b0b265cd9
MD5 85a2a512805b5f3b1c893450346d600d
BLAKE2b-256 e14631eb287f35d5d9eaa7497a4fede5dfbab1b7c7a31bc3b9a51aa02f0fc0cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43a4f20f29edc463025857cdb7116dec687c09d29753c89df6a0c60a5f0d73bb
MD5 ec81b4f83e9913438687f40428087a4b
BLAKE2b-256 e761b39b621bd23aece4c1e6c49f1fb84ca635f04eed0fab44deecdf198637f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d970243dd354fb2d68f5b8f81b2effe27407805e5c3a07614dc20223904815f3
MD5 a13d5a1dc09bfa85532d4204b83b109d
BLAKE2b-256 a537c54f05f20db25c6f8c9d9631d9d553a045c851cb2349ab9a1d3342b1e23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86102c8f321f3f26fdd7afa38561ec17ee7354c59616347b59d0c1120bd66bf0
MD5 0b5757ec48724ee3df66015c67837ed2
BLAKE2b-256 d80eed147ea258f696ceed78cbe03658d706d3d84081dc2cf2058f8133458c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3fa48db02d8c34a5538ec9c53399cb39d97ff89f250450d635baf1fd19a254de
MD5 fa60d8bdc1fc0a4467484dc883dd24c7
BLAKE2b-256 e2352b2884449188987f9ed88f4a5345c9d223c32fbfa136bf4e17b362b693a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6721e086a114df0b26e8cdb20b6181802a91629bb77d2241aa992d710853303
MD5 81cf4f99b9393c0fcbcc8d1a6ae3f0c7
BLAKE2b-256 f32bb9d0bfcc40ce8322891517ceb309b6a8635b028f5b3141972a79110ea996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5e122126a3a478f088733fae720294d5682e7761cb9c3be85e5f4c17e42468a
MD5 a493e0c3c24d8f8d600ba5e5f8dc730b
BLAKE2b-256 312475d0f5d5cf619c21d9a77fd99a62e794eff00fe6a2627369329e704fd5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81587cee2fe5146aba3bbd972c747e7fdf6925b4d3778e163cd243209f3d0415
MD5 e052e8795959310d654eb4386eed7c27
BLAKE2b-256 2b800a77401b460018f7dd8d863baf39e49eb4802162ce8a6048218b2d3c1715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d49b8ebfd8e4dc7637f8cdb0cfbe409eb6e2a94bec1d71dcbfe5e7536ca1a0
MD5 1d4ff2de589a27fec8bb447d207935e2
BLAKE2b-256 d53002ae97d72b9dd117174ff2130f1c9638e9bff8019742b1bcef84bf368f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcf714272be5461525b29bc715ac2cb1c408938e58e24ed18afb13fe39ba5fc3
MD5 3f5769417cebb8bf2bd3435de014d03b
BLAKE2b-256 d94aa4ff457ff1663310209140a023c60cfc711af4b2e8281dd4c706d53bc3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c0028b608abd5398dfbb8e2822ffe249a6c06296f82bf573dad2f913e843489
MD5 9fc7883b8c0b57d4d2eed1fabd95a31c
BLAKE2b-256 5ac7c8d6376f28756132fb647a3a87ecabaf921bc17c7c85c6624c5f9e50fad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18c9cbb1ba892534c2677a3fbd86dc4812f8c4fbb8271446b0b61a880ec7b936
MD5 a422eabda541a02461194363f010709e
BLAKE2b-256 e4ea75d21220b3ad5f79a4288201a402daea501ec4752a0eb27b287ab96bf10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8082372201af5c79ef313690a592aaad12f2f7456d754981e7b2a99fdc7e2766
MD5 dcc491fc9411c603802dfaf87475b023
BLAKE2b-256 f6c912da6297b8a2e8dbcd9cdb64a1761a1bc751b549b2f809d9c894090bdf24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67c77a7c1ff34eac88658c5d89a5295f166350d2df68926699478b33800ccc74
MD5 7b4cf0237b9aceb25255c455a8ba87c7
BLAKE2b-256 7ba94f70aed1f224bbf72a043d67f6361a1c81e24be38634b8aa0ed302e553db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 119f254b05fb3afdbcf421900c18eb74196e93d4fca68304d1d9b08833f47f38
MD5 468e60fa306c68d8d7423dc1b0fd1949
BLAKE2b-256 4774b0830239d1ef3a81bc4c27ee6c95400da9f06ed9bbbc4aba5c8b6e0f0ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c257a2a58e607eb50048bbb3c9489a77f9646924380910fc832134cbf9333cb
MD5 c16942c4486e24ed40c24c4d5271a462
BLAKE2b-256 46d27035f7c23edc64abbd765536e2669404693d9fea5023d3aef33cdcd71c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 17617c2c8766aa8a4d1801d58241154f45b04066fd05cd07f2d5fc5edc7b81ad
MD5 a10a2eff7770338b4b31cea7a5f25a1c
BLAKE2b-256 1dc57030793378c70611d5bb6d1e2819677ee966e63e0723d23709ee61eeae88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c5001430e82c1eedc117e58ac8179490197bf049e5a8524400a57e013bea98c
MD5 773c54803c58b8a812c4f8a58eed3f9f
BLAKE2b-256 33fc2fcbc818516cd9ddde11c23186dec22e53d442b07b900c4c3bdff0c108c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25dc6989a69cda20eab174b0acb347c1bd848494c6b490a8990cc17e72446cbd
MD5 1eb17c55675a7f2f2738b93ecd597463
BLAKE2b-256 c20d25471347a63edae23c0c20c910820920dfaaf51300555ccc574994858424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d31f6274ee973c9caa92b3456c8810db6fe496274a95c08cbcf5e5b225822370
MD5 cec4229177d858f2d455e0d3b8777d4e
BLAKE2b-256 158bb4120e726c3b741ccea8c9e76cfaf1b5d5bc2bba19b3ca222880f859460c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7239f3c2c075befda9116a6b3cb93ef9d5b294a660edc6a4e5c95f960d8a7d90
MD5 e657c14238218a9d4f98bd489965f91f
BLAKE2b-256 524c27e59ef788a9325013e5220d0861f12e67c9a43990194b4473b32acd1daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b56e790be6ca76b21290a64a325a73031ec7c8818bd40352759465553648f66
MD5 06d3e1d2dd6459792a8ac1ffb92a6180
BLAKE2b-256 53b538dd81a83d42a22fbae0c287ca24d44eea7a20f2389ed0ddb550a56bc46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0d3006eab5514ebea117e7de41be12e5db45ba5887a92e3d964d7d17e0f526d7
MD5 8e970a9d090685602d8a348a3ea0d1e6
BLAKE2b-256 69e8e0c39fd675f3ac8a1c9a17d8b0ad7d78cb813923693a64ce1a9e16d13038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6fea864d55ce22a7b291f636a9350fa2e0632d099b298571a9ed91782ad0eee
MD5 496ee47234e011302ee640b471cb6961
BLAKE2b-256 b9f5557c4a77806fffc61e127bf7e5be50520f4d67d30fdaf3aad40eafe72e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da94273a46ad846992dca4db5269e4bdcd1e3adc73813d0827d65a85fd8533e0
MD5 0a5907f5808536261eadbf186e0ac531
BLAKE2b-256 2461e96f0cbb1b76bf9c135fbc511305a38aeb5fbda9408ac71c89a6fc966336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84e6300e9170106847cd3f641b74dbaafb7a7a90afe95ebc1cc357194446a542
MD5 abe7c984a992108e35f0e0f53c7fb309
BLAKE2b-256 171f2c3d45d0bd3aec8a58ab165a29775cbf7e0295a31233643703511b0c82f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 799b985813b2bed83eb38bcc067c09d4976399575ccf239e14b7fe574d342280
MD5 1ee040d1dcba14869960c4459db34b24
BLAKE2b-256 418445a06fd22e15b8f79623d92d7d0c3c19f82b0301f418832e1609293895ad

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