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 specify a dictionary path, you also must have a mecabrc file, even if it's empty. You can specify a mecabrc with -r. This may be necessary on Debian or Ubuntu, where the mecabrc is in /etc/mecabrc.

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

This version

1.0.1

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.1.tar.gz (108.7 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.1-cp38-cp38-win_amd64.whl (510.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

mecab_python3-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (303.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mecab_python3-1.0.1-cp37-cp37m-win_amd64.whl (509.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

mecab_python3-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (303.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

mecab_python3-1.0.1-cp36-cp36m-win_amd64.whl (509.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

mecab_python3-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (303.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

mecab_python3-1.0.1-cp35-cp35m-win_amd64.whl (509.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

mecab_python3-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

mecab_python3-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl (302.2 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mecab-python3-1.0.1.tar.gz
  • Upload date:
  • Size: 108.7 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab-python3-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d56d27e4d30be72cff7a2436dbc9de99b8cb590954a26dcbd1326c345de78608
MD5 04b252c31c0fa8941eb021b822e34083
BLAKE2b-256 dfea9dfb636a4887a35c95f85e82382dbe5c44c55dc5b3daf90bb703405bc7ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 510.0 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/42.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6c54047963764c9433cbd149931ea6308a1a871d60c2a44d20fecb5e4f4a27fe
MD5 a4c2c1c20dbabc4b3acdbc6e898af498
BLAKE2b-256 160708b97a03b976f6c6b042bf6b05bb658ed2e0da5ecf7f9d1927db92d3079e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0675037dcf9f143e725326f21659c439c07e46d1e9d2c2aad698f95778d3f5d2
MD5 6ecb0e20d902009ea0b0a303dd9d36c1
BLAKE2b-256 196a88837b798e279c11f2f671b4bbe2cef1dac7c5032613744ae392057aad88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 88780b2b358296eb0ec3b2f2d2433ebcaf74d4a9ccfe9303ff541d5890eed5b9
MD5 7f64cbff375186c18a2d6e34adcb9a9c
BLAKE2b-256 d24773216f324e1c256fa2faca3ea607155cc70f76a7623d869e84b95068accb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 efdf4c3754b368a5f2524df18152db44d930d367ed58a757f026d196b22c883f
MD5 912ec88ca848989753a2948a99eefa3a
BLAKE2b-256 99581ef3db1d2a3c5086bf7539fb778a13eaf2eb6d1f4c0dbdf6450d120c38d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5dbbb1ba289258cc9af8dd381db83843eb17852f7d9ec85a9aa6ef8d91d81f2d
MD5 e3b04f19cb813483c8ceeb9e3853394b
BLAKE2b-256 b1cbaece89f49ed1556678d7dcdd5ffd508f8fc14b0237194dc01537dc46fbe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.2 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47a230de0ece95fa56e7920915aa45a6e1256d11d619906f020ec31ce0ac620e
MD5 dd4fa05dfbb7224fb1a7f31c623b7b4f
BLAKE2b-256 f900281c0bd2742012353badaff1937e146c7e34d39cf72e3667646518885370

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 509.8 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/42.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 139b673a5f08a33ca52d333fd0959ac41035dd9c328d8024160a7afd58ffa7d6
MD5 1b487890cd157c3fdba84fb37a197eb4
BLAKE2b-256 da135fa03d2510acc7a6f7d967a08fd5809362e1922d75041948dc361c33e25f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6bdeff06758472af4990dfa2c0fce181e9badf1db7242bd6a43d23ee8f49c27c
MD5 e30347044a399d1bde80ff582ef21e4d
BLAKE2b-256 325d31442839d10f684d3eef4baccaee10e7ade8362c8304cc4ae69ffecaa448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2650f86d86f6df8b7b6428aea38d0a353f5bb2e8758be3f6eba2d21314bb903d
MD5 ebbc69ab8c06c6b3a1d313dea7c3c701
BLAKE2b-256 ad566ca46aad872b99ed0270e13253e9e5f3116f924ca551ecbaadd64452d095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aad42c0c2d6496ce16e04e1fd65a9f0847706bd7928e37c1ea68db5c47911622
MD5 43a1e76c37e8ff19535d089d68ab911a
BLAKE2b-256 752df3d1a16417a1e73f6b334bedd2b36cc90a658d06e0f2f0016e39021eaef8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e9f3eea821b04a57e5509791e01012511b9ebd62510e36d8c87ba36facda366
MD5 d1fa456727df7293040affb870e8540b
BLAKE2b-256 cb1333071c688cb864c71a50e96bd4563ba8f19be2912f412a042f137278e42d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.0 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fd30ceaef9d087b96065067b8ce5070efd65c240f073e8704056e2bda1cf8bb
MD5 206d5d70040666ef12011194130361e3
BLAKE2b-256 7647012aa15d0266fe7a73af2703888bfea0fccf78d6d50ead92759b17492656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 509.8 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/42.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 69aaadd795dd67ef0a192e08a87d515b86ec0aedaa6b902246d411e63dbd51ff
MD5 769c9bf217da67f3a2286acf57b4bad8
BLAKE2b-256 ba4fd58f9935f112b07c34ac9a90431e05e8b16caed19f18788ce691d12c15d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1fefff295d47987dde0192533470d3adaa1eb46cfb9b6861c1f36cc475f9c463
MD5 c5d4dc0321e4e36d6b90020c1cca4479
BLAKE2b-256 8b062aeff86243c88580ccf78b136d403ce5e0a1eed9091103157f01e806499f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a176d769b9060df7a7db5af5ae4b580a69c523ed732b2958a560be7e66181e9
MD5 1a1617189b27b948c4efb82f74917c19
BLAKE2b-256 f47298480124094edf02c872110386eeaa7b56097748fb31240c3a3a9422613a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 086bb7ecc3ac2aa64e11297d8a6919a31deb02e081c8b53d8db3afd77934bd39
MD5 f85464352e89058761250d81c6ed3668
BLAKE2b-256 22a2b94466ed8136b612934f3ac2f0bc9a67a0e74d87577d6f055b8e11dc2f90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a174ef891786df9401b3b72d8ddf5ff126d569ab8c81839deaab576630e82ad
MD5 ad0c25aa00ebf93aa00483089c586cea
BLAKE2b-256 609900d3d9cf18b7afbe0f49085ca79d91aa12f9bdf14c6c543ce7ae9c3823ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 303.0 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbb28289a7f314ef25430a252e0a49033f74b9ebd0e229159972d91759e7be8e
MD5 74a724c478e2d960357a0bd05a86b276
BLAKE2b-256 85026a62c7b94a40503559080606e19296a1bfbc593f03bed405ef700a8c1489

See more details on using hashes here.

File details

Details for the file mecab_python3-1.0.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: mecab_python3-1.0.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 509.8 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/42.0.2 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3

File hashes

Hashes for mecab_python3-1.0.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 63d1e2fd60d12b0d54defa5be9973d5aa253d1c65527bdb7437c8c0110202f77
MD5 0ec19b2fbe094d7a20b559c321cedcdf
BLAKE2b-256 056b8e0184a9dc288910f74e212a61d89114070f0d9431aed707dcd67918d7de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a115c89232eb1bd9d68f2c67185fd36b1360d6d262cbcc80d0313eb04b9021df
MD5 bd65c341fd0b020168493864fb3f6d3f
BLAKE2b-256 c262f1136495e15982d51f8a8fabc0dcf6b892eba892ddd1ba39396b8c0b0c4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2745a712fcf879f75e4f938fc906958ca8408d1b971e7ae9e5735a85f16eee5a
MD5 73a33f2a1f87927d6710ee7b526d65ca
BLAKE2b-256 a92e040c46e26486c64a96959ab3a5d5168de215fd346b4846b0f8856ef0e65e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37c40c443a54ebb8a2a73a2cd08d447f4689bd13eefba8557a5041c43a687683
MD5 59a8651b5054891dbda3f971744c9a8f
BLAKE2b-256 753d7699fb15df30c620317c871e9722fbc55c54bb01d2d6a28afcd8d10b5f99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0817d06254a86da9d6fea3e483f0163e87b45abafaa2039ce93ce6b81cee2bef
MD5 33814cd1462d635f694c4d3fa13027ff
BLAKE2b-256 4debe9a5f57b92e151cf97f6d87c965c0c4c94794c7a2e7caae2da44f0a6b84b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a24133836219e3ca321f3d5621a0aa2ff385ac430e5485dff8f789f1df4f2a5f
MD5 bfdfbf3facb9a8e7a0e0efcc6a55bd05
BLAKE2b-256 ccf46704c8f41935f394eab37d36727aaf23a0a0e50fc17cb4f0723b308f3d84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 466bf2ff6a185f26aa8cab0479f65ca5d214d328766af21c5d996c2b445124a1
MD5 ac19c3cfbf270d45e57269e981096e1d
BLAKE2b-256 34de91299143b8b8a2bc6454c23ae8b129967050a629b778929f1a9e05cd1c60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8b9cccb8dcee6196c66eec9d4bbfe2ae6acf7bf7146908597fe1e04e41ef228
MD5 1b6ac8f725793d4359bb44f4926fb299
BLAKE2b-256 4780da722a87927ab62cc7c39a53f9eb880df6422e346c74dd80630666692f5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 46f4cfa3be37c07f0583baccfa5116aab3fda297fb38f2134841686d15915515
MD5 85ec12f5f46154c1dac06845f62063ba
BLAKE2b-256 e02279f25607fe6922524d993ca88a4a8dd9093d14f725aa9aa2f73285e966ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2b0b0f8dc5ecae28084210ed5f1fe7b5cbe6e40ca3b4a2689d668e3e521d62d0
MD5 4c7df9c40b7d0606994d7cbb840ce761
BLAKE2b-256 fd9f1bb41b29953c70bbba14b6c4059fc9add58035f2d33d2272c5a01be75e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 29fea64fa7a1c47f8bffa52a2517230c06c32a3494164a3550e67be2ced668bb
MD5 3136909cac5e6ffaf86c9253f11d6867
BLAKE2b-256 8b5216fc83c1c3a3d6b35f618a8937262febd61838d7f17b1a546c10b69a3be3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb7b8ae3b3269fea3f843321f9d770046662f6164a4797bcc9db8c03b5e2b2af
MD5 b98f915eabae7d8335e71238ca3b90a0
BLAKE2b-256 b4b36141817f4f35d6d6c2b667a7ae5cfe3852b112a18a9cfb62fd1357bd32d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.2

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1942c884a374d1e334ec2a6f30cc16a4fd68ea328227bc8deab909ee76e9781c
MD5 7ecbd236738e7c18792b950bf8a753e6
BLAKE2b-256 78ece2e415da12132db47ac3fcc2485bb05d35cd6cd0a7fb1554271b0df2bd1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mecab_python3-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 302.2 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.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for mecab_python3-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 731a6e11d0971b42e9d45f62fa9e08a543824802981d3504c4a9983eed3e96a5
MD5 88853295aa07de544cd18dd940f5efe9
BLAKE2b-256 50cdbafe8c750a6ff4405155bcea2133b70811419aa14b4218cdb57d78226535

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