Skip to main content

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 this overview of Japanese tokenizer dictionaries.

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 the Microsoft Visual C++ Redistributable to use MeCab 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).

Release files for mecab-python3 1.0.12

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mecab-python3 1.0.12
File Size Uploaded
mecab_python3-1.0.12.tar.gz 78.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mecab-python3 1.0.12
File
mecab_python3-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
mecab_python3-1.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
mecab_python3-1.0.12-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mecab_python3-1.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
mecab_python3-1.0.12-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mecab_python3-1.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
mecab_python3-1.0.12-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mecab_python3-1.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
mecab_python3-1.0.12-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mecab_python3-1.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
mecab_python3-1.0.12-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mecab_python3-1.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
mecab_python3-1.0.12-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.12-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
mecab_python3-1.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.12-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
mecab_python3-1.0.12-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
mecab_python3-1.0.12-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 22.5 MB

Release files / mecab_python3-1.0.12.tar.gz

Download URL mecab_python3-1.0.12.tar.gz
Size 78.8 kB
Tags Source
SHA-256 checksum
How to use checksums
9aba1e56ef80dd97147dcbf8e3508147af129fb46cec0e432b85f96a9bdaa4b9
BLAKE2b-256 checksum
How to use checksums
fe54d52aebc1a1836778a9a97600304821f3c57d384ef1e5c8787a0c6f2a292d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl
Size 436.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
06bc3043a21db5b2476479ded1e95bc94d79ae730fb212cb70b103ef89a408c8
BLAKE2b-256 checksum
How to use checksums
7ab07dc0f08233ec70132cd2e577d9f57d43364bb72cb32656d9218a108a388e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_x86_64.whl
Size 439.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
04342996c8fc214a942dc39c6768f0a8290a2f1b71f7bcfc51414048e504d265
BLAKE2b-256 checksum
How to use checksums
ad5d5688306d4802ac3e7fe5af8cddf3f087fc4d17afd6ffdabfca5b76113822
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_universal2.whl

Download URL mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_universal2.whl
Size 476.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c9b8158c9ac13fce0a842f1ef590cabb28c1db09db17192e6bdbecd291ff37fc
BLAKE2b-256 checksum
How to use checksums
9311e09a4f7b457a59320f3757ba9fe8248db08324930ad2af0bbc4e460208d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp314-cp314-win_amd64.whl

Download URL mecab_python3-1.0.12-cp314-cp314-win_amd64.whl
Size 513.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c6e433c43e3a28d98ef0d85e89709f47c43e72f5b570687f1aef50cbaa8d4b45
BLAKE2b-256 checksum
How to use checksums
50fe11e6cb53862ca492c17ed45616e0cd07873281abbaccba529647eb0b2117
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 590.4 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f88232df9af6d1773822ede87eb8cd1896ca234a92225ea0b03638a60cfbf289
BLAKE2b-256 checksum
How to use checksums
2ca74309ea9ec9b74bad0ac3e1baaccbea592ebdb2ad99ca426a9f47c3ec4716
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 569.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
019be4838f437b9e4b9cd5e1e615bdcbc2859ed3171fa921f7c6b8fe5222bd25
BLAKE2b-256 checksum
How to use checksums
3736f65f81b59f53aa3fd5e6e7fc990d8e2e8c89b82439a78a7d8c90561e40d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp314-cp314-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp314-cp314-macosx_11_0_arm64.whl
Size 435.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
680ae889c2e9748e980347f21ac04cef30e01624c8b62571c5f999ab6668feea
BLAKE2b-256 checksum
How to use checksums
f858caddb2bd98ca847e6743d280011146d45b13d8cd8e7469402d5fa297e30e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp314-cp314-macosx_10_15_x86_64.whl

Download URL mecab_python3-1.0.12-cp314-cp314-macosx_10_15_x86_64.whl
Size 438.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
7f722a5b88aed9fc4a2f927f6fb4ec0095fbe393119a6070d7d46eea05ce8b69
BLAKE2b-256 checksum
How to use checksums
fe154907d8d5b3ed99cfc191dade0c086b6f0dabe9c5cf62465612d331a310e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp314-cp314-macosx_10_15_universal2.whl

Download URL mecab_python3-1.0.12-cp314-cp314-macosx_10_15_universal2.whl
Size 474.9 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2b9456d1e0b5686d106a1d5839c9e0ac1a05f2e0ff3ff8480119551bd1ca1837
BLAKE2b-256 checksum
How to use checksums
cef5aeb3526cae978264458418f0509638fa1e074f32abdc960f75c6ed33817f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp313-cp313-win_amd64.whl

