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.2a1.tar.gz (108.9 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.2a1-cp38-cp38-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

mecab_python3-1.0.2a1-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.2a1-cp37-cp37m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

mecab_python3-1.0.2a1-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.2a1-cp36-cp36m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

mecab_python3-1.0.2a1-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.2a1-cp35-cp35m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5m

mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

mecab_python3-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl (302.0 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mecab-python3-1.0.2a1.tar.gz
  • Upload date:
  • Size: 108.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab-python3-1.0.2a1.tar.gz
Algorithm Hash digest
SHA256 df0049d5649aba3c94f1dff039e4e75c99a1e7992e9d2b389317d72270cc60cc
MD5 8ec89177dcea142b3352286c955bca83
BLAKE2b-256 3451eb152225893551354fcf05fd96a558ddf8f5a79c371d4f342fb71b5bbfd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 737903779a71b0b60a9cb724bacdbad570e57e89f9914bcff386e6be426fb025
MD5 8224d8877f124d2cb81c20419d5c7830
BLAKE2b-256 bf81058a5162712c004e073990d9a193ff48911456a6584847ec75bb389d5454

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a108da6a97b4fd46faa0f6e6985a6c5d61757705bfdc5199bd97e82e41736dc0
MD5 6e805ec7d892a2a25eae7e24cb0373cc
BLAKE2b-256 1e1ab3c910b615e37eef1b66d8e7e30765d0db882ee3f0e60bf86e66ac418eaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa8eef949059ed777d1ac64cf2a3efc792c5288da887b7c50010b37c15699643
MD5 171cb02f528e5e355281c5de22b35c83
BLAKE2b-256 6aa5f4d68e0b4bbb07da90e859f66eceef8d4f4544202394c9881a7f303b98ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1db5850b18d1cbe07816ca95df9be2962b987659685c6a4c11d0672d8f6c4b9a
MD5 4e987aa884736f17ecd676adbb3a1a0e
BLAKE2b-256 1bc1fe0324481c718d44fb9421a294c55b2e50d3079bfbb6638f0dc24d71c965

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7af05db2ecd37eff850e3666a3ab092c4487e318b04265d13ec8446c7acab57
MD5 9b73f20fbdf6465af120eb51d5ca2e71
BLAKE2b-256 d3b352798a31533dfa7340fb060a9ac1b3d049cde39acf779322b2315467ecb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0e1d0551c60797d75282e85003a954b7630632a00a3a8f598e03d3f8d3fb6397
MD5 16f7b2063e9030af6cead7404e5366a4
BLAKE2b-256 bd8279330891661b4e51477e350d3db0e5f2d0fda04410bd755e320b5db1bd53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 742b63fce3af838e3ba961fd1b766a9fe493f3072a5463b80b332fdb4d9063a5
MD5 5e0fec86c0bf780c7e3b71b7dfd54e19
BLAKE2b-256 cf3a98c55c3ba1feb156a95a1c7c89a3bc41938cb0841216744fcbf9585fe9f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 03c9487f4c2140c95d7e4913ea9660786e6c8ba1a0fbcde66cd28b79288a5fe2
MD5 789eabbc8531dc9b739b5194b3e645ff
BLAKE2b-256 1a52c31a9149635a747ebed6bebdbb677a4100d2c982c41c8e1983fca4c2d5cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aaae7df72b0bcda1f900fdc5776e1f5edee21a7a41181f1ec66963c1eda7e9e5
MD5 999c42143e709ff9999dd37afa21bbbc
BLAKE2b-256 60e9e7cdaf1a024773b79ba9b97a581ecbecbbbd279c42babcfdb072dfc17cf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cdb8bae195bd67000c97f0588cfd75716ae9fffbdf1db720c0b19786d550b64
MD5 66e6c46ab77d1afe5038fcbefc693244
BLAKE2b-256 992694ec4adab54bfed782c902233f163c5190340ed95a161d9426234e2edafa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f52ae43c385b0a49ee720c5f61d97383adbbe11b266f1617f9d50f9fcd0e374
MD5 dea9a60df79be823facc580babc16d62
BLAKE2b-256 c2e8110d29f01535c9783cca61c1ac11adfba69ae7e024dda27bbeb7790c2626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d7e7c5fa565f423ee250478f6bf5b367172de4b837ba53aa4fe9265e0106fd9
MD5 9e9378011ac5ddda7d598b825c6797ca
BLAKE2b-256 1154f0b5e9c4fcd0ebe849fec1f6872001c953df853f2f05f90764b320149fd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3e96ce730e2c17900352cc8fb2e6e77c84ea0427603f41836980030786ba7894
MD5 b2bbf62f0de414934421fa22bf4769be
BLAKE2b-256 cafd0a7db030d41fc807d8c667bb082672f90c8e0ef0535387881134e89c1954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b5a5664187b3a5bc40095295263cd0b17aff150f18157eec16f4c32469a205d
MD5 3b0e03183b6f1e7181cbce5940f4a569
BLAKE2b-256 90a4cda3ee2be671bc2cd3d4549b0ae0b2f9ecf659aa530eb2612ca5773a6570

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78a149d4d938a1769fafd6139d8ad513f8ed914fb9e45ba4458562f8f63ffb6e
MD5 33e87f7244b8153358f31fc73de9544b
BLAKE2b-256 2987346928af33e5ba07be7d2a1c56fe0f2b51a61cac42d97d04b48c70a44eea

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1641c00705aa63d0d51b09322d7b140d377d0f91429d73758e0a28ddeb52dd33
MD5 f14d1bc846908313279840e1f7bc2009
BLAKE2b-256 9b6b69196bd7edcbb2a2e216f4f690cf0827a2716a23162affb89a5045b812a9

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b661298323859edd477460fce1186eaf6a570a3867dc1b63afc05375a1103015
MD5 46f3ee160484c08808f1711b6b4d0155
BLAKE2b-256 a8515e3151be72d5ff4976c50b329015016770b5ede61d0e4e1088b1b9313b00

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 261298026eee6c9a921cdfca80238622f68176244ba6937325a51106638671fd
MD5 f0404ed031f04518172bc441f1aa5fd7
BLAKE2b-256 fb1e64f095b048571e241d85826512376b73e90f88bc0671cebe7bc025145e4a

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b950f008d76dbd647edae74ae8475e85b9c66edb18faeef93b986ff9d399aa93
MD5 aa713487fdedbbc94b82baac1bde7542
BLAKE2b-256 4ddf4fcd396a9735a05a13267d5f367ca92ceff1915f580641f09c8b6254ff00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fa516ce17e01a5dc3247cf11905f3fe775b1ea6f54f2ca58fdbae0103127991
MD5 d3e6d6d9884b43a2cb5ddcf3be57445f
BLAKE2b-256 5f189e699451b239d7e9cec25897ffaea93419e44ed2f38eb35fbf0171c4bfc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 55966f5e8c28f34fbdb1323ec55f22e6844a16bdd98b7f11ead4261d218b9c88
MD5 439a59deae0356860ab9fd2c60f3a5a6
BLAKE2b-256 67a2dc16d50755d11c9c791ab22e11122b4e75a1753556382ab81c93b6bae08b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3546cdd8678f8ea18af8853889a78f524dd6d89d6f0d01aa067aec4acd14ab22
MD5 995d805de4e914cd137bcef4850d1f86
BLAKE2b-256 f41c190e8f0fbaec61baa6905f087a839b1f53604e1dd5504e5bffb27753b9c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 17b962c11905e7e0f5b88dc84e5c1061d74553e2c476176c3e77c88786b2a977
MD5 d6f13f845ac04bb12452654d5e790c0e
BLAKE2b-256 85a35d386be4907cb62ef980958b30aa37e922c46635e8ddb9d810ab8c2bd819

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-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/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 914079a046ca9fd45d87a418017620f70788413e75b2628ee69d83f6ee40a808
MD5 2431bbce7275cd7b77a73a3d84bc72ac
BLAKE2b-256 c2a320e706c37ca2b2588cfc559b3c19ae6c299c335a4f567a450bf70c166b34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c32cf68e6ce7125cb792b39ab682880e42eb9a2fbb9edd10b437e8098c489da
MD5 4ad32c32c67492f356f256f20659ae35
BLAKE2b-256 957afb9a9959ccf17eccbe82e1588e771384e97e6e629a4146a76bd8f33853c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f69579058c18884b5745d7021c4a76655ee755163b73776e61e4136918279128
MD5 9a7235f477b4e196c6a2cdac8516cdbe
BLAKE2b-256 36cf37e29dea3ca6d827d3dde67203aa597348b4b6c9643bbcfa45943e584d1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.3.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61b29759fc151c01d17f472df8524afc20f08b77cc4626784411c6683b42bc44
MD5 87ddeaa2b45e9ccbc155b0479c29ffac
BLAKE2b-256 b3c962eed379a23c88a9920254970c08bffca5cfb22d67b8e0c74372da78f4e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.0 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/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88a670918da1885f50c2c016eaa0c100cfa1bfb9b585eb181ca347390e5709b9
MD5 dc8c1f38c7f8ef2a9a188b67eea7634a
BLAKE2b-256 a4b313986dbe0c6ddf1b14740a5dc72201b0125aac249951c8b6ae3c3c8b22be

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