Skip to main content

A Cython MeCab wrapper for fast, pythonic Japanese tokenization and morphological analysis with additional improvements.

Project description

fugashi-plus

Current PyPI packages Test Status PyPI - Downloads Supported Platforms

fugashi-plus は、主に Windows 対応や MeCab の ikegami-yukino/mecab への移行などコードのメンテナンスを目的とした、fugashi の派生ライブラリです。

Changes in this fork

  • パッケージ名を fugashi-plus に変更
    • ライブラリ名は fugashi から変更されておらず、fugashi 本家同様に import fugashi でインポートできる
    • fugashi 本家のドロップイン代替として利用できる
  • 明示的に Python 3.13 をサポート対象に追加
    • CI 対象の Python バージョンにも 3.13 を追加した
  • Cython を 3.0 系に更新
    • https://github.com/cython/cython/issues/5982 の通り、Python 3.13 では一部の非推奨 C API が削除されている
    • Cython 0.x 系では Python 3.13 以降のビルドに失敗するため、Cython 3.0 系に更新した
  • Cython モジュールに型ヒント (Type Hints) を追加
    • fugashi 本家には型ヒントが同梱されておらず、また fugashi はほぼ 100% Cython で書かれているため、Pylance などでのコード補完や型チェックが全く効かない
    • fugashi-plus では Cython モジュールに型ヒントを追加したことで、コード補完や型チェックが効くようになっている
  • MeCab を現在もメンテナンスが続けられている ikegami-yukino/mecab に移行
    • オリジナルの Mecab (taku910/mecab) は、2020 年以降メンテナンスが放棄されている
      • 大元の設計から Windows での使用を想定していないようで、Windows のサポートは不十分
      • fugashi 本家では Windows 向け wheel のみ Windows 向けの修正を施した chezou/mecab が使われているが、2018 年以降メンテナンスが放棄されている
    • 一方 ikegami-yukino/mecab は現在でもメンテナンスが続けられており、Windows 64bit でも比較的容易にビルドできる
      • ただし、Visual Studio 2022 (Build Tools v143) では非推奨の一部 C++ 標準ライブラリが削除されている関係で、ビルドに失敗する
      • このため、GitHub Actions のビルド環境では明示的に Build Tools v142 (Visual Studio 2019 相当) でビルドを行っている
    • ikegami-yukino/mecab に移行することで、UniDic 2.3.0 以降でユーザー辞書のビルドに失敗する問題が修正される
  • Windows 環境において、システム辞書・ユーザー辞書の保存先パス指定が正常に機能しない問題を修正
    • fugashi 本家では GenericTagger クラス・build_dictionary() の両方で MeCab に渡す引数の分割に shlex.split() が使われていたが、shlex は Windows パスを正しく解釈しない
    • fugashi-plus では、Windows のみ shlex を使わず独自に引数解析を行うことで、ライブラリユーザー側でワークアラウンドを挟むことなく、正常にシステム辞書・ユーザー辞書の保存先パスを指定できるようにしている
  • Tagger クラスのコンストラクタで、unidic / unidic-lite パッケージのインストール有無に関わらず、引数に指定されたシステム辞書を利用するよう変更
    • fugashi 本家では unidic / unidic-lite パッケージがインストール済みの環境だと、Tagger クラスのコンストラクタ引数 (arg) に独自にシステム辞書のパスを指定しても、常に unidic / unidic-lite パッケージ内蔵の UniDic が優先して利用されてしまっていた
    • fugashi-plus では、コンストラクタ引数 (arg) の文字列内に -r-d オプションが含まれない場合にのみ、unidic / unidic-lite パッケージに内蔵の UniDic を検出するロジックに変更している
  • その他コードのクリーンアップなど

Installation

下記コマンドを実行して、ライブラリをインストールできます。

pip install fugashi-plus

下記のドキュメントは、fugashi 本家のドキュメントを改変なしでそのまま引き継いでいます。
これらのドキュメントの内容が fugashi-plus にも通用するかは保証されません。


Open in Streamlit Current PyPI packages Test Status PyPI - Downloads Supported Platforms

fugashi

fugashi by Irasutoya

fugashi is a Cython wrapper for MeCab, a Japanese tokenizer and morphological analysis tool. Wheels are provided for Linux, OSX (Intel), and Win64, and UniDic is easy to install.

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

Check out the interactive demo, see the blog post for background on why fugashi exists and some of the design decisions, or see this guide for a basic introduction to Japanese tokenization.

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. If you need to build from source on Windows, @chezou's fork is recommended; see issue #44 for an explanation of the problems with the official repo.

