fugashi


Namefugashi JSON
Version 1.4.0 PyPI version JSON
download
home_pagehttps://github.com/polm/fugashi
SummaryA Cython MeCab wrapper for fast, pythonic Japanese tokenization.
upload_time2024-11-11 11:52:14
maintainerNone
docs_urlNone
authorPaul O'Leary McCann
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://fugashi.streamlit.app)
[![Current PyPI packages](https://badge.fury.io/py/fugashi.svg)](https://pypi.org/project/fugashi/)
![Test Status](https://github.com/polm/fugashi/workflows/test-manylinux/badge.svg)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/fugashi)](https://pypi.org/project/fugashi/)
![Supported Platforms](https://img.shields.io/badge/platforms-linux%20macosx%20windows-blue)

# fugashi

<img src="https://github.com/polm/fugashi/raw/master/fugashi.png" width=125 height=125 alt="fugashi by Irasutoya" />

fugashi is a Cython wrapper for [MeCab](https://taku910.github.io/mecab/), a
Japanese tokenizer and morphological analysis tool.  Wheels are provided for
Linux, OSX (Intel), and Win64, and UniDic is [easy to install](#installing-a-dictionary).

**issueを英語で書く必要はありません。**

Check out the [interactive demo][], see the [blog post](https://www.dampfkraft.com/nlp/fugashi.html) for background
on why fugashi exists and some of the design decisions, or see [this
guide][guide] for a basic introduction to Japanese tokenization.

[guide]: https://www.dampfkraft.com/nlp/how-to-tokenize-japanese.html
[interactive demo]: https://fugashi.streamlit.app

If you are on a platform for which wheels are not provided, you'll need to
install MeCab first. It's recommended you install [from
source](https://github.com/taku910/mecab). If you need to build from source on
Windows, [@chezou's fork](https://github.com/chezou/mecab) is recommended; see
[issue #44](https://github.com/polm/fugashi/issues/44#issuecomment-954426115)
for an explanation of the problems with the official repo.

Known platforms without wheels:

- musl-based distros like alpine [#77](https://github.com/polm/fugashi/issues/77)
- PowerPC
- Windows 32bit

## Usage

```python
from fugashi import Tagger

tagger = Tagger('-Owakati')
text = "麩菓子は、麩を主材料とした日本の菓子。"
tagger.parse(text)
# => '麩 菓子 は 、 麩 を 主材 料 と し た 日本 の 菓子 。'
for word in tagger(text):
    print(word, word.feature.lemma, word.pos, sep='\t')
    # "feature" is the Unidic feature data as a named tuple
```

## Installing a Dictionary

fugashi requires a dictionary. [UniDic](https://unidic.ninjal.ac.jp/) is
recommended, and two easy-to-install versions are provided.

  - [unidic-lite](https://github.com/polm/unidic-lite), a slightly modified version 2.1.2 of Unidic (from 2013) that's relatively small
  - [unidic](https://github.com/polm/unidic-py), the latest UniDic 3.1.0, which is 770MB on disk and requires a separate download step

If you just want to make sure things work you can start with `unidic-lite`, but
for more serious processing `unidic` is recommended. For production use you'll
generally want to generate your own dictionary too; for details see the [MeCab
documentation](https://taku910.github.io/mecab/learn.html).

To get either of these dictionaries, you can install them directly using `pip`
or do the below:

```sh
pip install 'fugashi[unidic-lite]'

# The full version of UniDic requires a separate download step
pip install 'fugashi[unidic]'
python -m unidic download
```

For more information on the different MeCab dictionaries available, see [this article](https://www.dampfkraft.com/nlp/japanese-tokenizer-dictionaries.html).

## Dictionary Use

fugashi is written with the assumption you'll use Unidic to process Japanese,
but it supports arbitrary dictionaries. 

If you're using a dictionary besides Unidic you can use the GenericTagger like this:

```python
from fugashi import GenericTagger
tagger = GenericTagger()

# parse can be used as normal
tagger.parse('something')
# features from the dictionary can be accessed by field numbers
for word in tagger(text):
    print(word.surface, word.feature[0])
```

You can also create a dictionary wrapper to get feature information as a named tuple. 

```python
from fugashi import GenericTagger, create_feature_wrapper
CustomFeatures = create_feature_wrapper('CustomFeatures', 'alpha beta gamma')
tagger = GenericTagger(wrapper=CustomFeatures)
for word in tagger.parseToNodeList(text):
    print(word.surface, word.feature.alpha)
```

## Citation

If you use fugashi in research, it would be appreciated if you cite this paper. You can read it at [the ACL Anthology](https://www.aclweb.org/anthology/2020.nlposs-1.7/) or [on Arxiv](https://arxiv.org/abs/2010.06858).

    @inproceedings{mccann-2020-fugashi,
        title = "fugashi, a Tool for Tokenizing {J}apanese in Python",
        author = "McCann, Paul",
        booktitle = "Proceedings of Second Workshop for NLP Open Source Software (NLP-OSS)",
        month = nov,
        year = "2020",
        address = "Online",
        publisher = "Association for Computational Linguistics",
        url = "https://www.aclweb.org/anthology/2020.nlposs-1.7",
        pages = "44--51",
        abstract = "Recent years have seen an increase in the number of large-scale multilingual NLP projects. However, even in such projects, languages with special processing requirements are often excluded. One such language is Japanese. Japanese is written without spaces, tokenization is non-trivial, and while high quality open source tokenizers exist they can be hard to use and lack English documentation. This paper introduces fugashi, a MeCab wrapper for Python, and gives an introduction to tokenizing Japanese.",
    }

## Alternatives

If you have a problem with fugashi feel free to open an issue. However, there
are some cases where it might be better to use a different library.

- If you don't want to deal with installing MeCab at all, try [SudachiPy](https://github.com/WorksApplications/sudachi.rs).
- If you need to work with Korean, try [pymecab-ko](https://github.com/NoUnique/pymecab-ko) or [KoNLPy](https://konlpy.org/en/latest/).

## License and Copyright Notice

fugashi is released under the terms of the [MIT license](./LICENSE). Please
copy it far and wide.

fugashi is a wrapper for MeCab, and fugashi wheels include MeCab binaries.
MeCab is copyrighted free software by Taku Kudo `<taku@chasen.org>` and Nippon
Telegraph and Telephone Corporation, and is redistributed under the [BSD
License](./LICENSE.mecab).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/polm/fugashi",
    "name": "fugashi",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Paul O'Leary McCann",
    "author_email": "polm@dampfkraft.com",
    "download_url": "https://files.pythonhosted.org/packages/33/69/bb037690c3cc218a139ae89afaf0b099814e7aff570b28577aa0ef1a06f0/fugashi-1.4.0.tar.gz",
    "platform": null,
    "description": "[![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://fugashi.streamlit.app)\r\n[![Current PyPI packages](https://badge.fury.io/py/fugashi.svg)](https://pypi.org/project/fugashi/)\r\n![Test Status](https://github.com/polm/fugashi/workflows/test-manylinux/badge.svg)\r\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/fugashi)](https://pypi.org/project/fugashi/)\r\n![Supported Platforms](https://img.shields.io/badge/platforms-linux%20macosx%20windows-blue)\r\n\r\n# fugashi\r\n\r\n<img src=\"https://github.com/polm/fugashi/raw/master/fugashi.png\" width=125 height=125 alt=\"fugashi by Irasutoya\" />\r\n\r\nfugashi is a Cython wrapper for [MeCab](https://taku910.github.io/mecab/), a\r\nJapanese tokenizer and morphological analysis tool.  Wheels are provided for\r\nLinux, OSX (Intel), and Win64, and UniDic is [easy to install](#installing-a-dictionary).\r\n\r\n**issue\u3092\u82f1\u8a9e\u3067\u66f8\u304f\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002**\r\n\r\nCheck out the [interactive demo][], see the [blog post](https://www.dampfkraft.com/nlp/fugashi.html) for background\r\non why fugashi exists and some of the design decisions, or see [this\r\nguide][guide] for a basic introduction to Japanese tokenization.\r\n\r\n[guide]: https://www.dampfkraft.com/nlp/how-to-tokenize-japanese.html\r\n[interactive demo]: https://fugashi.streamlit.app\r\n\r\nIf you are on a platform for which wheels are not provided, you'll need to\r\ninstall MeCab first. It's recommended you install [from\r\nsource](https://github.com/taku910/mecab). If you need to build from source on\r\nWindows, [@chezou's fork](https://github.com/chezou/mecab) is recommended; see\r\n[issue #44](https://github.com/polm/fugashi/issues/44#issuecomment-954426115)\r\nfor an explanation of the problems with the official repo.\r\n\r\nKnown platforms without wheels:\r\n\r\n- musl-based distros like alpine [#77](https://github.com/polm/fugashi/issues/77)\r\n- PowerPC\r\n- Windows 32bit\r\n\r\n## Usage\r\n\r\n```python\r\nfrom fugashi import Tagger\r\n\r\ntagger = Tagger('-Owakati')\r\ntext = \"\u9ea9\u83d3\u5b50\u306f\u3001\u9ea9\u3092\u4e3b\u6750\u6599\u3068\u3057\u305f\u65e5\u672c\u306e\u83d3\u5b50\u3002\"\r\ntagger.parse(text)\r\n# => '\u9ea9 \u83d3\u5b50 \u306f \u3001 \u9ea9 \u3092 \u4e3b\u6750 \u6599 \u3068 \u3057 \u305f \u65e5\u672c \u306e \u83d3\u5b50 \u3002'\r\nfor word in tagger(text):\r\n    print(word, word.feature.lemma, word.pos, sep='\\t')\r\n    # \"feature\" is the Unidic feature data as a named tuple\r\n```\r\n\r\n## Installing a Dictionary\r\n\r\nfugashi requires a dictionary. [UniDic](https://unidic.ninjal.ac.jp/) is\r\nrecommended, and two easy-to-install versions are provided.\r\n\r\n  - [unidic-lite](https://github.com/polm/unidic-lite), a slightly modified version 2.1.2 of Unidic (from 2013) that's relatively small\r\n  - [unidic](https://github.com/polm/unidic-py), the latest UniDic 3.1.0, which is 770MB on disk and requires a separate download step\r\n\r\nIf you just want to make sure things work you can start with `unidic-lite`, but\r\nfor more serious processing `unidic` is recommended. For production use you'll\r\ngenerally want to generate your own dictionary too; for details see the [MeCab\r\ndocumentation](https://taku910.github.io/mecab/learn.html).\r\n\r\nTo get either of these dictionaries, you can install them directly using `pip`\r\nor do the below:\r\n\r\n```sh\r\npip install 'fugashi[unidic-lite]'\r\n\r\n# The full version of UniDic requires a separate download step\r\npip install 'fugashi[unidic]'\r\npython -m unidic download\r\n```\r\n\r\nFor more information on the different MeCab dictionaries available, see [this article](https://www.dampfkraft.com/nlp/japanese-tokenizer-dictionaries.html).\r\n\r\n## Dictionary Use\r\n\r\nfugashi is written with the assumption you'll use Unidic to process Japanese,\r\nbut it supports arbitrary dictionaries. \r\n\r\nIf you're using a dictionary besides Unidic you can use the GenericTagger like this:\r\n\r\n```python\r\nfrom fugashi import GenericTagger\r\ntagger = GenericTagger()\r\n\r\n# parse can be used as normal\r\ntagger.parse('something')\r\n# features from the dictionary can be accessed by field numbers\r\nfor word in tagger(text):\r\n    print(word.surface, word.feature[0])\r\n```\r\n\r\nYou can also create a dictionary wrapper to get feature information as a named tuple. \r\n\r\n```python\r\nfrom fugashi import GenericTagger, create_feature_wrapper\r\nCustomFeatures = create_feature_wrapper('CustomFeatures', 'alpha beta gamma')\r\ntagger = GenericTagger(wrapper=CustomFeatures)\r\nfor word in tagger.parseToNodeList(text):\r\n    print(word.surface, word.feature.alpha)\r\n```\r\n\r\n## Citation\r\n\r\nIf you use fugashi in research, it would be appreciated if you cite this paper. You can read it at [the ACL Anthology](https://www.aclweb.org/anthology/2020.nlposs-1.7/) or [on Arxiv](https://arxiv.org/abs/2010.06858).\r\n\r\n    @inproceedings{mccann-2020-fugashi,\r\n        title = \"fugashi, a Tool for Tokenizing {J}apanese in Python\",\r\n        author = \"McCann, Paul\",\r\n        booktitle = \"Proceedings of Second Workshop for NLP Open Source Software (NLP-OSS)\",\r\n        month = nov,\r\n        year = \"2020\",\r\n        address = \"Online\",\r\n        publisher = \"Association for Computational Linguistics\",\r\n        url = \"https://www.aclweb.org/anthology/2020.nlposs-1.7\",\r\n        pages = \"44--51\",\r\n        abstract = \"Recent years have seen an increase in the number of large-scale multilingual NLP projects. However, even in such projects, languages with special processing requirements are often excluded. One such language is Japanese. Japanese is written without spaces, tokenization is non-trivial, and while high quality open source tokenizers exist they can be hard to use and lack English documentation. This paper introduces fugashi, a MeCab wrapper for Python, and gives an introduction to tokenizing Japanese.\",\r\n    }\r\n\r\n## Alternatives\r\n\r\nIf you have a problem with fugashi feel free to open an issue. However, there\r\nare some cases where it might be better to use a different library.\r\n\r\n- If you don't want to deal with installing MeCab at all, try [SudachiPy](https://github.com/WorksApplications/sudachi.rs).\r\n- If you need to work with Korean, try [pymecab-ko](https://github.com/NoUnique/pymecab-ko) or [KoNLPy](https://konlpy.org/en/latest/).\r\n\r\n## License and Copyright Notice\r\n\r\nfugashi is released under the terms of the [MIT license](./LICENSE). Please\r\ncopy it far and wide.\r\n\r\nfugashi is a wrapper for MeCab, and fugashi wheels include MeCab binaries.\r\nMeCab is copyrighted free software by Taku Kudo `<taku@chasen.org>` and Nippon\r\nTelegraph and Telephone Corporation, and is redistributed under the [BSD\r\nLicense](./LICENSE.mecab).\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Cython MeCab wrapper for fast, pythonic Japanese tokenization.",
    "version": "1.4.0",
    "project_urls": {
        "Homepage": "https://github.com/polm/fugashi"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "092befa795594845f8e83023c458939cb3a375f60e6df69b9fda9ee310b2d6a3",
                "md5": "9f7737804d8201f670bf2ecce11afc94",
                "sha256": "0a2221232176244ff983b03d29a80b3be0768ef708405fb5f7629cf250386698"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "9f7737804d8201f670bf2ecce11afc94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 561640,
            "upload_time": "2024-11-11T12:02:40",
            "upload_time_iso_8601": "2024-11-11T12:02:40.002074Z",
            "url": "https://files.pythonhosted.org/packages/09/2b/efa795594845f8e83023c458939cb3a375f60e6df69b9fda9ee310b2d6a3/fugashi-1.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ef574043811e993b7e49d32020acab38f20862136680c05b6dd20d51075c995",
                "md5": "b5851ec38dc421db37205d8ebd7e3417",
                "sha256": "70940296be946ea9dc3a0d6608f9f5cfb19d18693573634083e50aed5ae09edd"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5851ec38dc421db37205d8ebd7e3417",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 506703,
            "upload_time": "2024-11-11T12:02:42",
            "upload_time_iso_8601": "2024-11-11T12:02:42.011370Z",
            "url": "https://files.pythonhosted.org/packages/0e/f5/74043811e993b7e49d32020acab38f20862136680c05b6dd20d51075c995/fugashi-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "110c3645ce322717916620678b3eb9f2d631b90bc64e3d3980be72102f8d03d6",
                "md5": "9101040d54b1fd6247f1355064ae034a",
                "sha256": "d7aaa73e5c1614e9a4d50d8f3975727fcc01f318ff45fc000f2c4e4d96f2927a"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9101040d54b1fd6247f1355064ae034a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 502265,
            "upload_time": "2024-11-11T12:02:43",
            "upload_time_iso_8601": "2024-11-11T12:02:43.625556Z",
            "url": "https://files.pythonhosted.org/packages/11/0c/3645ce322717916620678b3eb9f2d631b90bc64e3d3980be72102f8d03d6/fugashi-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55c3d7656d48bd866bac61f71d7bf5374054c6a54bcf453249a95fed9db44cc1",
                "md5": "d732519c286ab47966b44f7b6084b341",
                "sha256": "26679c754cdcb1683911b3de5c6c13d99eb47d962f98da0872fb0eb80cb278d1"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d732519c286ab47966b44f7b6084b341",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 653527,
            "upload_time": "2024-11-11T12:15:44",
            "upload_time_iso_8601": "2024-11-11T12:15:44.219593Z",
            "url": "https://files.pythonhosted.org/packages/55/c3/d7656d48bd866bac61f71d7bf5374054c6a54bcf453249a95fed9db44cc1/fugashi-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3a574bba09a8873ab2fd9403987ccaf55c48c720242633ee53c93c7feb17a26",
                "md5": "78e17b4065b5967c2c7e28215ce42430",
                "sha256": "fd19fa1b3d4965ef162801cd554b82b10dbe0344f094fb3375ff064c11c24478"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78e17b4065b5967c2c7e28215ce42430",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 671706,
            "upload_time": "2024-11-11T11:53:33",
            "upload_time_iso_8601": "2024-11-11T11:53:33.563372Z",
            "url": "https://files.pythonhosted.org/packages/e3/a5/74bba09a8873ab2fd9403987ccaf55c48c720242633ee53c93c7feb17a26/fugashi-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18eb3aa7e7b23c9d475549f39dd1ce1d429abcbdfbfd2872ff16660644f46737",
                "md5": "abf3892ef2b1d88301318cc6678686a5",
                "sha256": "c2eaafda887d1e7c41e1c332888e075459bf3ef74fdb474286671ac2033acaa5"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "abf3892ef2b1d88301318cc6678686a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 512056,
            "upload_time": "2024-11-11T11:52:31",
            "upload_time_iso_8601": "2024-11-11T11:52:31.490020Z",
            "url": "https://files.pythonhosted.org/packages/18/eb/3aa7e7b23c9d475549f39dd1ce1d429abcbdfbfd2872ff16660644f46737/fugashi-1.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "453321d4b33d86be5baf780ba4e53b40ef5c25084416b2b1450df5664098deb4",
                "md5": "88b0391c8aa8abdaa96555b6d8100422",
                "sha256": "ec966fdf2647b87fea1ef31850ea3ec9960f0c409c8398c583d9b46673be9f7e"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "88b0391c8aa8abdaa96555b6d8100422",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 562037,
            "upload_time": "2024-11-11T12:02:45",
            "upload_time_iso_8601": "2024-11-11T12:02:45.533996Z",
            "url": "https://files.pythonhosted.org/packages/45/33/21d4b33d86be5baf780ba4e53b40ef5c25084416b2b1450df5664098deb4/fugashi-1.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5405921b25558bfd62bbb41116c57890bab87f29decb7b6b4f1b6a2a3be44f1",
                "md5": "552245913398d1d8e27a084c63cc4603",
                "sha256": "96a1da8e74a36ce651a6452a94d339ef749b1882bc568679d0c9a03154569313"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "552245913398d1d8e27a084c63cc4603",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 506994,
            "upload_time": "2024-11-11T12:02:46",
            "upload_time_iso_8601": "2024-11-11T12:02:46.730817Z",
            "url": "https://files.pythonhosted.org/packages/a5/40/5921b25558bfd62bbb41116c57890bab87f29decb7b6b4f1b6a2a3be44f1/fugashi-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bccf2ffa40ddc3cac649e1862e9b877d625ac1052a1233a61c43a938afed7ef4",
                "md5": "c1cd4e9e468ecc773a1673fe790624d2",
                "sha256": "86b8284d3ad49f970fd704327124a9b71a8500723222c35106c93c459acf7b26"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c1cd4e9e468ecc773a1673fe790624d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 502356,
            "upload_time": "2024-11-11T12:02:47",
            "upload_time_iso_8601": "2024-11-11T12:02:47.905691Z",
            "url": "https://files.pythonhosted.org/packages/bc/cf/2ffa40ddc3cac649e1862e9b877d625ac1052a1233a61c43a938afed7ef4/fugashi-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66ab1c4c9fcf58469380ef9981723dbb274dae89f21233e44f44f9ab074ce943",
                "md5": "de93b0676b9baedb10316da00ad2b7bf",
                "sha256": "a6a5ea534278c4dcaad44d7752585f8375029a28dd3a9d853deda34ddd2ae32d"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de93b0676b9baedb10316da00ad2b7bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 681071,
            "upload_time": "2024-11-11T12:15:45",
            "upload_time_iso_8601": "2024-11-11T12:15:45.413433Z",
            "url": "https://files.pythonhosted.org/packages/66/ab/1c4c9fcf58469380ef9981723dbb274dae89f21233e44f44f9ab074ce943/fugashi-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30de550c37d262102f7def9b3b42519ab921b8bbcc4a5a994c44b1960b970736",
                "md5": "ba0f655a4b26f192861a010eba3558a3",
                "sha256": "b89b8e6db0fbe374c91322c1ec115061f154dd261aeb992a8b6d8e28056138a4"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba0f655a4b26f192861a010eba3558a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 698015,
            "upload_time": "2024-11-11T11:53:35",
            "upload_time_iso_8601": "2024-11-11T11:53:35.276430Z",
            "url": "https://files.pythonhosted.org/packages/30/de/550c37d262102f7def9b3b42519ab921b8bbcc4a5a994c44b1960b970736/fugashi-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01b54bc918de7727f9a3e75406053aca7a1afcffe81cdc83d789ad9414bea7ee",
                "md5": "0935f526618e34c1e23a9b2a098f56fa",
                "sha256": "aeae8fc06d1c32c2ee1da79e30b8f25afd592853985e4776a3e4b78337e4b757"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0935f526618e34c1e23a9b2a098f56fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 512244,
            "upload_time": "2024-11-11T11:52:27",
            "upload_time_iso_8601": "2024-11-11T11:52:27.579414Z",
            "url": "https://files.pythonhosted.org/packages/01/b5/4bc918de7727f9a3e75406053aca7a1afcffe81cdc83d789ad9414bea7ee/fugashi-1.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b41326bc6f789fcfc8ec648c07afee9f8094c549823e5bd6c7a155bc7a3cb3e",
                "md5": "f20f0c467f4bd94d43f186059d18e0fd",
                "sha256": "eb88cb765c5d7c9bd5f01e179a98262970c3a4d3f14ee39daab641a6d89870c2"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "f20f0c467f4bd94d43f186059d18e0fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 562175,
            "upload_time": "2024-11-11T12:02:48",
            "upload_time_iso_8601": "2024-11-11T12:02:48.940239Z",
            "url": "https://files.pythonhosted.org/packages/9b/41/326bc6f789fcfc8ec648c07afee9f8094c549823e5bd6c7a155bc7a3cb3e/fugashi-1.4.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3210833eed9766cca63dada5e12cef4ed960675e44148b477c21ef3d2acc466",
                "md5": "f8ad4db778ffd2039868c9c1629f227b",
                "sha256": "08e965ee31782d8324e0aecb7b03c36db79a999f573f8fdc53960643c2637050"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8ad4db778ffd2039868c9c1629f227b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 507108,
            "upload_time": "2024-11-11T12:02:49",
            "upload_time_iso_8601": "2024-11-11T12:02:49.995169Z",
            "url": "https://files.pythonhosted.org/packages/c3/21/0833eed9766cca63dada5e12cef4ed960675e44148b477c21ef3d2acc466/fugashi-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f472a9c040fb56583b1733f55e5386fbab3df738727aa482590f01c4369576a9",
                "md5": "657134474868a98c3ee3556f4fba5d44",
                "sha256": "44dd186fd5fbe295d2f5613f528ec8e765c93c31138adc65be0f391e0560da2b"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "657134474868a98c3ee3556f4fba5d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 503068,
            "upload_time": "2024-11-11T12:02:51",
            "upload_time_iso_8601": "2024-11-11T12:02:51.521961Z",
            "url": "https://files.pythonhosted.org/packages/f4/72/a9c040fb56583b1733f55e5386fbab3df738727aa482590f01c4369576a9/fugashi-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12aa01269cf238f79890308331993b6822b1925ccc48c816aac4e91c8d95b6a5",
                "md5": "95774ef938fffe129f36e636766cfa2c",
                "sha256": "04ef5a3537bf2a3c5255b82f816e30f86ffc4711777357a0104a043753b84e82"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "95774ef938fffe129f36e636766cfa2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 675487,
            "upload_time": "2024-11-11T12:15:47",
            "upload_time_iso_8601": "2024-11-11T12:15:47.285131Z",
            "url": "https://files.pythonhosted.org/packages/12/aa/01269cf238f79890308331993b6822b1925ccc48c816aac4e91c8d95b6a5/fugashi-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c88248d6388a3d379cf6fc91ee597eec2e7789dd14d0c74aac24288056b2678e",
                "md5": "8e0bb15612a74139eb2b614fa6611755",
                "sha256": "c5e383c5fac4addb0203e022944df1a0c49859a64921af83ea9591da98211501"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e0bb15612a74139eb2b614fa6611755",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 697548,
            "upload_time": "2024-11-11T11:53:36",
            "upload_time_iso_8601": "2024-11-11T11:53:36.520320Z",
            "url": "https://files.pythonhosted.org/packages/c8/82/48d6388a3d379cf6fc91ee597eec2e7789dd14d0c74aac24288056b2678e/fugashi-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8df969b6ea8bd1958822c8a04fa3a9d2d1d591e745f169621d3c57864f3b1a46",
                "md5": "2cdab4ce8d754243965b180978738c33",
                "sha256": "cb63079142cb9c9ca98c79ba487d58e169dde8750318c38d5fab8e00ac461e2f"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2cdab4ce8d754243965b180978738c33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 512269,
            "upload_time": "2024-11-11T11:52:04",
            "upload_time_iso_8601": "2024-11-11T11:52:04.992871Z",
            "url": "https://files.pythonhosted.org/packages/8d/f9/69b6ea8bd1958822c8a04fa3a9d2d1d591e745f169621d3c57864f3b1a46/fugashi-1.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51a40aef3c27441b080bb526db74d007d05f42376de101d8d9995df86d3a44ff",
                "md5": "caa3e0a3eb8ad8a5db466605969b2aeb",
                "sha256": "8b5e43ef6532c90ad3afac816fe5c63f8613c66119b28aeafdfa442abc4e5735"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "caa3e0a3eb8ad8a5db466605969b2aeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 560512,
            "upload_time": "2024-11-11T12:02:53",
            "upload_time_iso_8601": "2024-11-11T12:02:53.265192Z",
            "url": "https://files.pythonhosted.org/packages/51/a4/0aef3c27441b080bb526db74d007d05f42376de101d8d9995df86d3a44ff/fugashi-1.4.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "154b9d021385839b3e3b17a477d34dba81fe28bf15632f49ab977d8aeb8b117f",
                "md5": "7eb3f7eb2bfb807ac4c58f9472824664",
                "sha256": "322d357c446c1b2eba42f8170fc3c1094d78f08a13dbf060a08e58c7cdebcf42"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7eb3f7eb2bfb807ac4c58f9472824664",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 506320,
            "upload_time": "2024-11-11T12:02:54",
            "upload_time_iso_8601": "2024-11-11T12:02:54.477002Z",
            "url": "https://files.pythonhosted.org/packages/15/4b/9d021385839b3e3b17a477d34dba81fe28bf15632f49ab977d8aeb8b117f/fugashi-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a59930af27297ba8a386de9091968155fbbee54f3efde58c4ceb61b28c439262",
                "md5": "504d82584bbc6a65e3d691b9df4e36a9",
                "sha256": "8fe382c159c2afb6dc3c653b169b9efe1699a7701ab23e5e019539058e5d06db"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "504d82584bbc6a65e3d691b9df4e36a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 502341,
            "upload_time": "2024-11-11T12:02:56",
            "upload_time_iso_8601": "2024-11-11T12:02:56.547825Z",
            "url": "https://files.pythonhosted.org/packages/a5/99/30af27297ba8a386de9091968155fbbee54f3efde58c4ceb61b28c439262/fugashi-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d64364685e4d47599bf15c285fa1f9c3a1d0f86c1a3c8427e051ad17d8f9f22f",
                "md5": "35535121e41b3f6ffdac7cd5fe4b2edd",
                "sha256": "0cca9a9ecacb5269598764a56ab73b883001b93ab726032962d4d2d416b76c7b"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "35535121e41b3f6ffdac7cd5fe4b2edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 672015,
            "upload_time": "2024-11-11T12:15:48",
            "upload_time_iso_8601": "2024-11-11T12:15:48.510049Z",
            "url": "https://files.pythonhosted.org/packages/d6/43/64685e4d47599bf15c285fa1f9c3a1d0f86c1a3c8427e051ad17d8f9f22f/fugashi-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b499ebf43cb093bf68ad97de098ced3e9cc42c0c5da4ff11de4115c040cc891",
                "md5": "340d74d21060112260a466c6b8ac266f",
                "sha256": "016d003de8db2b7b67a6ffaf74915cee8f717c3aa7a66b78acf30c5b13e0e9bc"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "340d74d21060112260a466c6b8ac266f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 693685,
            "upload_time": "2024-11-11T11:53:37",
            "upload_time_iso_8601": "2024-11-11T11:53:37.607732Z",
            "url": "https://files.pythonhosted.org/packages/6b/49/9ebf43cb093bf68ad97de098ced3e9cc42c0c5da4ff11de4115c040cc891/fugashi-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3378f56f6eb7d4a487d1b737f4fcc41e25c1f61c9a6ae9adb49581f151d8ef8",
                "md5": "db1101a5e71f6a321b4e91e9f5dcc728",
                "sha256": "99328a498150cfc39e4ac574a1431a24f967033420f4f92b4ade24aab0271ea2"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db1101a5e71f6a321b4e91e9f5dcc728",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 512024,
            "upload_time": "2024-11-11T11:53:11",
            "upload_time_iso_8601": "2024-11-11T11:53:11.524448Z",
            "url": "https://files.pythonhosted.org/packages/f3/37/8f56f6eb7d4a487d1b737f4fcc41e25c1f61c9a6ae9adb49581f151d8ef8/fugashi-1.4.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c941264ae1b9994fac41bbb32707c776d4b78bb878e0ebeb039e5e8d39d61ce",
                "md5": "3839f32418fa8b499286ab5856218e16",
                "sha256": "3f6dc71546bd995578dd58cade68b267392c0e5382f80ee30d3339ff370fa0a7"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3839f32418fa8b499286ab5856218e16",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 562291,
            "upload_time": "2024-11-11T12:02:57",
            "upload_time_iso_8601": "2024-11-11T12:02:57.715188Z",
            "url": "https://files.pythonhosted.org/packages/8c/94/1264ae1b9994fac41bbb32707c776d4b78bb878e0ebeb039e5e8d39d61ce/fugashi-1.4.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54a5ed7df8fa9a209e6d1c8a1269817e2d213170c97ef6bcd3a42751212a35ce",
                "md5": "96727f4016cd0fbfd0d8afd3ba23dc0c",
                "sha256": "63f1309e248ffa4ebdc4c927b6666075fcb41fce2674296edc6e700bedf72d41"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96727f4016cd0fbfd0d8afd3ba23dc0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 506971,
            "upload_time": "2024-11-11T12:02:59",
            "upload_time_iso_8601": "2024-11-11T12:02:59.071679Z",
            "url": "https://files.pythonhosted.org/packages/54/a5/ed7df8fa9a209e6d1c8a1269817e2d213170c97ef6bcd3a42751212a35ce/fugashi-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03440b696853dbca3eeed666d859a323964a5142197ca049ef1b29a7be866f93",
                "md5": "6ef27ce62d396d9ac9f383512eec83f2",
                "sha256": "32d4c66bb3ce489a20ca87245e05626c8fedd8f9b72e901eff4518d2d21ba97c"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6ef27ce62d396d9ac9f383512eec83f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 502611,
            "upload_time": "2024-11-11T12:03:00",
            "upload_time_iso_8601": "2024-11-11T12:03:00.849442Z",
            "url": "https://files.pythonhosted.org/packages/03/44/0b696853dbca3eeed666d859a323964a5142197ca049ef1b29a7be866f93/fugashi-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2daf5b6b68d4dca06690f4982c4c0f17350c1d485cd72c6d1191a40899eec50c",
                "md5": "c42e9d183598bf5440b49ad80ff557c0",
                "sha256": "f8fba18a4986dd9f9ac39c276c6b0372b9a2c0e981f7e1dd8a69199ce316d244"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c42e9d183598bf5440b49ad80ff557c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 660849,
            "upload_time": "2024-11-11T12:15:50",
            "upload_time_iso_8601": "2024-11-11T12:15:50.199198Z",
            "url": "https://files.pythonhosted.org/packages/2d/af/5b6b68d4dca06690f4982c4c0f17350c1d485cd72c6d1191a40899eec50c/fugashi-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba29995dad4e2eae730ebe23f333069bc214979049964999c20885c5f667cb5",
                "md5": "d3c9170944275bf5f09ee06bfbeb14e4",
                "sha256": "884672b090c4f8d8582efc1c921bb0b69fb0f154db7ec3f57b345c8fdd0f9909"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3c9170944275bf5f09ee06bfbeb14e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 678552,
            "upload_time": "2024-11-11T11:53:38",
            "upload_time_iso_8601": "2024-11-11T11:53:38.851467Z",
            "url": "https://files.pythonhosted.org/packages/2b/a2/9995dad4e2eae730ebe23f333069bc214979049964999c20885c5f667cb5/fugashi-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b90101c8217fb3d0f18c17a0212c1616721a5b03b3f8e4cacf51a29f507a1021",
                "md5": "b1dda760153e50be3faca110d718ea93",
                "sha256": "3615340db5b0f5b3f0fae1550bb753549dc7a87b8bfea67db769fda47c513748"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b1dda760153e50be3faca110d718ea93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 512736,
            "upload_time": "2024-11-11T11:51:37",
            "upload_time_iso_8601": "2024-11-11T11:51:37.015602Z",
            "url": "https://files.pythonhosted.org/packages/b9/01/01c8217fb3d0f18c17a0212c1616721a5b03b3f8e4cacf51a29f507a1021/fugashi-1.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8818a854a8e06756e9d20e5de2810a89825545f0b1908cec063e6aafdfa08bf",
                "md5": "430b8b54f765fbde2b21f68691a576f2",
                "sha256": "a9e0f66dd1fcda351e8e07565b826706b8dd535fa4a27a19a4cb138261239f24"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "430b8b54f765fbde2b21f68691a576f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 563215,
            "upload_time": "2024-11-11T12:03:02",
            "upload_time_iso_8601": "2024-11-11T12:03:02.073905Z",
            "url": "https://files.pythonhosted.org/packages/d8/81/8a854a8e06756e9d20e5de2810a89825545f0b1908cec063e6aafdfa08bf/fugashi-1.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01646e32e500dcc76ec2c2fb967f9cb7ce18ee117cd573dded12bdceb964b0dd",
                "md5": "3ad01446c2bfce404849eb226baa81d5",
                "sha256": "04db2cb4e157e7f9fe436336fbc0aaf0950acb93ff84fc0ed62752a7fb97acda"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ad01446c2bfce404849eb226baa81d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 507533,
            "upload_time": "2024-11-11T12:03:03",
            "upload_time_iso_8601": "2024-11-11T12:03:03.215090Z",
            "url": "https://files.pythonhosted.org/packages/01/64/6e32e500dcc76ec2c2fb967f9cb7ce18ee117cd573dded12bdceb964b0dd/fugashi-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d91a9763dc0b0d89d90408f22c10d6f45a7ccd99dd0c388dd9f9cc24666c507",
                "md5": "78d45ea972c2ad31fc76ca00be1f6c25",
                "sha256": "99f1d0ec94326e5215610b156affb8e2dca2d96f2859f03ce380189223809101"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "78d45ea972c2ad31fc76ca00be1f6c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 502832,
            "upload_time": "2024-11-11T12:03:04",
            "upload_time_iso_8601": "2024-11-11T12:03:04.985595Z",
            "url": "https://files.pythonhosted.org/packages/1d/91/a9763dc0b0d89d90408f22c10d6f45a7ccd99dd0c388dd9f9cc24666c507/fugashi-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c514bf3055765711c9554d471dc55b254bcda997d836c5063853f8a933883e00",
                "md5": "603c686d6e5da6eb2bccba453798e078",
                "sha256": "b007f3adf5e185ef55093b65ade1b8201b3d2553bd363278360cfff2821b3154"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "603c686d6e5da6eb2bccba453798e078",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 657097,
            "upload_time": "2024-11-11T12:15:52",
            "upload_time_iso_8601": "2024-11-11T12:15:52.580508Z",
            "url": "https://files.pythonhosted.org/packages/c5/14/bf3055765711c9554d471dc55b254bcda997d836c5063853f8a933883e00/fugashi-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "903a826052367fae3deb98a5f7ed1e33a68107c47cad4c23a0ac13590fe06987",
                "md5": "1731580502a9df676a4ae0e130479c69",
                "sha256": "51598ec28fe49ad2971dc83b224d13b4d057d4fbe13754d55ad04a9286e9ff2c"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1731580502a9df676a4ae0e130479c69",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 674236,
            "upload_time": "2024-11-11T11:53:39",
            "upload_time_iso_8601": "2024-11-11T11:53:39.926875Z",
            "url": "https://files.pythonhosted.org/packages/90/3a/826052367fae3deb98a5f7ed1e33a68107c47cad4c23a0ac13590fe06987/fugashi-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f56113284beaf9cd05a2f417774033ce8446aa64f10464857c4d32adfad93687",
                "md5": "f5fd17e229fbaa8cdb7537bedf0dc278",
                "sha256": "de5b81a63654fcf583669d92f3b3b0c7c4ab41aa54441dce827c45232dbc98e7"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5fd17e229fbaa8cdb7537bedf0dc278",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 512604,
            "upload_time": "2024-11-11T11:51:37",
            "upload_time_iso_8601": "2024-11-11T11:51:37.097617Z",
            "url": "https://files.pythonhosted.org/packages/f5/61/13284beaf9cd05a2f417774033ce8446aa64f10464857c4d32adfad93687/fugashi-1.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef2ebf504baac3f24a0caf0b0ef2aea42adeb12723c14f71edc024b128838c49",
                "md5": "07dda309811f4353d005b742d9975a5d",
                "sha256": "4348142a8edfbbaefc6d4d11ee28de375bcb8e347a86908356ec4245d17fe259"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07dda309811f4353d005b742d9975a5d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 494973,
            "upload_time": "2024-11-11T12:03:06",
            "upload_time_iso_8601": "2024-11-11T12:03:06.052618Z",
            "url": "https://files.pythonhosted.org/packages/ef/2e/bf504baac3f24a0caf0b0ef2aea42adeb12723c14f71edc024b128838c49/fugashi-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3da5b56f789d47ab8ba35e871c4f4c188364c72ed5b0c3df022e63d4f4b2407",
                "md5": "eeab26325609d26dda9b6a33d45d45ff",
                "sha256": "334793ca17a81c3fcea0ca2edf10bd5fcd9bc59cf8c99572003d76172d9e352d"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eeab26325609d26dda9b6a33d45d45ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 492219,
            "upload_time": "2024-11-11T12:03:08",
            "upload_time_iso_8601": "2024-11-11T12:03:08.116270Z",
            "url": "https://files.pythonhosted.org/packages/e3/da/5b56f789d47ab8ba35e871c4f4c188364c72ed5b0c3df022e63d4f4b2407/fugashi-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa3c4c42018249f11048558ee5ddf49e78a207d17132c78419384a54a0079dd8",
                "md5": "9f27e7cb352021f2f6e34fb3307952ea",
                "sha256": "6c95a08ca732c68b85fc0e1d9596d9c930c062e107d5ecfc2e7a86d5a85ed907"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f27e7cb352021f2f6e34fb3307952ea",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 495060,
            "upload_time": "2024-11-11T12:03:09",
            "upload_time_iso_8601": "2024-11-11T12:03:09.866572Z",
            "url": "https://files.pythonhosted.org/packages/fa/3c/4c42018249f11048558ee5ddf49e78a207d17132c78419384a54a0079dd8/fugashi-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8d8d3f6e37f77f5e78bf0e224e5483bf716c093dec1b93340ffcabd40d4d79b",
                "md5": "d616e4d532a5619d69703f152b4cdac1",
                "sha256": "0c511691cf2d0b2d72ff69a72cdf51ce9ffc9c81ee193f95c4ca16ad9eae0b84"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d616e4d532a5619d69703f152b4cdac1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 491793,
            "upload_time": "2024-11-11T12:03:10",
            "upload_time_iso_8601": "2024-11-11T12:03:10.950182Z",
            "url": "https://files.pythonhosted.org/packages/f8/d8/d3f6e37f77f5e78bf0e224e5483bf716c093dec1b93340ffcabd40d4d79b/fugashi-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a117a80a6c80fa7771e3d623ac276efcc2b2722a03f6ba61389c92b88474fb92",
                "md5": "d615dd7f393e633f584287bfc455aa89",
                "sha256": "7f69c7cc1ca6ff896dc307702d80d80a1575d15237c34d9c8cfdc7cdb65b5481"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d615dd7f393e633f584287bfc455aa89",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 494836,
            "upload_time": "2024-11-11T12:03:12",
            "upload_time_iso_8601": "2024-11-11T12:03:12.124227Z",
            "url": "https://files.pythonhosted.org/packages/a1/17/a80a6c80fa7771e3d623ac276efcc2b2722a03f6ba61389c92b88474fb92/fugashi-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef8c9233e080982bc2e3eb767b90e67cfaa3c34462b11eff9e968ff1f79dbd4b",
                "md5": "073bb1ae449c1bc526698e47e3f687ed",
                "sha256": "52ff5e6230344954316aa1a37688a9da46dcb94dac1960a52bd19dfbf6e2ae00"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "073bb1ae449c1bc526698e47e3f687ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 492045,
            "upload_time": "2024-11-11T12:03:13",
            "upload_time_iso_8601": "2024-11-11T12:03:13.264093Z",
            "url": "https://files.pythonhosted.org/packages/ef/8c/9233e080982bc2e3eb767b90e67cfaa3c34462b11eff9e968ff1f79dbd4b/fugashi-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3369bb037690c3cc218a139ae89afaf0b099814e7aff570b28577aa0ef1a06f0",
                "md5": "fdee4c7cf5974ce3f7baac34bc04075f",
                "sha256": "443880fa975defc3194f524fbd6cdbcd32776fa66d573d07ccec9edb76cd5271"
            },
            "downloads": -1,
            "filename": "fugashi-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fdee4c7cf5974ce3f7baac34bc04075f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 339049,
            "upload_time": "2024-11-11T11:52:14",
            "upload_time_iso_8601": "2024-11-11T11:52:14.045391Z",
            "url": "https://files.pythonhosted.org/packages/33/69/bb037690c3cc218a139ae89afaf0b099814e7aff570b28577aa0ef1a06f0/fugashi-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-11 11:52:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "polm",
    "github_project": "fugashi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "fugashi"
}
        
Elapsed time: 0.34123s