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.dev2.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.dev2-cp313-cp313-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-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.dev2-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.dev2-cp312-cp312-win_amd64.whl (503.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-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.dev2-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.dev2-cp311-cp311-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-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.dev2-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.dev2-cp310-cp310-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-cp310-cp310-macosx_10_9_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.11.dev2-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.dev2-cp39-cp39-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-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.dev2-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.dev2-cp38-cp38-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.11.dev2-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.dev2-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.dev2-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.dev2-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.dev2.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.11.dev2.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.dev2.tar.gz
Algorithm Hash digest
SHA256 b1542c957d32bdaf3f2687e594d98dfe8005a30587b5622af411262fe7445d4e
MD5 f8c9f0a82429f8fd6d24c4ca66f0724e
BLAKE2b-256 86bda09203edda4e54b7413042a8f2ddd07778222a16e0934e03b34e1166eb82

See more details on using hashes here.

Provenance

The following attestation bundles were made for mecab_python3-1.0.11.dev2.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.dev2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b33ac5b7244bf98173478c78013b39df729b07b7cfc87d064d2cf7be57b6b6a5
MD5 21a8e65ec1a1dea5208f5b9d14cad42f
BLAKE2b-256 5655eb57eee368744dd911ce7860dd742279f6d7ee5e5c0130e552d266a69ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee64dafbb504e9b6954a17b68fd663d7f24083bd29692262bf2e480bf722304c
MD5 d20ae30062334c2380b931a9c2ab3d8d
BLAKE2b-256 ef404d0886c68b415410a4e3237ac32154989b10bef7d3d375a761cdda059487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91691422716ea8e7ac55fdbccc385690f0f88703236c1e6f5bac812415e6ebdf
MD5 330895a5bd3bf4e78b9f38872f11977e
BLAKE2b-256 58fdd4207d0e8c0c079b208a53802dbc5752d54d5c242104659aa3a3ef2fb01f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 390f1acf36f0272633408f8736aca79cbd87ca19fdafba18e5fc8e800a9fd6ad
MD5 787dcfea37c9e82cc12a6a6835e62eac
BLAKE2b-256 6b6792640f770afb268e3cf779ff1fc9e48925c2bb01620b1a950d7c5b209768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eae2385b3370cd698565a2102367832f5d613b9c5af8873abf72dcbdbdf91520
MD5 7d314fbc96baf493e7442f8b637ef3da
BLAKE2b-256 d76ff8b64eb7309cbf792a52b87603547c5ad045e6864b71a2ef0d94f5c95b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0a3e9a20c68675e969853103052c0761e4dcaccab7e3748a21fe955f20e7a00
MD5 30fe12ca3ce4863404596dde4ebf6656
BLAKE2b-256 161b518844152aa19c288c99a7de88b04e0684bb5c52db5a9b6db092893325d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8a2f19078a24c3824320f7051fc08a971f85690fcd1a834a032ea76fea30bacb
MD5 887073b9b903ae20da7a4e2007e4d93a
BLAKE2b-256 80d3784b52e9fbfb1070b8911d10a42db1a79eed1e85d94c0c11a7161b109722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d36c97689064c5b3d5ebffd231148b40172aa97e27e588060bcbe99f25ec96cd
MD5 a42308f4df2cb6417abe48000b5f44e2
BLAKE2b-256 0acd8a19bdb3cfd09187ff7666a6c2e9655067ab879ac867daf449ea4ebf992f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a8d9b37f4dac3295e7aaa1d6f363aa9706e58b67cdbf94988f732b30b0ff9b4
MD5 0f5a8d689cac9cbaeb9b257d06cc3dfe
BLAKE2b-256 6af091c160431ae820113328e21178455edeb9afe48e58c2ad06c37056f84a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f687567ea94f4ce6949f360528ff037d2159036c2a6503a68e9959f85677e602
MD5 b86ff04ab60333de871ffa4e144e6884
BLAKE2b-256 52cf6d7d06cc04a662dbd9600376d206af75af74a160f66e5947e856f968c1d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ff3b915c15123e3c539e6c557218e122a528f57ae5913e7a76fba129adcc3d6
MD5 1ca9ec533623d8693c4b38dfe3a7abcb
BLAKE2b-256 7c38c5bdabfd6f69bdd6591cb75777cde543267999be56f6ca21b9ee50e0f7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fee09c4d1ff7f6a049f68832736d3b91a7c18ba7c2cf996e33e6fac2583e28c6
MD5 f43a3c9a651ad69e73349ce5b9a6b01e
BLAKE2b-256 76b85ecc41458275b03171d35b502f2348ddc3c2e0601af606a4cbb8ae4d6238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ad60dadd2fb9e6343195418d1a4a7ab4c2915eac9d145ea15e610859ac99feb
MD5 b5860d26ec75f0f7b18d290ce56758c7
BLAKE2b-256 6c9f72331f411110ae42f4f24287265b595f7c5c720c8f40a15c1a55910b85c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b923f44d8a4493ea3fab6c9076ec16aaa475419d3fbc830e11fc4cf905bc736
MD5 8cda974cc55a1ad577a69e556957b5aa
BLAKE2b-256 6641a86cdc076eb455c3b9c8b1cc1e1ff038afdb164e8bb672c9c48204f156a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e8408e7d05378b76da0c29cc1919204c49fc587862cb1c21d26c1687a7063ad
MD5 c773ebf1e6d204c82d6bc1bf9e9a2a53
BLAKE2b-256 e197484caff5c1ab132f261228df024ae61f95457d13443fea98367dd6c89849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 82718ced9c0c6277fb0305caaa9110f07091a4fa05ef328c7d8ca6f64a8530b8
MD5 55536558ee9ac3c6f918f5e23035df12
BLAKE2b-256 ee24ad3918a71a59821bfcffb00759877641d645e40f3201ebf0c9de1feb73cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5054dae15d7f38856d41a21881d28e7ca3643a9bb84d9b91af88043654cdd430
MD5 ee017b1c113c881e2c9d311be7f46f4f
BLAKE2b-256 be3898ee83815cab2f68c067d355d3194cd0e91e84a7a476859d130481501fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4204447b7288409f2114af78d37ae1ca5ef626b1218a05886bd6ba4c612be835
MD5 29e9ba65bf1003820a78fe869677f512
BLAKE2b-256 dcae41606093f634a769eeeebcd28e001696ca97bfc5d6c485e51f9bc6262d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf16f48e8637ecf3b3e8bdcaf41367ebb0cfeac63ac4fbf5bd379f8fcf28dfe0
MD5 1d13f3b610a899be12baa68cbb38530e
BLAKE2b-256 1bf119ff1d98952214abe09756d73373e557e65fee6fa00f2a2fd89ec6418791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f1c33bb81bbd1fc114bc1043ce27dfed54c3b1ebddfb0270973b72af92403e37
MD5 edfa008e35e6d61476ced1dbfacb7161
BLAKE2b-256 dd81dc8e6c4b0e6c37fb5749bff56a3c3fd71c6a43720c8c566875115605b4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c9da88ae9ac0be0acbbf76c6a6c8c040939a93d3f35a6f290bc9c918a67e4290
MD5 8c68e96b2e5f7121adcb0a634a407aab
BLAKE2b-256 7f9ed20253625200abd3628d89d4652cb5c46a9ade0e30020993626392f52d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd3d6872569b7c9211ae449f78f778446ba031b935bbc95be28d5c8ab99f2daf
MD5 96cf2fa132e71da6b0f9895571208d19
BLAKE2b-256 ea5aad8db79e11bc579b99cb94195bd09930c7b5c40919e706423743863c3c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec4508c07d50e4c1f222ac45692e3a9fa0503426eeecf3016e1bf55763927ad3
MD5 2baa0a4405702761e7d9470229eca0fe
BLAKE2b-256 c044448d9dcb6d1369e0239ae8e4f1b919727ea2799c1f856d8201c5977b7abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 184dca4f9a217d414bf004f2223b5be608be1de695188165ea21e214b4519fc2
MD5 a0026bad25a57ed9ef99a9732d8c1e31
BLAKE2b-256 b7a1a5e702ff0ae57bbdc9f3d4525ec277179e0c004807e9665ba0c6477bd78b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 888d19886d082da9f12bfa3ebc1ce27b681710e4e0eb4660821a67444a36498b
MD5 7a80251bd6a81ea7f209384924838e1f
BLAKE2b-256 564e20237681907ce03ca51782fa6aa40e59610a18d7adb23bde2fcb762cb556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.11.dev2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fb33521a25a9a55db0d9ae5a22a7f65bd777e99f35758cced7a629f0aaabb89
MD5 60c9af104406337a3bc5349e4b3df266
BLAKE2b-256 bca45c5f04833576c9ae48d0509eb38adabc1c131bf5184fdba5a608ca920fad

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