Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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).

Release files for mecab-python3 1.0.9.dev3

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.9.dev3
File Size Uploaded
mecab-python3-1.0.9.dev3.tar.gz 78.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mecab-python3 1.0.9.dev3
File
mecab_python3-1.0.9.dev3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mecab_python3-1.0.9.dev3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.9.dev3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
mecab_python3-1.0.9.dev3-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.9.dev3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.9.dev3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
mecab_python3-1.0.9.dev3-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.9.dev3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.9.dev3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
mecab_python3-1.0.9.dev3-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.9.dev3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.9.dev3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
mecab_python3-1.0.9.dev3-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
mecab_python3-1.0.9.dev3-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 15.6 MB

Release files / mecab-python3-1.0.9.dev3.tar.gz

Download URL mecab-python3-1.0.9.dev3.tar.gz
Size 78.6 kB
Tags Source
SHA-256 checksum
How to use checksums
341c7543e5ca89dc66ef1c9a306ed84988129067acc3b28f5ba1dfafd81c3bb2
BLAKE2b-256 checksum
How to use checksums
edf5f3173eee809b0e3f440b93167a80580a362eb0b5e9ed5e7b195e88a3a2ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp312-cp312-win_amd64.whl

Download URL mecab_python3-1.0.9.dev3-cp312-cp312-win_amd64.whl
Size 501.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
620f59f4d40620110a5cd00849b1d12f6a4d9051b128d8ba9ba0d6c4906c62f4
BLAKE2b-256 checksum
How to use checksums
6a5861895d5f9fe7d0739f3f000f3bc91452ddaae09277c3a3b00dd8df84c7a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-win_amd64.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-win_amd64.whl
Size 500.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
dccdc4fd5034354d4af4fd018b0e03bd511a3bc26b062d61808a333e6e066f27
BLAKE2b-256 checksum
How to use checksums
3b4d99f1899622c7ebc6965dea958f75c4db124f3ad32b73126e353ded26923e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 588.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e5cf3b8d0389986307ffa2c1b1ad5b6c102ee982cdbb54ecdf859a9d86ee6087
BLAKE2b-256 checksum
How to use checksums
d620bd84aaff2deb9851c8fc03a26646a164d181c45c489ec63339d18fdb22d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 567.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
daaacefdc226b07e4cc1771f5e6dd5470c4c24ceaaa2abec06402d0c7c1ed9b6
BLAKE2b-256 checksum
How to use checksums
cf245cbc4dc2f6688237db054bc01abebced11df90582586ded7ad2f7164bcfe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-macosx_11_0_arm64.whl
Size 510.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0414491cd5fdab0dded38cece3cb470cf9a66e8e272f2825c59b991a056b7e6b
BLAKE2b-256 checksum
How to use checksums
d905984b87ba9e39b3a5c506531a9ef9dbc09baa3d3f9c35bee8bd36a16eccce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_x86_64.whl
Size 513.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9afdea11d4e17d20d48a999f75a83dc8315ff33893ce9bcf558f79c2d2da1538
BLAKE2b-256 checksum
How to use checksums
9ad42047d595f25fce59a795cd308e9072038749666a95038ffa69100e28ebf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.9.dev3-cp311-cp311-macosx_10_9_universal2.whl
Size 553.2 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a62bbb7e4c2ef2d8553cc7f7be12940705eb2caa98c4cb5d17471e81dd5ef106
BLAKE2b-256 checksum
How to use checksums
9ad2de993f9b86626098043a9770227ed9924b12529460d025e4b28a8f90f080
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-win_amd64.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-win_amd64.whl
Size 500.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ce46a385861976518a3b8f436dab1bccecca047cd13e85bf137b71f97384c33c
BLAKE2b-256 checksum
How to use checksums
a1ec223f804a2481dd4b32e6b697f4fa38020ea2e6427899af53188249110386
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.11

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 581.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5d2ea2860302e57646f50a5c38460218901edfb1b979cea92017c493dd9bcfaa
BLAKE2b-256 checksum
How to use checksums
86885edf414cf8fb5568726796fbc692dc8b35634b594fc49954f735a3559485
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 560.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8ed9a87245b2c3f3cda37174d9ad24b48685eb9636a14cc04cf7d1f8f10eb95b
BLAKE2b-256 checksum
How to use checksums
8079a20ded4368d8925610978e45047b163b447f0e1f078cc796e2acd8dc71b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-macosx_11_0_arm64.whl
Size 510.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ba2a5814da44d620bfc0c09db25e5a9ec98695a72d847fa4a32c8afaab9174a
BLAKE2b-256 checksum
How to use checksums
5c5161df6c260c6d2b788bcbffc44d9c85570c7cc25e573d059443788984dae4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_x86_64.whl
Size 513.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3b5f8d2fb147134750ba6f8092c42622ec3af17597f0fd2ce5a10a6ef109f4af
BLAKE2b-256 checksum
How to use checksums
f02ebba026d9c34ec7846f57a65eedc85ab32adf87b2e5bfd7fde110f96304fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.9.dev3-cp310-cp310-macosx_10_9_universal2.whl
Size 553.2 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1b2e1f5a844e5465a470726eff361954df15a6e921b2370f9c65d1856c4cd17c
BLAKE2b-256 checksum
How to use checksums
f4e077293479d97b1b7eb4c26117668e0da81cc104003b56c29dd6d77310f3d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-win_amd64.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-win_amd64.whl
Size 501.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f7172ad298b9e44153c37b186e80eadd020bf077606bd3c27070e25708da47d0
BLAKE2b-256 checksum
How to use checksums
b1fb17ccb7c8bf3e4e3a3b64ad65ba5de0437cfa06b48aa4d2b00ace0e0ebaa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.13

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 581.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c30a8b7a050cdf5a5b4e3648e9fb99be7f0644bcde607cecc73c02936eba543d
BLAKE2b-256 checksum
How to use checksums
12fc064751d194e108ded1547881d729467007c24be95b12aa944081d4b11330
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 560.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2a40f478dc64f2c9e146d5d979797208f3e66d20ef7a4463816576f803b74294
BLAKE2b-256 checksum
How to use checksums
6b023f575490f43497396df4be6098f614515f96bb7903ae46c38f9835cf05f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-macosx_11_0_arm64.whl
Size 510.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c76e8c4473ad40672353411c0348b35f9865be8982eb7d60a10eda09ab32702
BLAKE2b-256 checksum
How to use checksums
5c1f421d1b1e6a034109b8a1c8730c3291715b203a531325a6b046b2459c106f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_x86_64.whl
Size 513.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
32b403786c01480799cd6b3d6f8dc974deb583313d2d732329e5688174ffa0a1
BLAKE2b-256 checksum
How to use checksums
55c087e2e26528a4e26781f39425bb3543c668ee9a0c1ae6ca039cf0dd3aa546
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.9.dev3-cp39-cp39-macosx_10_9_universal2.whl
Size 553.1 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
420fb6c4378e5c53d9be7e7860f2c36339bd44553957acb6949e51e3f71fb806
BLAKE2b-256 checksum
How to use checksums
f0b03b0653ea94374cab54f0f38a1214eca3212ee0f0ffa66379718509a7b20f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-win_amd64.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-win_amd64.whl
Size 501.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e5fcbcefefc5b63da9f7efbe158efe0396ba454dc8bbd003433aa074d6723fba
BLAKE2b-256 checksum
How to use checksums
59ee32b78075ef8a6843cb0af2430669fadad161ffc3125280b8866e2fd38c10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 577.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fd269ed8567ed6283aa7ac8d7fde2c5da13e25bf2fddce5c9413dfc13431ad5f
BLAKE2b-256 checksum
How to use checksums
da37f767794bcff31821f0f56c66b69ad583cdc0507ca2b0efa134d367022070
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 555.2 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a2af5f3b157737340fd72e0f4de4d7f6c8d146735bc767a67d690a3c51898f21
BLAKE2b-256 checksum
How to use checksums
8e08d3617b87a6c667dc74c0ad37ed8dd83c508ebec674e033cf8481685d6183
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-macosx_11_0_arm64.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-macosx_11_0_arm64.whl
Size 510.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cb5dd6b22d5eb0bd91ef540ec002ce70c2398a455deecc4b439cf5b40c6160f9
BLAKE2b-256 checksum
How to use checksums
ed83b486ee92a05e619ed3c876cf98703a088049fc8754ee9fbf446b25515064
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_x86_64.whl
Size 513.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b1e9408d7332b9ae699c02cb55114c9cdd733c9b8bc3f5d237d6a6b922b57bf5
BLAKE2b-256 checksum
How to use checksums
854f71b1b2d031ff92a1caaa0a210e196d26548519fa08983df6e4ef36ef431a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_universal2.whl

