mecab-python3 1.0.12
pip install mecab-python3
Released:
Python wrapper for the MeCab morphological analyzer for Japanese
Navigation
Verified details
These details have been verified by PyPIMaintainers
๐ Avatar for 23 from gravatar.com23 ๐ Avatar for tatsuro from gravatar.com
tatsuro
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Maintainer: Paul O'Leary McCann
-
Provides-Extra:
unidic,unidic-lite
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
- Topic
Project description
This is a Python wrapper for the MeCab morphological analyzer for Japanese text. It currently works with Python 3.8 and greater.
Note: If using MacOS Big Sur, you'll need to upgrade pip to version 20.3 or higher to use wheels due to a pip issue.
issueใ่ฑ่ชใงๆธใๅฟ ่ฆใฏใใใพใใใ
Note that Windows wheels require a Microsoft Visual C++ Redistributable, so be sure to install that.
Basic usage
>>> importMeCab >>> 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:
pipinstallmecab-python3
These wheels include a copy of the MeCab library, but not a dictionary. In
order to use MeCab you'll need to install a dictionary. unidic-lite is a good
one to start with:
pipinstallunidic-lite
To build from source using pip,
pipinstall--no-binary:all:mecab-python3
Dictionaries
In order to use MeCab, you must install a dictionary. There are many different dictionaries available for MeCab. These UniDic packages, which include slight modifications for ease of use, are recommended:
- unidic: The latest full UniDic.
- unidic-lite: A slightly modified UniDic 2.1.2, chosen for its small size.
The dictionaries below are not recommended due to being unmaintained for many years, but they are available for use with legacy applications.
For more details on the differences between dictionaries see this overview of Japanese tokenizer dictionaries.
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 the Microsoft Visual C++ Redistributable to use MeCab 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 library
- SudachiPy is a modern tokenizer with an actively maintained dictionary
- pymecab-ko is a wrapper of the Korean MeCab fork mecab-ko based on mecab-python3
- 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
Verified details
These details have been verified by PyPIMaintainers
๐ Avatar for 23 from gravatar.com23 ๐ Avatar for tatsuro from gravatar.com
tatsuro
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Maintainer: Paul O'Leary McCann
-
Provides-Extra:
unidic,unidic-lite
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
- Topic
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
Uploaded
CPython 3.14tmacOS 11.0+ ARM64
Uploaded
CPython 3.14tmacOS 10.15+ x86-64
Uploaded
CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.14Windows x86-64
Uploaded
CPython 3.14manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.14manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.14macOS 11.0+ ARM64
Uploaded
CPython 3.14macOS 10.15+ x86-64
Uploaded
CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.13Windows x86-64
Uploaded
CPython 3.13manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13macOS 11.0+ ARM64
Uploaded
CPython 3.13macOS 10.13+ x86-64
Uploaded
CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.12Windows x86-64
Uploaded
CPython 3.12manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12macOS 11.0+ ARM64
Uploaded
CPython 3.12macOS 10.13+ x86-64
Uploaded
CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.11Windows x86-64
Uploaded
CPython 3.11manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11macOS 11.0+ ARM64
Uploaded
CPython 3.11macOS 10.9+ x86-64
Uploaded
CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.10Windows x86-64
Uploaded
CPython 3.10manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10macOS 11.0+ ARM64
Uploaded
CPython 3.10macOS 10.9+ x86-64
Uploaded
CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.9Windows x86-64
Uploaded
CPython 3.9manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9macOS 11.0+ ARM64
Uploaded
CPython 3.9macOS 10.9+ x86-64
Uploaded
CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.8Windows x86-64
Uploaded
CPython 3.8manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8macOS 11.0+ ARM64
Uploaded
CPython 3.8macOS 10.9+ x86-64
Uploaded
CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)
File details
Details for the file mecab_python3-1.0.12.tar.gz.
File metadata
- Download URL: mecab_python3-1.0.12.tar.gz
- Upload date:
- Size: 78.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9aba1e56ef80dd97147dcbf8e3508147af129fb46cec0e432b85f96a9bdaa4b9
|
|
| MD5 |
e8ee6da983a3774f583a53915921cc6a
|
|
| BLAKE2b-256 |
fe54d52aebc1a1836778a9a97600304821f3c57d384ef1e5c8787a0c6f2a292d
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 436.3 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06bc3043a21db5b2476479ded1e95bc94d79ae730fb212cb70b103ef89a408c8
|
|
| MD5 |
6a4997bc46aba05c55a19957ca81e20d
|
|
| BLAKE2b-256 |
7ab07dc0f08233ec70132cd2e577d9f57d43364bb72cb32656d9218a108a388e
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 439.5 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04342996c8fc214a942dc39c6768f0a8290a2f1b71f7bcfc51414048e504d265
|
|
| MD5 |
dc1a6713d3033e145b0ffd7cd2a8f091
|
|
| BLAKE2b-256 |
ad5d5688306d4802ac3e7fe5af8cddf3f087fc4d17afd6ffdabfca5b76113822
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 476.7 kB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9b8158c9ac13fce0a842f1ef590cabb28c1db09db17192e6bdbecd291ff37fc
|
|
| MD5 |
0668157f982dbd073ec5194851411aa6
|
|
| BLAKE2b-256 |
9311e09a4f7b457a59320f3757ba9fe8248db08324930ad2af0bbc4e460208d1
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 513.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6e433c43e3a28d98ef0d85e89709f47c43e72f5b570687f1aef50cbaa8d4b45
|
|
| MD5 |
2d3214a7319fae288efd27b56276612f
|
|
| BLAKE2b-256 |
50fe11e6cb53862ca492c17ed45616e0cd07873281abbaccba529647eb0b2117
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 590.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f88232df9af6d1773822ede87eb8cd1896ca234a92225ea0b03638a60cfbf289
|
|
| MD5 |
89eec0161c5ede13c279fd8d0c021785
|
|
| BLAKE2b-256 |
2ca74309ea9ec9b74bad0ac3e1baaccbea592ebdb2ad99ca426a9f47c3ec4716
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 569.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
019be4838f437b9e4b9cd5e1e615bdcbc2859ed3171fa921f7c6b8fe5222bd25
|
|
| MD5 |
8896be0ac592be6fa585e028a763d5fa
|
|
| BLAKE2b-256 |
3736f65f81b59f53aa3fd5e6e7fc990d8e2e8c89b82439a78a7d8c90561e40d3
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
680ae889c2e9748e980347f21ac04cef30e01624c8b62571c5f999ab6668feea
|
|
| MD5 |
0d50b39ca3d65478eac79552b8a77b13
|
|
| BLAKE2b-256 |
f858caddb2bd98ca847e6743d280011146d45b13d8cd8e7469402d5fa297e30e
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 438.6 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f722a5b88aed9fc4a2f927f6fb4ec0095fbe393119a6070d7d46eea05ce8b69
|
|
| MD5 |
05ff1cfdf044f683727134c873d309eb
|
|
| BLAKE2b-256 |
fe154907d8d5b3ed99cfc191dade0c086b6f0dabe9c5cf62465612d331a310e0
|
File details
Details for the file mecab_python3-1.0.12-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 474.9 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b9456d1e0b5686d106a1d5839c9e0ac1a05f2e0ff3ff8480119551bd1ca1837
|
|
| MD5 |
97b6526f8ab5763d6a3c69e370d53684
|
|
| BLAKE2b-256 |
cef5aeb3526cae978264458418f0509638fa1e074f32abdc960f75c6ed33817f
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 502.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad8508d0bf9827b6ad4b3537d144a1ecbbd6a6841b74430c6b74fe4b8766aa42
|
|
| MD5 |
93d7e0ae946791bbbaec5682f416b4d1
|
|
| BLAKE2b-256 |
e9ff6f63a75ea7983c10dd85d81df696efc1b4edf80731757ab1ccb19777325b
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 591.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34b1dd02bba8f14961539546848f962ecb491517a4b026c46cd9fe393831079d
|
|
| MD5 |
93165e00163bde3ac4b3ea6fb867544b
|
|
| BLAKE2b-256 |
3e3896f6401b35342831cd96e03c20ae83f53ac25558a5a80cc3b8acb89b6df0
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 569.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
078cb752f1601b1ac6d31c20ae561b3dc3ca96893aa8c486655a41527801a6b1
|
|
| MD5 |
a6c796201525c5c59fed52143ae43a1f
|
|
| BLAKE2b-256 |
7d755019423fbe1ba00d63b103bb889da8a11463a9d0254cfbf1662963c05a5e
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f877382a9e0c8789308c5506d92f5e4138117eebb6b030a87d66318f93030a5
|
|
| MD5 |
d437ae3b6c78c643535b7d61cef5551a
|
|
| BLAKE2b-256 |
349cd6c4259a2816cd7a24d1efd625b04014a756a9403b9e48c6777ca48d9524
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 438.3 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84243d7419fc8ff2f3144a727068720eeda99ac9498b1ec612c5346803436d26
|
|
| MD5 |
e36e87f515e47d3be56d1f3c5469bcf6
|
|
| BLAKE2b-256 |
3c742175ffef0eeacc3fe010114e468cb460cebf4c91a8f9784e1ce586bf09ca
|
File details
Details for the file mecab_python3-1.0.12-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 474.7 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db8757fd214692ffb68c280d46a466f94fdca61c06153d5dd2f9902fd3f69213
|
|
| MD5 |
850764f5a20082da64fe31349d533a4d
|
|
| BLAKE2b-256 |
e813a9c70656f0c7981476f030ac00967a6bd1e8d2a3b618099fbcf6ea3b2c33
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 502.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef10b35d580e90a776e2e672fe516f371c48cd0ebeaa4f1e0bcb902e216724ba
|
|
| MD5 |
3b4a836d656de4193201ac4cae26ed01
|
|
| BLAKE2b-256 |
4c07c0699f4952e4423a0d192f1709c731202f36de1c86b637738f0c5b0b48fb
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 591.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dae0605065e9eda6f3aa74dd08c781de7371a447aec3fa6d3e31d7340bd6e5f0
|
|
| MD5 |
efdef5959be4df4971bc387ee825bfa0
|
|
| BLAKE2b-256 |
2236d49e077cf95ade987fa72b9afcc84ec5e907d15f1c6b02ec5ba14c7a9cb3
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 569.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2429b3977e62b65cd36f098b6814da427c54afe11da97ca39e85dbad2c0f1342
|
|
| MD5 |
eaf2ad9a32d9636a50737fb0760d5973
|
|
| BLAKE2b-256 |
55d4b2b9faaa87bd219369a5df9296a5711439e6e204428abfbcab69d046905a
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 435.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ca8591fbb30253df8f283f3c5b7c9fc593c6e290e985a453e9a7b8345f04d0f
|
|
| MD5 |
481f63157ae412f4033c62634bb866d4
|
|
| BLAKE2b-256 |
e52225aa0467edb84b9285a0620e32407195d56f206610057f93f73dd21be740
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 438.3 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
477d22faac294d7d4acc52966221fc63785f050ce1ca94cc74de42c8b1bbde2e
|
|
| MD5 |
de534966f024e5b7e6ddc32342b56c45
|
|
| BLAKE2b-256 |
5e60e6a717cefe9d8051081b5a4b9bdaac1e0022bd9dabad12bc58d202446f7c
|
File details
Details for the file mecab_python3-1.0.12-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 474.6 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
641ad39ecd1cd565019fb5b78e471e7b6baff03958b2c05db5c2f7226cb17750
|
|
| MD5 |
d492231f4d142990605283f8ac505842
|
|
| BLAKE2b-256 |
32ca0f1fff8b2ee98c9a2441da4e52761bb55fdf8cea88e40e72236ce74c5e79
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 501.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
451b19fb0384f114b34e9cdcb1fb168922a94b3051c2c8bba605e0620d1ff533
|
|
| MD5 |
78d8dc052e65e6b50f13ee99561bbbc1
|
|
| BLAKE2b-256 |
c80f1675d5b9924e490012fe498aa876ba16c7e02fc0bb9c3c0037d92dd1310a
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 589.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
864fa2dabc4dda605e89314c03aef060548bb3758acd079f898148eda11a0497
|
|
| MD5 |
9a89e483e379a76b045b7669b677c446
|
|
| BLAKE2b-256 |
c7b891a4ef5c366e747bd6fe074f556dbe30efa97e8fb43a623255d1707dd27c
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 567.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea46700f967b9d72e3e9e4c3b0c2cd34d180fdd5b524b57967adbc61c667a5ce
|
|
| MD5 |
0e5b6e385c48050c643d5d77aec498d4
|
|
| BLAKE2b-256 |
33cea469e11f29235e3bfdad774e4b4d0511968ff5b5ed4cf4bb228218cf86f9
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c0c87d9524884412c1f43d801bb605311072463315dc40a5e12f2c0c7e1d24c
|
|
| MD5 |
7e59b573f00a00a82ee40e47b50c70d9
|
|
| BLAKE2b-256 |
0fb6bdfb82039169c59f1d2bacede6a856f929ee97c69844f09902123ab6e361
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 438.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e35d0b395cf5c2bb157fabecdda94e0547feb55cb27636bac9a4838525bf692
|
|
| MD5 |
d0444d8443613e5654248f3301f21e4c
|
|
| BLAKE2b-256 |
385129ca8fbdb0c9b3bf60f3e2a3bf0cab974228c11c01c2d57a5a71f86167bc
|
File details
Details for the file mecab_python3-1.0.12-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 475.1 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe7ead7d73bce63ee4d173eeb7242ab946d3f2b7e9604c1a99e47fafa4c0f568
|
|
| MD5 |
2b992941e53a2cc4f37e2febba9df6ed
|
|
| BLAKE2b-256 |
b49d81763267aff891f229118e529fc71df91a586eaaebc806bbf43b2c41077e
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 501.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47c42624e8a406562bab1d9f8ae514bc7761a50c2cd2d6d1ff7101299c406998
|
|
| MD5 |
539cfac95a3a2cf4ec10d16a18f6c148
|
|
| BLAKE2b-256 |
d89b6ad5ed4d96f0f5ffb6077b54c179b0303effd7fa19d268368658787687ba
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 582.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8654e3bce320800b19bb14683db77f7184bcab5f23023827bab97804591ca6a0
|
|
| MD5 |
d8308a48d06311522fe56a782252076f
|
|
| BLAKE2b-256 |
eb3dff0ececd09018495946b30ed69fb9d33269c5bbb71042a091632c45ce5bc
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 560.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
572eb9ba804c71964d999cfcaf2bc3add7d7629522f088e6509c434b8c6686aa
|
|
| MD5 |
ac10672dce27fc534da2fba17346bd37
|
|
| BLAKE2b-256 |
f9f343ffc8b757eb4b9d9fe6c0f339ca11eda0f8d12cf2a2df11aee808b8fbac
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13dba27126d1ab8fec64f58256eec74bf3006e9e12db9bbbe8ced0a418af9527
|
|
| MD5 |
6512f0a324e161da97a5b75ebbccbde9
|
|
| BLAKE2b-256 |
7b7c44b21c639b8de8f2236ff1c0610a4cc5e940f24b9b9044d46b11250bfa4b
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 438.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89da9bf5ed89e00fbcb05cd76379d792c508095abda876bf411facb113a4eeb9
|
|
| MD5 |
34cf0e3962c7502ba584f87cf1ce31af
|
|
| BLAKE2b-256 |
ff0a3fd9855e45d6b3b530d6ed2182062ea707aab8fd2cf3227c73dccd7903a6
|
File details
Details for the file mecab_python3-1.0.12-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 475.0 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
276a49fa86f68e49e4b09f66173217b863601bb146c7348b010060a4c10bdb00
|
|
| MD5 |
1fa34fe0d09dc18314150120d0788c7d
|
|
| BLAKE2b-256 |
1ba71d017526be61def79485878f3f30b98c1429ec75a9de66e581bbee38a7b5
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 501.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f72f3186dd9687124eeccdf194611c7cad0214fbe75fe3e2d5bce0c4e737b646
|
|
| MD5 |
d573aec2d12293aea7ef18af5a5fe5a8
|
|
| BLAKE2b-256 |
76564597b2a7f94ebc0874db0690bf25381edc375755030599e5e0b8889e8e66
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 581.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a04ed083b66aea30727a4a566e1f0fe4f80fef4dc79a6578630d64f6217c2b78
|
|
| MD5 |
1e4650ca82fbb171851277a0317e89d4
|
|
| BLAKE2b-256 |
011ee83c19cc6ca2a439e9dd7c6f39523f084c2c0736a90bd23bf843f294f098
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 560.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71fe4c53dd9412e99731a0c502b12e97ed41745c672e44e90b1bc74b20f8a7ed
|
|
| MD5 |
af72b25190df464a9a1100efb90b3a72
|
|
| BLAKE2b-256 |
c344c216ee4c01afddc38e1984fff1ed34665e2312cbba71c2b274a14d56cea1
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ff388b1b4a53d3d386baf1e4e2b81d9f0c857ab4b36676340b9230bd777d9e
|
|
| MD5 |
c4f1311c82632d837e982d3a66e6ca97
|
|
| BLAKE2b-256 |
39a945b8bd35b7033af9e1b60080fcba728f218a3af600737a647af5580d5189
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 438.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39eada926c332701ae63f92026d66b09681fbbf03b755ed12045ef6f842ffb90
|
|
| MD5 |
9e01d66175cfdb7c7568e53ab36b66ed
|
|
| BLAKE2b-256 |
f0bb48ecfc75bc74c2d63a313b2420607e96367c7292b25fb4e64670ddd8af84
|
File details
Details for the file mecab_python3-1.0.12-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 475.0 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2b1466efec243c66d654e129dc6ddb60bea753ba27678c85ea6a7d7d8ee9052
|
|
| MD5 |
bba38c6e47a74f113609a139f91c7349
|
|
| BLAKE2b-256 |
0ba5225c95b4b0796dabac2fa5247b706bbec97b8bc6d5dd14205ac9918e0552
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 501.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ccde52cef4036c6b8937b756e1c6e2ec27f407119c91ad8472ec118297173ba
|
|
| MD5 |
91c7dd7468799a8e58857eb0b75f73f3
|
|
| BLAKE2b-256 |
c8bd48599072a0e02e1e22782d43d46a3cb4396d491e3bd38707eacdd68075d8
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 577.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d36b8bd105955324f6c2f5c2b8a7ef5ab45cbb9d28e1e6973ef6e4c0ec5737fd
|
|
| MD5 |
012cf60085af19e29818688d154e1e87
|
|
| BLAKE2b-256 |
06c89f8c689fa27da5a498af2599fdb94ddb32e19361c4d8d88c8b987f3db3e2
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 555.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0aa7125401e023022670dab10afb8d8b8b330917bab3e08d810e2739e9d045c
|
|
| MD5 |
44ea6265158924f3e3e05c749077ea65
|
|
| BLAKE2b-256 |
74d142d5a53ee61865a99f472444bb66ae95c24dedd9ff0ae56986a2d651d836
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 434.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
714cf895fd1a779c220ecef9ecd26835e76821f22e9d728ac565eb0e79b63228
|
|
| MD5 |
9c740d4306f3ba13b9c29dd017e10f8c
|
|
| BLAKE2b-256 |
9cb86f3b3c221459c09ca6e31bf7a9aa6e579f68dfc323f0f87369f9d4acf0cc
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 438.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6d9ddff92332c275e9b3a48df605026832fe5a8e94a9befc8a717e2c6396a39
|
|
| MD5 |
0abe964a0f7890eebdc8057b92df62f3
|
|
| BLAKE2b-256 |
826edf80814e69a18df3c0602f0546919a36455d002c753b960019901deafba0
|
File details
Details for the file mecab_python3-1.0.12-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: mecab_python3-1.0.12-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 474.9 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f2cf15876461b290e261ca845ec20892a9cd30b7db20bee67ae7d96e93a63e0
|
|
| MD5 |
0a1c9cdd22912d48e9bef254cdb2a8fb
|
|
| BLAKE2b-256 |
08e252400736f3ec10c1e2dfdfa771d28658e3702f3fed418de31296fa06cf4a
|
