Name | fugashi JSON |
Version |
1.5.2
JSON |
| download |
home_page | None |
Summary | Cython MeCab wrapper for fast, pythonic Japanese tokenization. |
upload_time | 2025-10-24 07:24:27 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[](https://fugashi.streamlit.app)
[](https://pypi.org/project/fugashi/)

[](https://pypi.org/project/fugashi/)

# fugashi
<img src="https://github.com/polm/fugashi/raw/main/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": null,
"name": "fugashi",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Paul O'Leary McCann <polm@dampfkraft.com>",
"download_url": "https://files.pythonhosted.org/packages/ee/ec/b2e5aeba9438551ee4ae5275e95da506a279f53432e618daa1d4bd14c7d5/fugashi-1.5.2.tar.gz",
"platform": null,
"description": "[](https://fugashi.streamlit.app)\r\n[](https://pypi.org/project/fugashi/)\r\n\r\n[](https://pypi.org/project/fugashi/)\r\n\r\n\r\n# fugashi\r\n\r\n<img src=\"https://github.com/polm/fugashi/raw/main/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": null,
"summary": "Cython MeCab wrapper for fast, pythonic Japanese tokenization.",
"version": "1.5.2",
"project_urls": {
"funding": "https://github.com/sponsors/polm",
"source": "https://github.com/polm/fugashi"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a0493e8e1cbdd83f9977fa92fe3186fc779fdcfba856d523f82ea913e270dc5f",
"md5": "086c24880238987409dfd3656abf9d1f",
"sha256": "952533caa1704720989ee7f4262902219f938eac87a003d72b8a98b2a24b0299"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "086c24880238987409dfd3656abf9d1f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 512603,
"upload_time": "2025-10-24T07:27:01",
"upload_time_iso_8601": "2025-10-24T07:27:01.166718Z",
"url": "https://files.pythonhosted.org/packages/a0/49/3e8e1cbdd83f9977fa92fe3186fc779fdcfba856d523f82ea913e270dc5f/fugashi-1.5.2-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae326c758cd13fb581228f17d79535c74a2470c750ede99b999a6180e236744a",
"md5": "b37c024e18432dfa394786d9088531d6",
"sha256": "5b65bdf535d6a58cbea2938dd2de7daf001c38f8821f28006b695d3ac892f521"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b37c024e18432dfa394786d9088531d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 456837,
"upload_time": "2025-10-24T07:27:02",
"upload_time_iso_8601": "2025-10-24T07:27:02.616289Z",
"url": "https://files.pythonhosted.org/packages/ae/32/6c758cd13fb581228f17d79535c74a2470c750ede99b999a6180e236744a/fugashi-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfb7027bf15c5132644487f178c39a5b5a6f26209e4315a4f12bb356ffe3efb7",
"md5": "19f9b240efff683e8c1fe9e821bd8bf2",
"sha256": "380e5ebe058e4243e5662b252b008782f20818c5d2d30d0e482a8911e2e68674"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "19f9b240efff683e8c1fe9e821bd8bf2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 453989,
"upload_time": "2025-10-24T07:27:03",
"upload_time_iso_8601": "2025-10-24T07:27:03.640080Z",
"url": "https://files.pythonhosted.org/packages/df/b7/027bf15c5132644487f178c39a5b5a6f26209e4315a4f12bb356ffe3efb7/fugashi-1.5.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76edc7dd73e6db1cd6c966a8598f1136290534f6cfcbe907b64614285a21d96c",
"md5": "4bcf7168212a6e2c585f96ff7623433a",
"sha256": "809db19725a623b5f3f47c7c11909143bb14781569caa3211e6c813608a9a213"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "4bcf7168212a6e2c585f96ff7623433a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 664923,
"upload_time": "2025-10-24T07:48:50",
"upload_time_iso_8601": "2025-10-24T07:48:50.521446Z",
"url": "https://files.pythonhosted.org/packages/76/ed/c7dd73e6db1cd6c966a8598f1136290534f6cfcbe907b64614285a21d96c/fugashi-1.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed7ec872bc8277d5ccd66d0770f5e43c70e800ae6735dd22c8099dbeb74135ec",
"md5": "2ea3fd6eff50b2a501b8b884cad7e30b",
"sha256": "6464f747c38a1043c9a2da81975db8f2c9724ef59389754d8dae7328ed60a698"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "2ea3fd6eff50b2a501b8b884cad7e30b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 677082,
"upload_time": "2025-10-24T07:25:36",
"upload_time_iso_8601": "2025-10-24T07:25:36.427917Z",
"url": "https://files.pythonhosted.org/packages/ed/7e/c872bc8277d5ccd66d0770f5e43c70e800ae6735dd22c8099dbeb74135ec/fugashi-1.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc1e209e5ca79a393a5e5aff0161b56f3a0398457bf756ba6e1f67ea96b5e942",
"md5": "5f32b764d51c5b262bb8762548cf33c9",
"sha256": "894b69898b83c6d96f73134466df68682cba10d867c1ca55a93585a7d2213133"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "5f32b764d51c5b262bb8762548cf33c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 508994,
"upload_time": "2025-10-24T07:24:28",
"upload_time_iso_8601": "2025-10-24T07:24:28.029947Z",
"url": "https://files.pythonhosted.org/packages/fc/1e/209e5ca79a393a5e5aff0161b56f3a0398457bf756ba6e1f67ea96b5e942/fugashi-1.5.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a22bb911d65dd2144af0ec37f972e59026d3034b44774f135f856dc9777bf41",
"md5": "9e12ccb879cd1bad752edefb2ee32ec1",
"sha256": "072f0ba00ea38705ff43916c8438ce9560bf7ae5e67d415b80f4996f0b82b04e"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "9e12ccb879cd1bad752edefb2ee32ec1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 514016,
"upload_time": "2025-10-24T07:27:04",
"upload_time_iso_8601": "2025-10-24T07:27:04.795610Z",
"url": "https://files.pythonhosted.org/packages/5a/22/bb911d65dd2144af0ec37f972e59026d3034b44774f135f856dc9777bf41/fugashi-1.5.2-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44302bca56c92422949dc9029d41e0824b9cf5a58768e41aca664f119d7e791d",
"md5": "8898c38cfb9676012784de11f05f6b5a",
"sha256": "e16ada7b953bf5a18fc9c81b2537c58f1c9929b993c6629bf972f96762b221a2"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8898c38cfb9676012784de11f05f6b5a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 457496,
"upload_time": "2025-10-24T07:27:05",
"upload_time_iso_8601": "2025-10-24T07:27:05.906316Z",
"url": "https://files.pythonhosted.org/packages/44/30/2bca56c92422949dc9029d41e0824b9cf5a58768e41aca664f119d7e791d/fugashi-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6232f16d5e5a3d1f81c73bb2d28c67afa7a21ac50d6e297f11d23112859348af",
"md5": "d77f1e3a49368fb77ba6c02d20b875b6",
"sha256": "f855953ac6c98cf239d407d341e3298a54119c8de88217037f012096e41ebe7b"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d77f1e3a49368fb77ba6c02d20b875b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 454607,
"upload_time": "2025-10-24T07:27:06",
"upload_time_iso_8601": "2025-10-24T07:27:06.910342Z",
"url": "https://files.pythonhosted.org/packages/62/32/f16d5e5a3d1f81c73bb2d28c67afa7a21ac50d6e297f11d23112859348af/fugashi-1.5.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53a62ed278096a907a2bf7b569492c8f43ede4002a70448d1f98bf94a329498b",
"md5": "1a4434d7e6d1b4b5e06be310aacd2426",
"sha256": "516d61660c7b2262047e531b0a99275ce63fd2256f30282fc5066160435478a6"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "1a4434d7e6d1b4b5e06be310aacd2426",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 682106,
"upload_time": "2025-10-24T07:48:52",
"upload_time_iso_8601": "2025-10-24T07:48:52.794572Z",
"url": "https://files.pythonhosted.org/packages/53/a6/2ed278096a907a2bf7b569492c8f43ede4002a70448d1f98bf94a329498b/fugashi-1.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36e39e2ff9da54441692e3275c358751fc0894a449aa0b71eaea6a11734848ec",
"md5": "6dcc31a8c3606eeb9d74817f0eee4549",
"sha256": "ff899e1767024ba8bc53d8a2cf90bca19a6a54b14ddf05a75d04169f7acb262c"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "6dcc31a8c3606eeb9d74817f0eee4549",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 695295,
"upload_time": "2025-10-24T07:25:37",
"upload_time_iso_8601": "2025-10-24T07:25:37.688984Z",
"url": "https://files.pythonhosted.org/packages/36/e3/9e2ff9da54441692e3275c358751fc0894a449aa0b71eaea6a11734848ec/fugashi-1.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09e467eeb715b602e7024e8291554cb60bae2f3d87e9987db1f8a1b4c0a0e567",
"md5": "9af5fbaf494b372873b3a5749d13c2cf",
"sha256": "5c5e04cb808f5cd46fc682469702f1e34f6199a264514e5c21b1e17ea4f8313f"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9af5fbaf494b372873b3a5749d13c2cf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 508985,
"upload_time": "2025-10-24T07:24:03",
"upload_time_iso_8601": "2025-10-24T07:24:03.042120Z",
"url": "https://files.pythonhosted.org/packages/09/e4/67eeb715b602e7024e8291554cb60bae2f3d87e9987db1f8a1b4c0a0e567/fugashi-1.5.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8838674714722862cf7cbdc351ecacf0e0714daa1ae3afc48755d1349f92632",
"md5": "0682d6c3e896b6089ecd95194b733d03",
"sha256": "4ed199a931c1d9f7d55c606d90a06323d1a60164ec222ea70af74c0c9d236faa"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "0682d6c3e896b6089ecd95194b733d03",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 513185,
"upload_time": "2025-10-24T07:27:08",
"upload_time_iso_8601": "2025-10-24T07:27:08.134334Z",
"url": "https://files.pythonhosted.org/packages/f8/83/8674714722862cf7cbdc351ecacf0e0714daa1ae3afc48755d1349f92632/fugashi-1.5.2-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65e2d8fbb71b3e04fe8e99bd7b2653ac638484d8ab46b22cab6ea64250a020ce",
"md5": "ecf57a62eb0f5e888393e1ec8fe36f67",
"sha256": "3d2bb28cc6c6eec1c50729bb2dda44007a45599f0471b14c8fda57b0dde36d50"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "ecf57a62eb0f5e888393e1ec8fe36f67",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 457118,
"upload_time": "2025-10-24T07:27:09",
"upload_time_iso_8601": "2025-10-24T07:27:09.185407Z",
"url": "https://files.pythonhosted.org/packages/65/e2/d8fbb71b3e04fe8e99bd7b2653ac638484d8ab46b22cab6ea64250a020ce/fugashi-1.5.2-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4263e5e02d885d3ea3eeba7f3be371164eb35f618155faa473f0950cbba2d276",
"md5": "d1fcc70d6f03622c87d433f52f332783",
"sha256": "8c1f64345a7a13b229fb755b567cbc993adb43b5b617ad4089521e5dd4d27b91"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d1fcc70d6f03622c87d433f52f332783",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 455098,
"upload_time": "2025-10-24T07:27:10",
"upload_time_iso_8601": "2025-10-24T07:27:10.139200Z",
"url": "https://files.pythonhosted.org/packages/42/63/e5e02d885d3ea3eeba7f3be371164eb35f618155faa473f0950cbba2d276/fugashi-1.5.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b5f549fdaa359e1983927cf1febd8d6b4b31e2312475048a73138b53af8cb6c",
"md5": "ea80cf92869edb89e0b93339c0dfca9b",
"sha256": "ffe760c93e21896cc74066bc5e7dbee6e41a26199807c850b486e2e29b8a3131"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "ea80cf92869edb89e0b93339c0dfca9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 677940,
"upload_time": "2025-10-24T07:48:53",
"upload_time_iso_8601": "2025-10-24T07:48:53.995971Z",
"url": "https://files.pythonhosted.org/packages/6b/5f/549fdaa359e1983927cf1febd8d6b4b31e2312475048a73138b53af8cb6c/fugashi-1.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd30436dd468ac8e08940f0414384a5808596c2ed8cbfd721dde09d5b78e8ec5",
"md5": "ecdf3b6ee5bac9bbd4111022168d767f",
"sha256": "83bc7bf08f81a3c3992bf10b8c681720898a826c6c3dffa80e1296e005f4bfb8"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "ecdf3b6ee5bac9bbd4111022168d767f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 694924,
"upload_time": "2025-10-24T07:25:39",
"upload_time_iso_8601": "2025-10-24T07:25:39.112749Z",
"url": "https://files.pythonhosted.org/packages/cd/30/436dd468ac8e08940f0414384a5808596c2ed8cbfd721dde09d5b78e8ec5/fugashi-1.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d7ceb18879c94c6267981a65792045321a1d71b849893b40d7e8356e0b55542c",
"md5": "bc5ec18f422dc93c71c03df8f5034bd0",
"sha256": "936d710166c5b05064ec2ce0eb347fff7a0cf102c33989012fad205346943402"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "bc5ec18f422dc93c71c03df8f5034bd0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 508407,
"upload_time": "2025-10-24T07:24:25",
"upload_time_iso_8601": "2025-10-24T07:24:25.409789Z",
"url": "https://files.pythonhosted.org/packages/d7/ce/b18879c94c6267981a65792045321a1d71b849893b40d7e8356e0b55542c/fugashi-1.5.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b8dbfe6958e1afa874c8a2e3016728fb0d69d33c08fd96f27327d8eab8bff6e",
"md5": "a008bfd249f3e440dc32ee0a75fd7446",
"sha256": "5cd0a399aad72d00a3b6b2d8c45e43a8c1e3aefd86ba153c826426b8e133e533"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "a008bfd249f3e440dc32ee0a75fd7446",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 511673,
"upload_time": "2025-10-24T07:27:11",
"upload_time_iso_8601": "2025-10-24T07:27:11.132787Z",
"url": "https://files.pythonhosted.org/packages/0b/8d/bfe6958e1afa874c8a2e3016728fb0d69d33c08fd96f27327d8eab8bff6e/fugashi-1.5.2-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8dc74de35c314c1e8d169ce2f630ba2d7bc538e990a338287ed3fd945639263e",
"md5": "49e754c37abbc15d4b938c90ca296e38",
"sha256": "52c79cddbdcf4bbd0490212d2b2d78b6011d4cf733ff4ef9455274da9a8d54f0"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "49e754c37abbc15d4b938c90ca296e38",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 456259,
"upload_time": "2025-10-24T07:27:12",
"upload_time_iso_8601": "2025-10-24T07:27:12.272535Z",
"url": "https://files.pythonhosted.org/packages/8d/c7/4de35c314c1e8d169ce2f630ba2d7bc538e990a338287ed3fd945639263e/fugashi-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c31a6a79ae7d2eec7e052069ae697e361b15702707977cded3a9f6332a6c26e",
"md5": "e31de88002cbbd4ec98d79e9cc284957",
"sha256": "2ee7b102fef6ec554bdeba51a969ce894a519cc71bade5d05a27935de4426745"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e31de88002cbbd4ec98d79e9cc284957",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 454408,
"upload_time": "2025-10-24T07:27:13",
"upload_time_iso_8601": "2025-10-24T07:27:13.613902Z",
"url": "https://files.pythonhosted.org/packages/7c/31/a6a79ae7d2eec7e052069ae697e361b15702707977cded3a9f6332a6c26e/fugashi-1.5.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "586c827a698ab08b98d221995a44ebec382e5ee4e1bfd4f123ade612ba3b6b04",
"md5": "db9d2d629bbc59adf41ffaca97ac4b30",
"sha256": "32e01a394011270078efb6c71ef188c327255544d953692cd82f7f726d59ecc4"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "db9d2d629bbc59adf41ffaca97ac4b30",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 674106,
"upload_time": "2025-10-24T07:48:56",
"upload_time_iso_8601": "2025-10-24T07:48:56.407735Z",
"url": "https://files.pythonhosted.org/packages/58/6c/827a698ab08b98d221995a44ebec382e5ee4e1bfd4f123ade612ba3b6b04/fugashi-1.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8b407c38f81d69e02d3edce0fa1de545e12aed3f518e0d9304a7a061dc0b79f",
"md5": "bac68a6cd9da7cc688197d291375fdcf",
"sha256": "0e79d3f09d847d07eddf8e62ad9840b11331102bc31ecd66455c62581af11638"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "bac68a6cd9da7cc688197d291375fdcf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 691438,
"upload_time": "2025-10-24T07:25:40",
"upload_time_iso_8601": "2025-10-24T07:25:40.719918Z",
"url": "https://files.pythonhosted.org/packages/c8/b4/07c38f81d69e02d3edce0fa1de545e12aed3f518e0d9304a7a061dc0b79f/fugashi-1.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "628a180961057af06edac8001de3b32367a07d6af096ed0d1f2b57753a9a9b0a",
"md5": "6889da5bcb77f46d1756c5d589b43836",
"sha256": "cc5e5ece1f6ba1ce00f2a0a9465d2b91fe01e904888aa0c7089a20e471646c47"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "6889da5bcb77f46d1756c5d589b43836",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 508286,
"upload_time": "2025-10-24T07:24:04",
"upload_time_iso_8601": "2025-10-24T07:24:04.348978Z",
"url": "https://files.pythonhosted.org/packages/62/8a/180961057af06edac8001de3b32367a07d6af096ed0d1f2b57753a9a9b0a/fugashi-1.5.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd434782f2a2ab963f2ca532a017884e915cecf120640f5c03ae9ee108c1d83c",
"md5": "9cb14a6b2bed7b97339b7c5a3cbe475a",
"sha256": "0535dcc5a844fb196c215020a5791e5ac0b6c26ee4879cb0e63545c5e6f33642"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-macosx_10_15_universal2.whl",
"has_sig": false,
"md5_digest": "9cb14a6b2bed7b97339b7c5a3cbe475a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 511665,
"upload_time": "2025-10-24T07:27:14",
"upload_time_iso_8601": "2025-10-24T07:27:14.985440Z",
"url": "https://files.pythonhosted.org/packages/fd/43/4782f2a2ab963f2ca532a017884e915cecf120640f5c03ae9ee108c1d83c/fugashi-1.5.2-cp314-cp314-macosx_10_15_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "76edd9aa07712244b0488ee201a3435b3354fa93accc0d3d0a801b5af258fcba",
"md5": "5c0ca4934f0ee37535a0cf41de848533",
"sha256": "0805863a5268e112bc3c01e9d77e58a7c5ea079d893a18e0d381f3874f690949"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "5c0ca4934f0ee37535a0cf41de848533",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 456084,
"upload_time": "2025-10-24T07:27:16",
"upload_time_iso_8601": "2025-10-24T07:27:16.324086Z",
"url": "https://files.pythonhosted.org/packages/76/ed/d9aa07712244b0488ee201a3435b3354fa93accc0d3d0a801b5af258fcba/fugashi-1.5.2-cp314-cp314-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bc510331bc9a8140570e84752981a1cbe379987071064a8825279e5ac60445e",
"md5": "875902c81d8a17e3d020421e114d1ad0",
"sha256": "75a8f6219e26e54c95a969af6c5c67f6ea65e333aecc4e85ccc360488e4ba056"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "875902c81d8a17e3d020421e114d1ad0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 454547,
"upload_time": "2025-10-24T07:27:17",
"upload_time_iso_8601": "2025-10-24T07:27:17.272647Z",
"url": "https://files.pythonhosted.org/packages/2b/c5/10331bc9a8140570e84752981a1cbe379987071064a8825279e5ac60445e/fugashi-1.5.2-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c19bdbcfbd3d63a03ed8265ae5cb696dcff0b9cfbb79b8952e81d641aafcfcc",
"md5": "88618c6e6d6df14709dfb1c8b553210c",
"sha256": "79cf4b79809e7e9016dc179e35789bb6a0b9df44e03993835c23d5cb31994de2"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "88618c6e6d6df14709dfb1c8b553210c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 673301,
"upload_time": "2025-10-24T07:48:58",
"upload_time_iso_8601": "2025-10-24T07:48:58.264239Z",
"url": "https://files.pythonhosted.org/packages/2c/19/bdbcfbd3d63a03ed8265ae5cb696dcff0b9cfbb79b8952e81d641aafcfcc/fugashi-1.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39762502adeac68d11194c52bef0cd14d27eed5776a7013045ca2ec94e9e4b58",
"md5": "0a1c81a76c5f5d145a4c84c7a6c91f38",
"sha256": "71c0027aa11747adcb3753d31663290c53fea8007371f0b080c53c192918ceb9"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "0a1c81a76c5f5d145a4c84c7a6c91f38",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 686424,
"upload_time": "2025-10-24T07:25:42",
"upload_time_iso_8601": "2025-10-24T07:25:42.015540Z",
"url": "https://files.pythonhosted.org/packages/39/76/2502adeac68d11194c52bef0cd14d27eed5776a7013045ca2ec94e9e4b58/fugashi-1.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4dc5b2b7903a52703d1eb30623ed42dab54fcf13764e3efc72e5e18b55130630",
"md5": "306748cb3870972fee6ab19463d51666",
"sha256": "41e3f388913a87826045722ab59611b27a4654a51e2037c69d6189e04f33f6f5"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314t-macosx_10_15_universal2.whl",
"has_sig": false,
"md5_digest": "306748cb3870972fee6ab19463d51666",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 518986,
"upload_time": "2025-10-24T07:27:18",
"upload_time_iso_8601": "2025-10-24T07:27:18.218136Z",
"url": "https://files.pythonhosted.org/packages/4d/c5/b2b7903a52703d1eb30623ed42dab54fcf13764e3efc72e5e18b55130630/fugashi-1.5.2-cp314-cp314t-macosx_10_15_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2ddccdbf674060965930a04ba69f889f3b449fdce7ebcfc4ad26570ed53b02e",
"md5": "9566b4d9eb5907067718a5efea4e1ee8",
"sha256": "bb6e06928bd428a8a139660866f01dadd55546b6395a34dffe5602d8c1329205"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314t-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "9566b4d9eb5907067718a5efea4e1ee8",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 459402,
"upload_time": "2025-10-24T07:27:19",
"upload_time_iso_8601": "2025-10-24T07:27:19.126881Z",
"url": "https://files.pythonhosted.org/packages/b2/dd/ccdbf674060965930a04ba69f889f3b449fdce7ebcfc4ad26570ed53b02e/fugashi-1.5.2-cp314-cp314t-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1d03cc82f13f0414f2d0daa231a5811d23ee58dfb734403b2b2a3f44deb7bb9",
"md5": "2064c3ec64a99fcec26700e3662ba718",
"sha256": "e516bde355c2ba53b5b2ce37760cf67f6f186c79efa049f9ab3767bc843f341b"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2064c3ec64a99fcec26700e3662ba718",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 458548,
"upload_time": "2025-10-24T07:27:20",
"upload_time_iso_8601": "2025-10-24T07:27:20.195685Z",
"url": "https://files.pythonhosted.org/packages/e1/d0/3cc82f13f0414f2d0daa231a5811d23ee58dfb734403b2b2a3f44deb7bb9/fugashi-1.5.2-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "710ea5776ae1e355d2db9a3874cbdbf9c7325cbd11b300f1a25d3e86ecb26420",
"md5": "3ad64f58f3836826a14b2e077eb92bf2",
"sha256": "a3c69086650a66bfffb5dd4952d42a9274cea9b110df7b4837c74da1fe4f98f3"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ad64f58f3836826a14b2e077eb92bf2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 519467,
"upload_time": "2025-10-24T07:25:46",
"upload_time_iso_8601": "2025-10-24T07:25:46.623204Z",
"url": "https://files.pythonhosted.org/packages/71/0e/a5776ae1e355d2db9a3874cbdbf9c7325cbd11b300f1a25d3e86ecb26420/fugashi-1.5.2-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47234609015097eff3ef4fe56a5e81b7885e4c429c12118a055d47db68b1426d",
"md5": "a5ee37650df1751cdda26336cf1bb82f",
"sha256": "7e0c20abc9df511c54c90ceab118208d051a196ef5f68c63ab1c710fc1a35c6a"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a5ee37650df1751cdda26336cf1bb82f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 513442,
"upload_time": "2025-10-24T07:27:21",
"upload_time_iso_8601": "2025-10-24T07:27:21.258049Z",
"url": "https://files.pythonhosted.org/packages/47/23/4609015097eff3ef4fe56a5e81b7885e4c429c12118a055d47db68b1426d/fugashi-1.5.2-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24d74d87ae5021b2212ae262f39927cdd309972ed86c97541d6edcc5389c33ba",
"md5": "50f8694fabdc6730110ea45ab6430770",
"sha256": "5eda8187624053a610ec09f7b6391d0411e9148c34b5fddad522b342edbcb201"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "50f8694fabdc6730110ea45ab6430770",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 457144,
"upload_time": "2025-10-24T07:27:22",
"upload_time_iso_8601": "2025-10-24T07:27:22.373410Z",
"url": "https://files.pythonhosted.org/packages/24/d7/4d87ae5021b2212ae262f39927cdd309972ed86c97541d6edcc5389c33ba/fugashi-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ffc0938321e59401793239a9e0002b33a80cc8a0c32362dc6a68976e3ecec97",
"md5": "4e1c59d57f11565bc08470eff3f0bce6",
"sha256": "a52b9a023522969f3d9e32172c1a49b0d10bfc187433f33d3ceb1e730cc65417"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4e1c59d57f11565bc08470eff3f0bce6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 454439,
"upload_time": "2025-10-24T07:27:23",
"upload_time_iso_8601": "2025-10-24T07:27:23.647517Z",
"url": "https://files.pythonhosted.org/packages/5f/fc/0938321e59401793239a9e0002b33a80cc8a0c32362dc6a68976e3ecec97/fugashi-1.5.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08c24aa87cca716edaf7d3f4e7d5d7acf221787ddd16bbe4228cbf16d19711d1",
"md5": "24a33fd054f33d4a54ff78e07a3fbd01",
"sha256": "deca2ff8310d482b802721814b61eeecc8596af396e346b70389ae3f912790c7"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "24a33fd054f33d4a54ff78e07a3fbd01",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 662985,
"upload_time": "2025-10-24T07:49:00",
"upload_time_iso_8601": "2025-10-24T07:49:00.175842Z",
"url": "https://files.pythonhosted.org/packages/08/c2/4aa87cca716edaf7d3f4e7d5d7acf221787ddd16bbe4228cbf16d19711d1/fugashi-1.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b2ef34b0ad81e8f0f047be24aba1e2e214c50f49025d7e793adab02da3984c5",
"md5": "4be9ee9399f7ba53841a0cd97aacf6e6",
"sha256": "4b586b8dcdbff7bb95d36ff8c9ac7b041ed95ce4d8e734c383b3c4817e94f992"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "4be9ee9399f7ba53841a0cd97aacf6e6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 675422,
"upload_time": "2025-10-24T07:25:43",
"upload_time_iso_8601": "2025-10-24T07:25:43.173908Z",
"url": "https://files.pythonhosted.org/packages/8b/2e/f34b0ad81e8f0f047be24aba1e2e214c50f49025d7e793adab02da3984c5/fugashi-1.5.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7df672ba0ac9854caa2a89b3bc6abb5664efe142b77154036229e26bb3e3ef87",
"md5": "e3105716d0f04c1efd3a0bcb809687d0",
"sha256": "954b426e7886c1c4113bcf56c1faebf11bcead7768aa764c1b0d0104073c2653"
},
"downloads": -1,
"filename": "fugashi-1.5.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e3105716d0f04c1efd3a0bcb809687d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 509978,
"upload_time": "2025-10-24T07:25:17",
"upload_time_iso_8601": "2025-10-24T07:25:17.555299Z",
"url": "https://files.pythonhosted.org/packages/7d/f6/72ba0ac9854caa2a89b3bc6abb5664efe142b77154036229e26bb3e3ef87/fugashi-1.5.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eeecb2e5aeba9438551ee4ae5275e95da506a279f53432e618daa1d4bd14c7d5",
"md5": "84ecdcb7281d7cc071a7d550bc5132b1",
"sha256": "a7959eab95bb37a6a934fc2314d3ff888664d11b88d0e1c596260a5785d5880e"
},
"downloads": -1,
"filename": "fugashi-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "84ecdcb7281d7cc071a7d550bc5132b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 339768,
"upload_time": "2025-10-24T07:24:27",
"upload_time_iso_8601": "2025-10-24T07:24:27.581779Z",
"url": "https://files.pythonhosted.org/packages/ee/ec/b2e5aeba9438551ee4ae5275e95da506a279f53432e618daa1d4bd14c7d5/fugashi-1.5.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-24 07:24:27",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sponsors",
"github_project": "polm",
"github_not_found": true,
"lcname": "fugashi"
}