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.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.9-cp312-cp312-win_amd64.whl (501.6 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.9-cp312-cp312-macosx_11_0_arm64.whl (511.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.9-cp312-cp312-macosx_10_9_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

mecab_python3-1.0.9-cp312-cp312-macosx_10_9_universal2.whl (554.8 kB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.9-cp311-cp311-macosx_10_9_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.9-cp311-cp311-macosx_10_9_universal2.whl (553.4 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.9-cp310-cp310-macosx_10_9_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.9-cp310-cp310-macosx_10_9_universal2.whl (553.4 kB view details)

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

mecab_python3-1.0.9-cp39-cp39-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9-cp39-cp39-macosx_10_9_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.9-cp39-cp39-macosx_10_9_universal2.whl (553.4 kB view details)

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

mecab_python3-1.0.9-cp38-cp38-win_amd64.whl (501.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.9-cp38-cp38-macosx_10_9_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.9-cp38-cp38-macosx_10_9_universal2.whl (553.6 kB view details)

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

mecab_python3-1.0.9-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-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.9-cp37-cp37m-macosx_10_9_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

File metadata

  • Download URL: mecab_python3-1.0.9.tar.gz
  • Upload date:
  • Size: 78.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for mecab_python3-1.0.9.tar.gz
Algorithm Hash digest
SHA256 2d891f4a0119fb766fa796e28d881a55793a0c3544e446cff64dc946ad7227cc
MD5 55240a0ab9add7a45b1c09e362eaf9d2
BLAKE2b-256 86f05e0813ffb1fcf8867e663c7679e3149ebc197480e96cba7116fbbd9305f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3ef376016cdef012c62b92ea30c3aadcb12349c3afac8df7ade2eafe3850fd2
MD5 6691f3592806ca524c30264415bfef7f
BLAKE2b-256 66f362d2fe94c62f2ac42c391add32129cb368aa368696c50959dc9cbd90acae

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1c79542fd92ac4ecdd9740077df6ddb095fa322a13f660f83ef43f43fbe0877
MD5 a0838d574ac0b0f31129f7ceaff54226
BLAKE2b-256 96989abdb668f5d5a8beb559c4e60d2a5e95e19650703af06f1e8504701f2269

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5a7936271d44c4ec6231ddb5fed53a404302ec48201b784c85f19989452c0f2
MD5 5225a5ca6f93b2f93bff50532da6c9e3
BLAKE2b-256 40497a12e3d0539405e8d0627874bcae3b364f62f37883db0949303f4693eb37

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09c5a2c08533f691fdad6ead373cea860b85acd5dede770f9627654712d47fa0
MD5 87c0ae0319b1223a3aa2919afc5dbdff
BLAKE2b-256 440f70df4c46bf28c44e347323aa3fc9bee5192e10bb19015a9439995708a6c1

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd494bef7377d7b1789778d82c861eed9a6ee08de9b0d7d38641284dfc584015
MD5 cd6f8fce742d7042cafeb6a86b3677e3
BLAKE2b-256 1e2d7565d697955e571f7d218a0397b4492a1e3a6d85ddce7226ac8fe87feed6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.9-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a29211f50109849ae4d8b1901014fa1f0e792b86d3b45921f1971ea15c0b7c02
MD5 16a6008f6b546f8f7e02d24d2bdd29ea
BLAKE2b-256 5282f2d11a2cd2542ce46f7a2efc26636adef4b243aa9c5e18fcdaf367290406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c861ed23ec0e0fb0f295ca1119067a9b8f221f50621d720b0c030977a00ba0da
MD5 9355b528177f6203765b8c97f8302ac8
BLAKE2b-256 f923355877b98a0715dd0a0e2a920adc34a6e49b43237465913a2e7922e70915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ad8814e7527b975a0152106b3199c3008b3e02009530e8ddc82a3aec736ec05
MD5 c63736bb9d65c6d92e6079b2974ee498
BLAKE2b-256 4a389a0fc4c9c27a2c1540fc5453bee4350e0376c2382c7ef9bb72302ed4b493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 346b553e06ac619a5013c750baf11f81b967c391734c7ddef250ba80986eff1d
MD5 8640fb1c94d876d419cfa1c42276a53c
BLAKE2b-256 6ce5b7f0e38a3c0f2d30d4c0c4df18dc74da599995a447c108dbf11bda75137f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfb874e08e2277317334459dbe89444c72d75b29e0cd29d5f8b0c200b10684c0
MD5 d5807c1297a06bddb9064105449776ea
BLAKE2b-256 6e9612848206f05e1e3352acf2c351b04adb45861ff2c3aebd8706d77322ccbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2220967c7c1027ff6d71cee1a08b2917f42e0a179f43069a6cc1e362d825630a
MD5 5454bd600255ef13e78d64ed88b65177
BLAKE2b-256 86f37cbc3f18ff2d49dce3418a669d3c41a006ada3f9044d7820a7a402637dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 920fd996217cd0946fcc38448c11a215780285cce7d248008549fb64780c8445
MD5 3a6cbaa120f5dd3f89dc7958d419417a
BLAKE2b-256 aaf23a30750f7a4829798f587000a2c33ba3ee572de6b4fdd21a44f5237a7325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a75b8e5f1e3041ae924b2420716dd797e73b96d573fc660f140bd506ed6d61cf
MD5 c2832ad12e6023db6a9fcaa57a5b8104
BLAKE2b-256 d95ac5bf948a676aa329a56c0aba2a9f15b08fdef0f91160bdd4a27408a2a0c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52697413a98f9614df3811166c2c9780e9d4254c8038f9a9a496580f98424f4c
MD5 319960acc11495857779d538720bbd5c
BLAKE2b-256 9b7e29dd338e62dfbfaa0b656442d2a31a6d822c048a247dabae5a22608ae88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8047db1a2abf8b5cc251a92e0758c26543625013cc9150ab6d8ca66b4de789a1
MD5 27f28f0c7a0da944f8faa6dabd175795
BLAKE2b-256 ac71d35284aa9976ef302ffe0c3e8ac1577cc7c493d54ab42a9acf9040757f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb0289922db4c3fa8a0e07a3cb00842e3446ae8f1a81b2527774d33289be1756
MD5 0f9477b81b8af06945fa058811b60707
BLAKE2b-256 ee1772563f960962e7231f079e5b995fc5bb7193b2d5cd4f51e06ee37a566e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a28e443fb85e6b5d39ff7f2b6885f7b42b7e88f8a646640656d08048bf6daf3
MD5 af37cb35f63363e842b915c24c2c9143
BLAKE2b-256 5cdd87f16f33a3d44bae9afdd987c0d89a1dea9220a0550898ad035a910d8181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f335f924b2ddd495b7e8e8e194014085a3231fe470d1d4da752b463feef0986c
MD5 d12fa542e26d4eef845e984f3e9ea21b
BLAKE2b-256 a4780abf304699c05fa80a7d35654996df0b28b2122674609571be0e77047e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25f510a04de7d65445e3872f55d37d5adf11c5e1da99ea1b788cd30f29e8d89f
MD5 61c79340436e2084cfc3cd4a2b1059d5
BLAKE2b-256 21e4e34091f33977577e62b4d4c1c107b0d7ce1fb5584897b557a998ed48b484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b3cb42213af56c7d50e657fdd6757d48a06e2d851f1495172b9602602c70548
MD5 4969871e1384b752d4ece1df62a566bd
BLAKE2b-256 31db70656bff3b713e631deb406ba684357bb97456cdfb7a33e16bd4956bc0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 673e2cf3e31030ef2e2f7a96fc4f4c8bb5673336483a8546d69c0f19f34f0e78
MD5 91ccbec2c3c73e7f026dbbf90d3efc60
BLAKE2b-256 8be33cca210e52ad501d4e4ac7373b94cf614fcabe4e8ddbab21f0593501d923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a658c4ca3e36f61472a648d19559d98d3c47bbecba4e611b681afa0f7651a1c7
MD5 c976fa5b57e5475b8b3effe096017343
BLAKE2b-256 fbe6b3881489d72f7263d07b7ad00c7fc96328ba84e65755124c6fc82c46c7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93247a6a5ffcb91102a6a84b86bac264c309f2517370cfdbaaf9388975189639
MD5 783ba6bc2af5227e1c14f4a2d1d1339a
BLAKE2b-256 95c39bf8f585659c3d8ca4c3a2b6e8e59991529a3bbd02963fd18784655f7b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7180579dba525cdf082bef413ccbbc53087cd799846794eee626d920a591eb25
MD5 b56220578991129190100a246f537980
BLAKE2b-256 6a5127bc9c0764bb66c7f553d347e92e6d185ee33ca798882d2d3a3d1c55c704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6580b8fb6f28073d0c09c709c33ca05dfbf791eb859f3541b6756037b5d57f36
MD5 9794af2fbe19f5043a600bbbd35f3eec
BLAKE2b-256 eb3d1b7d2147325b939ff4a8862bc9b2e84b005663b0a5a9981dcaf011bef1f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4676475b7fe53431c0cfb0c1953a4e162cf3abfca912bcee358042645b28c0bd
MD5 aed6d04939484c0d0d0bb74c524f3643
BLAKE2b-256 b2cc947e04e08f009b22f82fde88d0c63b22a6396a0bcc40a64153a3b8397165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3574d6c8aca17c16f3f12c28eda6b151263688a886833f8ef83391b85ec8d95f
MD5 7824591eae70d46dc93f34693047353c
BLAKE2b-256 f18fae950a3d77da129a055d390bcea8fe80c41533bcee04d08ef3a3e6802c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1de6ba0012538f016232be1f1853cec314c97a38667fbba795151d9644d0427f
MD5 618bb915c70ee930e38102a8b60a7a01
BLAKE2b-256 0f818dcc9fbc3f31d5e80a31c08f71316b88a06c4dcf3c1020a4e46dc0392f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdefc23384b439abd104370694d44feb6f9fbc6587e47797e7d240e12e293fa6
MD5 605e3066a56c24ff8bf1d3b679cfb9f5
BLAKE2b-256 ffe7cec416bdcb24a79ff4582bdaf70aaebb99dfa867129141cab1c71328ce68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 784f178beffc35a38c44074b020ae87ecc7f2dc8e9d17450e399aee36a965b5b
MD5 7f18808a97a103e5bfd88848a7db15cb
BLAKE2b-256 ea5ac82fbb3f90d91da643fd28251f63642dac0f6aa17c57f635c9484e0d26f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a367595535562bcd25a2643e7a20bc058ab28ee9e2e186c576a005f1578f1a95
MD5 3ea1f9d8933aaf5f8d1db80fa4800efe
BLAKE2b-256 eabe12d1ec12a3d4308f7738efa773097ab7318359115bff456d80929c2cfbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d125b7bc9f8cfa1a03d20d84c4118c0166288cedac9abf9b21a910c65d250aef
MD5 c3615690e4d54cff9807cb082a1d8001
BLAKE2b-256 d3fe8aab5e2632ca4e87ed34f43ebbb5d0fecb8c49c102bd878485a6183e0b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 200c76d17a270eadd7e39ddeff243495cb24d514cadda01d8a69903a9d82f303
MD5 5420e85440e4472079785c8008b0e8a8
BLAKE2b-256 a2b8ed06b31202e933b715e6f3d128dc44f777518a725266067f956a208c1455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c2429796c84a81608f120b7443ae531e5ea416234a077d5111f15f09569b714
MD5 147b2a39f5b20b69741fb5ad25d45bdf
BLAKE2b-256 2e3ef0a036be71cd70f0ac031bd7270ac518dcd75fc34a15a19c481295183d7c

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