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 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.dev1.tar.gz (78.6 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.dev1-cp311-cp311-win_amd64.whl (501.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.9.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev1-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.dev1-cp39-cp39-macosx_10_9_universal2.whl (553.2 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.9.dev1-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.dev1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (575.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

File metadata

  • Download URL: mecab-python3-1.0.9.dev1.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.dev1.tar.gz
Algorithm Hash digest
SHA256 d529162b798f57d7002596b8f94107d4084d344694d2004f322ccc43f30125f4
MD5 0dd484d3c145db1ef5b7776e75427ca3
BLAKE2b-256 9463fcfd00991fd284c6886f505c02cf541a0073c3217c6cbc4cb66733f6a1c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca76f6802a3e7bb001a4af732d68665a736095ece6d230cbdb697c5fb7a4534c
MD5 ba56315c7aa4963768d24b28f8a45acd
BLAKE2b-256 22a4fbc0f969044aa0e8d8ff95e58b2f1ddfb6b7be1ee23e2d1df486c6c371db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec4b93322617b88fb95de0805a31ab51adef04cc0639d37a8cff27233094e46e
MD5 1eaafe9eb823ed0f594052a6b186c015
BLAKE2b-256 6b7e5cdf07bd5a10935589661517ecdaa1b7ef6d510b509c23795f3f44643b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179437bfe09830f7344804c3596ef10ebb8d2290e92be87095a0e6614587d718
MD5 759d29a0a592569a48a4b98176ea87e9
BLAKE2b-256 db735b19ef2167ff758a4e7830efbd810bc34480a3ac29479e30402ccb2c5961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 833e8672a246c43b4d889565340b5e037abf52f1e45f4432de825f0ecc6218c0
MD5 b5f012b510a0d40b875d4b6a9db967fb
BLAKE2b-256 d5d5f11b2e9b9bd9d6dc8da7fd1607ee9f74c79395ee595d15306c0e6a6f0cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f2202f02ff1fab1b870df30ea4d6a91b9522425e08d32e829b7aba6064d3815
MD5 c7af87a309cffb5319109232fe072fdd
BLAKE2b-256 18c07d02c775980795b28b356afb89157dc9611b4ddfb465cb36c0d62c73bd2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d3c7f4c05196f79ee578a24c7fa1a8a2a9b29a50c1b0809f3283dc6bf532aed6
MD5 444f2121bbd6e632e14e6932388f73f0
BLAKE2b-256 d551c923b03aeccf026a621a2e2559dc62baab71c3f1ecaa1026f6565a8cba8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3cb97b3e6bbc387f44ef1198c3289b831e769acb8860c8f061204abdd9befe13
MD5 b63bdc6fb685f8e892b60595bec5dbf1
BLAKE2b-256 8eecad036c09a97b4eac077503e105ddc29c26445684432bff0ffea363a2bc3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a558f335ceeae66f5f66702d1d9cdff3dadb907c668350d78175f5c9f6a2dd2
MD5 4c6f742aefff29a4554aef55c47331ee
BLAKE2b-256 6cb6677c394cfb50ff457dc8f9524e5bacde691f4430a68b74c85b2ab2476cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec2fb8851639c5e7ca990585ea4a37d4d103d187c75518c539f71c913d4b3453
MD5 f47266d105d09bf1522ee31f30d75db2
BLAKE2b-256 22b774c6253072dc081c9b306d3be1864a39082bc41db0a0c27b9f5756ac4062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a9fe3ca8374e40af0e3d548974a8d86d8ff0c53a06299220e675818c18cd5a8
MD5 3ceb02d73401a186f4975349dc8afa4d
BLAKE2b-256 cfa06cdafc12ce67d86333c31a7474736af7486e91c5fa289361ff16cdd00d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f890beaa16d34a9e2036fc8e30e16fb11024124c4a9d0fe60cff75f3ba3821f3
MD5 59e1f06ed05f12222927713f07e8e7c9
BLAKE2b-256 4cb094f4b7e833e6ba418266fb158d4567ae665a3c72ae7cb0b829cd1c1485ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 20e74bd4805b5dafcbc0bf7f646ba2ca2ef0f7f7898d55e82fd8af787fb8af3d
MD5 76c0bec79cf5830f4c5f0c3f5b3830a3
BLAKE2b-256 4f6b88e9f9ae2d0f14fda4426e4eacfcc6edb09a2a0b17dd84e7c53a291fe3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3b571ecfbc99e30072d87b23f232e969a3c8ba07c6a2f0c5b1a5a4dc0903f27
MD5 8c2a06b60ba40aa9f71add89e3b55c3e
BLAKE2b-256 148f42e62b472c30b0db67f3b1ea4913e65bd64f5dec30456421cc1327461e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01f557116ea72db431e98ca117d604d60f64478d6fded0ee1e69d7c0bb5bb93
MD5 2a655ac332e170c4067e815dd2127ba9
BLAKE2b-256 d1f6213cc8adb8d2e24401f1e358060563aec68593366fa14981d947dfdae230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 529bd0858bf2335201c4cc63eb971a6b1b1e4ab0ea852a61db9f57b46ab930ec
MD5 14fddb88db52b91ba243b9af3eb6ad17
BLAKE2b-256 b766a3de642609f9193ffdd7a7b30516a077cc44bcc719b48ff097501bdef646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe637dc602528e7b8f17fe9db2dd7ed7cada6b92976ea3de89840b193545fb25
MD5 f2724d6c0b8fb9990140adced3671ff9
BLAKE2b-256 62615a46c83f9807e47376b53b3fd80adec481e1910adc0d0d42310726b0e22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 016cca43df340e4981857e353a89fcb75154faf505cfa18aa5bbaacf6ab7d0b4
MD5 81df2242a45527fea253b465aeb8e7db
BLAKE2b-256 8f39211f5bc35305ff85b66fb151359eddf9f8b91c909f13bb69d39f204cef77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c0bede2381a833fcc820542aff4e10097f9e9e2536dce252588f15ac868ea086
MD5 25ec02bb9a57775aaf88ed66bb746cc0
BLAKE2b-256 0d20f8ae5021cba7bb2806a319d3354736e4d160e6618cc3ee60047e9b1ce856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a53d116db16d6217718086fe5c79659aaefd14f196053f07da40aa22298a8ae1
MD5 386d162a51301fadc836342a71d406b2
BLAKE2b-256 b1241591f914ba596e70e92d1c160efe471a43dd35f25823d90d29b23a75be43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0b4c51ce695d097300796db90390dd0e5f854a5477ff8a47ea99d746d08b8a
MD5 6c1c39a1818a9604b1b21dc6496a2721
BLAKE2b-256 78b3077713aabe522d9cae41121e248d5e84143aae8b06fcb382cb9961aa5583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63bbc363cf561c1836164614697ce0ba748a0453b1fe192eb71a857e30eaefa4
MD5 eb9c0d0f184191ea0d7aea50b6307504
BLAKE2b-256 8107fa153474da9c01203739cced8d7ecc46f405bc53b0927652b1e6cedb4b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3364deecdb5a9feaa094e4e1cf171dc25d756183b11bb7706adb2e75907578ef
MD5 c811bddcc2f52f2b5b89c497c21c61ec
BLAKE2b-256 9013ed4d1737cd8b8b6beff37c6898b2cc5e551e958a158c1187035d04824829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b28db3f4f1f2bc32e779ebc4cb2f92eca7e7ed5495fdde2aa5337bdd12f71c7
MD5 1f7c603fd3d36c38d865295f3bcff5c0
BLAKE2b-256 32a7c1b3010a2cc143ef71f1bf4cb61fa3a8f9419e1a7da1f350512d970730ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9761359f770dbcc6eeefa7f8c996e3c63e8d38caaa5f08795b9db60222f84cde
MD5 b610059d26e928fa68fd180789776f23
BLAKE2b-256 57da229e6f6ff1856cef1cd46c45fc2a8e4511c75af6c015688bf69cc037172f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec1047ca800e8d3721ee76f29b2ccc3a69c34c0429c127cb42cac6c6a91f66e0
MD5 2b499918a6758f4dc5952a62196e7bac
BLAKE2b-256 02144c56bec3e7de0dde70e8e8d897a2b80b65e677ed905eb909297133ddcadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 214bf95d3c4d41c6b67c1ce4a38a1a1709cee0ba02371ff371e6b2471a264c63
MD5 015199af6455b68cd99f9c1d98ba8ee8
BLAKE2b-256 0f0eb8e49dd4d6b90b285b900ef6f361d7b7cb37bcc024556201530af41f0c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5da5fb2269a327ef1bff3387912de99a49fb64ff1996d697153e894b9fadb04b
MD5 1bf1795fbd256fb7ab30440c22a3a9be
BLAKE2b-256 229c1b42de2e7d5ffcffc491201ec3fe27e93912696a113edb0dc74e25656756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d27b91f38fe5f9d007b234164d84cad5aa95b83b339763d2df1e4337881c4212
MD5 3f922fb99c56e0ae8e90ea7a85ee7477
BLAKE2b-256 5e3fdd96fc697d33ca80c12322a1f48bb6ad3930c3435a7e1d4d292a0877cd5a

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