{ "info": { "author": "Yukino Ikegami", "author_email": "yknikgm@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: BSD License", "License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Text Processing" ], "description": "Unofficial MeCab binding Python module for many OSs (Windows, macOS, and Linux)\r\n\r\nOfficial Japanese document about MeCab is available: https://taku910.github.io/mecab/\r\n\r\nJapanese document about this Python wrapper is available: https://qiita.com/yukinoi/items/990b6933d9f21ba0fb43\r\n\r\nInstallation\r\n=============\r\n\r\n$ pip install mecab\r\n\r\nor\r\n\r\n$ python -m pip install mecab\r\n\r\nNOTE: If you use Python 64-bit on Windows, `MeCab 64-bit binary `_ is required.\r\n\r\nIf you encountered the error such as **MeCab_wrap.cxx:178:11: fatal error: 'Python.h' file not found**, please try the following command:\r\n\r\n$ CPLUS_INCLUDE_PATH=`python-config --prefix`/Headers:$CPLUS_INCLUDE_PATH pip install mecab\r\n\r\nUsage\r\n============\r\n\r\n.. code:: python\r\n\r\n >>> import MeCab\r\n >>> t = MeCab.Tagger()\r\n >>> sentence = \"\u592a\u90ce\u306f\u3053\u306e\u672c\u3092\u5973\u6027\u306b\u6e21\u3057\u305f\u3002\"\r\n >>> print(t.parse(sentence))\r\n \u592a\u90ce \u540d\u8a5e,\u56fa\u6709\u540d\u8a5e,\u4eba\u540d,\u540d,*,*,\u592a\u90ce,\u30bf\u30ed\u30a6,\u30bf\u30ed\u30fc\r\n \u306f \u52a9\u8a5e,\u4fc2\u52a9\u8a5e,*,*,*,*,\u306f,\u30cf,\u30ef\r\n \u3053\u306e \u9023\u4f53\u8a5e,*,*,*,*,*,\u3053\u306e,\u30b3\u30ce,\u30b3\u30ce\r\n \u672c \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u672c,\u30db\u30f3,\u30db\u30f3\r\n \u3092 \u52a9\u8a5e,\u683c\u52a9\u8a5e,\u4e00\u822c,*,*,*,\u3092,\u30f2,\u30f2\r\n \u5973\u6027 \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u5973\u6027,\u30b8\u30e7\u30bb\u30a4,\u30b8\u30e7\u30bb\u30a4\r\n \u306b \u52a9\u8a5e,\u683c\u52a9\u8a5e,\u4e00\u822c,*,*,*,\u306b,\u30cb,\u30cb\r\n \u6e21\u3057 \u52d5\u8a5e,\u81ea\u7acb,*,*,\u4e94\u6bb5\u30fb\u30b5\u884c,\u9023\u7528\u5f62,\u6e21\u3059,\u30ef\u30bf\u30b7,\u30ef\u30bf\u30b7\r\n \u305f \u52a9\u52d5\u8a5e,*,*,*,\u7279\u6b8a\u30fb\u30bf,\u57fa\u672c\u5f62,\u305f,\u30bf,\u30bf\r\n \u3002 \u8a18\u53f7,\u53e5\u70b9,*,*,*,*,\u3002,\u3002,\u3002\r\n EOS\r\n >>> n = t.parseToNode(sentence)\r\n >>> while n:\r\n >>> print(n.surface, \"\\t\", n.feature)\r\n >>> m = m.next\r\n BOS/EOS,*,*,*,*,*,*,*,*\r\n \u592a\u90ce \u540d\u8a5e,\u56fa\u6709\u540d\u8a5e,\u4eba\u540d,\u540d,*,*,\u592a\u90ce,\u30bf\u30ed\u30a6,\u30bf\u30ed\u30fc\r\n \u306f \u52a9\u8a5e,\u4fc2\u52a9\u8a5e,*,*,*,*,\u306f,\u30cf,\u30ef\r\n \u3053\u306e \u9023\u4f53\u8a5e,*,*,*,*,*,\u3053\u306e,\u30b3\u30ce,\u30b3\u30ce\r\n \u672c \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u672c,\u30db\u30f3,\u30db\u30f3\r\n \u3092 \u52a9\u8a5e,\u683c\u52a9\u8a5e,\u4e00\u822c,*,*,*,\u3092,\u30f2,\u30f2\r\n \u5973\u6027 \u540d\u8a5e,\u4e00\u822c,*,*,*,*,\u5973\u6027,\u30b8\u30e7\u30bb\u30a4,\u30b8\u30e7\u30bb\u30a4\r\n \u306b \u52a9\u8a5e,\u683c\u52a9\u8a5e,\u4e00\u822c,*,*,*,\u306b,\u30cb,\u30cb\r\n \u6e21\u3057 \u52d5\u8a5e,\u81ea\u7acb,*,*,\u4e94\u6bb5\u30fb\u30b5\u884c,\u9023\u7528\u5f62,\u6e21\u3059,\u30ef\u30bf\u30b7,\u30ef\u30bf\u30b7\r\n \u305f \u52a9\u52d5\u8a5e,*,*,*,\u7279\u6b8a\u30fb\u30bf,\u57fa\u672c\u5f62,\u305f,\u30bf,\u30bf\r\n \u3002 \u8a18\u53f7,\u53e5\u70b9,*,*,*,*,\u3002,\u3002,\u3002\r\n BOS/EOS,*,*,*,*,*,*,*,*\r\n\r\nLicense\r\n============\r\nMeCab is copyrighted free software by Taku Kudo and Nippon Telegraph and Telephone Corporation, and is released under any of the GPL (see the file GPL), the LGPL (see the file LGPL), or the BSD License (see the file BSD).\r\n\r\nAlso, this Python binding is under any of the GPL, the LGPL, or the BSD License.\r\n\r\nChanges\r\n============\r\n\r\n0.996.2 (2020/02/11)\r\n----------------------------\r\n\r\n- Bugfix: memory leak for MeCab.Tagger().parseToNode()\r\n\r\nContributing\r\n===============\r\n\r\nSee https://github.com/ikegami-yukino/mecab/blob/master/mecab/python/CONTRIBUTING.md\r\n\r\n\r\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ikegami-yukino/mecab/tree/master/mecab/python", "keywords": "", "license": "BSD, GPL or LGPL", "maintainer": "", "maintainer_email": "", "name": "mecab", "package_url": "https://pypi.org/project/mecab/", "platform": "", "project_url": "https://pypi.org/project/mecab/", "project_urls": { "Homepage": "https://github.com/ikegami-yukino/mecab/tree/master/mecab/python" }, "release_url": "https://pypi.org/project/mecab/0.996.3/", "requires_dist": null, "requires_python": "", "summary": "MeCab binding for many OSs (Windows, macOS, and Linux)", "version": "0.996.3", "yanked": false, "yanked_reason": null }, "last_serial": 12295843, "releases": { "0.996": [ { "comment_text": "", "digests": { "md5": "70a99ae8d06bd2be056ca53bda6a6d6c", "sha256": "cd5763bf7e0bcd80ba844b981841ad159ec07d9ccf764a9b2c8ad57b31cecf7b" }, "downloads": -1, "filename": "mecab-0.996-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "70a99ae8d06bd2be056ca53bda6a6d6c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 729234, "upload_time": "2019-10-28T12:05:19", "upload_time_iso_8601": "2019-10-28T12:05:19.256746Z", "url": "https://files.pythonhosted.org/packages/44/7d/880dba649c11cc8271bf457e4dc1495ded3172139454e9563af3452c7d53/mecab-0.996-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff350f9432f640c5071e7b98045bdad9", "sha256": "366c5d9d57afdab92216e3c1569f22b992d3a063a67d5d4f42aced26011f6a4b" }, "downloads": -1, "filename": "mecab-0.996-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ff350f9432f640c5071e7b98045bdad9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 499657, "upload_time": "2019-10-28T12:05:22", "upload_time_iso_8601": "2019-10-28T12:05:22.046799Z", "url": "https://files.pythonhosted.org/packages/56/8c/0378d3492dacd1e610d71bbf20159d81c302c64589dfe05ad491137a4dc1/mecab-0.996-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e86137e4821f17d4e51f800ecb8d76fe", "sha256": "f0332dfdc215497fa2e8edf87f5638f232f96fbc87edef6136175eaa7d586964" }, "downloads": -1, "filename": "mecab-0.996-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "e86137e4821f17d4e51f800ecb8d76fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 738600, "upload_time": "2019-10-28T12:05:26", "upload_time_iso_8601": "2019-10-28T12:05:26.343346Z", "url": "https://files.pythonhosted.org/packages/c6/4f/92b281aea90a3b9c11550cdb09278a9b3828ee71b0fe9f8da66245846e7f/mecab-0.996-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e6d77f687b940c8fcec8c5665165888", "sha256": "856cc1c3463e72bda075c13ab392383c7a4f9d4e0b2e024842eb024ccc28b7ab" }, "downloads": -1, "filename": "mecab-0.996-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8e6d77f687b940c8fcec8c5665165888", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 509431, "upload_time": "2019-10-28T12:05:28", "upload_time_iso_8601": "2019-10-28T12:05:28.306779Z", "url": "https://files.pythonhosted.org/packages/11/b1/c340f77126af3aa80a220412ef00216ddc8535ad15b04bd2bf4299ab74ff/mecab-0.996-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cd4a69673a04bef418464fe145e9ad0", "sha256": "e07c90472592bcf961eda718d38267af50c1bb7cd724fe4ba0d85b47f72209f1" }, "downloads": -1, "filename": "mecab-0.996-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9cd4a69673a04bef418464fe145e9ad0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 738600, "upload_time": "2019-10-28T12:05:30", "upload_time_iso_8601": "2019-10-28T12:05:30.708074Z", "url": "https://files.pythonhosted.org/packages/46/04/8951252c8356b1674eda5b472df08c7cbfcb35f2fd44ee578510eb63c691/mecab-0.996-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad3bebfe204a6bcd82efe854ca60eba0", "sha256": "e7fd48a6e2a9dbfc22f3b5391ce0b08d9bb4400a7da90d536cce490a0094dd77" }, "downloads": -1, "filename": "mecab-0.996-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ad3bebfe204a6bcd82efe854ca60eba0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 509438, "upload_time": "2019-10-28T12:05:32", "upload_time_iso_8601": "2019-10-28T12:05:32.982917Z", "url": "https://files.pythonhosted.org/packages/46/92/02b78f00cf2154831f416e484c6e372b93a8c24edaf969e44093d1482673/mecab-0.996-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b29d2277781c08318b5960074d0fd2d", "sha256": "450acd2135de3ae927cfca8e107da05db14fa4369f27fd551d5f0d57c6df7a0b" }, "downloads": -1, "filename": "mecab-0.996-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "1b29d2277781c08318b5960074d0fd2d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 738776, "upload_time": "2019-10-28T12:05:35", "upload_time_iso_8601": "2019-10-28T12:05:35.038578Z", "url": "https://files.pythonhosted.org/packages/2a/e5/bfaa234bd270baefd5918574bd34edbb2293e150f3cfe4b2ced0285dd6cd/mecab-0.996-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62bbfb164d309505383a0866f769d38c", "sha256": "90966b002eeeee74d7251c1bbb257437c1918803f918afc69df78a87d081ef07" }, "downloads": -1, "filename": "mecab-0.996-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "62bbfb164d309505383a0866f769d38c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 509532, "upload_time": "2019-10-28T12:05:37", "upload_time_iso_8601": "2019-10-28T12:05:37.570352Z", "url": "https://files.pythonhosted.org/packages/a0/a1/8b01ea3c8a10a86fbb63d1429b9e1db6144c344e95904404b70f923facd2/mecab-0.996-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "175e9d6a60950c5732f3e5b5598c7645", "sha256": "ae166290fb0a4e322f6692a02716528fe34b7812f9c36d6fcd453e50ce4b3833" }, "downloads": -1, "filename": "mecab-0.996.tar.gz", "has_sig": false, "md5_digest": "175e9d6a60950c5732f3e5b5598c7645", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63484, "upload_time": "2019-10-28T12:05:39", "upload_time_iso_8601": "2019-10-28T12:05:39.559095Z", "url": "https://files.pythonhosted.org/packages/63/b2/a240ad681c8be36837be13d805ea8f31d94c3bf5949db5f68a2c46bb14f4/mecab-0.996.tar.gz", "yanked": false, "yanked_reason": null } ], "0.996.2": [ { "comment_text": "", "digests": { "md5": "6ba6087d6440a44b3d3f3482681c87c9", "sha256": "35cfaab24b4445bc2e11ee0ae138933a41e31883232e2d9017df98cc2a9c604d" }, "downloads": -1, "filename": "mecab-0.996.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "6ba6087d6440a44b3d3f3482681c87c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 730238, "upload_time": "2020-02-11T14:59:45", "upload_time_iso_8601": "2020-02-11T14:59:45.716902Z", "url": "https://files.pythonhosted.org/packages/a8/10/03eef822491bfa39c2a87e449b2a50ecf441dddb99e254b8b9611478633f/mecab-0.996.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab1e6488023c30f2a2bb63013e6ed9d2", "sha256": "096bc3fb638e349dcfb171d71a1cfaebf8b93b06a13209e9a607132b62cb3357" }, "downloads": -1, "filename": "mecab-0.996.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ab1e6488023c30f2a2bb63013e6ed9d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 500425, "upload_time": "2020-02-11T14:59:47", "upload_time_iso_8601": "2020-02-11T14:59:47.793864Z", "url": "https://files.pythonhosted.org/packages/50/d7/a2044d985f72bb59eeb231d9f61b6f37ff8d07d5faea18234d63a88542a3/mecab-0.996.2-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc45f5ae814784456dc2b482812e390b", "sha256": "9868fcacc887a6848634682394d9b3b388fe724408e0c2d0cc40c0d902df9e49" }, "downloads": -1, "filename": "mecab-0.996.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "dc45f5ae814784456dc2b482812e390b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 739605, "upload_time": "2020-02-11T14:59:50", "upload_time_iso_8601": "2020-02-11T14:59:50.632324Z", "url": "https://files.pythonhosted.org/packages/2b/79/9b4f35c281393aaf1b5b7a7021063ed4684e1c992883e382de7e7db4b90c/mecab-0.996.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fef912e0e1194f12832abdb4188b8f58", "sha256": "9449d2e99c051517d088c40f035bb710b60ef74cf10494ec882316e4d86ec526" }, "downloads": -1, "filename": "mecab-0.996.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fef912e0e1194f12832abdb4188b8f58", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 510517, "upload_time": "2020-02-11T14:59:52", "upload_time_iso_8601": "2020-02-11T14:59:52.929055Z", "url": "https://files.pythonhosted.org/packages/23/97/b74a78e13137175cbf57d9c212a61947556e3bf811dd6917d76f93557ee4/mecab-0.996.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e16b8531877646e8f940150dbf8d4c75", "sha256": "13d41749d5a7314edd6ff4df22fc3dd80843e6002a2ae080376d3a448ead9274" }, "downloads": -1, "filename": "mecab-0.996.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e16b8531877646e8f940150dbf8d4c75", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 739608, "upload_time": "2020-02-11T14:59:54", "upload_time_iso_8601": "2020-02-11T14:59:54.841238Z", "url": "https://files.pythonhosted.org/packages/e8/a6/1b75f55ba32c94b32582484ffcb30b8d22525f661d4a88a38997b099c6ba/mecab-0.996.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3da618599a689aea4f59c68b1c7f46f8", "sha256": "0afedab4824fc6c25349801edfc857e430b8c85c6d7c417e04d67a2759c00087" }, "downloads": -1, "filename": "mecab-0.996.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3da618599a689aea4f59c68b1c7f46f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 510520, "upload_time": "2020-02-11T14:59:56", "upload_time_iso_8601": "2020-02-11T14:59:56.865810Z", "url": "https://files.pythonhosted.org/packages/4c/65/eacfeaccb35a05ce6cd6e114222fb41c846d62b7e55cf1daa207ef7f2e3c/mecab-0.996.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f93fc20bbf83a49c0f794da2975879d2", "sha256": "6c6b042a73dc0bb7ec34c2c91683f5d0327f6f46539fed3afb4d123dc64cab3c" }, "downloads": -1, "filename": "mecab-0.996.2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "f93fc20bbf83a49c0f794da2975879d2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 739669, "upload_time": "2020-02-11T14:59:58", "upload_time_iso_8601": "2020-02-11T14:59:58.598159Z", "url": "https://files.pythonhosted.org/packages/c1/86/1991da715f0ca91732f621a37a570b414dd0f908512544337ce12672a5de/mecab-0.996.2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc8a9fd25b3c5fa41bbee4e876723e3b", "sha256": "95685c2b7b1e30d42506d19f6ada8b135ef0006097585f410c0bfe4921f6d6f2" }, "downloads": -1, "filename": "mecab-0.996.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "cc8a9fd25b3c5fa41bbee4e876723e3b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 510713, "upload_time": "2020-02-11T15:00:00", "upload_time_iso_8601": "2020-02-11T15:00:00.693486Z", "url": "https://files.pythonhosted.org/packages/43/63/3d0d28a818e97cb4c776eb2e264863873d24652499591e89e7376b2cd3cd/mecab-0.996.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10ec5ab365ade2666fc15760ace80166", "sha256": "ec8e46e4930e091c25f9f2dc740543bfc483482917dc1340fd914a9344de5b10" }, "downloads": -1, "filename": "mecab-0.996.2.tar.gz", "has_sig": false, "md5_digest": "10ec5ab365ade2666fc15760ace80166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62484, "upload_time": "2020-02-11T15:00:02", "upload_time_iso_8601": "2020-02-11T15:00:02.343763Z", "url": "https://files.pythonhosted.org/packages/0d/c5/3ac5ad489d296d048b9234d81062eed1b5249583f53a87955402b40516c2/mecab-0.996.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.996.3": [ { "comment_text": "", "digests": { "md5": "303e4c2f82afb96d4c0091f56ad17293", "sha256": "7c42c76ffe551688fca424e4e8e8e6adffa79f80c7f40f5699af449321b13887" }, "downloads": -1, "filename": "mecab-0.996.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "303e4c2f82afb96d4c0091f56ad17293", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 730420, "upload_time": "2021-04-24T11:39:41", "upload_time_iso_8601": "2021-04-24T11:39:41.011854Z", "url": "https://files.pythonhosted.org/packages/63/4c/245e394b3093df8c4881aad5015277853bd303a1aa9d0d025645655931c5/mecab-0.996.3-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5161f385a8e2ac5c05c84b6571d5934", "sha256": "6db2e3337baf9fc082f7ccefd233ff3cf7dbf51f81e715fbd29bcde03cb86f65" }, "downloads": -1, "filename": "mecab-0.996.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a5161f385a8e2ac5c05c84b6571d5934", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 500606, "upload_time": "2021-04-24T11:39:42", "upload_time_iso_8601": "2021-04-24T11:39:42.731059Z", "url": "https://files.pythonhosted.org/packages/c3/98/557de33a1bb856dff61c8f79a78786c9560ffc4eab1b85eddebd10a4c2a7/mecab-0.996.3-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3130a7a8ed3c44cf652d17b93efa35bd", "sha256": "f04287da1f16021b3809d66deca3fe6b8ac54e920584d2bd6880f67549aa17fc" }, "downloads": -1, "filename": "mecab-0.996.3-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "3130a7a8ed3c44cf652d17b93efa35bd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 735488, "upload_time": "2021-12-14T01:52:37", "upload_time_iso_8601": "2021-12-14T01:52:37.016339Z", "url": "https://files.pythonhosted.org/packages/b7/f7/fe4dd0ffe38e51f46b42cb60b8311edeb13f9b2d7c7e2a599d5c042efffb/mecab-0.996.3-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c046388fddae0e4dae7fcbb73d05db1", "sha256": "586e83c7226e4e1d79788a210a380566d97b4e96ca318d02f181927bbf8f3f5f" }, "downloads": -1, "filename": "mecab-0.996.3-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "0c046388fddae0e4dae7fcbb73d05db1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 507223, "upload_time": "2021-12-14T01:52:14", "upload_time_iso_8601": "2021-12-14T01:52:14.784444Z", "url": "https://files.pythonhosted.org/packages/35/94/9931c4805448e3714efddc67c800336fcaa2bc75dbd33c0fd9f9f5afbe7a/mecab-0.996.3-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c507e2a9f45e18f1c979774bd0f61cd4", "sha256": "34d3b1a77804de8db2a9225e23727e1e87ce0f081fe00e9651ad784947c589ab" }, "downloads": -1, "filename": "mecab-0.996.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c507e2a9f45e18f1c979774bd0f61cd4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 739750, "upload_time": "2021-04-24T11:39:45", "upload_time_iso_8601": "2021-04-24T11:39:45.494019Z", "url": "https://files.pythonhosted.org/packages/67/39/43f3bcb939bf18c037a8b675d6b37fe87fae97925ac5343cb1d61c08107a/mecab-0.996.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebe6ff027d8cb72632278d1a77050e30", "sha256": "6687085337685ada67e165711177d03744a1ba7495fe3e6a75c689b60b16c3fb" }, "downloads": -1, "filename": "mecab-0.996.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ebe6ff027d8cb72632278d1a77050e30", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 510782, "upload_time": "2021-04-24T11:39:47", "upload_time_iso_8601": "2021-04-24T11:39:47.261861Z", "url": "https://files.pythonhosted.org/packages/12/b3/6b47d546ff484d38cf9e1ef035ff61c5581c10be4a91159243a83a1a748a/mecab-0.996.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c24a612a698898f033f526d08b0e486", "sha256": "650ffe2ec4209d2ac6d09065f278998cd17e5aaf1e15d122e9c51974f3c3fe00" }, "downloads": -1, "filename": "mecab-0.996.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0c24a612a698898f033f526d08b0e486", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 739755, "upload_time": "2021-04-24T11:39:48", "upload_time_iso_8601": "2021-04-24T11:39:48.974959Z", "url": "https://files.pythonhosted.org/packages/33/1c/22b165ab60e83cdd2efc6284990917ae8815e53c2670092545b042602f5b/mecab-0.996.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39ada089b98f48c8575916348396c771", "sha256": "edd0791f72e087d53ce7d49143ac9b9068296f67b580c61590356a1e87229566" }, "downloads": -1, "filename": "mecab-0.996.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "39ada089b98f48c8575916348396c771", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 510789, "upload_time": "2021-04-24T11:39:50", "upload_time_iso_8601": "2021-04-24T11:39:50.396830Z", "url": "https://files.pythonhosted.org/packages/be/86/c5c49c1bb461e93dda5c0b1bfe4625397c01376316a3f857701948ae1fb0/mecab-0.996.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba6f8f5b3511c4029d300f57a2ad48f8", "sha256": "1036a472a4fa0e7a470289b2f8985f91aa2c89e2497cc698094e53513c6f6238" }, "downloads": -1, "filename": "mecab-0.996.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ba6f8f5b3511c4029d300f57a2ad48f8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 731262, "upload_time": "2021-04-24T11:39:52", "upload_time_iso_8601": "2021-04-24T11:39:52.088986Z", "url": "https://files.pythonhosted.org/packages/7c/08/a1279d56d6e214c1f1311a4c9f542171db5769d464f04ca817f6fa9e623b/mecab-0.996.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21e4d892c863fbf76afa611b17fa5394", "sha256": "521904cfa5ff2c1545290891a17df0853bbdc1cf1f83068d9ffde19012ee8be2" }, "downloads": -1, "filename": "mecab-0.996.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "21e4d892c863fbf76afa611b17fa5394", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 500817, "upload_time": "2021-04-24T11:39:53", "upload_time_iso_8601": "2021-04-24T11:39:53.624168Z", "url": "https://files.pythonhosted.org/packages/7a/fd/f17205b42c77cf1a26181098bae1ca6267931128c277f6e9517a359fc92b/mecab-0.996.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a96290927deea3ad79ac531c0a4d4963", "sha256": "74d9f196ed6eb0a1faedefb22517fae07d53b6c6cddfcf67ea26b8406bd434e7" }, "downloads": -1, "filename": "mecab-0.996.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a96290927deea3ad79ac531c0a4d4963", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 731116, "upload_time": "2021-04-24T11:39:55", "upload_time_iso_8601": "2021-04-24T11:39:55.003574Z", "url": "https://files.pythonhosted.org/packages/d5/d4/d80c775a6f8d7f6fdaa8c8ff94dc311e7c839db511b1ad993a63aa5679cf/mecab-0.996.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8600abf9b003020621ea578ab54865e0", "sha256": "6833fcbc5d7ce494d8e9aafff1b390684e5081cf92810917cdcd22d3b28f2e93" }, "downloads": -1, "filename": "mecab-0.996.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8600abf9b003020621ea578ab54865e0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 500872, "upload_time": "2021-04-24T11:39:56", "upload_time_iso_8601": "2021-04-24T11:39:56.500295Z", "url": "https://files.pythonhosted.org/packages/f0/7e/434b07a75cdf40c10cd810620f5d26344d5ab97608e6dff43238a0bda98f/mecab-0.996.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "957937c07490481067c1803aaf54d203", "sha256": "0a943743149a00f8ff616c05cdb267618657a48e37b1381c5f8b41e9af8f32ad" }, "downloads": -1, "filename": "mecab-0.996.3.tar.gz", "has_sig": false, "md5_digest": "957937c07490481067c1803aaf54d203", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62556, "upload_time": "2021-04-24T11:39:58", "upload_time_iso_8601": "2021-04-24T11:39:58.093115Z", "url": "https://files.pythonhosted.org/packages/b8/60/7059e1f60969544c45b2c3edacffe1b07932db9ee623a646d06d2173568d/mecab-0.996.3.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "303e4c2f82afb96d4c0091f56ad17293", "sha256": "7c42c76ffe551688fca424e4e8e8e6adffa79f80c7f40f5699af449321b13887" }, "downloads": -1, "filename": "mecab-0.996.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "303e4c2f82afb96d4c0091f56ad17293", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 730420, "upload_time": "2021-04-24T11:39:41", "upload_time_iso_8601": "2021-04-24T11:39:41.011854Z", "url": "https://files.pythonhosted.org/packages/63/4c/245e394b3093df8c4881aad5015277853bd303a1aa9d0d025645655931c5/mecab-0.996.3-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5161f385a8e2ac5c05c84b6571d5934", "sha256": "6db2e3337baf9fc082f7ccefd233ff3cf7dbf51f81e715fbd29bcde03cb86f65" }, "downloads": -1, "filename": "mecab-0.996.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a5161f385a8e2ac5c05c84b6571d5934", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 500606, "upload_time": "2021-04-24T11:39:42", "upload_time_iso_8601": "2021-04-24T11:39:42.731059Z", "url": "https://files.pythonhosted.org/packages/c3/98/557de33a1bb856dff61c8f79a78786c9560ffc4eab1b85eddebd10a4c2a7/mecab-0.996.3-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3130a7a8ed3c44cf652d17b93efa35bd", "sha256": "f04287da1f16021b3809d66deca3fe6b8ac54e920584d2bd6880f67549aa17fc" }, "downloads": -1, "filename": "mecab-0.996.3-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "3130a7a8ed3c44cf652d17b93efa35bd", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 735488, "upload_time": "2021-12-14T01:52:37", "upload_time_iso_8601": "2021-12-14T01:52:37.016339Z", "url": "https://files.pythonhosted.org/packages/b7/f7/fe4dd0ffe38e51f46b42cb60b8311edeb13f9b2d7c7e2a599d5c042efffb/mecab-0.996.3-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c046388fddae0e4dae7fcbb73d05db1", "sha256": "586e83c7226e4e1d79788a210a380566d97b4e96ca318d02f181927bbf8f3f5f" }, "downloads": -1, "filename": "mecab-0.996.3-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "0c046388fddae0e4dae7fcbb73d05db1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 507223, "upload_time": "2021-12-14T01:52:14", "upload_time_iso_8601": "2021-12-14T01:52:14.784444Z", "url": "https://files.pythonhosted.org/packages/35/94/9931c4805448e3714efddc67c800336fcaa2bc75dbd33c0fd9f9f5afbe7a/mecab-0.996.3-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c507e2a9f45e18f1c979774bd0f61cd4", "sha256": "34d3b1a77804de8db2a9225e23727e1e87ce0f081fe00e9651ad784947c589ab" }, "downloads": -1, "filename": "mecab-0.996.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c507e2a9f45e18f1c979774bd0f61cd4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 739750, "upload_time": "2021-04-24T11:39:45", "upload_time_iso_8601": "2021-04-24T11:39:45.494019Z", "url": "https://files.pythonhosted.org/packages/67/39/43f3bcb939bf18c037a8b675d6b37fe87fae97925ac5343cb1d61c08107a/mecab-0.996.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebe6ff027d8cb72632278d1a77050e30", "sha256": "6687085337685ada67e165711177d03744a1ba7495fe3e6a75c689b60b16c3fb" }, "downloads": -1, "filename": "mecab-0.996.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ebe6ff027d8cb72632278d1a77050e30", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 510782, "upload_time": "2021-04-24T11:39:47", "upload_time_iso_8601": "2021-04-24T11:39:47.261861Z", "url": "https://files.pythonhosted.org/packages/12/b3/6b47d546ff484d38cf9e1ef035ff61c5581c10be4a91159243a83a1a748a/mecab-0.996.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c24a612a698898f033f526d08b0e486", "sha256": "650ffe2ec4209d2ac6d09065f278998cd17e5aaf1e15d122e9c51974f3c3fe00" }, "downloads": -1, "filename": "mecab-0.996.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0c24a612a698898f033f526d08b0e486", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 739755, "upload_time": "2021-04-24T11:39:48", "upload_time_iso_8601": "2021-04-24T11:39:48.974959Z", "url": "https://files.pythonhosted.org/packages/33/1c/22b165ab60e83cdd2efc6284990917ae8815e53c2670092545b042602f5b/mecab-0.996.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39ada089b98f48c8575916348396c771", "sha256": "edd0791f72e087d53ce7d49143ac9b9068296f67b580c61590356a1e87229566" }, "downloads": -1, "filename": "mecab-0.996.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "39ada089b98f48c8575916348396c771", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 510789, "upload_time": "2021-04-24T11:39:50", "upload_time_iso_8601": "2021-04-24T11:39:50.396830Z", "url": "https://files.pythonhosted.org/packages/be/86/c5c49c1bb461e93dda5c0b1bfe4625397c01376316a3f857701948ae1fb0/mecab-0.996.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba6f8f5b3511c4029d300f57a2ad48f8", "sha256": "1036a472a4fa0e7a470289b2f8985f91aa2c89e2497cc698094e53513c6f6238" }, "downloads": -1, "filename": "mecab-0.996.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ba6f8f5b3511c4029d300f57a2ad48f8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 731262, "upload_time": "2021-04-24T11:39:52", "upload_time_iso_8601": "2021-04-24T11:39:52.088986Z", "url": "https://files.pythonhosted.org/packages/7c/08/a1279d56d6e214c1f1311a4c9f542171db5769d464f04ca817f6fa9e623b/mecab-0.996.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21e4d892c863fbf76afa611b17fa5394", "sha256": "521904cfa5ff2c1545290891a17df0853bbdc1cf1f83068d9ffde19012ee8be2" }, "downloads": -1, "filename": "mecab-0.996.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "21e4d892c863fbf76afa611b17fa5394", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 500817, "upload_time": "2021-04-24T11:39:53", "upload_time_iso_8601": "2021-04-24T11:39:53.624168Z", "url": "https://files.pythonhosted.org/packages/7a/fd/f17205b42c77cf1a26181098bae1ca6267931128c277f6e9517a359fc92b/mecab-0.996.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a96290927deea3ad79ac531c0a4d4963", "sha256": "74d9f196ed6eb0a1faedefb22517fae07d53b6c6cddfcf67ea26b8406bd434e7" }, "downloads": -1, "filename": "mecab-0.996.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a96290927deea3ad79ac531c0a4d4963", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 731116, "upload_time": "2021-04-24T11:39:55", "upload_time_iso_8601": "2021-04-24T11:39:55.003574Z", "url": "https://files.pythonhosted.org/packages/d5/d4/d80c775a6f8d7f6fdaa8c8ff94dc311e7c839db511b1ad993a63aa5679cf/mecab-0.996.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8600abf9b003020621ea578ab54865e0", "sha256": "6833fcbc5d7ce494d8e9aafff1b390684e5081cf92810917cdcd22d3b28f2e93" }, "downloads": -1, "filename": "mecab-0.996.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "8600abf9b003020621ea578ab54865e0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 500872, "upload_time": "2021-04-24T11:39:56", "upload_time_iso_8601": "2021-04-24T11:39:56.500295Z", "url": "https://files.pythonhosted.org/packages/f0/7e/434b07a75cdf40c10cd810620f5d26344d5ab97608e6dff43238a0bda98f/mecab-0.996.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "957937c07490481067c1803aaf54d203", "sha256": "0a943743149a00f8ff616c05cdb267618657a48e37b1381c5f8b41e9af8f32ad" }, "downloads": -1, "filename": "mecab-0.996.3.tar.gz", "has_sig": false, "md5_digest": "957937c07490481067c1803aaf54d203", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62556, "upload_time": "2021-04-24T11:39:58", "upload_time_iso_8601": "2021-04-24T11:39:58.093115Z", "url": "https://files.pythonhosted.org/packages/b8/60/7059e1f60969544c45b2c3edacffe1b07932db9ee623a646d06d2173568d/mecab-0.996.3.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }