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 a maintained dictionary, though it's slower than MeCab
  • 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mecab_python3-1.0.5a2-cp310-cp310-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.5a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5a2-cp310-cp310-macosx_10_15_x86_64.whl (282.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

mecab_python3-1.0.5a2-cp39-cp39-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.5a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5a2-cp39-cp39-macosx_10_15_x86_64.whl (282.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

mecab_python3-1.0.5a2-cp38-cp38-win_amd64.whl (500.8 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.5a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5a2-cp38-cp38-macosx_10_14_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

mecab_python3-1.0.5a2-cp37-cp37m-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

mecab_python3-1.0.5a2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5a2-cp37-cp37m-macosx_10_14_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

mecab_python3-1.0.5a2-cp36-cp36m-win_amd64.whl (510.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

mecab_python3-1.0.5a2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5a2-cp36-cp36m-macosx_10_14_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

Details for the file mecab_python3-1.0.5a2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

File hashes

Hashes for mecab_python3-1.0.5a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef50a4649a7e6dec68232fc5de0dea352f44beedea714641f54cb5203d1a7433
MD5 aa1ba727c423aecc38125393ca1b934e
BLAKE2b-256 da6f8cdaa2ff3886cd170d97903799c25322b39881ccfe5105c19782a0809d93

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 581.2 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3bb5a3b81eaf48f97cbb34a2f9fddc0682f5a0207e11cf30d54e2d735acfee1
MD5 fa6fbd63e3cab50444a3e988807f5360
BLAKE2b-256 84856855a742540084a204c9980815e52fe53dde687fe94da082f4317f520e25

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 282.9 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 665c28ff8560dc9e9973ba8ec9c6e83ec91670ebfeda57ea2cee746e205b31ac
MD5 2925bae5dff375bdc29d9db3d5460dda
BLAKE2b-256 397fc3f17ade7b6170f8ba307e952f6b8e096ba0802cebbefe2977e7dc0609b1

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.9

File hashes

Hashes for mecab_python3-1.0.5a2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8563941e01b8ff0e4724819520e7b72745f04af55eec7ec563e8108781f1eb32
MD5 2beea95ef5e3735edc56acd38c2b0948
BLAKE2b-256 1a57acd68a3c24c69e89e9901c6934be75d32476004578fe056b1e4da37ff90b

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 581.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f6e6f17ab2262485cf7de3cc542decd576ff0eb41c2c333b20e475845c91848
MD5 9ed4b4440bcc26ab9665c217417f0ef9
BLAKE2b-256 ffc858fc6eedd7344176a253df6d4812ec339032799b37ad53f8b99ca651629f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 282.9 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for mecab_python3-1.0.5a2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 df7ed14b99eb5a6085431d9148d0cdaeb80dcf9f4c5bce897a53fd94bde647c2
MD5 6ed9f8a361d1988cc7426fd12db38390
BLAKE2b-256 e919c346a908f079ff219e74589b78df9f3a33651bd8e8c4bf22166155ce0cc9

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 500.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for mecab_python3-1.0.5a2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 61380cf98479b3f071025e97f4d55542d44a299dd76c9cbb6d7bf5039917dd78
MD5 a180b93914aa53fe6e5b84855e27432b
BLAKE2b-256 aae866b7f5b5e7c2bbd56764132b3cc1cc9bcf245b98e35213d8d2b79f873e17

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 577.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677820c045f49eb9185cbca29bac97a7e093e720694dbe4c80d6592855285d2b
MD5 f3cc867f5fe69d29ae36077aecbbb09f
BLAKE2b-256 9e9663db1e436399e3fddd59a93528d7ba11130198d35ce1938f94d7f2a74a55

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for mecab_python3-1.0.5a2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 160a25057158920d91cceb4b6a38eb486100b70115fca0e29a2054cbb94dc46a
MD5 c7dabed4c38431aaec27fc6bacb8bb92
BLAKE2b-256 72a29a31a35aa2f926de4badcbc118e156503ec835961f7d1d9af97b3f6edaaa

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for mecab_python3-1.0.5a2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a9a7ef12d45344e0df4136e5913550b57e45b043dba2f6d0ef4737e5c4b38edd
MD5 b04894e918608af33a2835ac71203c29
BLAKE2b-256 1e9c90b8ae695afffa0d60bc33deb66d09473974f798054f92b8a02dce7b55e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 574.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b8a5eac8de97cc75cd9f1b99ca8dd6f1cf49f2856021f41ae9ce8d1ada74629
MD5 7a75cb6ed35b68d8d829a9e39a9750d3
BLAKE2b-256 e9c2d133aa7157afca7a2f8a47be083590e9f66503303ae75ffaace8613f7461

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for mecab_python3-1.0.5a2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4c7134f7d62892e82906ff252ea8fdaf1bff68ec6a97059cb4a93b23d270cb89
MD5 c331f63a3621a8e522a911461db7e021
BLAKE2b-256 cb0405690e3325c4d176508720ced03f82db151cca47b2886e97e8b9877c5288

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 510.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.8

File hashes

Hashes for mecab_python3-1.0.5a2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 92ee46ceefc695c2e8ed7d5fc0ffbc5f66c117205ff491a0d4528016e26eb025
MD5 b2de14d89b134a4f9ccaef309a1612e7
BLAKE2b-256 42fb3d77634d5c8fc53af18302845f57097d9991b9d9b186a87360009940427d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 574.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5a2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e6f74e2b717d41112a276204521d69c2718acded639eed84e276afa60a954bc
MD5 3b6b647d2cd29ae730f1eaab36a7440a
BLAKE2b-256 c230138c8b8da6251d36bc52c81377b6cf931d84c0888d952888f494678ceaaa

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5a2-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5a2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.15

File hashes

Hashes for mecab_python3-1.0.5a2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9d02388734da1db06b2fa92c3ec0df4d42ec061d37b3df1d187d779a37e948ac
MD5 c32b0f6c62cfb87d8176926210ff30cf
BLAKE2b-256 dd7a1252d68bfefe3885b3ab646d6f410b83e80908f16f17e068232c8d4d16d0

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