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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.9.dev5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.9.dev5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.9.dev5-cp311-cp311-macosx_10_9_x86_64.whl (513.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.9.dev5-cp311-cp311-macosx_10_9_universal2.whl (553.2 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.9.dev5-cp310-cp310-macosx_10_9_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.9.dev5-cp310-cp310-macosx_10_9_universal2.whl (553.2 kB view details)

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

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

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.9.dev5-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.dev5-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.dev5-cp39-cp39-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev5-cp39-cp39-macosx_10_9_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.9.dev5-cp39-cp39-macosx_10_9_universal2.whl (553.2 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.9.dev5-cp38-cp38-macosx_10_9_x86_64.whl (513.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.9.dev5-cp38-cp38-macosx_10_9_universal2.whl (553.4 kB view details)

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

mecab_python3-1.0.9.dev5-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.dev5-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.dev5-cp37-cp37m-macosx_10_9_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

File metadata

  • Download URL: mecab-python3-1.0.9.dev5.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.dev5.tar.gz
Algorithm Hash digest
SHA256 4b8c5a331ac770d5e2a3c64739e987743d350ab2faac579000c67d4ef760a531
MD5 0156cfbbcc0c285b12469fa34577946d
BLAKE2b-256 180b9cd9a13b413d57e3508a902e0233d0fd0ddcf7c47acd6b03e1981276515f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4612f57928b4d5a5507489dbb1df08906ad9f2b58b26fcd06d62e124599c396a
MD5 76f743dde650637f8d8045880e1c14e5
BLAKE2b-256 2688d52dceee3004831a611d492e06a28c1c5654acff87314e01a1a2d1023a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5dc8dec240da2a7567069e4d20c6ab6ba40a62f0dacdd5d311553fa9ba1e2cf
MD5 3dd4d4b520ddc35edfeb1d9ed143fd39
BLAKE2b-256 1bc227f3761ab94eafd98ca03c1896000cd110f55c2b13ee7486380943ffaa62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dacbf34aa07f96fe7eb13e579d5a45950f8d2a2582992c5cff19466561d7038
MD5 b29ecfd9a7f22c38fca1079e3619ead4
BLAKE2b-256 5bada06f6db674048b4c6e1f4eedcde61dc63c15cc6f7c981efcdf7a742f3c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2fec7115578e41e5f942771557d4756096bf93e9b9128f81c255d53cc324c3d7
MD5 dc2ca6bc11689aaa5184a35bf9377453
BLAKE2b-256 fbe9767cf1d78c1301abc505412633fa2dd575f91090327be7b416e1a1ea3bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26ccf4ad21839ce42cad9d173bdf1634ed40dd6a9f6afd84db434beab78e1cec
MD5 750268fdc77e82a9fd1e6b01a1f85278
BLAKE2b-256 627f23828e753fa89c814db8cfa28e5a1668686fd6420356bfa0ec9a8b9f8eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efa1aa18adccdfb46b6184d290fa5de51886b64327f031bc1ef6fde5bb9a8416
MD5 97d87064601b47947b3114b310c17662
BLAKE2b-256 fc52243624254d7c89b47508a19b0bfaefcef64172ce44a3854f7ed6670b9661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25a9fad504e9956cf0de2d3583d7f7dd31321c423c3cdc3bf0269ba6a055ff14
MD5 98471c8228df5a62d320c66dfe254669
BLAKE2b-256 a988648e783353e6d0619f818994cab1e4e146af83e1598812b0a2ad54362043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f1c0ab8080edafeda098906b3f8fa949bd46dd2c3dff01469d685873738f109
MD5 d7376eef9947c4098eb02917df0e2760
BLAKE2b-256 3015bdb42b4cca9876eae89995df60673e80a263ca933732297caaa739703ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0bb527f01b7d1a333bdc6fe96f071735a05e1f81903bbfaba0c9ffafb2f26ffa
MD5 b29c21db07345c0a7d3f9f46d923d5b9
BLAKE2b-256 017c36bf7e3b7d700e8efc430eb32c666324c0f58c0287a6c976de321caddcce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e6431850d402fc1f02c5674eea9d06bd5f59a116a25a7bc19b08eca12a4f721
MD5 e567e9c91b5c2dedc4796527325d9cc0
BLAKE2b-256 98e84102f960d20b30af09714bb76d86a1db853d5ddce7b1c5b0f552981bed3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7536ff331362800b77bffc915ee23dda42e59fc0453fe49bdc45359e681ba563
MD5 c2ac4f971399f4cba05a9cc31acbbba3
BLAKE2b-256 ae18fdbd34b1fe9e4bc762a8ad08af6569f6ecf60db6d728b954de45e911d00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3330b8331c59cda863dceff6ff38304a4bb828ad755ad98220a42b0ed5fc76f5
MD5 83c096357ecf2734023fa1cd030c8ef0
BLAKE2b-256 ab7b0c31fc8a950dadf839f575aff3d24f50e5b2a7279088162015663403257e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd704ff1482016a3c3d4bcbca8a13f327f6908d602b3bd41dacd7918b4868002
MD5 03cd2aa2a12e510c1756965e0ecc0cd5
BLAKE2b-256 0cc8b84d3b44a1b406664e69450d249eb31d235115db2965d66c8a1856b3975c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eebc6057a35ff9cad2e61e30f36bf1ea85f656f5d428ef9b4dc9e67ab8d633e4
MD5 a6ae779cd241770045dd637dcc6f5a75
BLAKE2b-256 be38c4bc989147e592bf6b84a3eed119c72dc7621dee42177dde1755a2de6dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a8cbb9816bf82bd55100105f70583e8427d9b00989912d0d661eb42c483d5113
MD5 2ff0387ee380729a5d943d7582291439
BLAKE2b-256 4d5bd4e2b8413b0bad54a92b626cc9f952c77c316881388a9bfe11dd950879c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8f78d23dad9b0c59d12d6b2b9b959ba9c22b009dd9a6edbc49e4ac4dba45baa
MD5 d12d5708d89b877fbf83dbd272e21640
BLAKE2b-256 5f5fb1f899b7a71f3dda0f4ed706a2888b08fd636ea57fb36e1f8084187f71b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1edea6f97deda96abaa0f9ed155f0e358cb0fdea092ad90e7584ac1a85a09b8b
MD5 e47f98c8fc04c85f89007dd858191b24
BLAKE2b-256 6cc3462907151c1060cc4fd47fe81e486b28356f9cb341ce7e64ba21342e7dcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801a84ee2713a8ee3f66331890cbbdb31878a12c0a9a18c48703ec7a57c3700d
MD5 cebe043f4605f7d580bb9c55ca107e7d
BLAKE2b-256 1f077671110188399a7322c6c1c7bdc49efbd30772a30c703f434a23bfb7e874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2785fd9658e8cf6ca72145c016cafc1dba3ec0ab6726ff84dd8078c5631adc6
MD5 09a17c8dabd3283466f3b06567d506e8
BLAKE2b-256 58794959811c757826801e2e42d43ffb4ac58116d3b865be78edade0afb38b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 930c4d072f91f38595e13840434b9814f881f284ece353a922bd237150be303c
MD5 f27dfadab0acf03c96adf0ef0fcb50f0
BLAKE2b-256 844b631578c01f8d250fb48ecb4030759750d26ad1884c9c1bc9cdba20db8234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c023e1071fba6290b7e621892b181bd736ba36f550b895abdae76a5438fb9260
MD5 6fb713efb487dcd23464b1998b709f18
BLAKE2b-256 e028729eb5e5df0c16711d8edd5957063e7b4475818faecd06f022e1d9fb1ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cc19b2ea64a5281a9115295bd76de99d4d78771526c41bac5fe1f2d78ed3dd27
MD5 c364266b52c6a29f6c03e16bb016b74d
BLAKE2b-256 293400842759170fdc595427db2f2a5f103aebe591bc1189508821fa770888a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d1f96be24a1464687666e5ffb90904bc21279a7f013ffa7c369fef75ef297d7
MD5 61bfff5127ee7cbdcdfdf4696e656bf7
BLAKE2b-256 ff823cd26d6d6342c335681dcee3a9dca2ad2be1775d9819e1994c1c4f0aaadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2c1c304d8d128c130c11bbed7e380ca125a1baeae52b0178814f5abc2457b45
MD5 4c985ae427548898dbb1bc8ee97133a5
BLAKE2b-256 dcc5e104acc57789610142a56e130a8923eb43cdd164faed13220bfb3a05748f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75fd74088525a5a3275da98902e90783c6f801d3d536ed03e18c19ab0313643d
MD5 5ed02eb7b06c0286b348cf9e6ac79d75
BLAKE2b-256 355c679ddb68578307e5c516a262e90c1adf6cc4015e7183d595c2d83a2579ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc7b2e4b65e092084be1d13142f7188bd8f62a8de711b7dfb3f01974d77a171b
MD5 25176e4224f7d87fc89224f607470572
BLAKE2b-256 c9ec02b210f7080486bdc3012d0eb4dfa9947d505e729fc854402d555d68ec60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4d09e776cf4af84c8d306e767e8e3aecfbeca768e95969dd50de1518b5c1de1
MD5 5019de7260c97213c8114676f67f9d5f
BLAKE2b-256 4a77581fc98cc7275d8491414fc88aee9a84cf53b7db15c8790547302a22a978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 774c73fc7f2fa8b351d1d52146ea4e40094e8395b5ada3ffd30d820fa450a20d
MD5 95aecc33c7e6ffed3a62c0b0c6d0f6bb
BLAKE2b-256 2d210dcf1d3e20367c70c95966da10e5bd39dbc7adb8ac18fb006125c726a926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d3faef8ddc76a3dc434083dc2e335acc4bcfa0aea5ff8ddc04b7e37cbe4b424
MD5 be23d0c206a3feac15f816c6c83a8c00
BLAKE2b-256 7c974cadd3320bb6d0a1ca5fa4e97fd5f3ee8ae6bf19aee1b21190800458c32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f37cfc1837de3cafb4aa761d872321fa360688dc989571d34e8714b297350f97
MD5 66fd065a7b583c5e7368a91d5d448a6f
BLAKE2b-256 7d98bdf2d1fad9e39bdcbf56897f37bde9aea7398b075e7da9df0d48d89b4d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e8d589aa9bb9b4546b78301523ab9140a2efe7c93365ca965d1f856593cba2f
MD5 2a0013e48df274825080fa54b825b4ef
BLAKE2b-256 378522b078659a2744f84d687e154e5637aa32b26aac636c258f30bbb4dd0577

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