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 works with Python 3.6 and greater; if you need to use Python 2.7, use v1.0.2.

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 a maintained dictionary, though it's slower than MeCab
  • 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.5.tar.gz (77.6 kB view details)

Uploaded Source

Built Distributions

mecab_python3-1.0.5-cp310-cp310-win_amd64.whl (500.6 kB view details)

Uploaded CPython 3.10Windows x86-64

mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

mecab_python3-1.0.5-cp39-cp39-win_amd64.whl (500.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl (282.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

mecab_python3-1.0.5-cp38-cp38-win_amd64.whl (500.8 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mecab_python3-1.0.5-cp38-cp38-macosx_10_14_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

mecab_python3-1.0.5-cp37-cp37m-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

mecab_python3-1.0.5-cp37-cp37m-macosx_10_14_x86_64.whl (282.7 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

mecab_python3-1.0.5-cp36-cp36m-win_amd64.whl (510.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

mecab_python3-1.0.5-cp36-cp36m-macosx_10_14_x86_64.whl (282.7 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

Details for the file mecab-python3-1.0.5.tar.gz.

File metadata

  • Download URL: mecab-python3-1.0.5.tar.gz
  • Upload date:
  • Size: 77.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab-python3-1.0.5.tar.gz
Algorithm Hash digest
SHA256 e703d78c88a671abb8170351644850015d9bbfab31530a3b40d12481a6779a11
MD5 e204c887966715e19c15520faeb20b91
BLAKE2b-256 c064269b32bc82cf88d6885aa38afcbbb15b5e86f9b58d298223c9b8f29ffc51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 500.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

File hashes

Hashes for mecab_python3-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 644f781de083311fcf81f7d55f21a756ceef7ebae7c111bd50a2c9d0855c1927
MD5 094f961e1ce6b78bac134a80afb77a0b
BLAKE2b-256 1730bd3966d48bc5e8762fd6dcb7dcc82bd536e83e1ee1c556cb5b2122926d5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 581.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fe020df27b249f43df3d38b84473d226e36d6d4a31f951cedbddabfcc450e36
MD5 f054fe5515f824c5dd8d58cd6326bccf
BLAKE2b-256 f4c513ff4fa05b0e50a1d3252f14da171b07ec7a2fce4bbfe8f0e50118cb93f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 560.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf083884116fa05ca0394c4c8d62013a4954fbac414c33a1931906ddf0f3585a
MD5 db75e048695aa3dea91eaa85bc8b6db3
BLAKE2b-256 a8a857fea2e1b9bfc65b57d39bb4c2f14709b287f957035ce76d64a334a6779e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a64bd228704ed9b24da5cbd6c4e325ef22310227153ef481f9037183351aa10
MD5 c381f0f86962245afafac6f4c5d540cf
BLAKE2b-256 4e925c3e8476aee1e350a21f691091523e48d4c278a27d7c4a1a5baebbb240f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 500.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.9

File hashes

Hashes for mecab_python3-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 34a196c6a410e57f975ee077d075ac994b94bb6930b04e207e59e7c7521ecb58
MD5 a9f008e997636efc1a8c1534e4331205
BLAKE2b-256 316b7ab4867103d6c7ed8a6a115c88bbf50da40aec0baade99165c6181bd4e7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 581.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae1c126cf4982035794042280998066c8b6d26eb89136731078d9105a7070c13
MD5 32715ea8258a2b147ed07eb06c30a77e
BLAKE2b-256 c68e96429f1fea986d8f7e7305fe86125270695c5bbbd677095d8d7bec4a7eb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 559.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91e8ac11ef4440418312dd4f1f200f7957fdc0148bb49dc049264c5d07bed527
MD5 2869f94677212f401061dfcac6495ffa
BLAKE2b-256 6871e45c3bd0ed58c7effc3cd29a1f0db91b4a2cfa916256b2d726aa052de729

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 282.9 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for mecab_python3-1.0.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb412a25e485e33d7ab69262b58f7365b727f8c447e4c9c1c56b5fd91414ecd2
MD5 fb26082c7de46658426d5751f972a206
BLAKE2b-256 904afdfd13a6b3180b928ad31e48828c0741615a3d197294b6b05b7f3f688e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 500.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for mecab_python3-1.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4cdb07edbbd508d9b98ac9529e0ff0b89d93e50a6beeb7b8b946439594bf5e01
MD5 600236de1a2e0fcfde96cdbf31c96226
BLAKE2b-256 a18d61f641692551342a17223ed73f4f0c59f2f38440d005337e2ff6bde2f2b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 577.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f299d6ef96495371f5a622a7004a205e303dabba1fc3a7f9a07e741e315ed2b
MD5 63b56111a516c325f46f3f4a58ecfe09
BLAKE2b-256 19d64d67e1a626bd49a90b96108be114b587e94b1743db08643ba6740e3b77cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 555.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76a40f717f9592bd12edc7bcf1fa869f4c8058e5d0b80d4cc6c301435afb1f96
MD5 6e56ef5a5ca07aeef04e61bbf5e20142
BLAKE2b-256 e5995153392ba207b84513b2c956dedd6884d0726f9d71cdc12af94775426b53

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.8 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for mecab_python3-1.0.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 dd8601565dd1331ee5cd67bcc45f713cebc14b730ee2e956ed120a0ec6e4fd8a
MD5 75f5700bd6b0d77ffbfcf36408db42a1
BLAKE2b-256 05e1fa1e8e9f019c6ce44cf660dbf60fa6662b616e45ea93c5910d0964b13d29

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for mecab_python3-1.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8eaaa78227f470c4cf1d6c2a87b92889041f317517fbe65e635b86ea0c84a194
MD5 e6431f1af488a46e9b914a487135f031
BLAKE2b-256 9c228f3866022922638426fc3596ba73693ecc73bb0d1bf4ccf7a08dab39a3b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 574.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e381df4c55f3ec5bccbb5625c65c54ecf982c215574d1102aff2803ac1a24cd
MD5 a771bd96d3297e93b03cc7354df10376
BLAKE2b-256 135a56d895d44629465ea48335aab6e03a291711351b3e72667054eb0c1ee0f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 551.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc8ce0151b973f4ca15e651619264442011568ebe48c6fce51d55e64f7e5c2e1
MD5 08001905c417f9760cc6cc02a2e43a90
BLAKE2b-256 260e620b27f09d64484aa293aa7025cfda639221ef478f552abbea274e74937b

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.7 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for mecab_python3-1.0.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5f91d5d8a9ac0ea7351e5e2423df98dd463b02013e006b18096cd365de37b2a9
MD5 f23477d4e0fbef06a84d9fea494f98b8
BLAKE2b-256 25e4d5de4f622d95a5f49653e49aa4ea2643b0892b864b8010b38030b3ad1e3c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 510.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.8

File hashes

Hashes for mecab_python3-1.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 401a2d1608b6503cb755d7d864ad74b64a7a4346309235f84577de807bb29050
MD5 088cfcbc8afeb5d0d751c22b3f37737a
BLAKE2b-256 9c9ebc747af59b42fdcd69acbce7317a757ae2626d301b2c32a308e8740d6853

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 574.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 644bbde31ab1244ff18fb1dcac1e5fee8121f8b27a5c3e041c01ebc301df9266
MD5 5c7e7d4f7bd05221f99f147b096511a5
BLAKE2b-256 84ed04a20f0d956b573b6eb52adb52ee012574b9715e4a9c52168992a8ed603e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 551.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mecab_python3-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7be2d1cd2ecd1f04b91eb0e26c906f21b50b8526e977f7f01f3901f9a6306944
MD5 c874fd95091fb16897360549c5163a6e
BLAKE2b-256 c4196aa7dc9995110cd8f02c598f1e9be7222d57aaacc1e0ab2e96b5822e0844

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.5-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.5-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 282.7 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.15

File hashes

Hashes for mecab_python3-1.0.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4309a91f0d5b66d3f0e8c9ba5a4d3cf7dbac1334269338704599820e051d1d7f
MD5 885bfa6ccbd4bdc94d1825a94fe9501b
BLAKE2b-256 66bff2164c58ad874383267125e5dd9067fe1e0915b484830237579e6114b9d1

See more details on using hashes here.

Supported by

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