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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.9.dev4-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.dev4-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.dev4-cp38-cp38-win_amd64.whl (501.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

File metadata

  • Download URL: mecab-python3-1.0.9.dev4.tar.gz
  • Upload date:
  • Size: 78.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for mecab-python3-1.0.9.dev4.tar.gz
Algorithm Hash digest
SHA256 70d4b53a556d780e79e57e1a848891ecea7c3c3eb93d6fd5178c895e6073132f
MD5 16e7d48a7a96c90b9e55fee6f8c9802a
BLAKE2b-256 2ef8ce6226445a3cd71733eb0d66803836e8f27e282d92d335b78d67be02196c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8916cf7b230a1eb0ed33edc020ba64d42c9dbf8ec3f5444542e289c1a09eeb83
MD5 0e09970c55254982383f0e9360dea327
BLAKE2b-256 ac68ea2f4426e679ca7a51983c3eb9770ecf2c432166c247f1ca52fa8d246a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf79f88779df13e181e643c62799d448be7c2138e3c9590043c96ef21faa1c2f
MD5 4560c24efcc70652a4a6da8c7b88858a
BLAKE2b-256 314280a707be5c1e04814289a203dc05d329b3b4fbbcd5b4d5cdba9741dc94bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f80fd2ed99b7926492eb54ea46cac6152b0fd709525b83a4e57b8e05c800015
MD5 536b01d72b792741b91ac0ceac96fd55
BLAKE2b-256 9f977e8b66dacb5f42f1a7df8643f0af420ecca53b28f3419bfed032a85f328d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6525e2d7fdaefd82c16bab8afdbd11fdd2da4bb096b6a09436d754eb62c81cea
MD5 93351dee32a9fa1c573aa2385e6fb581
BLAKE2b-256 f1694ffeb66f6cf26033067e08dbe8aa9bb7b8f674e6efeb878dee10eb9605d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2155065a2c2432a55a88cd22ccc0718317d8cc01b85706a562778d279a34617d
MD5 80cc34fa38ea57548d481e07f23cb350
BLAKE2b-256 4581e3f508969b8942ebd46dd38fbcb3b6eb5393fc36bd003c4dbbb64e727767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1ecc4aedc39c611b37c7b05416ad7f26a907de793efe98e27ac61749db37e6a
MD5 9ca8c26457442b71d498cf2d53fcce41
BLAKE2b-256 7dd54bac590a095a795957f3d38086f05468c2d999ba9afc84a9b33dd0ab01ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e221f3f4491e4410e3d783fc7a3db128a829896a6d2973b5ad5c5c8b520c2e8
MD5 7747f74dbb9a8af78f1e2d24cbe1e33a
BLAKE2b-256 25c466cf8635c1965152ee11b557037a860390fbf3cde03f01230d061e5cde24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03cee417b7943a883d445f68e2bf6f1e82ba5e2298289ada47020d4fe14e2526
MD5 fb452e7517037c9044f5d6128fb95a72
BLAKE2b-256 1f7f1d5265da43e3b216561d89ba1a00abcfb05860a05a336ef981d24d4d2103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e4b229634b1a4a814fb543eba307a0aa464a33bfe2be6895ecb35fe4b6890862
MD5 55d88f5785d9c3baf97718f954d718eb
BLAKE2b-256 0ad5fef289f73f2cb02b343f4261ab4c955ab73dca24785cabd3579964b3817c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22d7a9da25e5dcced369995165b0e811ea36b8e33a1df19659ddaf4aa4101ad0
MD5 8bf5d11bfc012b784f7f6357e7df5f5e
BLAKE2b-256 4d0db3f760d3d42a737fcee6fb248f4ee5728687019a8db464c65b73ed245783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2c73bd8680e2108bc7ead449e41c92da5adb109cb3191b23fc60d0708f23acb
MD5 918481de1a9eece2ee22065be5f7ebf9
BLAKE2b-256 cd803dfa8691746fd2d098db67c8f033294f7f152c59b68f0ef8091915e8f6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfd9fc8c9e7b7186e07b99950e7b8e7e353fc98a3defb159e0735bce3bca5e82
MD5 faa24f4d509b6c518897a6d06b71a464
BLAKE2b-256 43afb00b3317ea4a1088a5b408a8b1a18b27497885f1aac1f5bd6ab905228ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12e74c0cd588b0ebb4db2c8c12fac15822b20f80cb4a175a9a09a15e1dce724d
MD5 d4377d2361f9fd4c23c634b60d5037e7
BLAKE2b-256 7e606d4a56a33ac584b79e9ea77f243fbe73dada15a306e4d2a9c609277d9558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 132f27a894e45bdd989816dd743f4bd421d4698eb653651fce4cc1e46befeb43
MD5 2f66b883d4b3a75f800e54ab6511d6ee
BLAKE2b-256 f0ff7facdb7a1e9c2ee28cc1f07f525507cecfd2293fe9628a26fa0e1dde68f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4b023dc81f2ea902aaa452a507475cc111e35a23fba9f1d853dbc086a3f0418
MD5 d63485e1effa052106e5063f038184c0
BLAKE2b-256 5082587aa505c2350ca47d86c7e634b2827d1059d857d49e956a1adec7dda2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f5e7dcf114f01657331628d4dd2dae41f998c320dce7113642e3af88e6296d8d
MD5 3587d1ee1a9c34d501dafbdf881f40f0
BLAKE2b-256 264fe35b44f5996c0edfd03dbe7ec1f35ec5500ddd2350ee65ec95aa8c0700d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0b7254b7a4b2cc378cdcb08eb06930c67cb51892451427596a938b127b8bed
MD5 934e2e1abc38132f7a5b063778b5808f
BLAKE2b-256 35c36cd293a1c621b59548828111e7f15f1cacb77257343787ae510173be4950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3fd18c5698e0286be4b95cdbb872f26edaf320cacbda5cd2c49de58bc3313e6
MD5 c77998be9efd0e2e518658481ce2916b
BLAKE2b-256 f95846e60a8721452535da9a0a17080d84df2b8f9967f95a90f4370430d6f7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65d3aadfaaea5e1a7c89b657c8d60e560f6bf5a250559dca4c6e23ce7755d0f4
MD5 44614087b3667ca0eba6a0ed52d95078
BLAKE2b-256 24fe347e2afe3c0414e790153a44bbe2a8d86ae5eda3fe1dc5b68961e93d22a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ecfbca2e5486345a522124035d7cde40652a8951957acf414a4977ba471e2ec
MD5 29dfb5da5aa67b1c24a902941a82a937
BLAKE2b-256 053b2b7172f38cf6efda2411a19bb1724735cec3e202dd0c87f55b3c91c4464f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 336ce995bfd8d6344fdfa88e7cfb303bdf7138698007ed18222a268dd1f43923
MD5 115525f1d9463dde3240298940d26eb7
BLAKE2b-256 75342457ba3df87ab8d9afef38e5f73bb7d2b491585cb45c9a31c4c8ae3c0950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c4ff8956d5db4837b9973fd6b429d74da44a533073bd2fa13c0d547b9a8188e
MD5 0827af38644d46420d5b0e52bbc26a46
BLAKE2b-256 41aa1c956248e90656137054ec5c6bb208cc9ef353c530d709d9edf970505c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dd918583d64f9229f48ea03dac53ab248b1c02a88d972ecfadd9f94e62e6a4b
MD5 ad42a5e2f39e4c0356b7cde44c876ab2
BLAKE2b-256 c8a341aacba75a1134f9082f0eb86b9aebb94f239cd21db31aa17b4b9b2d2aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af6c75b7d70af0e53283e55657ea1dc44ef10527c1f1125a08d29a0dec1aaac4
MD5 d8c040df7c1f1c3a298596e0f3254c88
BLAKE2b-256 3762276fa274dda8c466a5fad79213c4f03d7b5271254bf63a426366fcdfc419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c47fbe934d603a93450d622d5ac237fb73d50d3f24754bff1c79a6b175772ce9
MD5 5bdd74558fb6cf298ad819ffc38a9445
BLAKE2b-256 ff45ff89dd71dc9b3b7746f890582b7361bf0eeeed11831d27aacc6f84d6f9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f91c0ae7280d9affd96aa1786cc931cda715efbf335b830c3bbf9128aba91879
MD5 cc2d15354bb6365c69957407e685d25b
BLAKE2b-256 5dc4c26df77bd7ebe2902bfafb21eafb6633f4aa1fcf81e23d2deee7a08a6cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5a4114750612d1b0f7d3b6f7bcfcdd3a9af8531b0f2a5f9192e0e7f958abc715
MD5 3f25416478d1ed70c89040e96ad32394
BLAKE2b-256 c2f8bd86f6ba662e0a34d8a19831052f5368db4a0a2ff285d1c9826942489933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a01834f8f705ee430fa56bcda824b32180b1c0adb886731411978d0244a11c33
MD5 4e6ae629acb939207bf6fd06f8df99f3
BLAKE2b-256 4a6e8209c94080d75e126879aedce749cc61594e96b7af35ff611301168cc82c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17ffa22b775dfee81ea540693afdf9b240ea1ff4b36986d3d62f9f00185fe818
MD5 20c1b2a7f36a022ce5a1ac6e6c1c28dd
BLAKE2b-256 b37bc0ab3af73d91e7faff99984f2133e6f640a6deb55de62c2a601825890409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4104dde52f8c3fef21c69043ec472921781bc8c8232b6404698e94a315d9725b
MD5 2a13178a9b4e8f8bf0247b422d2b8996
BLAKE2b-256 c09b0134f197ac9be8345888714dea90f367a81381168258626e022f5d64bfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.9.dev4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1656c8898f3e97e16a772cbcc9ed1308e3570b3bdc4c24cfd86124f07cc80594
MD5 eba5256b33510c04c7afc3ee2961ab52
BLAKE2b-256 842b99907502e87ee899ba328d246ed296f74c4da60b7edcf962be08d91b54ce

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