Download URL mecab_python3-1.0.12-cp313-cp313-win_amd64.whl
Size 502.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ad8508d0bf9827b6ad4b3537d144a1ecbbd6a6841b74430c6b74fe4b8766aa42
BLAKE2b-256 checksum
How to use checksums
e9ff6f63a75ea7983c10dd85d81df696efc1b4edf80731757ab1ccb19777325b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 591.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
34b1dd02bba8f14961539546848f962ecb491517a4b026c46cd9fe393831079d
BLAKE2b-256 checksum
How to use checksums
3e3896f6401b35342831cd96e03c20ae83f53ac25558a5a80cc3b8acb89b6df0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 569.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
078cb752f1601b1ac6d31c20ae561b3dc3ca96893aa8c486655a41527801a6b1
BLAKE2b-256 checksum
How to use checksums
7d755019423fbe1ba00d63b103bb889da8a11463a9d0254cfbf1662963c05a5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp313-cp313-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp313-cp313-macosx_11_0_arm64.whl
Size 435.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9f877382a9e0c8789308c5506d92f5e4138117eebb6b030a87d66318f93030a5
BLAKE2b-256 checksum
How to use checksums
349cd6c4259a2816cd7a24d1efd625b04014a756a9403b9e48c6777ca48d9524
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp313-cp313-macosx_10_13_x86_64.whl

Download URL mecab_python3-1.0.12-cp313-cp313-macosx_10_13_x86_64.whl
Size 438.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
84243d7419fc8ff2f3144a727068720eeda99ac9498b1ec612c5346803436d26
BLAKE2b-256 checksum
How to use checksums
3c742175ffef0eeacc3fe010114e468cb460cebf4c91a8f9784e1ce586bf09ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp313-cp313-macosx_10_13_universal2.whl

Download URL mecab_python3-1.0.12-cp313-cp313-macosx_10_13_universal2.whl
Size 474.7 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
db8757fd214692ffb68c280d46a466f94fdca61c06153d5dd2f9902fd3f69213
BLAKE2b-256 checksum
How to use checksums
e813a9c70656f0c7981476f030ac00967a6bd1e8d2a3b618099fbcf6ea3b2c33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp312-cp312-win_amd64.whl

Download URL mecab_python3-1.0.12-cp312-cp312-win_amd64.whl
Size 502.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ef10b35d580e90a776e2e672fe516f371c48cd0ebeaa4f1e0bcb902e216724ba
BLAKE2b-256 checksum
How to use checksums
4c07c0699f4952e4423a0d192f1709c731202f36de1c86b637738f0c5b0b48fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / mecab_python3-1.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 591.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
dae0605065e9eda6f3aa74dd08c781de7371a447aec3fa6d3e31d7340bd6e5f0
BLAKE2b-256 checksum
How to use checksums
2236d49e077cf95ade987fa72b9afcc84ec5e907d15f1c6b02ec5ba14c7a9cb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 569.3 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2429b3977e62b65cd36f098b6814da427c54afe11da97ca39e85dbad2c0f1342
BLAKE2b-256 checksum
How to use checksums
55d4b2b9faaa87bd219369a5df9296a5711439e6e204428abfbcab69d046905a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp312-cp312-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp312-cp312-macosx_11_0_arm64.whl
Size 435.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ca8591fbb30253df8f283f3c5b7c9fc593c6e290e985a453e9a7b8345f04d0f
BLAKE2b-256 checksum
How to use checksums
e52225aa0467edb84b9285a0620e32407195d56f206610057f93f73dd21be740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp312-cp312-macosx_10_13_x86_64.whl

Download URL mecab_python3-1.0.12-cp312-cp312-macosx_10_13_x86_64.whl
Size 438.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
477d22faac294d7d4acc52966221fc63785f050ce1ca94cc74de42c8b1bbde2e
BLAKE2b-256 checksum
How to use checksums
5e60e6a717cefe9d8051081b5a4b9bdaac1e0022bd9dabad12bc58d202446f7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp312-cp312-macosx_10_13_universal2.whl

Download URL mecab_python3-1.0.12-cp312-cp312-macosx_10_13_universal2.whl
Size 474.6 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
641ad39ecd1cd565019fb5b78e471e7b6baff03958b2c05db5c2f7226cb17750
BLAKE2b-256 checksum
How to use checksums
32ca0f1fff8b2ee98c9a2441da4e52761bb55fdf8cea88e40e72236ce74c5e79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp311-cp311-win_amd64.whl

