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.12.dev1.tar.gz (78.8 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.12.dev1-cp314-cp314-win_amd64.whl (513.9 kB view details)

Uploaded CPython 3.14Windows x86-64

mecab_python3-1.0.12.dev1-cp313-cp313-win_amd64.whl (502.7 kB view details)

Uploaded CPython 3.13Windows x86-64

mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (569.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp313-cp313-macosx_11_0_arm64.whl (435.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_universal2.whl (474.7 kB view details)

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

mecab_python3-1.0.12.dev1-cp312-cp312-win_amd64.whl (502.7 kB view details)

Uploaded CPython 3.12Windows x86-64

mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (591.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (569.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp312-cp312-macosx_11_0_arm64.whl (435.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_universal2.whl (474.7 kB view details)

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

mecab_python3-1.0.12.dev1-cp311-cp311-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mecab_python3-1.0.12.dev1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (589.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (567.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp311-cp311-macosx_11_0_arm64.whl (434.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp311-cp311-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mecab_python3-1.0.12.dev1-cp311-cp311-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev1-cp310-cp310-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.12.dev1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (582.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (560.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp310-cp310-macosx_11_0_arm64.whl (434.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp310-cp310-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mecab_python3-1.0.12.dev1-cp310-cp310-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev1-cp39-cp39-win_amd64.whl (501.8 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.12.dev1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (560.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp39-cp39-macosx_11_0_arm64.whl (435.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp39-cp39-macosx_10_9_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.12.dev1-cp39-cp39-macosx_10_9_universal2.whl (475.1 kB view details)

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

mecab_python3-1.0.12.dev1-cp38-cp38-win_amd64.whl (501.9 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.12.dev1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (555.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.12.dev1-cp38-cp38-macosx_11_0_arm64.whl (434.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mecab_python3-1.0.12.dev1-cp38-cp38-macosx_10_9_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.12.dev1-cp38-cp38-macosx_10_9_universal2.whl (475.0 kB view details)

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

mecab_python3-1.0.12.dev1-cp37-cp37m-macosx_10_9_x86_64.whl (438.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.12.dev1-cp36-cp36m-macosx_10_9_x86_64.whl (437.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file mecab_python3-1.0.12.dev1.tar.gz.

File metadata

  • Download URL: mecab_python3-1.0.12.dev1.tar.gz
  • Upload date:
  • Size: 78.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for mecab_python3-1.0.12.dev1.tar.gz
Algorithm Hash digest
SHA256 9a52e5c1db7d04fd868a8d750ed267dd0afa69b86c88aa24f1e0ad5ba413cb96
MD5 124b8590519806c4eff2b35386da2ae3
BLAKE2b-256 e9246e1e99851d652535a64d2cd8d22c4b11255bb64e3b80c12d29739eaf4971

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af2a7615bd548c30c9199bbe84d05754a88400386d821e920d5218cde51a3f9c
MD5 6710f72de826bcded271aa1e2271ca9a
BLAKE2b-256 9f361edd1368b641cfddbcb47e2cea28e6294e906aa28985f946e949f30633e0

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67125fd516a6c04d76da88feb76049fc9b54116d00b88a00563b444299231512
MD5 da5b7d8a78574c00a38704f474d75452
BLAKE2b-256 663e7eda418bc17e7388a767d69c3aa86c8b3fb020c54f06e71438cb0976b3ad

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0af6fb1eaa24fe73ab3ac8718523510e1e24f47dac51e7668ff37e4d4c8f6b3a
MD5 f97924ccf51bec6c6a97d4f3987c4bcb
BLAKE2b-256 a928e7a8c92f33aa074fc70e33b404ecabca209ad2772c29f158b02364ea0a6c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9bf1cab4dacfd230336bb24c6bd35a93ac1012697fa20e326e8b7881c72dc89c
MD5 d1c6127bbfe3ebdfbedea67297b5f5bb
BLAKE2b-256 b22c5b68ae6f582ff999f614573239136eab670e1a5b31f031271538ff9a6072

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87784687a10106d2b5fd490cf3a3553ae1537b40ec310bc810be573ab8f12e47
MD5 224ab208830a458bf7c9fbebe93afb15
BLAKE2b-256 2d40096274d2df2849a01df31645ff32abf2a241cef19c849a6f3ca42a0de5eb

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 76b4d3eb1fce1438dd35906f5f50e9bafc0fe157d460a967bda2f0cc9b2adf37
MD5 2ece374481479f096c15d29758b30084
BLAKE2b-256 e19a8ccedab80243721f1745605e467fd74e537164a9d2481355122238c5a538

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6705d07399ae62128e51503d3014a704054f5b93130f25fef3a286b09b20e816
MD5 b84c883ad38b46e9c2886107954b5a51
BLAKE2b-256 4c16038c2965b896b5fcacba0e59ecc2ee44ef017d35522fbaaebaf643d4a469

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cbd7288a83d98a698383141011071f969026e8362b30948ea3abcb0f0dc83b29
MD5 b4830013ea023cc5f8cdcc2dfb6f3f64
BLAKE2b-256 83e953fdfcb117f1c1a02a1f56f1634f55fb03b9b4c88625e575948e9447ae8c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d45e467f84fa74b5167e35f04114f1520a9df4ff43b9c0d8d2a0bb9ed0e96662
MD5 56b29fb0c6bbdbc64bf050303a5d2bbe
BLAKE2b-256 5b32eb969665d1380785a8c6faddff985a2b777ad7858ff97b9f4b3eaea4a363

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1c11e4f3776064ac092c5fe548747052485b873129b7f13e79e3bd1366814438
MD5 66cc799184262a2b0cefa52372c39f6c
BLAKE2b-256 79d1b7790d4a6c90a425654ec352eb0058b8d52f88ecf3bf3a11c6b135870ddc

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f17d6ccf824b6df41a86aca5f33b429d82bd00bc7b98cc81f9355989eaf7db0
MD5 b2b4006601aa0708dfa04a664b2fae20
BLAKE2b-256 99deae49095dec3345b41ebf6c4494f16c0d55bbd4eb635642b08590606cd9a8

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 774c1fb71f1f41437b01ce1d900c943d8e58830896e840da91cfe804c5c167f2
MD5 e201d6a4df1e26e43b91291386ed9793
BLAKE2b-256 25e39d72d1ff4087402fd860c9f42fb2049affb86ee6a5fb49b096e5fc6c1575

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 846a9d207ed41be669184b1f1a520ec9a442c4f2751a99cf3c1982d63fa3a5d8
MD5 bb1a26c68561ecac48f71ab065fdf4a4
BLAKE2b-256 42810193b514be8f493e5391315fe334c0b92adc48b57d2476529728af44f6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 402ba69dfda67ee80c61242887148370ed9cd4df4a8a899a380cdd30618cbe46
MD5 7a04467df466fbe9c4591d1abdff6c41
BLAKE2b-256 f94a98d68992e52dda2b8a4d8fe87bbb54715d05127e5cd393f34eb77aa62c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d457e18e348ce402d18875bbdd973c7382bdac9e454328e6fec1937c46a630fb
MD5 72923de767a8ea2b816c7d6eab81d03d
BLAKE2b-256 5c8862f331db74403f080ee19f177c26aee86a3c718da00d1da45c101589488b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 19618842ba0aa8d95c75d72c542b12fdd95960521ab86ec4b55c2091e1efa681
MD5 62eb7bc8869b955cafc482c7e95da9e9
BLAKE2b-256 55216180d954799665eff85701ca8150f0ec458e4ac03894e7742fb4f9d01fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f543169a158426c4a04f9bd35e338079b1d6c6a109c4cf69fffb22eebfc173
MD5 1e8128f1783c3f9e0648b46732857e6d
BLAKE2b-256 20b4325a2cce697d96de46c8ae5b81167f423359912a0ed9712d41a283146337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f800769a971ea01cba90540ce90ae510998d6527ba5d08f35adb847dc04c04e
MD5 e58ac712b60a83b8d5087995bf8bb189
BLAKE2b-256 758a36ca5f90ec8a50d438318d0c77a05f963708c02b8c96b231135e98612c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4388b1af72dee31db469f5f96c4650ed0e3da96e74b296a5104e1c5d3cfdbf53
MD5 ef9386b610084c216cffe0b07991705c
BLAKE2b-256 950dd9b7edea3b190e996033b805e2d9fb4b639c50df4d172e0f8585dd9ccc0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5aa3751f4ef842243ca8e4f3de49cf4004409250764e3ed91b8e85a504f2d2ab
MD5 2bbd9e43d5b17c69d55a7e01213f834d
BLAKE2b-256 2d1977d825ce1fc755d0ea05dbd7767a78a4fdd02df834fb6d9b7ddbcda3c707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e008f1d441a8e65d74b402829d1af5430110024cc7370b33f601babf5826226a
MD5 43b7b1611069035186a096f43ab414fe
BLAKE2b-256 288b229eb14747d77452c2d38c6f637c978b9c3d01ccae5bca738422f0da338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5a415dd75c7fde564fd12cb59559829446b2876a4ccbf1bcfa81d85711ae613d
MD5 81c64969ac2defb546cad989590a9981
BLAKE2b-256 726587ef8448ca74c9d4d1011b7d09d57a48fd1e77e2022ec2a45812131f6c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a5b33cdf4a8cbf6033c08f9857ce4e80375383630cffbc1633f72299fbfda25
MD5 839c6a8af60f0dfd8b678c797e280cfa
BLAKE2b-256 7068339c469aa139efb41e35e966e351be338b0ed8a2fedf07e642177ffaf217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac999e096a3dcf43ac9f461179ae654fcd2ece84f86dd927c3a866ccce0628fa
MD5 6b7b26c8882af2d3e4808af19294aaae
BLAKE2b-256 8ebaa85fa529226a60a0ace8cfe6f32c1606e37d43bf6ecef3f08d167d6770ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b233e2b8278ef997bb8529c3d1710845b986f5c7b87560b728715ff0425dd446
MD5 e3bccecf22267aa28020dbb4e306f4ca
BLAKE2b-256 8c1d3c969beb790d39557b58204af6424cc1461adf2270280645f3647f4317f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3a42103c068b8c57a205eba6d973fe9321a5686b89c67fa9e7e9a0eb4ef7e92
MD5 d6a63d7e826e9e0b48df680c9559067e
BLAKE2b-256 23126bb6aeaf6ffb34bcd47e41ce1ecd09a5c6927d2c456a530d587822a809dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6018afc9542734cc84c3608ff2ad62abcb8e8b4e7f4d58d5313e5747106960df
MD5 b8ac5456f674dc9b2e3030decf0b3c7f
BLAKE2b-256 5dd7ce82b57d871d912371c10eef8693b0bb61b8eda91662395741960ad6e06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 12963bb77b3c2dcb98207672ba4a25563d30b24b946214b60875e5156e302ba8
MD5 e16d281765d097a59a0640e11b06e4fa
BLAKE2b-256 7e6784e2a156bb1efecd9d03a983ae052b22816a1508f3b3c482be8fb3954359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f958056bea822abadde09d5e8b0019da91a015840ab01fe6150a7c80756755e1
MD5 200909d6659c9e8c13d9de3447e43de0
BLAKE2b-256 f4034c8c34668bcf3d5d4941a6d48c2353dd62b9555ebbcc2b28c9af633e0c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9a60e72d568a4b0350955c16d0560e7f1bb928ba53aa12a76d3f47133532b4b
MD5 8e0f2592458bec064bba58c635189e02
BLAKE2b-256 d4544b81fab540f2f8a85529817fde75409344c356a6883a2142c19c5653033b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1d11326c0de10c0585b52fd31c6ea61684429469026a0429a5d4235e8b9ff2cb
MD5 a15d90b2fb4f485d6b1632588f9b9664
BLAKE2b-256 799e3455ec7d4e4942859c4a3bf9cb0ba5a320cde6400ac9e2a63e729b52a2a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e2fa0582ae7e3d4dfab33e99bc25be09c83782b52bcde6812e10d0f53077a18
MD5 55cdd43a9f10ae6227db211628a32ff9
BLAKE2b-256 d70140f0785b4397729e82a02f0c6971c3536566c6c2445eff87186ccebb2509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 312868ac54057e394ef20e5e12a08c9e5ee22fd66ac9a8888d1c6cb891395a33
MD5 1865e5bf3d74a404b3d140078fa178be
BLAKE2b-256 97234efc9cfb1a961d139dfb7d082bcf7ea644d942c1dd053cfd1e5253c48b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3b2e8cd177da126226f493416259a00117b653c3f60b74b5a11454064353f981
MD5 4b37889f37feee3fe0752e78e8ae26c8
BLAKE2b-256 3791003b61019adcdf8eedcef8830cf2436abd6e1b0643aa7cbd33ae69b3b79f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2bc5c8dd0cbcd12bc861aa35797b6aa27edc4a73243a31c6180485f8ca34c90
MD5 846e7c2b581593692b42a72337cf89fd
BLAKE2b-256 e1bbc0603ee8a6af175fc4fd8dbe6eb5e730171651d2d122a7d0b417081a5b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d270fbdab23b8c551fa5293979ea90c79bbbba04f4f4a3d4616a91e02001062
MD5 b55e0de3e478aa89eae8a81ea02268ac
BLAKE2b-256 938dec0e8dbdeee7873535d6b89d3be940bb7e9028385ef8351b5e45f32edfe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 487b8d2ad2d94303a5a8c78deae718528c18a2e083597a9e4d21c99637b4342a
MD5 adbccb5bb1baa8eab00cfbc97339e784
BLAKE2b-256 f81695e81c6a37c2ebfbaeeaf291c8b6e8f9180818ff314abaf8ee257f1ff124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e619a7ad0752be5ddafc031713e7c974679e9ff5b3fca86318b3214ae6abdef
MD5 66e56d3c31141a299d67cfb0fa6da625
BLAKE2b-256 b82fb3dcbdd158aaf635edba114087a8982fdf37603e551c52b17caa29baa063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mecab_python3-1.0.12.dev1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33af64d094a9b9dfbad8eb75c9bbb7f5b9adb4388203f77434797ab6ef265ef5
MD5 71a4c80173217209e0bd5c8b4bf482a1
BLAKE2b-256 04ddc8515021e4d0489b13c52a53734920fc02cb99b0b3957a5f455a816351ec

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