mecab-python3


Namemecab-python3 JSON
Version 1.0.10 PyPI version JSON
download
home_pagehttps://github.com/SamuraiT/mecab-python3
SummaryPython wrapper for the MeCab morphological analyzer for Japanese
upload_time2024-10-31 08:39:21
maintainerPaul O'Leary McCann
docs_urlNone
authorNone
requires_pythonNone
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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を英語で書く必要はありません。**

[MeCab]: https://taku910.github.io/mecab/

Note that Windows wheels require a [Microsoft Visual C++
Redistributable][msvc], so be sure to install that.

[msvc]: https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads

# Basic usage

```py
>>> 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][mecab-docs] for more information.

[mecab-docs]: https://taku910.github.io/mecab/

# Installation

Binary wheels are available for MacOS X, Linux, and Windows (64bit) are
installed by default when you use `pip`:

```sh
pip install mecab-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:

```sh
pip install unidic-lite
```

To build from source using pip,

```sh
pip install --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](https://github.com/polm/unidic-py): The latest full UniDic.
- [unidic-lite](https://github.com/polm/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.

- [ipadic](https://github.com/polm/ipadic-py)
- [jumandic](https://github.com/polm/jumandic-py)

For more details on the differences between dictionaries see [here](https://www.dampfkraft.com/nlp/japanese-tokenizer-dictionaries.html). 

# 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][msvc] to use this package on Windows.

## Installing a Dictionary

Run `pip install unidic-lite` and confirm that works. If that fixes your
problem, you either don't have a dictionary installed, or you need to specify
your dictionary path like this:

    tagger = MeCab.Tagger('-r /dev/null -d /usr/local/lib/mecab/dic/mydic')

Note: on Windows, use `nul` instead of `/dev/null`. Alternately, if you have a
`mecabrc` you can use the path after `-r`.

## Specifying a mecabrc

If you get this error:

    error message: [ifs] no such file or directory: /usr/local/etc/mecabrc

You need to specify a `mecabrc` file. It's OK to specify an empty file, it just
has to exist. You can specify a `mecabrc` with `-r`. This may be necessary on
Debian or Ubuntu, where the `mecabrc` is in `/etc/mecabrc`.

You can specify an empty `mecabrc` like this:

    tagger = MeCab.Tagger('-r/dev/null -d/home/hoge/mydic')

## Using Unsupported Output Modes like `-Ochasen`

Chasen output is not a built-in feature of MeCab, you must specify it in your
`dicrc` or `mecabrc`. Notably, Unidic does not include Chasen output format.
Please see [the MeCab documentation](https://taku910.github.io/mecab/#format).

# Alternatives

- [fugashi](https://github.com/polm/fugashi) is a Cython wrapper for MeCab with a Pythonic interface, by the current maintainer of this library
- [SudachiPy](https://github.com/WorksApplications/sudachi.rs) is a modern tokenizer with an actively maintained dictionary
- [pymecab-ko](https://github.com/NoUnique/pymecab-ko) is a wrapper of the Korean MeCab fork [mecab-ko](https://bitbucket.org/eunjeon/mecab-ko/src/master/) based on mecab-python3
- [KoNLPy](https://konlpy.org/en/latest/) 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`). 

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/SamuraiT/mecab-python3",
    "name": "mecab-python3",
    "maintainer": "Paul O'Leary McCann",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "polm@dampfkraft.com",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/00/df/eeb4e250fc0a69b0a2deed5573f2c8d8445cf643cb9ecf25674f8186880f/mecab_python3-1.0.10.tar.gz",
    "platform": null,
    "description": "This is a Python wrapper for the [MeCab][] morphological analyzer for Japanese\ntext. It currently works with Python 3.8 and greater.\n\n**Note:** If using MacOS Big Sur, you'll need to upgrade pip to version 20.3 or\nhigher to use wheels due to a pip issue.\n\n**issue\u3092\u82f1\u8a9e\u3067\u66f8\u304f\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002**\n\n[MeCab]: https://taku910.github.io/mecab/\n\nNote that Windows wheels require a [Microsoft Visual C++\nRedistributable][msvc], so be sure to install that.\n\n[msvc]: https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads\n\n# Basic usage\n\n```py\n>>> import MeCab\n>>> wakati = MeCab.Tagger(\"-Owakati\")\n>>> wakati.parse(\"python\u304c\u5927\u597d\u304d\u3067\u3059\").split()\n['python', '\u304c', '\u5927\u597d\u304d', '\u3067\u3059']\n\n>>> tagger = MeCab.Tagger()\n>>> print(tagger.parse(\"python\u304c\u5927\u597d\u304d\u3067\u3059\"))\npython  python  python  python  \u540d\u8a5e-\u666e\u901a\u540d\u8a5e-\u4e00\u822c\n\u304c      \u30ac      \u30ac      \u304c      \u52a9\u8a5e-\u683c\u52a9\u8a5e\n\u5927\u597d\u304d  \u30c0\u30a4\u30b9\u30ad        \u30c0\u30a4\u30b9\u30ad        \u5927\u597d\u304d  \u5f62\u72b6\u8a5e-\u4e00\u822c\n\u3067\u3059    \u30c7\u30b9    \u30c7\u30b9    \u3067\u3059    \u52a9\u52d5\u8a5e  \u52a9\u52d5\u8a5e-\u30c7\u30b9     \u7d42\u6b62\u5f62-\u4e00\u822c\nEOS\n```\n\nThe API for `mecab-python3` closely follows the API for MeCab itself,\neven when this makes it not very \u201cPythonic.\u201d  Please consult the [official MeCab\ndocumentation][mecab-docs] for more information.\n\n[mecab-docs]: https://taku910.github.io/mecab/\n\n# Installation\n\nBinary wheels are available for MacOS X, Linux, and Windows (64bit) are\ninstalled by default when you use `pip`:\n\n```sh\npip install mecab-python3\n```\n\nThese wheels include a copy of the MeCab library, but not a dictionary. In\norder to use MeCab you'll need to install a dictionary. `unidic-lite` is a good\none to start with:\n\n```sh\npip install unidic-lite\n```\n\nTo build from source using pip,\n\n```sh\npip install --no-binary :all: mecab-python3\n```\n\n## Dictionaries\n\nIn 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:\n\n- [unidic](https://github.com/polm/unidic-py): The latest full UniDic.\n- [unidic-lite](https://github.com/polm/unidic-lite): A slightly modified UniDic 2.1.2, chosen for its small size.\n\nThe dictionaries below are not recommended due to being unmaintained for many years, but they are available for use with legacy applications.\n\n- [ipadic](https://github.com/polm/ipadic-py)\n- [jumandic](https://github.com/polm/jumandic-py)\n\nFor more details on the differences between dictionaries see [here](https://www.dampfkraft.com/nlp/japanese-tokenizer-dictionaries.html). \n\n# Common Issues\n\nIf you get a `RuntimeError` when you try to run MeCab, here are some things to check:\n\n## Windows Redistributable\n\nYou have to install [this][msvc] to use this package on Windows.\n\n## Installing a Dictionary\n\nRun `pip install unidic-lite` and confirm that works. If that fixes your\nproblem, you either don't have a dictionary installed, or you need to specify\nyour dictionary path like this:\n\n    tagger = MeCab.Tagger('-r /dev/null -d /usr/local/lib/mecab/dic/mydic')\n\nNote: on Windows, use `nul` instead of `/dev/null`. Alternately, if you have a\n`mecabrc` you can use the path after `-r`.\n\n## Specifying a mecabrc\n\nIf you get this error:\n\n    error message: [ifs] no such file or directory: /usr/local/etc/mecabrc\n\nYou need to specify a `mecabrc` file. It's OK to specify an empty file, it just\nhas to exist. You can specify a `mecabrc` with `-r`. This may be necessary on\nDebian or Ubuntu, where the `mecabrc` is in `/etc/mecabrc`.\n\nYou can specify an empty `mecabrc` like this:\n\n    tagger = MeCab.Tagger('-r/dev/null -d/home/hoge/mydic')\n\n## Using Unsupported Output Modes like `-Ochasen`\n\nChasen output is not a built-in feature of MeCab, you must specify it in your\n`dicrc` or `mecabrc`. Notably, Unidic does not include Chasen output format.\nPlease see [the MeCab documentation](https://taku910.github.io/mecab/#format).\n\n# Alternatives\n\n- [fugashi](https://github.com/polm/fugashi) is a Cython wrapper for MeCab with a Pythonic interface, by the current maintainer of this library\n- [SudachiPy](https://github.com/WorksApplications/sudachi.rs) is a modern tokenizer with an actively maintained dictionary\n- [pymecab-ko](https://github.com/NoUnique/pymecab-ko) is a wrapper of the Korean MeCab fork [mecab-ko](https://bitbucket.org/eunjeon/mecab-ko/src/master/) based on mecab-python3\n- [KoNLPy](https://konlpy.org/en/latest/) is a library for Korean NLP that includes a MeCab wrapper\n\n# Licensing\n\nLike MeCab itself, `mecab-python3` is copyrighted free software by\nTaku Kudo <taku@chasen.org> and Nippon Telegraph and Telephone Corporation,\nand is distributed under a 3-clause BSD license (see the file `BSD`).\nAlternatively, it may be redistributed under the terms of the\nGNU General Public License, version 2 (see the file `GPL`) or the\nGNU Lesser General Public License, version 2.1 (see the file `LGPL`). \n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Python wrapper for the MeCab morphological analyzer for Japanese",
    "version": "1.0.10",
    "project_urls": {
        "Homepage": "https://github.com/SamuraiT/mecab-python3"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "482bea98eae4f2c461d78560a6fa51dca13b2d3a6df9417779831bf883b27e7d",
                "md5": "74ca6d663043ab6056f48e63d640d5f6",
                "sha256": "ddeeb7e40348066cbcf980dffa19bc84e087bb0fb452ce149defc11747f52f85"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "74ca6d663043ab6056f48e63d640d5f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 524249,
            "upload_time": "2024-10-31T08:44:48",
            "upload_time_iso_8601": "2024-10-31T08:44:48.146755Z",
            "url": "https://files.pythonhosted.org/packages/48/2b/ea98eae4f2c461d78560a6fa51dca13b2d3a6df9417779831bf883b27e7d/mecab_python3-1.0.10-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acd32662462d3acafafdf25d304369b566b73ac78f7ce37ab6ffbeb419d0923d",
                "md5": "7f28a57035c369c9525715808348906e",
                "sha256": "1acb9f47108170a43549637f3f45449c7018d56e91ca5fc8ad56bbcd8288848c"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f28a57035c369c9525715808348906e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 487860,
            "upload_time": "2024-10-31T08:44:49",
            "upload_time_iso_8601": "2024-10-31T08:44:49.986724Z",
            "url": "https://files.pythonhosted.org/packages/ac/d3/2662462d3acafafdf25d304369b566b73ac78f7ce37ab6ffbeb419d0923d/mecab_python3-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6723f01909d734a1fcd4214b508bc0726e8b2b814ef98b6d22c73a9e2b0d7810",
                "md5": "96b92d27397ee1b015c9a4b76a1ac83e",
                "sha256": "e487498dc7231926230944ad04e40406d23499240fd35273d8d2c4f775dcc162"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96b92d27397ee1b015c9a4b76a1ac83e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 483814,
            "upload_time": "2024-10-31T08:44:52",
            "upload_time_iso_8601": "2024-10-31T08:44:52.140115Z",
            "url": "https://files.pythonhosted.org/packages/67/23/f01909d734a1fcd4214b508bc0726e8b2b814ef98b6d22c73a9e2b0d7810/mecab_python3-1.0.10-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4311d185e233f5fc0d25ba2d4197fc5f0531616f8d58b944f87adf608baddf33",
                "md5": "872fae0fc1af0afc1b368fd4913da685",
                "sha256": "2a2924d9ee1a7eefe0601edf16d2b63c5519e3403b319cfc9d1eda4bf978f6d9"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "872fae0fc1af0afc1b368fd4913da685",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 560222,
            "upload_time": "2024-10-31T09:00:14",
            "upload_time_iso_8601": "2024-10-31T09:00:14.671505Z",
            "url": "https://files.pythonhosted.org/packages/43/11/d185e233f5fc0d25ba2d4197fc5f0531616f8d58b944f87adf608baddf33/mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23e6dd1d502e7473acdd8eb0171cf4f631c9dfb6e05520e0ce4936abe2e19e18",
                "md5": "2fac308387581f3c1e68e939d67b5554",
                "sha256": "069c176c02b6bec3fdc9e00c42138dc77ef4b683908b6909808bc7528d2996bc"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fac308387581f3c1e68e939d67b5554",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 581692,
            "upload_time": "2024-10-31T08:40:29",
            "upload_time_iso_8601": "2024-10-31T08:40:29.474316Z",
            "url": "https://files.pythonhosted.org/packages/23/e6/dd1d502e7473acdd8eb0171cf4f631c9dfb6e05520e0ce4936abe2e19e18/mecab_python3-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fa1a6faf184ca7870815aa665ee4aea65310042ca4541c4b1ec79f9fa8ed17f",
                "md5": "5996b7f8aacae42a5a48ec9798fbef59",
                "sha256": "63cd0a65835257a1fcb88f25a6eaf1a8e472990a9d3f7d08300c5cccf8973931"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5996b7f8aacae42a5a48ec9798fbef59",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 502463,
            "upload_time": "2024-10-31T08:40:07",
            "upload_time_iso_8601": "2024-10-31T08:40:07.548816Z",
            "url": "https://files.pythonhosted.org/packages/6f/a1/a6faf184ca7870815aa665ee4aea65310042ca4541c4b1ec79f9fa8ed17f/mecab_python3-1.0.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16f4250b48eeb97d91e68abbd19c2d4004d94f5a0dc2da5a4cd3f1b7f89e6971",
                "md5": "8ed0fb7e596005eb483b76f87ab82c75",
                "sha256": "ebc8bbdb7e0c616e1467b02cadc3c7a764912dec241b31a14c90b1c1ac58afc8"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8ed0fb7e596005eb483b76f87ab82c75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 524258,
            "upload_time": "2024-10-31T08:44:54",
            "upload_time_iso_8601": "2024-10-31T08:44:54.149317Z",
            "url": "https://files.pythonhosted.org/packages/16/f4/250b48eeb97d91e68abbd19c2d4004d94f5a0dc2da5a4cd3f1b7f89e6971/mecab_python3-1.0.10-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01ece02b957dbbe88646f1c0b270349803d568b7e1c00c406b4845492dcfa89f",
                "md5": "1c1db912e44f1f2bee602ac87bb50266",
                "sha256": "3d66bbda223e64bf1eb320809b5d7e21fc6b045ccc14e07232d8592dd40b1a29"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c1db912e44f1f2bee602ac87bb50266",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 487872,
            "upload_time": "2024-10-31T08:44:55",
            "upload_time_iso_8601": "2024-10-31T08:44:55.634506Z",
            "url": "https://files.pythonhosted.org/packages/01/ec/e02b957dbbe88646f1c0b270349803d568b7e1c00c406b4845492dcfa89f/mecab_python3-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eeeb9625aec931274c334281a295cfac613306a8e0a3a5ec02cc4bede3d27842",
                "md5": "b656d49a9d80705f0f5047815f1ac5f7",
                "sha256": "9eed9b626a82eb26e571e45832b7c03b46e250e57c70d7309aa0c28c0fb95d47"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b656d49a9d80705f0f5047815f1ac5f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 483815,
            "upload_time": "2024-10-31T08:44:56",
            "upload_time_iso_8601": "2024-10-31T08:44:56.672480Z",
            "url": "https://files.pythonhosted.org/packages/ee/eb/9625aec931274c334281a295cfac613306a8e0a3a5ec02cc4bede3d27842/mecab_python3-1.0.10-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf6237009633618b1f375c8405c86b07cefb57d835da5caefe76e8fb1a47330c",
                "md5": "e7c5bea5689d991f3c9397af1efb3990",
                "sha256": "01c1123fb64fb67d29e7221a9cba36b589b795683bd94e762d87385a9633de95"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7c5bea5689d991f3c9397af1efb3990",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 567522,
            "upload_time": "2024-10-31T09:00:18",
            "upload_time_iso_8601": "2024-10-31T09:00:18.346988Z",
            "url": "https://files.pythonhosted.org/packages/bf/62/37009633618b1f375c8405c86b07cefb57d835da5caefe76e8fb1a47330c/mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be16d11439668399742f0d2db99468073c125c138018ffe6541b92989116cb86",
                "md5": "75aa55370cba0cbb10769d4958402cdf",
                "sha256": "da59058da7459457f14382ddb6a2bb4a80176d0dcfa3eb835c53abd11e5aa97d"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75aa55370cba0cbb10769d4958402cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 588839,
            "upload_time": "2024-10-31T08:40:31",
            "upload_time_iso_8601": "2024-10-31T08:40:31.214522Z",
            "url": "https://files.pythonhosted.org/packages/be/16/d11439668399742f0d2db99468073c125c138018ffe6541b92989116cb86/mecab_python3-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "356a8a5270ab60b5abdb50b80ce74eddef9f0e2413a337736149c4247d070b58",
                "md5": "2e56f0b8207d44c7bb5570dc6c6f4365",
                "sha256": "1eca068650d9f228072820ce015eb5831b9114afe6cc0f381208eaa2e1f23f0f"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2e56f0b8207d44c7bb5570dc6c6f4365",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 502482,
            "upload_time": "2024-10-31T08:40:10",
            "upload_time_iso_8601": "2024-10-31T08:40:10.370203Z",
            "url": "https://files.pythonhosted.org/packages/35/6a/8a5270ab60b5abdb50b80ce74eddef9f0e2413a337736149c4247d070b58/mecab_python3-1.0.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4afcf953fee2281e0a07097746cf7e8d65db4c8fef1cc802d592698d5eaea0c5",
                "md5": "7bc0f49a536136da9629bcd5920bf22b",
                "sha256": "fb21b38fea3da3a3c893b6af34f9d34e4846c30f7d2f76fe58beee195963fbf3"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "7bc0f49a536136da9629bcd5920bf22b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 523841,
            "upload_time": "2024-10-31T08:44:58",
            "upload_time_iso_8601": "2024-10-31T08:44:58.502226Z",
            "url": "https://files.pythonhosted.org/packages/4a/fc/f953fee2281e0a07097746cf7e8d65db4c8fef1cc802d592698d5eaea0c5/mecab_python3-1.0.10-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db150ab350c455bab548c7c427f0f3b8b208416234238ef02248b065c01103da",
                "md5": "302e69bb77dd7c45f95186d823f01f32",
                "sha256": "7fa96813dca31ad1517a1c5921b5620713fdefea072795ec9de31425fcf2c4e1"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "302e69bb77dd7c45f95186d823f01f32",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 487662,
            "upload_time": "2024-10-31T08:45:00",
            "upload_time_iso_8601": "2024-10-31T08:45:00.250469Z",
            "url": "https://files.pythonhosted.org/packages/db/15/0ab350c455bab548c7c427f0f3b8b208416234238ef02248b065c01103da/mecab_python3-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1130379d4e98c16c167dc4b3a277f9c96c4743ea33597512370e52a47c727f1",
                "md5": "050b2bf66ee05ca8be27b516e5e25c41",
                "sha256": "134e2c68a783f545bc8373601469d017a13d9b7cac46d243ec1bbfb2c94639a3"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "050b2bf66ee05ca8be27b516e5e25c41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 484280,
            "upload_time": "2024-10-31T08:45:03",
            "upload_time_iso_8601": "2024-10-31T08:45:03.210128Z",
            "url": "https://files.pythonhosted.org/packages/f1/13/0379d4e98c16c167dc4b3a277f9c96c4743ea33597512370e52a47c727f1/mecab_python3-1.0.10-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43b7d978455fd39b026cdc592f8f137ae90c33f66617f7f724ee966a2d9dbb9a",
                "md5": "563aaa0f071d60e4a63ea1bfc39b4e55",
                "sha256": "2d9ff1c7a7ec4f42c98d74db71bc9b1d513db4cf676a023665ae40197f2da040"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "563aaa0f071d60e4a63ea1bfc39b4e55",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 569029,
            "upload_time": "2024-10-31T09:00:19",
            "upload_time_iso_8601": "2024-10-31T09:00:19.823397Z",
            "url": "https://files.pythonhosted.org/packages/43/b7/d978455fd39b026cdc592f8f137ae90c33f66617f7f724ee966a2d9dbb9a/mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b065579514a5d178e6eb9c695daace47f0f807e7286882771bbb840ac89db660",
                "md5": "3af3ecf3d3dd0102cfd952b2219623f6",
                "sha256": "2953a3e53fa269f2e1b109de3a55fc7668e9e566f0340a69c2202a37f0447691"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3af3ecf3d3dd0102cfd952b2219623f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 591165,
            "upload_time": "2024-10-31T08:40:32",
            "upload_time_iso_8601": "2024-10-31T08:40:32.274796Z",
            "url": "https://files.pythonhosted.org/packages/b0/65/579514a5d178e6eb9c695daace47f0f807e7286882771bbb840ac89db660/mecab_python3-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd1f5f01f355d7eb959cbad63743d2d475b854d3b1a264926e40b92f233ca17f",
                "md5": "2c7604528824ee35895b34a7eccc68ae",
                "sha256": "308cbec46e426d53bde1f97a95ea655d3e6fcababe0c444dd74c9d3f8105a179"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c7604528824ee35895b34a7eccc68ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 503231,
            "upload_time": "2024-10-31T08:41:39",
            "upload_time_iso_8601": "2024-10-31T08:41:39.341471Z",
            "url": "https://files.pythonhosted.org/packages/dd/1f/5f01f355d7eb959cbad63743d2d475b854d3b1a264926e40b92f233ca17f/mecab_python3-1.0.10-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5216750ae35344f62497d4b894ae49941ebfb4ea6166219e39349dc51e16e238",
                "md5": "1ce8ce06ee5eddafa3ca7e9cf570d963",
                "sha256": "711ee9a7ba27aa6988b580951671e5966d7b9aa16cae453d17a5e149d295941c"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "1ce8ce06ee5eddafa3ca7e9cf570d963",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 523860,
            "upload_time": "2024-10-31T08:45:04",
            "upload_time_iso_8601": "2024-10-31T08:45:04.671247Z",
            "url": "https://files.pythonhosted.org/packages/52/16/750ae35344f62497d4b894ae49941ebfb4ea6166219e39349dc51e16e238/mecab_python3-1.0.10-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "718298c753089eb42793ada8b92b4f616cdf004637fe61f77eb81adbe12cf274",
                "md5": "acf3e56899b89d2892791bbf0e7ab53e",
                "sha256": "1cc4e90d23b57e1ea4bf0ecc57cf7cdbc432164398b67ad113256bc20ed52154"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acf3e56899b89d2892791bbf0e7ab53e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 487672,
            "upload_time": "2024-10-31T08:45:07",
            "upload_time_iso_8601": "2024-10-31T08:45:07.120163Z",
            "url": "https://files.pythonhosted.org/packages/71/82/98c753089eb42793ada8b92b4f616cdf004637fe61f77eb81adbe12cf274/mecab_python3-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8106c132d772cf14b9ec5dd94eba03dfef2aad8db14ec9c614a3717ef657b877",
                "md5": "e212ee1eda3e283a1203f5f97e6e1be4",
                "sha256": "4b90261aa514f29c6e05bd99717a02eeb9be3d7ea0a0be01f65ce0d86c572c68"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e212ee1eda3e283a1203f5f97e6e1be4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 484283,
            "upload_time": "2024-10-31T08:45:08",
            "upload_time_iso_8601": "2024-10-31T08:45:08.447891Z",
            "url": "https://files.pythonhosted.org/packages/81/06/c132d772cf14b9ec5dd94eba03dfef2aad8db14ec9c614a3717ef657b877/mecab_python3-1.0.10-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dee2772cb0ba2fff59504c7ed715da626187c0f115542953f76e035531d040e",
                "md5": "2ffe9d6099c0a8ee413b02a844421694",
                "sha256": "894d87d708545314359cfd1b062238c2756d8f985b4c3fe7cabdf111f533a367"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2ffe9d6099c0a8ee413b02a844421694",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 568847,
            "upload_time": "2024-10-31T09:00:21",
            "upload_time_iso_8601": "2024-10-31T09:00:21.345666Z",
            "url": "https://files.pythonhosted.org/packages/7d/ee/2772cb0ba2fff59504c7ed715da626187c0f115542953f76e035531d040e/mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d995bb828c0aeb3f02657f237304aab296526aa5463fe4f6c23c3008d536478",
                "md5": "4ff6443775e0e3fca0252aee2addea1e",
                "sha256": "7bd7b86dd39a068dadf06ba8dd717ec1defb2cea181c5cbc6c54b1adb6dd0d4b"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ff6443775e0e3fca0252aee2addea1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 591008,
            "upload_time": "2024-10-31T08:40:33",
            "upload_time_iso_8601": "2024-10-31T08:40:33.333874Z",
            "url": "https://files.pythonhosted.org/packages/8d/99/5bb828c0aeb3f02657f237304aab296526aa5463fe4f6c23c3008d536478/mecab_python3-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cde2c752bc635c21fc45a02844e52bb61799f93c5cef4292ea5a252e11818093",
                "md5": "ae0c84a347b2b424b1d486f7629daf24",
                "sha256": "3528ef81cc4c9506ae3b273958fe2314aa1022a8db64640e631e09fd3e1af97b"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae0c84a347b2b424b1d486f7629daf24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 503240,
            "upload_time": "2024-10-31T08:42:08",
            "upload_time_iso_8601": "2024-10-31T08:42:08.547144Z",
            "url": "https://files.pythonhosted.org/packages/cd/e2/c752bc635c21fc45a02844e52bb61799f93c5cef4292ea5a252e11818093/mecab_python3-1.0.10-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "117691700a301b2c541c3ae247f8fac7d43c098fe503e5d1d69462bc8e0f2c2e",
                "md5": "bc920ba71122766652826bd6fc3fbf6f",
                "sha256": "c7da20d1ede231645e2be96a202f15419cb508b4b21f3c466bc5848f5956af27"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc920ba71122766652826bd6fc3fbf6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 487345,
            "upload_time": "2024-10-31T08:45:11",
            "upload_time_iso_8601": "2024-10-31T08:45:11.097240Z",
            "url": "https://files.pythonhosted.org/packages/11/76/91700a301b2c541c3ae247f8fac7d43c098fe503e5d1d69462bc8e0f2c2e/mecab_python3-1.0.10-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bac848773ab00e600476f0c262b2225315c75d8cb52a860e348b12f9f68771f",
                "md5": "08738f57964fb3862d8723d8edfca85f",
                "sha256": "1e385987f2ef3f617ee87bf2ca555e10c468c156c71bfcac7182202df261f4d2"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08738f57964fb3862d8723d8edfca85f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 487666,
            "upload_time": "2024-10-31T08:45:12",
            "upload_time_iso_8601": "2024-10-31T08:45:12.622798Z",
            "url": "https://files.pythonhosted.org/packages/6b/ac/848773ab00e600476f0c262b2225315c75d8cb52a860e348b12f9f68771f/mecab_python3-1.0.10-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bb59a797b2c3ae0e462a337a77beecac3cd0cc5b2a6ef0162d76bd3d3968085",
                "md5": "f1c882621a486a2d86d6c4193eef0594",
                "sha256": "9666fa3e116768d81c3d20f13bb05daf8a474919312cc5239180ed6f5c318e80"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f1c882621a486a2d86d6c4193eef0594",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 524292,
            "upload_time": "2024-10-31T08:45:14",
            "upload_time_iso_8601": "2024-10-31T08:45:14.404565Z",
            "url": "https://files.pythonhosted.org/packages/8b/b5/9a797b2c3ae0e462a337a77beecac3cd0cc5b2a6ef0162d76bd3d3968085/mecab_python3-1.0.10-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f13eaeb9c995fb348dcb1d88839bd6b1ae1644f8d60079f9228a69565c540e04",
                "md5": "38e3c330226115148af0451e939bf895",
                "sha256": "06f9259bd2ffb4a71e99712ea845b579674a2be7b245b88b03f28a390ab13dea"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38e3c330226115148af0451e939bf895",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 487808,
            "upload_time": "2024-10-31T08:45:15",
            "upload_time_iso_8601": "2024-10-31T08:45:15.542194Z",
            "url": "https://files.pythonhosted.org/packages/f1/3e/aeb9c995fb348dcb1d88839bd6b1ae1644f8d60079f9228a69565c540e04/mecab_python3-1.0.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da4b136eee26a17e34d3141c8d505814393d26155d5f7c0bdac429c5da52f7b9",
                "md5": "363018b4579d9d6ed1096d63288c5839",
                "sha256": "8d16cf163c9fe568a42a31e99a60cdaa97d76124d04a8daa2bb2b93f18d08107"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "363018b4579d9d6ed1096d63288c5839",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 483882,
            "upload_time": "2024-10-31T08:45:16",
            "upload_time_iso_8601": "2024-10-31T08:45:16.609609Z",
            "url": "https://files.pythonhosted.org/packages/da/4b/136eee26a17e34d3141c8d505814393d26155d5f7c0bdac429c5da52f7b9/mecab_python3-1.0.10-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e56c4ef875c558d92983281733a7ba07e75d836d17341c46a9728533628e5df2",
                "md5": "08b73be9f97d64a39099ac55c9cf6a9f",
                "sha256": "82c175f1ae970b3baa3589e29f3946a1a83b76a48245ea103558abdbfb3398b1"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08b73be9f97d64a39099ac55c9cf6a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 555096,
            "upload_time": "2024-10-31T09:00:22",
            "upload_time_iso_8601": "2024-10-31T09:00:22.878567Z",
            "url": "https://files.pythonhosted.org/packages/e5/6c/4ef875c558d92983281733a7ba07e75d836d17341c46a9728533628e5df2/mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af3d3d6cb8465dd2a74ae2d3305d3afb48f5b58a62f853c1a17dce15e810e5be",
                "md5": "a006cc5bc4058a54fc139dc51b05452c",
                "sha256": "a20e0c94bb24e36ec73d1e6ae91608cd913174f8aa1d8195b218d2d77aeb3ccc"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a006cc5bc4058a54fc139dc51b05452c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 577858,
            "upload_time": "2024-10-31T08:40:34",
            "upload_time_iso_8601": "2024-10-31T08:40:34.459022Z",
            "url": "https://files.pythonhosted.org/packages/af/3d/3d6cb8465dd2a74ae2d3305d3afb48f5b58a62f853c1a17dce15e810e5be/mecab_python3-1.0.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d9e72676158c580994ff4ea0e43a05ceaf60e756c24d857ffcb1ff8f9471279",
                "md5": "e31a92ee724fb7a0ebfe041c67928ffc",
                "sha256": "9af3ef731dfbd1f0a97f4a91ebfea2454dc3e8fa9e42423912eb6628f2acdfec"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e31a92ee724fb7a0ebfe041c67928ffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 502757,
            "upload_time": "2024-10-31T08:40:11",
            "upload_time_iso_8601": "2024-10-31T08:40:11.017098Z",
            "url": "https://files.pythonhosted.org/packages/1d/9e/72676158c580994ff4ea0e43a05ceaf60e756c24d857ffcb1ff8f9471279/mecab_python3-1.0.10-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea6f48221a2598a210199049bd59fb3c5a23c8ceb6d929063b5c02b104aa8dde",
                "md5": "1eb097867710a9291a0b78c888b22d5e",
                "sha256": "c72f1c4c582f7f86aa9454694719e7873f80830e300df0d71f6b38ff9c0f94ea"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1eb097867710a9291a0b78c888b22d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 524234,
            "upload_time": "2024-10-31T08:45:17",
            "upload_time_iso_8601": "2024-10-31T08:45:17.724907Z",
            "url": "https://files.pythonhosted.org/packages/ea/6f/48221a2598a210199049bd59fb3c5a23c8ceb6d929063b5c02b104aa8dde/mecab_python3-1.0.10-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8cec4ebff6b189336d3fdbbd8f722a5afa95b48951bf99830221c5e4e99fb54",
                "md5": "c5a643b191ddbd0b4eeb7f831422014a",
                "sha256": "1c45dd85ee584326d23e1ec4d6d4c23ac39e88e5bc0442b4e81b178c59d1c148"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5a643b191ddbd0b4eeb7f831422014a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 487826,
            "upload_time": "2024-10-31T08:45:19",
            "upload_time_iso_8601": "2024-10-31T08:45:19.573647Z",
            "url": "https://files.pythonhosted.org/packages/b8/ce/c4ebff6b189336d3fdbbd8f722a5afa95b48951bf99830221c5e4e99fb54/mecab_python3-1.0.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d50a76a6d85d1cae8ae1a3f4f2851fb4bb707fbbc78b56fffb944cab0886dc29",
                "md5": "d26ca126add86d5c5ad24533da633b04",
                "sha256": "1b6845fb4bf4771018a10a6c455dc4cb3e0590c8ac55d25cddfe85138a72bbd2"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d26ca126add86d5c5ad24533da633b04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 483827,
            "upload_time": "2024-10-31T08:45:20",
            "upload_time_iso_8601": "2024-10-31T08:45:20.703461Z",
            "url": "https://files.pythonhosted.org/packages/d5/0a/76a6d85d1cae8ae1a3f4f2851fb4bb707fbbc78b56fffb944cab0886dc29/mecab_python3-1.0.10-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a87f97bf8d3e89744b94343518747428f04039cceaa70ba46cd27d904dff2ad",
                "md5": "2e7fde5a2708f1480588667f9a1328cd",
                "sha256": "f30f4cca5992c7c5ac3767d6e21c235d02104eb11b94b60361494509a72d92a5"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e7fde5a2708f1480588667f9a1328cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 559955,
            "upload_time": "2024-10-31T09:00:25",
            "upload_time_iso_8601": "2024-10-31T09:00:25.320404Z",
            "url": "https://files.pythonhosted.org/packages/1a/87/f97bf8d3e89744b94343518747428f04039cceaa70ba46cd27d904dff2ad/mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7446f4ca640405d0ccba907c5e7616638ab5a8f8b23497bdb05308f8d80615d",
                "md5": "4c4cff8774ab2066b0870c70b270219c",
                "sha256": "5bd723e757d321135d38ab383639c148e20eb65468517398fff26eb89344d0b5"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c4cff8774ab2066b0870c70b270219c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 581585,
            "upload_time": "2024-10-31T08:40:35",
            "upload_time_iso_8601": "2024-10-31T08:40:35.917921Z",
            "url": "https://files.pythonhosted.org/packages/f7/44/6f4ca640405d0ccba907c5e7616638ab5a8f8b23497bdb05308f8d80615d/mecab_python3-1.0.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb24bd977ff9edcb04bb615aecbc6ba5f216a0ea01562757833d1bad59498594",
                "md5": "2b5245947b6ecbdabf073391dc19edd2",
                "sha256": "f93201fa2c4d7e03b3cc25ffd52a8c4ee207db874258d5143ece8b457e22a885"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2b5245947b6ecbdabf073391dc19edd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 502539,
            "upload_time": "2024-10-31T08:40:10",
            "upload_time_iso_8601": "2024-10-31T08:40:10.256806Z",
            "url": "https://files.pythonhosted.org/packages/bb/24/bd977ff9edcb04bb615aecbc6ba5f216a0ea01562757833d1bad59498594/mecab_python3-1.0.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00dfeeb4e250fc0a69b0a2deed5573f2c8d8445cf643cb9ecf25674f8186880f",
                "md5": "23dd6b79279e34d6f68b45c55fa3be61",
                "sha256": "21cd4416043e9a993fcfb986dde93e4366a07543dd95849b5ef2e50c9a9afcce"
            },
            "downloads": -1,
            "filename": "mecab_python3-1.0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "23dd6b79279e34d6f68b45c55fa3be61",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 78691,
            "upload_time": "2024-10-31T08:39:21",
            "upload_time_iso_8601": "2024-10-31T08:39:21.198086Z",
            "url": "https://files.pythonhosted.org/packages/00/df/eeb4e250fc0a69b0a2deed5573f2c8d8445cf643cb9ecf25674f8186880f/mecab_python3-1.0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-31 08:39:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SamuraiT",
    "github_project": "mecab-python3",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "mecab-python3"
}
        
Elapsed time: 0.33000s