Download URL mecab_python3-1.0.12-cp311-cp311-win_amd64.whl
Size 501.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
451b19fb0384f114b34e9cdcb1fb168922a94b3051c2c8bba605e0620d1ff533
BLAKE2b-256 checksum
How to use checksums
c80f1675d5b9924e490012fe498aa876ba16c7e02fc0bb9c3c0037d92dd1310a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / mecab_python3-1.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 589.1 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
864fa2dabc4dda605e89314c03aef060548bb3758acd079f898148eda11a0497
BLAKE2b-256 checksum
How to use checksums
c7b891a4ef5c366e747bd6fe074f556dbe30efa97e8fb43a623255d1707dd27c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 567.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ea46700f967b9d72e3e9e4c3b0c2cd34d180fdd5b524b57967adbc61c667a5ce
BLAKE2b-256 checksum
How to use checksums
33cea469e11f29235e3bfdad774e4b4d0511968ff5b5ed4cf4bb228218cf86f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp311-cp311-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp311-cp311-macosx_11_0_arm64.whl
Size 434.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c0c87d9524884412c1f43d801bb605311072463315dc40a5e12f2c0c7e1d24c
BLAKE2b-256 checksum
How to use checksums
0fb6bdfb82039169c59f1d2bacede6a856f929ee97c69844f09902123ab6e361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl
Size 438.5 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0e35d0b395cf5c2bb157fabecdda94e0547feb55cb27636bac9a4838525bf692
BLAKE2b-256 checksum
How to use checksums
385129ca8fbdb0c9b3bf60f3e2a3bf0cab974228c11c01c2d57a5a71f86167bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp311-cp311-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.12-cp311-cp311-macosx_10_9_universal2.whl
Size 475.1 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
fe7ead7d73bce63ee4d173eeb7242ab946d3f2b7e9604c1a99e47fafa4c0f568
BLAKE2b-256 checksum
How to use checksums
b49d81763267aff891f229118e529fc71df91a586eaaebc806bbf43b2c41077e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp310-cp310-win_amd64.whl

Download URL mecab_python3-1.0.12-cp310-cp310-win_amd64.whl
Size 501.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
47c42624e8a406562bab1d9f8ae514bc7761a50c2cd2d6d1ff7101299c406998
BLAKE2b-256 checksum
How to use checksums
d89b6ad5ed4d96f0f5ffb6077b54c179b0303effd7fa19d268368658787687ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / mecab_python3-1.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 582.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8654e3bce320800b19bb14683db77f7184bcab5f23023827bab97804591ca6a0
BLAKE2b-256 checksum
How to use checksums
eb3dff0ececd09018495946b30ed69fb9d33269c5bbb71042a091632c45ce5bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 560.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
572eb9ba804c71964d999cfcaf2bc3add7d7629522f088e6509c434b8c6686aa
BLAKE2b-256 checksum
How to use checksums
f9f343ffc8b757eb4b9d9fe6c0f339ca11eda0f8d12cf2a2df11aee808b8fbac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp310-cp310-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp310-cp310-macosx_11_0_arm64.whl
Size 434.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
13dba27126d1ab8fec64f58256eec74bf3006e9e12db9bbbe8ced0a418af9527
BLAKE2b-256 checksum
How to use checksums
7b7c44b21c639b8de8f2236ff1c0610a4cc5e940f24b9b9044d46b11250bfa4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl
Size 438.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
89da9bf5ed89e00fbcb05cd76379d792c508095abda876bf411facb113a4eeb9
BLAKE2b-256 checksum
How to use checksums
ff0a3fd9855e45d6b3b530d6ed2182062ea707aab8fd2cf3227c73dccd7903a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp310-cp310-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.12-cp310-cp310-macosx_10_9_universal2.whl
Size 475.0 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
276a49fa86f68e49e4b09f66173217b863601bb146c7348b010060a4c10bdb00
BLAKE2b-256 checksum
How to use checksums
1ba71d017526be61def79485878f3f30b98c1429ec75a9de66e581bbee38a7b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp39-cp39-win_amd64.whl

Download URL mecab_python3-1.0.12-cp39-cp39-win_amd64.whl
Size 501.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f72f3186dd9687124eeccdf194611c7cad0214fbe75fe3e2d5bce0c4e737b646
BLAKE2b-256 checksum
How to use checksums
76564597b2a7f94ebc0874db0690bf25381edc375755030599e5e0b8889e8e66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.13