Download URL mecab_python3-1.0.9.dev3-cp38-cp38-macosx_10_9_universal2.whl
Size 553.4 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a5c36986a8e9fc46a0821f5c40fc2501394fb2323632a37f16b6b42c797a571b
BLAKE2b-256 checksum
How to use checksums
27a87e39ff59891a424921457c1c57c0b3213e329b21ee26ebe0dd269c80e671
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 575.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e57952622c3aaf1fa24fe6dbc307f0ec85b8785c4538ce035ea72adbb67db49
BLAKE2b-256 checksum
How to use checksums
ae02b34d0227de8f6d3f2c52f8db7989f4b7db389f1d950bff1fbc161457feff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL mecab_python3-1.0.9.dev3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 551.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
68e85363702abed5f8e2b8bb3a14f4c8c25602cb89d9a64b1e86a69f96729d30
BLAKE2b-256 checksum
How to use checksums
2e3b24d2d1fee05c769ba688be6ad58ab7362849f4c8188868c00006446cf28e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.1

Release files / mecab_python3-1.0.9.dev3-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp37-cp37m-macosx_10_9_x86_64.whl
Size 513.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ed33d28787989ed79ad5be4e07bc35a0d357cce90bfd9c8ae9a467c6feae5add
BLAKE2b-256 checksum
How to use checksums
5497703a4d000936b8bf190f7f6b0b5bd74220909706d40a7a7b75c910a4c7ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release files / mecab_python3-1.0.9.dev3-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL mecab_python3-1.0.9.dev3-cp36-cp36m-macosx_10_9_x86_64.whl
Size 513.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d2e371f0e0af84a439eeef572f636a53057dc3cbf0f95f9d2cdc9759a50600a4
BLAKE2b-256 checksum
How to use checksums
bde192b4bf5cf0b5de43afb86fb4de5875ddc654d26f3eaf232f4862e4302908
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.12.0

Release history Release notifications | RSS feed

1.0.9

35 release files

This release

1.0.9.dev3 This release

30 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