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.2a2.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.2a2-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.2a2-cp38-cp38-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

mecab_python3-1.0.2a2-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.2a2.tar.gz.

File metadata

  • Download URL: mecab-python3-1.0.2a2.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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab-python3-1.0.2a2.tar.gz
Algorithm Hash digest
SHA256 39889d072abda2cf0b18b9aef8005c5908494659e1395a1a647ed8d305235360
MD5 1c1a4bbff1d0fac56b50f365f59c7a02
BLAKE2b-256 8a17f064871f38ec84e672b86a5ab64cc105bc60df4f74ffd6135b81ab1043e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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.2a2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a219467d989fe83d4f7b04a22d3cc855f74e01d2a4bb1ded4d196cc2b77fb3c9
MD5 781eded29ce6dc6e671d9334aee814a6
BLAKE2b-256 35fb34eea723e415dbf03dc1f548ce5bd2f19240b832f194aa26205ba531233d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ec187ee251ef617e5a50c15702f43580f77a0566f229c97f733b6933fbb53710
MD5 dc75d100bd26cc5971df209b700ffe8a
BLAKE2b-256 9b8fa908c865f6ff6c19bf1f2735aabc9f251024f6c97c34812a051b29fd096d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 011c23679660b4d5731dfa375989663d721e010252695e6434fed78b629e7c48
MD5 ba778572ee59f7cfaa28ada3d0fad865
BLAKE2b-256 7a999a1ac7365256e0a7b65acd8bc6f360fea4586ef41e8c8d8e6ec85b1134bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a69b3a1bf43cbf95912806d5960924084343a6e1974f3eefd56a66c5ad84b994
MD5 3cc47b8898ad47cd6384cb92ea8a8d5e
BLAKE2b-256 c75b7ec3f0593c5cfc1ae57d856528e0af292421f9b28ebc28c04f3d94d2ab32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4827885cd6d746203b242f14df06c5f27b37338c4d5e4da45c40014aca9dfe32
MD5 79e75f10051d43e29570201943f78ab1
BLAKE2b-256 334e886679c2f57f659d591f8cca2cc13b8e919dbde40192f2ca9bb4df4bb2c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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.2a2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84961140362e6b0298146d592a8e008ff15b1526e633c59cdf8eb06254b3d8ff
MD5 1942e005d9a0f698c349063f3a873a69
BLAKE2b-256 de31bae0ea04f4770c6ba58eadf74a2dd1818874171c3dab2fe32886287f4daa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fc65d74c9c0ecbb9ed3479aff4dbabf144c5e8d5e57aae7f3bf5b3c7a4559f35
MD5 4d335caeb54d436a225bc42f7d1bcba1
BLAKE2b-256 49bcaa2eb02b33a8aaa43cce1ce83a5671bdf90caf1f45312c9763e0f3c069a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34ee2e27e84ee2a3585b41a2d5069ad018f14f03487bcd750719f944d8bc4fee
MD5 9d0dff262de5bd36c47211aab97536e9
BLAKE2b-256 260ea47a2b600631d73381f192b8dc5c5b66806da669cca65fe0700638b42d20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb33146beef919eaa1b93946405ea3811463f81dfdeb40ab5fcb64ce817149e0
MD5 01db04c358f15a34edbf879009ed59e3
BLAKE2b-256 101a3a90f183fae8dedb79a42b3fb17180e79a0f9fd3b3d5b3e388d66874ea1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc9c98a4e52646db0d31dbb8a7c38c56c605695e1a772e671336dde2aa4f0d2b
MD5 0b828898781dc2de050de980c1d140ee
BLAKE2b-256 c63baab1e23846f70fac1bc5455f32eb54a53fe9449687664a6a7ebf81a30a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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.2a2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f80083c04282960fbfd9a1068b7059fdb46c723a8f22a176296fb6a6063d553c
MD5 23109cb63bbc82ac3a5713452a1bf2bd
BLAKE2b-256 c4cbac822111e75f6a19c5bf2d60af7efa883b58cbe49fb8f18122f0800cc758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 95e987c0f093c6f76f855edbd7357a5dd47fb11780e8943a8ac11f7bbcc09022
MD5 1850093af9ca351e6ab13c77bbf02c4a
BLAKE2b-256 21e7971eea40c884fd4a855ad272d85dea48e08ea8d4ff4c12fb3a3f7fd8e3b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9f78c1f2e25b77995c17de8515af5fbfb4f843eee6ce80b746423686b0dafcf
MD5 029b1047e39de60cc0a6999c6e5b816c
BLAKE2b-256 606c0d35c38b41aa3849a1d0cb15189bd5f78f86b25cd918df86d932fbf88378

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ce358f1c821cfd635734484c32f7db5cb9c9a12ee198f72348596a039fc2ddd
MD5 d729c6e5e4262c8955af1637308ab0ea
BLAKE2b-256 0ccc6adad7cd5f815367c4302327aa7eb21b29d7491505ef2d275506fd05c98d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 293325904f6684160067d9699f7482ae446747aac571a1223bea48c9f93b0f03
MD5 e3b8cec439c800fa9d99344e63944e44
BLAKE2b-256 0ef74a21cf5cb5c2f29db15b9378fc25a1fba9e199ea024d658e512d00463a8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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.2a2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2af2c1a78af5ed8049772d8fb2a6e65fd31912b31e2c3952241645f1d6891d08
MD5 447ebefc7622b41c70b921b62630110f
BLAKE2b-256 a5fba7854f19800992ea05a49d2b1aaf6b24244bd310d8249aec5e3b75cec510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c3d3b040d3f3c52ae36d2bacb8ef49b8996b13013a661cdf15b383380d66a83b
MD5 640998cb98d30be0884fa9459826367e
BLAKE2b-256 b3a5763f8c9403ff29add2177b9a4a0f230d13a740df1618660fb33f0e8e39b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef07c9645ee6e055a64d2f9a67afe8b15cacc8d394924d50e740bf1c83c3c4da
MD5 cb6b9beb62954bd3a54746f0ec5e6f78
BLAKE2b-256 c50d405a25c93808b12756a2a6c60e4ed25fbb17cae7da2766a52342e25e5110

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fac5badb4b2f48b41cc0bff2de66ff6506eb6709d498178b04bb8ec9bcbef1c7
MD5 19a83f3692091a3f67efbb5864380371
BLAKE2b-256 a2e00b706d9d84d01efc6060304eac0de38b3ee737d8d07bb46047c139be6996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 21c4ff8e5d0075ee09a862171e7882c1f976ace826204583f9d0335a82698833
MD5 3bd4e6d949a07e1e6f239cdaa2460c85
BLAKE2b-256 e20f64b135c4c944421e6b87f46f54e22c7c2e8fb49e2c02cf32f5abcae1b8fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a086a23ebfeb015b14f95bbb670dd896ee3ee8398c07e3757feb05ea1b0cccf9
MD5 cebe3dba6f5c7de9c62cb948bf0ffb38
BLAKE2b-256 5049df221a487a6f65015508d1d8ae3793686e870ccbe5de073e35d57650c9a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2c4ebf14797d0750992c612908c4efdbc95cee904b8e7e7fe700f6bc84bff5b
MD5 25f3060ba89bc9628befd49e56c0d3b2
BLAKE2b-256 19cbaf9af93d10488b9da44e120d068cc8086e464b3ee47027f5998b4f7a232d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e29cbfabe9568382123b1416b33c634c0a4e42caa8f5034b16feeb9c98a38130
MD5 23845e6c3baf59c8da4bc839d1dca341
BLAKE2b-256 337bb55cdf4c83cb079c0c2ab5002d5e1680793494ad1b955f8880437c2e48fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4160248de516cbf5b6b5d2b71f38e167f5eb639cbdc0afca9da461256c25e01
MD5 66f48a43238a2e77025ad1e39d5b785f
BLAKE2b-256 4da4e5f1770d73ed109714ddd139cdd720ef43465779507a1ddf0415019a3d7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8c37b9a95ea811c2b20db448d9f7a7e15ac14c2607eed5525115b2fd6dac069
MD5 b634960a935cef874cc9b08ac1547530
BLAKE2b-256 4c28b42532f73f7a205b460394153dfafe69cec8444d57089282443968c80234

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fa1d5733cb320f0dd9ecb3a33d12936cd148d7eccbb3ba553cb3d4b087de8e2e
MD5 b1357ce919c11086b264213ddebadc71
BLAKE2b-256 4586cfffdfdf8f3820259a2f15b42ab575437bf8cd1af88eb9a10cb0dc93d517

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1f9ff1a3139ab7a180920e2cb8ffac9bd133283b60d60c26fb2e3ca2e345cf4a
MD5 34ef1049159ea53ffe50edca2a5bedc2
BLAKE2b-256 1bfd837b89a5f079b34e7bd8d9cc2d4b90039ce8ea2db6dadc9fa5b08ece0794

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc806622cf67530b0aea33417753ed760928dbed6a9d856a39f6efc0066bd07d
MD5 61246edafcc4f7117ac2f50e97ad81da
BLAKE2b-256 6b5b218e30e5e9b2e02313606218677293c55e54d843ae1a4d21f399bc12969f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.2a2-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/50.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.2a2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d749d25cf9550b34cfdacafa8bbfd1be4a79c0d75de514238b732cf3fe292e02
MD5 ffd070a9681646a9235a5e6981d7c588
BLAKE2b-256 2280be53236e7bc72320453fbb4cb0d3bca8149eec68b202640e68153ebd1aaf

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