Known platforms without wheels:

  • musl-based distros like alpine #77
  • PowerPC
  • Windows 32bit

Usage

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 is recommended, and two easy-to-install versions are provided.

  • unidic-lite, a slightly modified version 2.1.2 of Unidic (from 2013) that's relatively small
  • unidic, 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.

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

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.

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:

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.

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 or on Arxiv.

@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.
  • If you need to work with Korean, try pymecab-ko or KoNLPy.

License and Copyright Notice

fugashi is released under the terms of the MIT 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fugashi_plus-1.3.2.post1.tar.gz (346.2 kB view details)

Uploaded Source

Built Distributions

fugashi_plus-1.3.2.post1-cp313-cp313-win_amd64.whl (525.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (726.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (701.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp313-cp313-macosx_11_0_arm64.whl (512.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_x86_64.whl (516.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_universal2.whl (576.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

fugashi_plus-1.3.2.post1-cp312-cp312-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (726.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (702.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp312-cp312-macosx_11_0_arm64.whl (512.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_x86_64.whl (517.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_universal2.whl (578.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

fugashi_plus-1.3.2.post1-cp311-cp311-win_amd64.whl (526.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (740.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (722.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp311-cp311-macosx_11_0_arm64.whl (512.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_x86_64.whl (518.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_universal2.whl (579.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

fugashi_plus-1.3.2.post1-cp310-cp310-win_amd64.whl (526.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (689.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp310-cp310-macosx_11_0_arm64.whl (512.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_x86_64.whl (517.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_universal2.whl (578.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

fugashi_plus-1.3.2.post1-cp39-cp39-win_amd64.whl (526.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (710.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (691.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp39-cp39-macosx_11_0_arm64.whl (512.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_x86_64.whl (518.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_universal2.whl (579.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

fugashi_plus-1.3.2.post1-cp38-cp38-win_amd64.whl (526.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (714.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (697.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fugashi_plus-1.3.2.post1-cp38-cp38-macosx_11_0_arm64.whl (512.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_universal2.whl (578.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file fugashi_plus-1.3.2.post1.tar.gz.

File metadata

  • Download URL: fugashi_plus-1.3.2.post1.tar.gz
  • Upload date:
  • Size: 346.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fugashi_plus-1.3.2.post1.tar.gz
Algorithm Hash digest
SHA256 73be1532a7f2fab08cbee1c3272c4dadc29d0012ba6fe7c98ef6a63ab35b82be
MD5 a53d689c689db65b67d7d0791d1c6bfe
BLAKE2b-256 21760d7645dc0a9bd607d7c05046d01a498103a74daac7cfa87349bb3fb8bf22

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a7f3b6ef6e2a5370d80edd931739d0cc206bad7414192434144a86dd83fc728
MD5 3af06fb2b601d8daa36cc86ec54722bc
BLAKE2b-256 401431de012f88f5b2c9361b60b1abdcadcc720454ddf2cf0360b84b4f1b4b8a

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca18b50ee088350481d8480750b4e28ee122c752363105a981ca4c299a3e5cea
MD5 20b8a951294f7d51e80bbb5fbcc687e0
BLAKE2b-256 92dc339506b211e3fc3b7772e3ba7016893b7ba0b6d9d0c0e838b760d8b004ad

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62dec0ec0f6bc32983e1b52d13b06164da7e86fffc3ec6999cd7abc25ad2e9b0
MD5 2ff66721e61c787bff8bd0c66b030c8c
BLAKE2b-256 7f609bacb59f92d5f4fdf4488a3d8c54b302981c77bd538af555f8764f79ac5c

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8e2e9ebf6dee52d0f300ee43d49153199bcf471d56bbe605eae9787b076898c
MD5 34678f3bde90b5899ead70b0e8c56fca
BLAKE2b-256 e1bba2fb553c64a56644e4687f505447aa0f82474ab3a3b8cb241afb4c0da8c9

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7c60a8c1f9ed415460ef614adf2f537b4989b5024484cb80fc28053cd884859
MD5 3cad2a0434fd661fe5f2495f0d2819ad
BLAKE2b-256 1dbc56b8e29f8a27d93e672edb1c75b922a8e8e17326a7c3afe7d4c4f7733225

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 beb26c848507f93e85e1300ad001f14f30a1ecf86b1cf9b086fc696412ac228e
MD5 ae4396a0e329ff92fefdcef48cedb6a8
BLAKE2b-256 43750ce0e28422962203a2cbafcb80ab8eaad5de531b8ba36967051374817ccb

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 27cf370affb3cab236d8f6e2690bbeb3e4ac3a780933c7d6a9d39432e0a42c27
MD5 372a7016defe04905c6ba3dc6d887f68
BLAKE2b-256 f3be93c55d029892021324326654c2fd6db9ae3f6e815c75ca5a744b6bb7161f

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a590f246ce622ff6d5ccc6e9308b52c5a2460ee10483a2788ab4aa44017e8c2b
MD5 e0b35a10f42238cbe75335d51b47cfb0
BLAKE2b-256 f52cad04a8b0a4b8db24fe82a6cb512426eccbef54e00ee84eed802fc4b9fa30

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83f2208c1cfb067f3537562330a1b2a74ae5844a4960e79460d5eda5f141580e
MD5 56ae1bc1581326442da262f346aac61a
BLAKE2b-256 7171696a993e29bbd98e958e423562d87948b42cb16bdb57862344f16ad81aac

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bba217da5f204a97b10497801720ca57eff51ef1028930cd427b93cafe0564
MD5 c81ec5461897c6cce790cab4a2159eb4
BLAKE2b-256 f3e083cfbbbade74124d9f3945c27394f67eeb5c8b1bd88119017defabc5e454

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fcf8933aedef055997b15548b960e4595607f356217600d7de07da9f98d6c6ca
MD5 83c8063b23319ae00239a802fdcd3ec7
BLAKE2b-256 b3cff1879bc6ddf0a89a2f3d5f2fb476e58082fdc712ba26f30198afe299280f

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 94efac49c9133e5c04a9a7342111b32f239aeff3d24c7361a1881d8dfb0b6bf0
MD5 a8ddc6e2db56ab42ecc7ec6fe072275f
BLAKE2b-256 df9816c119746a8318047e83efa0452aad1ce41bf69ca5ea39640791d2bc54c5

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b908ad701d1e40b516be7019a6cc5a93ef069622da39ddfa799682cf6ea764c2
MD5 e71d952048170f53afbc7aef0aa934e4
BLAKE2b-256 0210164f19dfc0a233b548132e4cd3255e5d128df6ead9e9d1f0cbd1ba45e2be

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2acd4261b4152071585c4d74761da0379635feaf55293ccc676ea7515b2df62
MD5 fc606ab213a5f125d97aea2b017f8fd1
BLAKE2b-256 026049bda07ba51b191fcfdc7a74e23ee16d3421064d63f4b75adb89f73fd6c0

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0222bf72d3ea6f6e993ae1321ba4a6424e5f9bd6041d4cc94d9c0a536db48004
MD5 fbea9fc2973557097766cd33cd28ce93
BLAKE2b-256 06fb2a4a11bd3429d9616112a446f85899f7859e1369a5e32a0995df770360bb

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6325ff3a622d0a6df227725e9411b3c5f612d61c77d90e8f06491bea6e5eaa58
MD5 81776d4a86c6f6263b45899d0a8ebd07
BLAKE2b-256 8fc62ee951914c39674d422ae9125864e8961eb143596232ac4d763d19ac0efb

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b6c5d2a8049e0e10a35864637bc54bf85ef8cd3765c4c3de851ebd8b14af1fb
MD5 9b34154c2401312bceffb9c1a464c5c4
BLAKE2b-256 2f6988967b90ba3ffee9929a7540cce8bd6fce025a3e488b955fcdd1c468c2f6

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2af1f76640cd6011f10468ec6d586539d4f1bf7d23f4b0a4d3d45c867f6ccce5
MD5 5ee434f8e167c4602c82de3fca1070d5
BLAKE2b-256 b3e1ddc626021650b9cdadbecdaf8cefc987f59d4bb03a3d0a0bdd3adb2a17a0

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5afc024daf1768612a6e1845abc2f5a7d8178313c4e2af424ffcf372650b47e
MD5 3ce66d9789633de1f524094d085f8a4b
BLAKE2b-256 97b0b80f5607ab72068b4101b8f218b586d097e660758896e562693fd84bb05c

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6123e4ef4a5213ef00091e79202a91dbcf3db937583ee0076d952fc8243817ee
MD5 f4d7620653da822fba1c79ac30dc0124
BLAKE2b-256 02455fa92a72e19653e8138dc8fdbdd309c199dea736390106d67c241ba7cb0a

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f7e206537c2c336f37231fb2a447aad5499f008ff3d20e3638412d1d3f5fdda
MD5 ea68f26a6ce63a284091c79314b0ef6d
BLAKE2b-256 dce12b432586bb5e155b59f82988d230acf20838346ae05f21c2da7a510229a8

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ac5cd02241b01dd1c33c5178261ccec90e9a7c314786ab09e2dc2c2a7e3b20e
MD5 7eb5e529298a3d174631a1aae8e699df
BLAKE2b-256 0dac4d2f7d50a689923b1642d8e7de6629bc9893524374402b5fde6b26cf1f75

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8df13d32da9b94582f3f44cb4d7da1dad2effbed1dd11f63f7b66602526197ab
MD5 5c2f96f0770f712bf6b619de7d1b9699
BLAKE2b-256 cb77e29f5aa3f7076a5337e85138bb9f3f9f34dca8a1ccf9891eb73a96fde724

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 440ff148f5dfbe307ccf88ce02a129e0f1b9b9d54bf07c81701a80824f1d7d99
MD5 997dee82b2d2b0827394e2c29a195fe8
BLAKE2b-256 fb635fc62619da69154af2e2f7975dcadedaada0543a33da5bc6adc62d6bfe22

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 038cb1a2cd60f870bf9434d36a19a9389b4d2e3c934eb763afcc9acf4f37e59e
MD5 f816c4aa57689532cf10da4cbe406435
BLAKE2b-256 d49a9155fdd02464d42e7d318d83a79e0c4a07999efe43ac0da887b7dbaebe80

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede6668d40fe046643fbcca5120020987014acf9e5f8a4770789407fe608ed76
MD5 f7e860aa8927043f1e85f39bf09c9f44
BLAKE2b-256 b74c88dd716962c2c47d30a6748430a96cc063fecd31cf05dc258baea63220c8

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1a8629cb7424493ed98aed9fa38546d64d1d9e18f10e114c51d4d556223d47e
MD5 ab0fb17fcdd7740036c16b78ceaff2ae
BLAKE2b-256 6e5c34ed4134982e2e61d80d72e25b02556a5ec4f7c9c0e777f7c34199b3b022

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cd3016df0f1959fb3b0832c9f3544a0ed93c60ef6c65c140aa13f4131b2b465
MD5 95449319075a72660a59f1ed209669fd
BLAKE2b-256 64599dc9cd3a2d690107f29a503f848c8e6be62f0672cf5bccb3665173cd3c84

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f98920c648f194f992fe5e873bf55190397d354b8a1b57d308fed44b638d1d0
MD5 194aea7a7d3614b331e00fecb00139f8
BLAKE2b-256 75f817a388789c836e863a3d579c528f0393f81f6e56eca1b781a041ac801cc7

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a3d396478ee4b7237d6f6cafb3e5c11286190ccab73ebaa01868c715cc28a49f
MD5 f25de06679717dd7a82bdba309355f2b
BLAKE2b-256 220b71d7360543c0a65fd00bf7e8e17e12782a22a57850d2fcf75682d74568dc

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c5e9b3d673a3fdf0b7669b9021ed2049adf9d8afff4526333f3af276439f1a32
MD5 1083131bc9fb72fc64f17bda10db2868
BLAKE2b-256 865edc480bfb2b3265c89c584939614c90415a99fc34b7f25a069c2b66e0708f

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f41dfb7584e8f078de610a80da80f01f8681aeb40d2627cedf810cea1d28e492
MD5 51e4ac6e5c067dedbe2e0e7ea228d4df
BLAKE2b-256 f344899bf96a29772408d3e80cffa67e4d52dca6c94139b5b58c29ae62b16838

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0287d8f5ca254ca695a7760f9ccbf36c6390940680c2c813c7bf73f165b3912
MD5 5ffd38889b0932950db0b779f05927d1
BLAKE2b-256 ee03e3609054b1f4b6f12c70fe8a8d4149b4bf39c0cdcb30a6f178c27ca26a68

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b14f4a2b35bf1c129a71f2ed0dca067242afb8f0a8bc1a0caed69123f5ee90b7
MD5 c0b25b799cc5e30b45272a3b249dcb6a
BLAKE2b-256 713dec1757431b0b8777881a888817777db427a756435ea36e55834833ac1857

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 000a6c978cc22da68824c6403a312ced9b5e184608da23feed7dbbfbdb8b9ee7
MD5 32a2bbcf95a09ef983593e56c92150bc
BLAKE2b-256 ab318c50892a3e076991336a5e09fa5b5631ee2ac45eb5d19f702045c538aea7

See more details on using hashes here.

File details

Details for the file fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi_plus-1.3.2.post1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1b493958eb41b5fc0354db04d745791c457b0753074edbdc106c28f34c371bc2
MD5 8c053b08b0e5bb2b897a580c84e849b0
BLAKE2b-256 22725344aa3d1461001b7d6c77816f331aa742086ca4cbea4ff79679db43ca55

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page