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.11.dev1.tar.gz (78.7 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.11.dev1-cp313-cp313-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.13Windows x86-64

mecab_python3-1.0.11.dev1-cp313-cp313-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_universal2.whl (523.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

mecab_python3-1.0.11.dev1-cp312-cp312-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.11.dev1-cp312-cp312-macosx_11_0_arm64.whl (484.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_universal2.whl (523.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

mecab_python3-1.0.11.dev1-cp311-cp311-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.11.dev1-cp311-cp311-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev1-cp310-cp310-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.11.dev1-cp310-cp310-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev1-cp39-cp39-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.11.dev1-cp39-cp39-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.11.dev1-cp38-cp38-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.11.dev1-cp38-cp38-macosx_11_0_arm64.whl (484.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_universal2.whl (524.4 kB view details)

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

mecab_python3-1.0.11.dev1-cp37-cp37m-macosx_10_9_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.11.dev1-cp36-cp36m-macosx_10_9_x86_64.whl (487.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mecab_python3-1.0.11.dev1.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.11.dev1.tar.gz
  • Upload date:
  • Size: 78.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mecab_python3-1.0.11.dev1.tar.gz
Algorithm Hash digest
SHA256 e0f7afdc0bde98aa5d6bd3eaf23050c6d286520f4b3f8985865c2d757ea5e5bf
MD5 51e5f4fd093d490b88f4a0a69daf171e
BLAKE2b-256 908e21630b43ee3663c6d6781257868bd40ab31d5d094afc01bd02cf00ad8a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev1.tar.gz:

Publisher: manylinux.yml on polm/mecab-python3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mecab_python3-1.0.11.dev1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8387356371ebbe5aad4873a5770a6ce0ac70f899d9bc6702d401abfa38a5c7c5
MD5 5f90a131f392771a218a6bbe340830b8
BLAKE2b-256 9736bfe1900f77d2f9054d3aeb4ec0f03904ce712e337a0c35d5b01d25c28244

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3433bef7b707d851611ac10afe7985afebd6400309388b7cefe935321211eab
MD5 45cf6c2cd2c124d322b321e02f46e5ba
BLAKE2b-256 f9e69041d63c0f31959b1e1a030fe5b5259216b181d225ad51d95bf811852ba3

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a84c38558179f3c23761066d31c2ca61bee020fb8c1c5b7e322d6df334ce1c70
MD5 af6e1154ade2d357197bc2047a08780e
BLAKE2b-256 f7335d67636fee7959aecb847680a85cc47bfb8b1f85978153877ec95ba50554

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f1b63f32085f9d8c4a14fae37f5cc1c9465a62062a8ee3b3f6c81db3ffb9e1f0
MD5 4aa58661de2016d966b8bb97e9242aa3
BLAKE2b-256 129b1688571c6c0b7057e4de54db79d029b32d773c0b293d6a4a5f9316b51289

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fedce9cb98658886e56ee0dadaa21dd4c4386b31f567050637d0450c60372e5c
MD5 2348d52ddc05a605d50f35bd7d9da57b
BLAKE2b-256 2b6b8f95b6cf4922baf89038cf80d5e0b99ddf449494a4b575784d63acccb6aa

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead113c6a0912c36c8c5ee89a9b1738b3634eceac06a040284c072023c4016a8
MD5 af94e1e06b8ca759330757e9b2319a74
BLAKE2b-256 0ca0901dd98aba936bf1ae066e5802cbd1e636ada873385914da13cb07afb100

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 60a2b74e45be31013e6f2b4db20822b9facb644bfb9a4dca25d0065eba7ce0ce
MD5 00d568ccd8587008dd1cb4465941fcfc
BLAKE2b-256 6452270731ce4abb21fd048619a008320fea65efd2f0bf843fb3c539eeca9389

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c380fefa872289400395c5123bba2e0a930a0737704d92d81795c2d69546ea43
MD5 f40aae1a62670a083d53d6478b1fa486
BLAKE2b-256 d0153a923acb01fed705716b71ae01ca8bb3abfdfdda04278a1cd289160b7be8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f17adcc1d1dfb475fd2b19f4b2264d457e9ca61df32c48013316c40db4fd02c6
MD5 0271d47453e8271135b8654d393ace77
BLAKE2b-256 7830cf2dbf35f6a18b6a3952fb3e1ee4dfffbb5d0cf5d646309827af5ba0f790

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5c46c3ad4058e09fd909e864ef9f7d663cf9ebc7d0ac3b16f7f90a5e6279b7f
MD5 5c16e2ab4db7e057268fde3f1088d53f
BLAKE2b-256 68f73f83a88b76b8203c2e82649b7ccc1049ad3d4b5b5ba0a716947bc976a535

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a863d38e4f45081682f31c71d6f28e8586ad7b5df2e228b4345099de5b1cbde5
MD5 f5ab486828a97548f4bfabc82d6c8a33
BLAKE2b-256 c60539c83dd3ccccb7ea5827466a6c7166992f0b8c38d62d26823b237561e5bb

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba362c0aae0b4006a3a21caf8a5d1433a8f833616445971644f702b14dffef7e
MD5 416eb9b04e4305673c00e7f2d94a3c07
BLAKE2b-256 479c7643d218d76c0ccc4cacec8fdcbbc69007e5dfc591fd3b4e559d545c635f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5f14b57710de99df0cf50e1f9ff408f754b4776a22f71e36b6990bcaf058e05
MD5 913a550ec79aff73132bbca62c987cc7
BLAKE2b-256 4750b48a2821da1b85796dec823be72a4a4fc9f67fb458603f12c23ae250569c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9571f4caf2cd0af6725d5cb4aabd46baa824e4e91e721003c5d2effe1ffce41
MD5 17cdb1dbbab196cd0fcf2613ba390551
BLAKE2b-256 0a17b8bebfd7b366cb94c662a3c7e435206eef24f9f412db631a53954772cbac

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27420cd9b69fc2d5b8d912f3825afe2e45c197fd757ff02a4fc7f5d6474d3203
MD5 6e74c35a2d79257af1a4dc2c2e940b11
BLAKE2b-256 7469b95438e9249cf0b3f5159274c552ed69320f56a776fa272579dd2828ed42

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 03585d41f34fe1ecfe03910a94201bf00cb6f3fc975de755d04677ac6ded848f
MD5 25596a5decbcdefa3d50e8bbc508b2a5
BLAKE2b-256 b617aff10817ed022de186aa56ea2eef921a1b0b60519c9a79b165eb743b3d28

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 908b7cb61757ff9b5c9bd73944d4c67f573431743a311505c9e02a986d18ca83
MD5 376bbe2a34dd3621b6c755f1b75c59f6
BLAKE2b-256 1eef50f6ae6c5e6fd34c9aea68a794ad23f7f174160a4a2d460bfef609e9d5b8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3b3d39f1358b60c2fdfe21f9fe9fa4f50638d0d99241222c206b1b2a3becea5
MD5 8c0272debf5d182fe45894adca56d33d
BLAKE2b-256 dbd1961b716037a79df256a16ab3a2c417827425c33aa4cca8a2d29fb283555a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d6478d3cdbc887ba1beb91466180e62f5e8c91bc44f18cf7f22706a445a6708
MD5 9996f5ad8c5047c43f3411be987f3f19
BLAKE2b-256 e8ae830fa1fd6de2dcac34f8963ddb95f89626ad691e316cbe035840c18b0a3d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60f7eba4cd5cdf44a0c29952f1643c065d2ca7880b7482400a611d408a24c75f
MD5 705d23869ea9999fd4dad6fd7ddbc456
BLAKE2b-256 7896b7b2c408a415f59b97c6a53468a5cd07e3026dabcf871f646b2c6404bcb9

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a2293f8be126293623c29268cd3863a84f9ca22e7a1bec059b1884efdd834ff
MD5 429f40c31ac0f33c6c4e90b7f67a2732
BLAKE2b-256 50240a1eede19214fd5474fc62fff40e5de3a6b29128bff19495c2263d22785e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a4f82a6c013ff97242906c46138c8da1e32191915cfb3a3c97c959a941b8981
MD5 3ff947d5fa598cf9c3a901230c56db53
BLAKE2b-256 5e8b225ba0b83b4c46c5554bfdcb25008c64f1c4fb3f0647b4d3496e557b17bc

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd7b0065d61ff6ec407cd8efbc1a0fc32014660632d58676357ef9ce52d3a470
MD5 517ebadfcd45566619da1026466549c1
BLAKE2b-256 225f236a4a0c93e5a8a2abbec6218cf8b5324734e128877c71a6bc488e3ff2ad

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2135c7a30c49054066caf610d0005d81b1426119ae925398820f2b53b4c335ab
MD5 e5505d1a905e4ecc46b52a1cdef58db2
BLAKE2b-256 e19aef0197340922ccbcc89b6b32e2b5fb5914afc374f3a370dc98da7de8b40f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b7c4f51675ad8b0b23da109c7b537c6575e1c87fa24e8793362eca652e5b0c4
MD5 cf3bf70b333fc2eeb905a8700457b314
BLAKE2b-256 042156f4e6e0ecbc4aacb3e8b78e99416371e04906811ca6df09d9a1a25567df

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.11.dev1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b79d1e25f488222f80f09c0ecb91c317eb7c1c11aaf85bbc7bea66959546d878
MD5 124ada9ae7a43a0d62eddec24ba4666d
BLAKE2b-256 38a6f0f108d4cfee7c0afd5f63298909a9a31b681d2d37b36720ceddf191acb6

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