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

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.8-cp311-cp311-macosx_10_9_universal2.whl (553.1 kB view details)

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

mecab_python3-1.0.8-cp310-cp310-win_amd64.whl (501.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.8-cp310-cp310-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.8-cp39-cp39-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.8-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.8-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.8-cp38-cp38-win_amd64.whl (501.6 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.8-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.8-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.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: mecab-python3-1.0.8.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.8.tar.gz
Algorithm Hash digest
SHA256 70988bab263696456f75d3d8910c75aea477a9d08054ad7ef85be5470dd3f65b
MD5 080ec00d8b511cc46163900d6e432894
BLAKE2b-256 49f39ffa18b163dee7c18d52aea2c0bed85f3d8e1ae07aff611b04163a886c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6df291b4e05194aebc4aca5d3bf83f5d6cbf0c2fb6fa135835c938c107d7632
MD5 2bd888a176102a68918b3211cbf1aedc
BLAKE2b-256 04e1e008a2c0f44190b04d29350f3962c67b15c9f412003194d8987c434e6d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8df17cb9acf601770c81cd2cde19fdffdce638dbfe14b83c9274358a04a752f6
MD5 40cf820492d92f2d1ae14924128ab1e0
BLAKE2b-256 34bd88eea756883bf90ef9b50f7a34827e6962a820841ae62b535d2ffd491b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f538ebdd2381b7ff02f0023154783c6558df284879547628c500bee0db7f300f
MD5 25bf118b3ca32ee4093cfe9b48794381
BLAKE2b-256 2d3e6662503f40dbfd35f1100c4c60b175faf4f88e4c4f6f518614bc229ecf99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56652649b3948fffa253a2619f12c7c6b02e484c172770595d430a68dfbb1b9d
MD5 096e3cd2f33cec46d49ee04817eade62
BLAKE2b-256 3765e6bde51eab573fd339d3eb55366555e0fddec9fe657acc1a16793282f334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3384150a96cc723b9b110eb253d363270a2a97071e2511c8c35d3bbb6b5f821d
MD5 f9f58a9b7a8a64a5e614b8925befea81
BLAKE2b-256 b4bbcf98a0c9b65ab7e7a10dbd0948cceb22b3a712370736db32ca94405031a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3d67b142997a4dbcfcfa27c50d0796d665ba67b8185311a43364840f7f7f87ba
MD5 4648add7e6cb95440192875d07e7df76
BLAKE2b-256 3148f4a634622c427de49ad8a77e721c642813c713be1dae8c2af6eebce9058a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bac38af07623b01422a58829d3087fc97f76bca529250146309ca64dba90aaa0
MD5 7b92f31da76468f087510337b0979678
BLAKE2b-256 cfa7ca7ba55e274971827a73ff54ebe2d2b9386f18f9a5260c321011a4eab19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a77786f6afaa25f6ecf27634e2db2d1cc7e549a9a2aa9099f929ec14ddd835c1
MD5 01786de1ac9fb5ab6258f69853e7883b
BLAKE2b-256 162d02776cf79c5961adc52fbd34f72938cf84d68be18794a19f6a428940d718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cccf6853a4a2f1c39db404917b429040b327326d3f9930b11ba11b1f182efc0
MD5 d736e416ff8406f3dc7cebc97238802b
BLAKE2b-256 698ff4d2f147ddcf650d617a904bbd4fcb604b5f2fa9f0d3eb8873af5d3ffdf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6289053be84250efcddcc637d2fb8089b58a74bb2c6fbe09d3c003019e59c41a
MD5 8ec0c1b80eeb785af9d901328b90183f
BLAKE2b-256 34a38d4550db8b9d86a2e30f3ef83ac8ec430e984fb389d4617a865d4c659c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98a8716d66df9c4689ba99674a8b6bbe9ac189df2c39c75f59592e83af8ab927
MD5 bde878faa6da39be886c000048a16afb
BLAKE2b-256 94ece13e74b0db014626303d32d3845e6dd3e1984ae647d36802dea21d011330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 65866d0fa9214afaddca538311d38a6e8dc71d7fa892139eabfaca9866d7d68e
MD5 538bd1a0abee49ed81be9590e4260a4b
BLAKE2b-256 21c038d8cedc4d2b2a77003e7a750a041a965d9beee2b5d827229fade0d79eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f55fbf887f750475ea526c0cb62089384882f4217a58de7cf7e65727e025e07d
MD5 4babdadf475649a2df3c9974c7c33d79
BLAKE2b-256 4c9d1ed37783892f17c2453f9ba45d77312fc68b9e3ba49b457d2bfde80357c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4339373325702856e623e9a06435b47f0adbc1eaed8b0c5437f3e78e67ebc2ef
MD5 daf44983b436c11caa69238a6042a1e3
BLAKE2b-256 180f09618a8ef676dacd2f22c3017bb2e6f67dac01c161d8fd86c17f8ba23403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ccbcb3418f6218a0e8d9e15bb526a5d84ee1b3d014e8543247f3ea64a4c99b8
MD5 4013793a773780f4ad8f701f5d0f5bf5
BLAKE2b-256 5ff49ce37e17efde6fcfc3ba6541a82ed4d166b45ce82a78a29295790faf2204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c55d224fd3a7813683aadb8f72d375195d68f3720b0652c396c1012469b81be9
MD5 252d525c869bdb18c5f5e4df4b603006
BLAKE2b-256 c2ad4b3afc8b4c8f7d7a6453f736c3b22262772f4df8b2de19dd393706f50295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4c8fc9954101f9b6bf63eb98e2c7b429ef1b78550d70d0d46b840c6ddf8fe15
MD5 0b33c90f9204fb7bffb944d9ab5e703e
BLAKE2b-256 ef4d6cadd95f34543ea84efd0bc911c9d01a3cb395823701cd55b6c330cc78c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 35b5d9f097c00317d99c066f976b4cd690e37428136f37fabd5adcd2b4897b78
MD5 b6170cd51bb587df0df6e2022e182483
BLAKE2b-256 cd8d05969b0dc38362261ac50249d89bb608b7f90fd2224242976ac0add1b123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 613da4a8e6c5c0a0569950eba445fe336181cee05905b6f26806bdda5b884131
MD5 3ae465ed8bbf772eae5be7e82827a05d
BLAKE2b-256 c09c8ee739fe4b63843e0b49b37d02fade0309d4e9ff27ecb53b1a802f47d2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a48982540b9113275c2a0154271b685e304092f340de795652d6146e8f7707f
MD5 b0fdaa6f246f7f7e822f77ad437c10ad
BLAKE2b-256 224b81244003c446fa056df740604202f14422837dbf97b38cfcaa2466698391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fe0c0e106829724c5b9c46c999353280c7924103302ea01b6fdfedc7d644986
MD5 98ac6f11176dbd5e5e9ab3c455c577f4
BLAKE2b-256 79d8591faad63d64b4e3bb7943c35ed34114e11a3e11702ed19f216c452c3447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64eb2ad8b3d77fe2c6c745f4f39ba412e7aa4fcc1affa89861064ce30aaf5eeb
MD5 5e074f6484c6c44b7aa4fa298efd8692
BLAKE2b-256 839423e1a06a1f947078fdeb37b5718c1379f36024dd2a3ab11a3179794a5ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77f566a0431a8cb15f540f87d44575085d9800e3ad28143ce5085db6dfbdc600
MD5 5963a120452188bc1958ca7ad558d43e
BLAKE2b-256 7de45f15c844f88cc362f55c02087476e302481bf7b25c71631b867df3fb9319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b02f184b5c300d10a7b0a19e9c99684d1b9453709205421008e743347cb4a484
MD5 a1444d9b38b70c08264a27915bfe87e6
BLAKE2b-256 1fc136468d74898bd3e85df75d4c3b9d82e298a9ab78da5548883f362e168ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ec8c7a95fd7138019103663d6dd8edb5d48217e8c1a1120ca59400eb704d429
MD5 273e95d5c8eef143e3b2e2828126de08
BLAKE2b-256 2c3b6c9d0e114aa96e96269aa47cf821582e7b8af73e87119312ddc6c091ecad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd244b414fcc0afaf2a278610d3a5d9b575c50279724b8340c3871c14e619400
MD5 349d08bee7b7cc77b6fa8c5fab058e28
BLAKE2b-256 97478139eefbbdcc54af227f964327ee80da3d2daf277ced7f5eda8eb924315a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32edc45b307ece212a9507a229d5fcf3cc2d8a59b6d6c9f322430e72e4a520a5
MD5 57abe4b1a80c5c681d4167aa3e324a2a
BLAKE2b-256 94c138acc7dc0e40993f2b5a7bc9738dfe10588f12645d6cd2e427d92bc19fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0b8490b3c4e4f1434175b76f6599ce1b0144e5982720c9140bb6b2b9f57efa1
MD5 f9e36ab5158086f077d490e01f54d3a6
BLAKE2b-256 a84c9b2c0e6fe813413899c8f77632e6e7802ece1fa0dbde29a5bb728b850225

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