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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.9.dev3-cp311-cp311-win_amd64.whl (500.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev3-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.dev3-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.9.dev3-cp38-cp38-win_amd64.whl (501.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: mecab-python3-1.0.9.dev3.tar.gz
  • Upload date:
  • Size: 78.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for mecab-python3-1.0.9.dev3.tar.gz
Algorithm Hash digest
SHA256 341c7543e5ca89dc66ef1c9a306ed84988129067acc3b28f5ba1dfafd81c3bb2
MD5 3bd7e15dfe9eae01b4fb1315a293dc64
BLAKE2b-256 edf5f3173eee809b0e3f440b93167a80580a362eb0b5e9ed5e7b195e88a3a2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 620f59f4d40620110a5cd00849b1d12f6a4d9051b128d8ba9ba0d6c4906c62f4
MD5 7f479b9523777c876d9332ab6e38b51a
BLAKE2b-256 6a5861895d5f9fe7d0739f3f000f3bc91452ddaae09277c3a3b00dd8df84c7a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dccdc4fd5034354d4af4fd018b0e03bd511a3bc26b062d61808a333e6e066f27
MD5 a7cb0a46e64b3268020d64180f5cf5ea
BLAKE2b-256 3b4d99f1899622c7ebc6965dea958f75c4db124f3ad32b73126e353ded26923e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5cf3b8d0389986307ffa2c1b1ad5b6c102ee982cdbb54ecdf859a9d86ee6087
MD5 d8c16ce22955eda4ca304dc7494f066e
BLAKE2b-256 d620bd84aaff2deb9851c8fc03a26646a164d181c45c489ec63339d18fdb22d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daaacefdc226b07e4cc1771f5e6dd5470c4c24ceaaa2abec06402d0c7c1ed9b6
MD5 d7820b967a1c53f71de5a586040d4a55
BLAKE2b-256 cf245cbc4dc2f6688237db054bc01abebced11df90582586ded7ad2f7164bcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0414491cd5fdab0dded38cece3cb470cf9a66e8e272f2825c59b991a056b7e6b
MD5 3a0719a5b8e90ba137ac2fd969d27838
BLAKE2b-256 d905984b87ba9e39b3a5c506531a9ef9dbc09baa3d3f9c35bee8bd36a16eccce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9afdea11d4e17d20d48a999f75a83dc8315ff33893ce9bcf558f79c2d2da1538
MD5 08f45ec927580ebce31df654bbb8723f
BLAKE2b-256 9ad42047d595f25fce59a795cd308e9072038749666a95038ffa69100e28ebf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a62bbb7e4c2ef2d8553cc7f7be12940705eb2caa98c4cb5d17471e81dd5ef106
MD5 35e94dd627d37f165342292c24ad22b8
BLAKE2b-256 9ad2de993f9b86626098043a9770227ed9924b12529460d025e4b28a8f90f080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ce46a385861976518a3b8f436dab1bccecca047cd13e85bf137b71f97384c33c
MD5 07a93f08812a07a053af22b16c3ff3fb
BLAKE2b-256 a1ec223f804a2481dd4b32e6b697f4fa38020ea2e6427899af53188249110386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d2ea2860302e57646f50a5c38460218901edfb1b979cea92017c493dd9bcfaa
MD5 c748ad8f1bedaee74723d1ae8a0b469d
BLAKE2b-256 86885edf414cf8fb5568726796fbc692dc8b35634b594fc49954f735a3559485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ed9a87245b2c3f3cda37174d9ad24b48685eb9636a14cc04cf7d1f8f10eb95b
MD5 529599bb3cb14cdea47a905cdd73e2e5
BLAKE2b-256 8079a20ded4368d8925610978e45047b163b447f0e1f078cc796e2acd8dc71b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ba2a5814da44d620bfc0c09db25e5a9ec98695a72d847fa4a32c8afaab9174a
MD5 9079e068b2e30de61584a5abd7e5331f
BLAKE2b-256 5c5161df6c260c6d2b788bcbffc44d9c85570c7cc25e573d059443788984dae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b5f8d2fb147134750ba6f8092c42622ec3af17597f0fd2ce5a10a6ef109f4af
MD5 e1fd127b130effc7189532846ddb7604
BLAKE2b-256 f02ebba026d9c34ec7846f57a65eedc85ab32adf87b2e5bfd7fde110f96304fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1b2e1f5a844e5465a470726eff361954df15a6e921b2370f9c65d1856c4cd17c
MD5 8d1e4d509d1d015948314a5608c0684c
BLAKE2b-256 f4e077293479d97b1b7eb4c26117668e0da81cc104003b56c29dd6d77310f3d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f7172ad298b9e44153c37b186e80eadd020bf077606bd3c27070e25708da47d0
MD5 15b768234d84dfa8a014b59dc1329fca
BLAKE2b-256 b1fb17ccb7c8bf3e4e3a3b64ad65ba5de0437cfa06b48aa4d2b00ace0e0ebaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c30a8b7a050cdf5a5b4e3648e9fb99be7f0644bcde607cecc73c02936eba543d
MD5 068fcc5e61ec939b4880793eee4c3cfc
BLAKE2b-256 12fc064751d194e108ded1547881d729467007c24be95b12aa944081d4b11330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a40f478dc64f2c9e146d5d979797208f3e66d20ef7a4463816576f803b74294
MD5 eb95d513654889d3fabf0daf83aaa6c4
BLAKE2b-256 6b023f575490f43497396df4be6098f614515f96bb7903ae46c38f9835cf05f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c76e8c4473ad40672353411c0348b35f9865be8982eb7d60a10eda09ab32702
MD5 3773dfeca7f6d179a13ee7b1dae2acac
BLAKE2b-256 5c1f421d1b1e6a034109b8a1c8730c3291715b203a531325a6b046b2459c106f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32b403786c01480799cd6b3d6f8dc974deb583313d2d732329e5688174ffa0a1
MD5 ef0efaf27c6b94bbd0df8b4ef01efb58
BLAKE2b-256 55c087e2e26528a4e26781f39425bb3543c668ee9a0c1ae6ca039cf0dd3aa546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 420fb6c4378e5c53d9be7e7860f2c36339bd44553957acb6949e51e3f71fb806
MD5 ab481905c1b765878486ec4140db7b8f
BLAKE2b-256 f0b03b0653ea94374cab54f0f38a1214eca3212ee0f0ffa66379718509a7b20f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e5fcbcefefc5b63da9f7efbe158efe0396ba454dc8bbd003433aa074d6723fba
MD5 ce847905f2872d3dc12bebf33f2df903
BLAKE2b-256 59ee32b78075ef8a6843cb0af2430669fadad161ffc3125280b8866e2fd38c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd269ed8567ed6283aa7ac8d7fde2c5da13e25bf2fddce5c9413dfc13431ad5f
MD5 552d9370008b353fa9f15721aa8e1e23
BLAKE2b-256 da37f767794bcff31821f0f56c66b69ad583cdc0507ca2b0efa134d367022070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2af5f3b157737340fd72e0f4de4d7f6c8d146735bc767a67d690a3c51898f21
MD5 1ab95b505e667dcefef31cd4c6492b24
BLAKE2b-256 8e08d3617b87a6c667dc74c0ad37ed8dd83c508ebec674e033cf8481685d6183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb5dd6b22d5eb0bd91ef540ec002ce70c2398a455deecc4b439cf5b40c6160f9
MD5 746bda1bfdd803dd0c0e638d31a6ab1e
BLAKE2b-256 ed83b486ee92a05e619ed3c876cf98703a088049fc8754ee9fbf446b25515064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1e9408d7332b9ae699c02cb55114c9cdd733c9b8bc3f5d237d6a6b922b57bf5
MD5 d78ab9b49104d5e837019a38a1bb8ba8
BLAKE2b-256 854f71b1b2d031ff92a1caaa0a210e196d26548519fa08983df6e4ef36ef431a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5c36986a8e9fc46a0821f5c40fc2501394fb2323632a37f16b6b42c797a571b
MD5 08055d09e06af6247f759f938c2fe8bd
BLAKE2b-256 27a87e39ff59891a424921457c1c57c0b3213e329b21ee26ebe0dd269c80e671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e57952622c3aaf1fa24fe6dbc307f0ec85b8785c4538ce035ea72adbb67db49
MD5 4dd51c6a211156165f3a2edac3a26a89
BLAKE2b-256 ae02b34d0227de8f6d3f2c52f8db7989f4b7db389f1d950bff1fbc161457feff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68e85363702abed5f8e2b8bb3a14f4c8c25602cb89d9a64b1e86a69f96729d30
MD5 014d1b6cd9c6eb2d9f37d59a468efe7b
BLAKE2b-256 2e3b24d2d1fee05c769ba688be6ad58ab7362849f4c8188868c00006446cf28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed33d28787989ed79ad5be4e07bc35a0d357cce90bfd9c8ae9a467c6feae5add
MD5 e15af03972b9108549e9e8b640da16d7
BLAKE2b-256 5497703a4d000936b8bf190f7f6b0b5bd74220909706d40a7a7b75c910a4c7ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2e371f0e0af84a439eeef572f636a53057dc3cbf0f95f9d2cdc9759a50600a4
MD5 8922dcf9f2fb119c479abdec16f069e5
BLAKE2b-256 bde192b4bf5cf0b5de43afb86fb4de5875ddc654d26f3eaf232f4862e4302908

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