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 works with Python 3.6 and greater; if you need to use Python 2.7, use v1.0.2.

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.8a1.tar.gz (78.5 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.8a1-cp311-cp311-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.8a1-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.8a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.8a1-cp311-cp311-macosx_11_0_arm64.whl (510.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.8a1-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.8a1-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.8a1-cp310-cp310-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.8a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.8a1-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.8a1-cp310-cp310-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.8a1-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.8a1-cp310-cp310-macosx_10_9_universal2.whl (553.1 kB view details)

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

mecab_python3-1.0.8a1-cp39-cp39-win_amd64.whl (501.5 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.8a1-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.8a1-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.8a1-cp39-cp39-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.8a1-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.8a1-cp39-cp39-macosx_10_9_universal2.whl (553.1 kB view details)

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

mecab_python3-1.0.8a1-cp38-cp38-win_amd64.whl (501.7 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.8a1-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.8a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.8a1-cp38-cp38-macosx_11_0_arm64.whl (510.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.8a1-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.8a1-cp38-cp38-macosx_10_9_universal2.whl (553.3 kB view details)

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

mecab_python3-1.0.8a1-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.8a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

mecab_python3-1.0.8a1-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.8a1-cp36-cp36m-macosx_10_9_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mecab-python3-1.0.8a1.tar.gz.

File metadata

  • Download URL: mecab-python3-1.0.8a1.tar.gz
  • Upload date:
  • Size: 78.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mecab-python3-1.0.8a1.tar.gz
Algorithm Hash digest
SHA256 14d19b4c812c3debc268a02a2be3ac65a01f704c0523e66a9ff058f379f9f770
MD5 2ec18c30dd5f4ede5ce634cfc9a27346
BLAKE2b-256 58d8fa415b70b3b4dbb9002566a8c4e39825e112cc8f73d305b03a95debd0ef2

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb8a05d2ab4c2706577fae0852e7cc34799378f74b9bcf85c8fb16f2c272345c
MD5 810809eef2d7125918be962e5f2ba7ba
BLAKE2b-256 7f6d2e7eafb3cbb67ea0a37e274b9ac92047243189003183f568f67b14dd331b

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef253397df92bfb976ea83493744543aff4c681e218fdffc882b0d4e1699e189
MD5 258678b2afaf0b4cb2fc68d3bf383f40
BLAKE2b-256 67ccf98cf55a75039663faf7128caecd59642fe17305b09956eac6b81746649f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b3862527b9a1548b1daeab2fc81789104332aaa16ae1eaded41dcab48daf59b
MD5 d47f6b9dee3d756dfe2299b08e108c27
BLAKE2b-256 ccfb006505754f97fb2085392d4eb7909bb0760a48ed29fac8cd281dc5fb1fa2

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680fc22eb818a10e74d3cf856461a9ad3032b8391108a19a664346b61610eece
MD5 5ba0ec94a27f6b8a7675d23182936c53
BLAKE2b-256 d644fae36da523140eacd93cd301e4f4d84b2ca33002aaae3cadd3b28e961679

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b43fd17fea73adbd58703cc764950883843b9c6f2f83b17597e486f681fecf64
MD5 67cfecaafaa06e38f43c5d41b72ca7a6
BLAKE2b-256 5f8f20ce898a0c70e98c6eefa8345c0397ee98f62d1fa2a25e7bea212d0b0fbe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e72c59d6a1b40291b0314e7f92e4781bf253aa7889b55e1600a8b29159836be1
MD5 dfbb8c3bfdd3521f6e15e1e1da913048
BLAKE2b-256 ee83f1804dca52ffe496a489d8fe88e88ab809e144fa57448a375f7c90b93234

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 692f6045ea156e6f0967abe56040b5c7a665dea47d1e480171f5d12a0241972d
MD5 072f560edaa25b3b09278aeed973aa55
BLAKE2b-256 f2971adc1c268ef5e95b0b3102b9dc6a4d91ee782a41ef1f60b2c22b80f47dc7

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcc911e3aea064a8c97a5df2443ad1a83c760b994490762d30b14390d57577f5
MD5 15d6301ef641bbd3c32fa036a9f43faa
BLAKE2b-256 9a2f99fca8c20aa4754025acb5c963ef64f3146ce7ec3991250e2c23a93f7f71

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f82fa3878a4b592c55eba3e1eac4e2a581deab5ee304ee9a21dd5b595fdbaf8a
MD5 b3a1909be6bff506be8456d5bb85dc23
BLAKE2b-256 390f8b4d069e490f3d8d7e11e3598d93d359d97e07d60fa8dd27fecde72cafe7

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30e06f434a026c4dcb0a2584be65ea4540f61e5d83f139f23417b4fd7f429cc1
MD5 df8254265ea5f0b12019685e0b16ab02
BLAKE2b-256 e58de723bf82a3061ff671293ff27aa66861a882f58e230208767a1fb7e00307

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 abd66c5d6f41ddf493d9bd44e4448a22c3327139f62bbae4749fd9271b9ea876
MD5 2bebd031ed7fe99714015810bfd14de8
BLAKE2b-256 d2874550b6a57b29c407c1a8cc4df9e84f286d2057eab2611bc73d364be52f94

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dcc962a17b2704aafcdda4ae95c2717d241f28bb41ccfd4270a8ed75f3d56b71
MD5 5d72a7b26097c61a64931b82eeab2514
BLAKE2b-256 57b3065253a38a99a32b74de9626a88e1e81d80bf2c5afaebf184052ddb6e67f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c2a869b6677a4d21bd65c7d4bb3a840c1073bcade0a0ee081576db416193e29c
MD5 cef0cfadad39ed3e9bd7da439bdd3845
BLAKE2b-256 5fea4390539be5e4f36e245c34d00acb815dcb19b6dc6d59f0bb45adcd0781fe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b17d876cf75cc034a4dc19597d7400bd1874894a19f9a02bcc3dce061d942839
MD5 417deb198febceb32f6daf1c018bb5ef
BLAKE2b-256 c21dfafbd6b7e00bab9ef9b779dd5c2ee7c14cdb5b5f2b50a8e46d3558a8f5bd

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed712e67759ea5d929e9ef06567e2b9c065a6424b430c0429d29c11977c942fb
MD5 58588089813f1f02048be80fde6244dc
BLAKE2b-256 a9914c395d29892f9812dcf7ffd7dd80e7eccdd1f892156205efc831e0566f99

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eff68b2d097c16109905a06b0439488de3536b7169ccb030485e004dcd59bc9
MD5 986175af354948972e32531db54de3ad
BLAKE2b-256 d62b551ad6cc71f7fb2bfb3b7db435ad263709ecf144a22338e7e4655217879f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e0cfd56f21e372d505cc146cdc1d15a0719cb162595800203c386cda312c244
MD5 041a7412a841305712cf2ccb0406ccb1
BLAKE2b-256 3a1ceb190e31c8a6ddb4756c4ee80a70cf01c5918bcc378f90e19731ec6b484e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f2d4d4f0b79fab1b2e4f58d2f673d3b653c4b945a01bf65daad3768e2df367cf
MD5 e4c03ce57511467881fd16ce939d3370
BLAKE2b-256 1b3c65c05eee07fd6f2bb8702bcf3af8f9913ee69cbf3ac6d3e78a22bde7f4fc

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b605fb9bb70e9f2d29c2a76f7f421468a4c8e2bd4768f024bbdb7347ea4baeab
MD5 6943e65d0fd5b7f86d474db5ffee677b
BLAKE2b-256 84dbb090d9391713e9d0cded43001db7b159bcf5bf80c9e05af43a54ea569344

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 085569f5da99c3b0b5b47e92c8a588c03c0176e10ffcf18bc57d544168f481bd
MD5 deffcecb1c78f3ff84cdc98dae053761
BLAKE2b-256 65a6095f25cc923daae5a817435aa88a77ef1253e9d1c917ca7be52be5d580fe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17a90e69f212e601bb82836028a50413ea247a63ff05b69aaf4ddae34bde61c2
MD5 58e6fea1008f40402036312774af0b7d
BLAKE2b-256 f00df90c925351c754022c03468944853a74d0ae4ea3e584277e12486561821d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a5d1cf52c26ebc39f1c9bab6f36e1427a1e0baed162d4abe7f8222eb80c2b14
MD5 266aac5aec35ad3309b515f7790aceee
BLAKE2b-256 502533f63038c5e8e168d080fc9760d43cacf8e5c5a7cfc0af01c66fdef313e5

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1db993471ed09666f0f26484b608dd9bd8374f5b900538f94248e77e02d7977
MD5 71d7fb06cb87441ea2cb2c9f1eace070
BLAKE2b-256 a482f6e0eb69f74657f6517521a5b39095c0273d0db6bc0889a5c9cc099a3bea

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7392ebc18ac1caaa9fa917683e689eecbabc5886e63321e4407a57100176fb80
MD5 ced18060a7bbf24c058a7a0f25dcece3
BLAKE2b-256 321f863ab8fe8791c5de0ad5c53cfab2a917c77e3cb795c45e841bff149b1015

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 954fc6d8fb8f02ab29930e3f3649c650a8aead8945a612bea3ad967d0a97c67d
MD5 32f4f798f7ad86cb2b79fdfc0eda0600
BLAKE2b-256 52db360fe56fc8a1e265778e5ecca442c5800feec37b349f483d034573f3330d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b450110805ab6a2f8f53b18c2a13d5f28f3a973176622ce5323e685d162ffbb
MD5 8f3c4db018c3147ae0c6834359d56301
BLAKE2b-256 664a8d6d09a20675b2f9becd1a01a482ada35359c1f3b3c5d79ada071874ad67

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f43ca991691bc1e522eb0761eddb859c618f545839c060d86487171c3f6b4c7
MD5 612205ed53d3e422e6fb3e4be08bc101
BLAKE2b-256 206f4fa24a0b5f94d3b39e0cb5e996e37cdc12e6770cd2c2f209b191d42a00b5

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.8a1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.8a1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c3c8cbc6860b85a09b39d31d17e39775a08a7a867d78cebd9622d0598189ad7
MD5 c1a2bec60bfad669c3a7f9ca56cec637
BLAKE2b-256 0f83eebff0cd3bbbac810fb205071575039ccc6df284793f19f1f572ad66cfc7

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