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

Basic usage

>>> import MeCab
>>> wakati = MeCab.Tagger("-Owakati")
>>> wakati.parse("pythonが大好きです").split()
['python', 'が', '大好き', 'です']

>>> chasen = MeCab.Tagger("-Ochasen")
>>> print(chasen.parse("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 MeCab documentation for more information.

Installation

Binary wheels are available for MacOS X and Linux, and are installed by default when you use pip:

pip install mecab-python3

These wheels include an internal (statically linked) copy of the MeCab library, and a copy of the mecab-ipadic dictionary (using UTF-8 text encoding), which is automatically used by default. If you wish to use a different dictionary, you will need to install it yourself, write a mecabrc file directing MeCab to use it, and set the environment variable MECABRC to point to this file.

To build from source using pip,

pip install --no-binary :all: mecab-python3

Alternatively, you can use pip to download the source, then build it by hand:

pip download --no-binary :all: mecab-python3
tar zxf mecab-python3-{version}.tar.gz
cd mecab-python3-{version}
python3 setup.py build
# install as you like

When the module is built from source, it requires the system to provide the MeCab library and at least one dictionary. You must have SWIG, the MeCab library and headers, and a dictionary installed before running pip install or setup.py build. For instance, on Debian-based Linux,

sudo apt-get install swig libmecab-dev mecab-ipadic-utf8

Building wheels with a bundled library and dictionary is only supported in a sanitized CI environment. Consult the scripts in the scripts subdirectory of the source tree to see how it’s done.

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-0.996.5.tar.gz (65.6 kB view details)

Uploaded Source

Built Distributions

mecab_python3-0.996.5-cp38-cp38-manylinux2010_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp38-cp38-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp38-cp38-manylinux1_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.8

mecab_python3-0.996.5-cp38-cp38-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 3.8

mecab_python3-0.996.5-cp38-cp38-macosx_10_9_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-0.996.5-cp37-cp37m-manylinux2010_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp37-cp37m-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp37-cp37m-manylinux1_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.7m

mecab_python3-0.996.5-cp37-cp37m-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 3.7m

mecab_python3-0.996.5-cp37-cp37m-macosx_10_9_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-0.996.5-cp36-cp36m-manylinux2010_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp36-cp36m-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp36-cp36m-manylinux1_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.6m

mecab_python3-0.996.5-cp36-cp36m-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 3.6m

mecab_python3-0.996.5-cp36-cp36m-macosx_10_9_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

mecab_python3-0.996.5-cp35-cp35m-manylinux2010_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp35-cp35m-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp35-cp35m-manylinux1_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.5m

mecab_python3-0.996.5-cp35-cp35m-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 3.5m

mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_x86_64.whl (17.0 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp27-cp27mu-manylinux1_x86_64.whl (15.8 MB view details)

Uploaded CPython 2.7mu

mecab_python3-0.996.5-cp27-cp27mu-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 2.7mu

mecab_python3-0.996.5-cp27-cp27m-manylinux2010_x86_64.whl (17.0 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

mecab_python3-0.996.5-cp27-cp27m-manylinux2010_i686.whl (16.1 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

mecab_python3-0.996.5-cp27-cp27m-manylinux1_x86_64.whl (15.8 MB view details)

Uploaded CPython 2.7m

mecab_python3-0.996.5-cp27-cp27m-manylinux1_i686.whl (15.8 MB view details)

Uploaded CPython 2.7m

mecab_python3-0.996.5-cp27-cp27m-macosx_10_9_x86_64.whl (13.9 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mecab-python3-0.996.5.tar.gz
  • Upload date:
  • Size: 65.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab-python3-0.996.5.tar.gz
Algorithm Hash digest
SHA256 e7f09caf136903ce908b8b001ffc178d6caa129c1550d47d8f7f733a213749a8
MD5 e6e83b6547307456263fb50f36b38678
BLAKE2b-256 558437349dc897456c25600b498f88c8988a7d6754ebe96c189897c54bd24684

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1af08a46774ac219bf93cc0c52d87d5cbcce9f4c3abba6b14c374f81ebc718c5
MD5 78fcb202c649b8d1b501e752de15f139
BLAKE2b-256 09fa86835cbb73a8245929e4437a2c285344a393466459091982a8f46ae6efc0

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f256a1dec3d6bea8cf9b6fd77b345903acf978c07c592c0dc470d20398693da8
MD5 6c04f526612dedad972bef7959bc4c34
BLAKE2b-256 b6da42ae9fe594ccfefa6404605d28efff598646c88aab7bf99188ae9e7fb39a

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f2a591460f28faf27318961c49e70b9e464a283c8184a677bdddc70aa8835b6
MD5 a57ba8c956047830ddc2d027c81e0c3b
BLAKE2b-256 9da4004db02572b0a600539a6aec4836585e89fdddbb5d7924e9f050ed4573e0

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bfe39e3c6a5be7bf54d36fcc14c5938fc831960507f9d7337cd2cc0e8de07d3
MD5 8c37025c3607278093c6b82bca77c6c9
BLAKE2b-256 79793a791ce750bff46268f1723c5e06e82b46df2b33117ae19d3392d43c073c

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-0.996.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec6e3872b716eff99a0b3cad1079eeb16a5efdcf6dd48727e3372345a0d0d124
MD5 c033afeed562b900036c50244ab2758a
BLAKE2b-256 f9600a21c145b4760a6032e37efc2f6387f12a2a08d0c72aeb3ab55554e224a8

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9af5050a093172123be6eedf65f263fb936885c5c200b1808cb1d2f15a59e871
MD5 681f2beb1eaef025a0e8cb189b631195
BLAKE2b-256 4762f1e4ffba2f904b8998da8df4372d70cf4dad6301b94f4f9e50e9aea1b82e

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 47ba0cf7b5b03137ba7b3998a6fe82da1407ac577016df10b6da7f1979dfb0ca
MD5 2458e5261c5d4697b3a0ce44ac2bf3ac
BLAKE2b-256 4a2556718dba0c0eaac6639c51ad61b2a1d1a246b71c2add38d1961b8f3b084f

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d13b2732b3951a0defaa56acd628d1d83f123fdafee4f40701e001a66717a85
MD5 f7c074fea40f1a21e3744975ca7f2949
BLAKE2b-256 271dfbbb7b91a4dcef5f2b1080727fb71680421c21cc745525118cefeb813f42

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e07f3ff74185d286a138258b7d7f01877ddad2338c8177bd579a580f0c589abc
MD5 16c3fc84ad5a9254a2f0170d9e11d24e
BLAKE2b-256 ed11ba7401f2017b655ccaecac0c25cb9c01cd0c6bdcab7daa56ad7a7a1ba824

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-0.996.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32864543977281dcbb52f54e42d9fd060c9d869874d49806bbee5a0ff689e665
MD5 ef88bbb3ba24431dfcfa85bfb145e329
BLAKE2b-256 d3ebbdea786b3d6f8875fa6910bbfac7988fa17107fc97d4b3d18af6e302fca1

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0e309f7f55c608b66c5dbd9a1e62f2686e9ff0923a5f1c28406985c4d8a80549
MD5 84b0799f9feb1978163f246cfaafdf08
BLAKE2b-256 1849b55a839a77189042960bf96490640c44816073f917d489acbc5d79fa5cc3

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 92019635b0686a6aa30f4d908155696077abe8848203e102ae7befab0b96b9ea
MD5 b16d02acd7b5c834ac588178ed3add00
BLAKE2b-256 372257278d0ecb016dd97261200b978b4522e0845fa5fdd5be331a224f9138b0

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ddf32a2e0bda7628f0f57ded67be4601a31ffbca6524e328bec3ef098abff10
MD5 933c2f1b8722a99b8c805c78ca45c398
BLAKE2b-256 3e6598b9101d9b37d01ec205a4eb2f7bc085e1828302a9500bc8326b9daf7163

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52aa68cb5bbf993d3862feb9c477f230ed27c4cfc8e3fa3388419561cd02ffcb
MD5 28ef1aade3c4e198018173339ac8566b
BLAKE2b-256 95376cccb4a57fff421a1a23f81738e0058a2c9703359ae23deeb3bb19d57c21

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-0.996.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b33f212afff92fc292a8b20ab82d2fbc9a4d2f6fbe6dd96e9104ef3cf1150944
MD5 bed59d9e453441e2501c305a851bd3e5
BLAKE2b-256 8427526f0da15cc281269ced4ed3df845d665796fe4f424661e9bf0c2d69c29c

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b80cb1af8b7c3e8d5e88fd7b5511e8ad630717f81e9117685613b10216c0f648
MD5 473e81c36c9bf3d8c3284f8fe03d2b42
BLAKE2b-256 d3eb1ddfe72e15f3aeac92682d766b130a87c95f93fff4c85d0b88c684ff13c6

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4732677c74dae291587d930d307bfd92776a198cbb1ea2836ede652180c9dbd1
MD5 9ba907bbae0447f8e68bef9abe7bf9e5
BLAKE2b-256 3046f2c3fabf4e919af604fefe0951715011d96934e23b4f62ce9a2d86826983

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0758c4e428c9eda01b14f2e93b4b48055264c4044c43992a8421bfd2a27d9ae0
MD5 895788085df0e3390af0436523916f1b
BLAKE2b-256 503f5babbfd0d36e48112c997d4044c81fdd8060adbd1d2395485f77303a778e

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd8bce5251153199acb3aff72d22954801ef3c46a37b4ee17de5e32c37388f58
MD5 be501bf8eab7d7ee352d17759933fbe1
BLAKE2b-256 dd930befd700741a6f172ef269edfd8b5b7224682055c1575f92d3770b840f77

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.0 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5864b6e55796e982fba8a8bb073f97893cbe2c55481692d83e6bd1ad60125585
MD5 9118a96371fb25f6c3e2f34944196713
BLAKE2b-256 5bb732e5513d01b60eedf73cc0f667d2033ebc1d2174af18f2f83f1f6b465218

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e2118906bbdfd17d002c4eab649a71c9635de175728933c2a226fd8533d13ff7
MD5 eb97ba49521c254dafe706fc9da9c32c
BLAKE2b-256 2fedad16d104b3eb2cf4af1c1fc6b41000ee5815b55c0a279ae0e334c4daca1c

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 429c92effeb46336e994b2d4b29a8b9e57ff947df55fd5b8042315fdb50d573a
MD5 49dcd86349415683b9c077dcfd291b9c
BLAKE2b-256 dc26e0e2685aa1c5385aaf56f770bed4168973b3e4b19787dd503f779df8debd

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 730898c5e55f6a5f894251603afd44ebfdbe7ddec00113c233ef1b9c91b8690a
MD5 c1ee768a0e7e32fd37f08aa391c48cce
BLAKE2b-256 7a33b20bb01d6c82fe90df5368bfbcb0f59be03d98d6aab8bf94c60e0adf1f30

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 17.0 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 304ee365de78cf9c48373122bb68a5f2c2cb60c9d058a690b3cdaf1059d4c91c
MD5 f099ed14cefea5aa8c2f531be9cabf54
BLAKE2b-256 918e66740a063370fb538d7e48257860f6f783017cb0781ec1224c47b14ae374

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 16.1 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.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3187479c79151f384f44c0d12a87305bfab94bef90183bd6db0bcd44c2c3374b
MD5 d49f89028ca519730125ed35b7e2ba0d
BLAKE2b-256 3be91df520e27f5447ca721e4c67268600046844b88dab90f490efcd95547e5f

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52e5eb828d42f4cdd41eb3e689d6130d06a3576fee067e04c40566c7ce09ba1b
MD5 5cc42e11b4d6fc364f7234c9cc831f6b
BLAKE2b-256 7ffb7768ee09c83dfe5c25b430151a50ca9670f1752f5e3c7cc95111e91c17c6

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fb35dd2486b3d8b1868cfa8e1772e195c26a90b02f2509e4b61e11fd846b442
MD5 3a33a41cd3b2520d772d9f5e4ede163b
BLAKE2b-256 e903d8026ed9fe057d280d6c542376eed45db64fdb3ccb391b6e4b66a01781c4

See more details on using hashes here.

File details

Details for the file mecab_python3-0.996.5-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: mecab_python3-0.996.5-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-0.996.5-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d066afe09a95716facf60a673f538257f595a282beb1e021d1b495f995ee70e
MD5 c43ca0ec7b7a8efbdaa2fbaa643a301d
BLAKE2b-256 7f3c070d231b36c61c2cae5629e8e7b484bb72287906cb829fc88550d0467a32

See more details on using hashes here.

Supported by

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