Release files / mecab_python3-1.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 581.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a04ed083b66aea30727a4a566e1f0fe4f80fef4dc79a6578630d64f6217c2b78
BLAKE2b-256 checksum
How to use checksums
011ee83c19cc6ca2a439e9dd7c6f39523f084c2c0736a90bd23bf843f294f098
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 560.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
71fe4c53dd9412e99731a0c502b12e97ed41745c672e44e90b1bc74b20f8a7ed
BLAKE2b-256 checksum
How to use checksums
c344c216ee4c01afddc38e1984fff1ed34665e2312cbba71c2b274a14d56cea1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp39-cp39-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp39-cp39-macosx_11_0_arm64.whl
Size 434.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d9ff388b1b4a53d3d386baf1e4e2b81d9f0c857ab4b36676340b9230bd777d9e
BLAKE2b-256 checksum
How to use checksums
39a945b8bd35b7033af9e1b60080fcba728f218a3af600737a647af5580d5189
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl
Size 438.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
39eada926c332701ae63f92026d66b09681fbbf03b755ed12045ef6f842ffb90
BLAKE2b-256 checksum
How to use checksums
f0bb48ecfc75bc74c2d63a313b2420607e96367c7292b25fb4e64670ddd8af84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp39-cp39-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.12-cp39-cp39-macosx_10_9_universal2.whl
Size 475.0 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e2b1466efec243c66d654e129dc6ddb60bea753ba27678c85ea6a7d7d8ee9052
BLAKE2b-256 checksum
How to use checksums
0ba5225c95b4b0796dabac2fa5247b706bbec97b8bc6d5dd14205ac9918e0552
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp38-cp38-win_amd64.whl

Download URL mecab_python3-1.0.12-cp38-cp38-win_amd64.whl
Size 501.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
5ccde52cef4036c6b8937b756e1c6e2ec27f407119c91ad8472ec118297173ba
BLAKE2b-256 checksum
How to use checksums
c8bd48599072a0e02e1e22782d43d46a3cb4396d491e3bd38707eacdd68075d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.10

Release files / mecab_python3-1.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL mecab_python3-1.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 577.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d36b8bd105955324f6c2f5c2b8a7ef5ab45cbb9d28e1e6973ef6e4c0ec5737fd
BLAKE2b-256 checksum
How to use checksums
06c89f8c689fa27da5a498af2599fdb94ddb32e19361c4d8d88c8b987f3db3e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL mecab_python3-1.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 555.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e0aa7125401e023022670dab10afb8d8b8b330917bab3e08d810e2739e9d045c
BLAKE2b-256 checksum
How to use checksums
74d142d5a53ee61865a99f472444bb66ae95c24dedd9ff0ae56986a2d651d836
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.0

Release files / mecab_python3-1.0.12-cp38-cp38-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.12-cp38-cp38-macosx_11_0_arm64.whl
Size 434.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
714cf895fd1a779c220ecef9ecd26835e76821f22e9d728ac565eb0e79b63228
BLAKE2b-256 checksum
How to use checksums
9cb86f3b3c221459c09ca6e31bf7a9aa6e579f68dfc323f0f87369f9d4acf0cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp38-cp38-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.12-cp38-cp38-macosx_10_9_x86_64.whl
Size 438.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b6d9ddff92332c275e9b3a48df605026832fe5a8e94a9befc8a717e2c6396a39
BLAKE2b-256 checksum
How to use checksums
826edf80814e69a18df3c0602f0546919a36455d002c753b960019901deafba0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / mecab_python3-1.0.12-cp38-cp38-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.12-cp38-cp38-macosx_10_9_universal2.whl
Size 474.9 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0f2cf15876461b290e261ca845ec20892a9cd30b7db20bee67ae7d96e93a63e0
BLAKE2b-256 checksum
How to use checksums
08e252400736f3ec10c1e2dfdfa771d28658e3702f3fed418de31296fa06cf4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release history Release notifications | RSS feed

This release

1.0.12 This release

46 release files

1.0.9

35 release files

1.0.8

29 release files

1.0.7

23 release files

1.0.5

21 release files

1.0.4

17 release files

1.0.2

35 release files

1.0.0

33 release files

0.996.1

1 release file

0.7

1 release file

0.6

1 release file

0.5

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page