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, as well as Python 2.7.

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 an internal (statically linked) copy of the MeCab library, but not 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

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 libray
  • 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.2a3.tar.gz (108.6 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.2a3-cp39-cp39-win_amd64.whl (509.9 kB view details)

Uploaded CPython 3.9Windows x86-64

mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp39-cp39-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9

mecab_python3-1.0.2a3-cp39-cp39-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9

mecab_python3-1.0.2a3-cp39-cp39-macosx_10_9_x86_64.whl (302.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mecab_python3-1.0.2a3-cp38-cp38-win_amd64.whl (509.9 kB view details)

Uploaded CPython 3.8Windows x86-64

mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp38-cp38-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8

mecab_python3-1.0.2a3-cp38-cp38-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.8

mecab_python3-1.0.2a3-cp38-cp38-macosx_10_9_x86_64.whl (303.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.2a3-cp37-cp37m-win_amd64.whl (509.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m

mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m

mecab_python3-1.0.2a3-cp37-cp37m-macosx_10_9_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.2a3-cp36-cp36m-win_amd64.whl (509.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m

mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m

mecab_python3-1.0.2a3-cp36-cp36m-macosx_10_9_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

mecab_python3-1.0.2a3-cp35-cp35m-win_amd64.whl (509.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mu

mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7mu

mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7m

mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7m

mecab_python3-1.0.2a3-cp27-cp27m-macosx_10_9_x86_64.whl (302.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file mecab-python3-1.0.2a3.tar.gz.

File metadata

  • Download URL: mecab-python3-1.0.2a3.tar.gz
  • Upload date:
  • Size: 108.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab-python3-1.0.2a3.tar.gz
Algorithm Hash digest
SHA256 08ae574001ce9cf8202a96796fcd3694cf7a03a7f0136c9ed087fe6737584149
MD5 9f9f9845cdb3dc6fe10988f1b9311178
BLAKE2b-256 2c83d846c488362ad2af5279e9c80aace11746dba6b4bb7ddb17292ae29ba25c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.6

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 737557b0df3b09da0705569d8d9e3412c522ac742176954fb6a492b7d0ede8bf
MD5 49ad625817f9e3b458846dc48f2f3bbf
BLAKE2b-256 1e641bf51e6527319cf757fd0fb14017d0c1892df1a3bb8d6e4b37f8f04e2f91

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eef416380f3d54a7abedd21423f7a5974e0ef6adbaf658a2bb69cd08e802863c
MD5 c1d457cce93cb1668d1c60bf03884fd7
BLAKE2b-256 87fa69c56f57cdc49458f7df9e4b54081b8d2fb4ec1759e291228eb6fb1de006

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 af16343a88b4a132725f75a1766dae3774db90d5bf61648cfc5dc1dc98828a14
MD5 e78db0c519ae4dc6d10cc1c288e9d629
BLAKE2b-256 11f8032a04617e1f020c597f06039633fdf50092516f7ecc1794422f0c7a541d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9919f36b2f1141e96123fb4172d2dcb422f3671525f62c73dc0a7ed1674cbde0
MD5 26277da002ef25cb195903034c7435c2
BLAKE2b-256 20707d30e0276c679e0e7137f52ffd8fc8916749260e2ffddb1de8f47a58589c

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c409e306e267b117868e718505112901b1ee5a99f2b5c4ae0edcc7f033f96cf
MD5 68629910edb4ca2b939c2071f94a1650
BLAKE2b-256 7ed5f1bdae2d0bbe40d7bf954d9e3f558cffba1f43ee97465ed56aa57445a7a1

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd4c35614fb40527bf37e74e88943b1f1fa428c31e82c23409971b84a62ec5e1
MD5 a6016bd30cc514d79dd0207f6008f6d2
BLAKE2b-256 6426e52c31708cde000ea5d16d49e446bc75ba289c9c7191843ec7615e2e1c1a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 509.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.6

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3fb002ca3787b78e814dcb07f33d0fadb8652d8627f9954d15a4757c0f6230be
MD5 75a73d92e29836c8b9ccc7e2a218a7e6
BLAKE2b-256 5ddbca426b8b524a074f13e463cfe95f33e3693b683c9e2231267eb28358cf47

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3661a9d41bf31a8ea2ada8839632407cedf81acef834ef489a1f8c636b51f123
MD5 55e8e67beab73f60b7aaaa854552f3bc
BLAKE2b-256 163791a92291ced1041020d349181c4517a74a4149a7f81c2a840f8e9827267f

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8bb10650a31eea67f0369155784249adfcdb5d668eb7ed0d9de9fcefb961693
MD5 c062da09aacbce6e4a5c77a0a8fc9e3e
BLAKE2b-256 cc53fb21f88285dd737eace51bc4d17a24ff448c24f2d44f6712f9dd666c1cc0

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0b6eacab28c18d49346db8e39c5cded073a062ab67bffd4c660e88025d74f57
MD5 5b957c28cccce19231d216ac950f83c6
BLAKE2b-256 5987a1cdcd041cdd05016c5ad8b562e09003564dd03030ae6b5c9cfec9f34c1d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d2b40839af99750af4289bad4ddf8764132077091418d7b6914f0f26119e84a
MD5 769d1ec99be0988d62bf00393a0ebc99
BLAKE2b-256 7dbd8e7be6e6a179d8a183740a80de9a17010657c4f86bc2c7909f67cbcf9fa1

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb206aa0c03a76686d1f271bceed681680fd108bfa8660a1b5c44484ee8685a8
MD5 6b72f83b80f817a485ea68e2a1eaad77
BLAKE2b-256 16d72e8420404c50b83d9b08172d1861dce7c5b1d623c67adb9ab1700724be49

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 509.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.6

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bae4264a3a62a06ab424604d0c9475b0b8f7281fe843da5f43eac8582bbd5237
MD5 400d9fa7dbdd04ee71a2da6f21f69f5e
BLAKE2b-256 9a3644a6f5d50089ab03b9d0591f8465df9a1715cea73c89f2d5fdff5cbae4ff

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a8dc3b2d45d91e417af33de0778c982a389f4489d7cd5a822a7ee6535049b1d
MD5 32b605fef5d1dd1a816eab8f5708b373
BLAKE2b-256 261b1535716e7954a5e5fb02ef405141205288a29c67261f1be0ce0f8bb6d3b7

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9fe68065b5fa076c39d34193aa47167bac369e8f9b10b9eb124ad650215c1190
MD5 e2f2fdf7a27f13fcfa05aba71cea4b80
BLAKE2b-256 1bf78b5f4a73df8ce3289f2024140f0fc8868ec9c9016a2f3272be7bb0aac04e

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d22a55cb572b5a9a221c897b33c6063690b5e04364743339da6c62a20a85d01e
MD5 18ef98311361bec9347882c8e2a70818
BLAKE2b-256 6422d48719af7efbfe5b15e5625d1294da9be566d1c0946da0c0d4b3e634f3b6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 17fbefb09bf13d2fa27d2e94d3d11f5c6590faf28cc6ab45ea6c9ae4db61befe
MD5 702c8b1785dc29d058edeeb4947935c9
BLAKE2b-256 96e43e3a8e9bc88ec36cad667b2c2e51d5cd310b5370863ca5649c8fb5fa7473

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b42790018ac476d80d27418866ecf0a9678144f4b377142a595fa3aba5f0f73
MD5 9c9ff9d67b4120fe9aa1e0bab69ba45b
BLAKE2b-256 e500b7ba044d4929cd65783c03cc9ac0522753db0c1db251fb657b413dbc989d

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 509.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.6

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 197557dc75fab657108e99fb22bea462c4cbedba9dc480dbf2519a72033ae80d
MD5 a455e107119c327e6989476cfc67056d
BLAKE2b-256 726c1109c7a612a94155a5e7a2093299ac75884052c6de7420a8966426de42a7

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ce44d3adca6dbf73d3eeff9474512668d3cbcb7511d9e125ff4b9544b8a40122
MD5 76d2b0c4cc641a61b4104790c1eff9bd
BLAKE2b-256 34a1e4830b3fd36b8736e7371745b1321315f6de3f33c0102f5f1e49044bcd1a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b2cad97670609fc6250146c16717609e9c2fca86fc8fd001beeeed6d65942fe3
MD5 bb3b29600984949e9c227ea21180d7b0
BLAKE2b-256 b8299bd7c828d67fb0952443600fbb0e21df8cf2c88e28c3b9709380e2ab30c6

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1660cb8fc250a7cc9835d347e34df959ccfe6447110321cce4818f53e0eaeea
MD5 b259835133f3c374c7d383c589063baa
BLAKE2b-256 ece505481f7db8865262e084e4d888e924506e8011705bce46423ee505c6e1ff

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f57e9eeac9aa3a6bd5ecc27c29f079f74def884c4aa7482d62db8aeb90c4eb9b
MD5 7797fe90dcbfeef6b727de97ccd2036c
BLAKE2b-256 dfb6899eb27ae9675be98aa28000612b546212e97b547bf7903b36b0b5733dbe

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba62edffb4f74f83735cf7d08c23793a75d2844a4da8065e30c7d1afe73aae50
MD5 cca75da4df9b214a00f42312b0b13dec
BLAKE2b-256 7439889a9defcc5a6109bdb41610ce9eb236bebdb0d35cddaadff4196d97ba23

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 509.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.6

File hashes

Hashes for mecab_python3-1.0.2a3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 82af6e05c6208cb1d371829bc6d6f277bedc97034c4d0631ae4975da7347598e
MD5 e9eb52a37294199c1922ece007a92c0e
BLAKE2b-256 8d0f1cdc7e05216bbd61c5ec8dda01059ffb6fa5ee5926917509fabef93c7208

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6e49615cce45637651cff97d2e01b56c08187b2d06cdee3c99f49a061c4c8319
MD5 4a22dcea838e1fbe1614af0b28c376db
BLAKE2b-256 b314c557353681c82a60ae83128dfeb1e6e876c5d39aaa27e5f684a4d9d96f3b

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbee7f0b547824547564b4c2ea6e62b76708ca423093505391b051711ac0de97
MD5 a3808e101c8f699eadc5ca005aca9325
BLAKE2b-256 7cfdc08fa3b0fcbb8c0c54e70aa1f9718910291d20772e32ba2e89ecf4ff8a41

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c991a07c49d8b4ffc78d5fd94fb0ea77de8c1c7b4ff6d5a9256f4fb4b76a2ab5
MD5 fa7240db31b3dec1363b91052d1006ac
BLAKE2b-256 fbde74db7f67fdd23a2d24dfff5108d6ca626e9e8ba5d42c32bda20a77d90491

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c944d42430881849530f1cf121c8267fd5b8b21ad52b5d3f73104afcdd4b5ff1
MD5 9099b0f427d6dab01932523166a8a752
BLAKE2b-256 27ebacbb7a983798eee06f0fc23d70a4a98aa40b67bcbc1ab3a93608acec7568

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bc5f08d20469cd8e7f7bd3433318a4e24d3b4b2c94499c7ab373b159846ebcc
MD5 1afd09ffc4c4241b2ad5525510899f76
BLAKE2b-256 c9d431805b856569f94813f63741eb121709c7cd10f09bae116fdee698202614

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b1d39649f5356737c322fd7b668e95b347756fa95b1b8bb10b200a92dc5e08d
MD5 89657e0fa5b28ce0e0c03e8c3bb1b0ee
BLAKE2b-256 6b6b574856eacc91694d8b2ab3c0756dd1dd1c9aae6628e5b35935f7f6a78128

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a85379181fb2536dfbe362b29ce9c70244a2d8b3390ed0a542d8689b695a60f
MD5 dca0eaccc347b5f3f6e5e3f01549c97b
BLAKE2b-256 dc537e8e240d9cacd199c5c2fea44148157ed1e2d697bc2bf18bb7825cf9f19a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.9

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1febd00e996365ef0614b885b291186070395326912e415cbeadde7bf7eba939
MD5 2108b1753874cab11c37000ffb913378
BLAKE2b-256 7075de154b22d740032ab5d2fb8f09b9256daf95fe17b65913959d9ed814c8e3

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a3-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a3-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.1 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2d3a8aebe68e30f789a08074c924f60eb8c57e4fb3265f2604e13973e6682d1
MD5 26915511e454cd74e5b2ec413987515b
BLAKE2b-256 52172e2934fa4cbec4e600daf7b7969b160389bc8925d7cdf4037e895295d0b9

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