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.10.tar.gz (78.7 kB view details)

Uploaded Source

Built Distributions

mecab_python3-1.0.10-cp313-cp313-win_amd64.whl (503.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp313-cp313-macosx_11_0_arm64.whl (484.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

mecab_python3-1.0.10-cp313-cp313-macosx_10_13_universal2.whl (523.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

mecab_python3-1.0.10-cp312-cp312-win_amd64.whl (503.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp312-cp312-macosx_11_0_arm64.whl (484.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

mecab_python3-1.0.10-cp312-cp312-macosx_10_13_universal2.whl (523.8 kB view details)

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

mecab_python3-1.0.10-cp311-cp311-win_amd64.whl (502.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (588.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp311-cp311-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mecab_python3-1.0.10-cp311-cp311-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.10-cp310-cp310-win_amd64.whl (502.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp310-cp310-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mecab_python3-1.0.10-cp310-cp310-macosx_10_9_universal2.whl (524.2 kB view details)

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

mecab_python3-1.0.10-cp39-cp39-win_amd64.whl (502.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp39-cp39-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp39-cp39-macosx_10_9_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mecab_python3-1.0.10-cp39-cp39-macosx_10_9_universal2.whl (524.2 kB view details)

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

mecab_python3-1.0.10-cp38-cp38-win_amd64.whl (502.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.10-cp38-cp38-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mecab_python3-1.0.10-cp38-cp38-macosx_10_9_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mecab_python3-1.0.10-cp38-cp38-macosx_10_9_universal2.whl (524.3 kB view details)

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

mecab_python3-1.0.10-cp37-cp37m-macosx_10_9_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mecab_python3-1.0.10-cp36-cp36m-macosx_10_9_x86_64.whl (487.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file mecab_python3-1.0.10.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.10.tar.gz
  • Upload date:
  • Size: 78.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for mecab_python3-1.0.10.tar.gz
Algorithm Hash digest
SHA256 21cd4416043e9a993fcfb986dde93e4366a07543dd95849b5ef2e50c9a9afcce
MD5 23dd6b79279e34d6f68b45c55fa3be61
BLAKE2b-256 00dfeeb4e250fc0a69b0a2deed5573f2c8d8445cf643cb9ecf25674f8186880f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3528ef81cc4c9506ae3b273958fe2314aa1022a8db64640e631e09fd3e1af97b
MD5 ae0c84a347b2b424b1d486f7629daf24
BLAKE2b-256 cde2c752bc635c21fc45a02844e52bb61799f93c5cef4292ea5a252e11818093

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bd7b86dd39a068dadf06ba8dd717ec1defb2cea181c5cbc6c54b1adb6dd0d4b
MD5 4ff6443775e0e3fca0252aee2addea1e
BLAKE2b-256 8d995bb828c0aeb3f02657f237304aab296526aa5463fe4f6c23c3008d536478

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 894d87d708545314359cfd1b062238c2756d8f985b4c3fe7cabdf111f533a367
MD5 2ffe9d6099c0a8ee413b02a844421694
BLAKE2b-256 7dee2772cb0ba2fff59504c7ed715da626187c0f115542953f76e035531d040e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b90261aa514f29c6e05bd99717a02eeb9be3d7ea0a0be01f65ce0d86c572c68
MD5 e212ee1eda3e283a1203f5f97e6e1be4
BLAKE2b-256 8106c132d772cf14b9ec5dd94eba03dfef2aad8db14ec9c614a3717ef657b877

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1cc4e90d23b57e1ea4bf0ecc57cf7cdbc432164398b67ad113256bc20ed52154
MD5 acf3e56899b89d2892791bbf0e7ab53e
BLAKE2b-256 718298c753089eb42793ada8b92b4f616cdf004637fe61f77eb81adbe12cf274

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 711ee9a7ba27aa6988b580951671e5966d7b9aa16cae453d17a5e149d295941c
MD5 1ce8ce06ee5eddafa3ca7e9cf570d963
BLAKE2b-256 5216750ae35344f62497d4b894ae49941ebfb4ea6166219e39349dc51e16e238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 308cbec46e426d53bde1f97a95ea655d3e6fcababe0c444dd74c9d3f8105a179
MD5 2c7604528824ee35895b34a7eccc68ae
BLAKE2b-256 dd1f5f01f355d7eb959cbad63743d2d475b854d3b1a264926e40b92f233ca17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2953a3e53fa269f2e1b109de3a55fc7668e9e566f0340a69c2202a37f0447691
MD5 3af3ecf3d3dd0102cfd952b2219623f6
BLAKE2b-256 b065579514a5d178e6eb9c695daace47f0f807e7286882771bbb840ac89db660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d9ff1c7a7ec4f42c98d74db71bc9b1d513db4cf676a023665ae40197f2da040
MD5 563aaa0f071d60e4a63ea1bfc39b4e55
BLAKE2b-256 43b7d978455fd39b026cdc592f8f137ae90c33f66617f7f724ee966a2d9dbb9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 134e2c68a783f545bc8373601469d017a13d9b7cac46d243ec1bbfb2c94639a3
MD5 050b2bf66ee05ca8be27b516e5e25c41
BLAKE2b-256 f1130379d4e98c16c167dc4b3a277f9c96c4743ea33597512370e52a47c727f1

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7fa96813dca31ad1517a1c5921b5620713fdefea072795ec9de31425fcf2c4e1
MD5 302e69bb77dd7c45f95186d823f01f32
BLAKE2b-256 db150ab350c455bab548c7c427f0f3b8b208416234238ef02248b065c01103da

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.10-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fb21b38fea3da3a3c893b6af34f9d34e4846c30f7d2f76fe58beee195963fbf3
MD5 7bc0f49a536136da9629bcd5920bf22b
BLAKE2b-256 4afcf953fee2281e0a07097746cf7e8d65db4c8fef1cc802d592698d5eaea0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1eca068650d9f228072820ce015eb5831b9114afe6cc0f381208eaa2e1f23f0f
MD5 2e56f0b8207d44c7bb5570dc6c6f4365
BLAKE2b-256 356a8a5270ab60b5abdb50b80ce74eddef9f0e2413a337736149c4247d070b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da59058da7459457f14382ddb6a2bb4a80176d0dcfa3eb835c53abd11e5aa97d
MD5 75aa55370cba0cbb10769d4958402cdf
BLAKE2b-256 be16d11439668399742f0d2db99468073c125c138018ffe6541b92989116cb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01c1123fb64fb67d29e7221a9cba36b589b795683bd94e762d87385a9633de95
MD5 e7c5bea5689d991f3c9397af1efb3990
BLAKE2b-256 bf6237009633618b1f375c8405c86b07cefb57d835da5caefe76e8fb1a47330c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eed9b626a82eb26e571e45832b7c03b46e250e57c70d7309aa0c28c0fb95d47
MD5 b656d49a9d80705f0f5047815f1ac5f7
BLAKE2b-256 eeeb9625aec931274c334281a295cfac613306a8e0a3a5ec02cc4bede3d27842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d66bbda223e64bf1eb320809b5d7e21fc6b045ccc14e07232d8592dd40b1a29
MD5 1c1db912e44f1f2bee602ac87bb50266
BLAKE2b-256 01ece02b957dbbe88646f1c0b270349803d568b7e1c00c406b4845492dcfa89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ebc8bbdb7e0c616e1467b02cadc3c7a764912dec241b31a14c90b1c1ac58afc8
MD5 8ed0fb7e596005eb483b76f87ab82c75
BLAKE2b-256 16f4250b48eeb97d91e68abbd19c2d4004d94f5a0dc2da5a4cd3f1b7f89e6971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63cd0a65835257a1fcb88f25a6eaf1a8e472990a9d3f7d08300c5cccf8973931
MD5 5996b7f8aacae42a5a48ec9798fbef59
BLAKE2b-256 6fa1a6faf184ca7870815aa665ee4aea65310042ca4541c4b1ec79f9fa8ed17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 069c176c02b6bec3fdc9e00c42138dc77ef4b683908b6909808bc7528d2996bc
MD5 2fac308387581f3c1e68e939d67b5554
BLAKE2b-256 23e6dd1d502e7473acdd8eb0171cf4f631c9dfb6e05520e0ce4936abe2e19e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a2924d9ee1a7eefe0601edf16d2b63c5519e3403b319cfc9d1eda4bf978f6d9
MD5 872fae0fc1af0afc1b368fd4913da685
BLAKE2b-256 4311d185e233f5fc0d25ba2d4197fc5f0531616f8d58b944f87adf608baddf33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e487498dc7231926230944ad04e40406d23499240fd35273d8d2c4f775dcc162
MD5 96b92d27397ee1b015c9a4b76a1ac83e
BLAKE2b-256 6723f01909d734a1fcd4214b508bc0726e8b2b814ef98b6d22c73a9e2b0d7810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1acb9f47108170a43549637f3f45449c7018d56e91ca5fc8ad56bbcd8288848c
MD5 7f28a57035c369c9525715808348906e
BLAKE2b-256 acd32662462d3acafafdf25d304369b566b73ac78f7ce37ab6ffbeb419d0923d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ddeeb7e40348066cbcf980dffa19bc84e087bb0fb452ce149defc11747f52f85
MD5 74ca6d663043ab6056f48e63d640d5f6
BLAKE2b-256 482bea98eae4f2c461d78560a6fa51dca13b2d3a6df9417779831bf883b27e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f93201fa2c4d7e03b3cc25ffd52a8c4ee207db874258d5143ece8b457e22a885
MD5 2b5245947b6ecbdabf073391dc19edd2
BLAKE2b-256 bb24bd977ff9edcb04bb615aecbc6ba5f216a0ea01562757833d1bad59498594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bd723e757d321135d38ab383639c148e20eb65468517398fff26eb89344d0b5
MD5 4c4cff8774ab2066b0870c70b270219c
BLAKE2b-256 f7446f4ca640405d0ccba907c5e7616638ab5a8f8b23497bdb05308f8d80615d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f30f4cca5992c7c5ac3767d6e21c235d02104eb11b94b60361494509a72d92a5
MD5 2e7fde5a2708f1480588667f9a1328cd
BLAKE2b-256 1a87f97bf8d3e89744b94343518747428f04039cceaa70ba46cd27d904dff2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b6845fb4bf4771018a10a6c455dc4cb3e0590c8ac55d25cddfe85138a72bbd2
MD5 d26ca126add86d5c5ad24533da633b04
BLAKE2b-256 d50a76a6d85d1cae8ae1a3f4f2851fb4bb707fbbc78b56fffb944cab0886dc29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c45dd85ee584326d23e1ec4d6d4c23ac39e88e5bc0442b4e81b178c59d1c148
MD5 c5a643b191ddbd0b4eeb7f831422014a
BLAKE2b-256 b8cec4ebff6b189336d3fdbbd8f722a5afa95b48951bf99830221c5e4e99fb54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c72f1c4c582f7f86aa9454694719e7873f80830e300df0d71f6b38ff9c0f94ea
MD5 1eb097867710a9291a0b78c888b22d5e
BLAKE2b-256 ea6f48221a2598a210199049bd59fb3c5a23c8ceb6d929063b5c02b104aa8dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9af3ef731dfbd1f0a97f4a91ebfea2454dc3e8fa9e42423912eb6628f2acdfec
MD5 e31a92ee724fb7a0ebfe041c67928ffc
BLAKE2b-256 1d9e72676158c580994ff4ea0e43a05ceaf60e756c24d857ffcb1ff8f9471279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a20e0c94bb24e36ec73d1e6ae91608cd913174f8aa1d8195b218d2d77aeb3ccc
MD5 a006cc5bc4058a54fc139dc51b05452c
BLAKE2b-256 af3d3d6cb8465dd2a74ae2d3305d3afb48f5b58a62f853c1a17dce15e810e5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82c175f1ae970b3baa3589e29f3946a1a83b76a48245ea103558abdbfb3398b1
MD5 08b73be9f97d64a39099ac55c9cf6a9f
BLAKE2b-256 e56c4ef875c558d92983281733a7ba07e75d836d17341c46a9728533628e5df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d16cf163c9fe568a42a31e99a60cdaa97d76124d04a8daa2bb2b93f18d08107
MD5 363018b4579d9d6ed1096d63288c5839
BLAKE2b-256 da4b136eee26a17e34d3141c8d505814393d26155d5f7c0bdac429c5da52f7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06f9259bd2ffb4a71e99712ea845b579674a2be7b245b88b03f28a390ab13dea
MD5 38e3c330226115148af0451e939bf895
BLAKE2b-256 f13eaeb9c995fb348dcb1d88839bd6b1ae1644f8d60079f9228a69565c540e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9666fa3e116768d81c3d20f13bb05daf8a474919312cc5239180ed6f5c318e80
MD5 f1c882621a486a2d86d6c4193eef0594
BLAKE2b-256 8bb59a797b2c3ae0e462a337a77beecac3cd0cc5b2a6ef0162d76bd3d3968085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e385987f2ef3f617ee87bf2ca555e10c468c156c71bfcac7182202df261f4d2
MD5 08738f57964fb3862d8723d8edfca85f
BLAKE2b-256 6bac848773ab00e600476f0c262b2225315c75d8cb52a860e348b12f9f68771f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7da20d1ede231645e2be96a202f15419cb508b4b21f3c466bc5848f5956af27
MD5 bc920ba71122766652826bd6fc3fbf6f
BLAKE2b-256 117691700a301b2c541c3ae247f8fac7d43c098fe503e5d1d69462bc8e0f2c2e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page