Skip to main content

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.5.1.post1.tar.gz (346.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fugashi_plus-1.5.1.post1-cp313-cp313-win_amd64.whl (550.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fugashi_plus-1.5.1.post1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fugashi_plus-1.5.1.post1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (722.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fugashi_plus-1.5.1.post1-cp313-cp313-macosx_11_0_arm64.whl (488.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fugashi_plus-1.5.1.post1-cp313-cp313-macosx_10_13_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fugashi_plus-1.5.1.post1-cp313-cp313-macosx_10_13_universal2.whl (557.2 kB view details)

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

fugashi_plus-1.5.1.post1-cp312-cp312-win_amd64.whl (550.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fugashi_plus-1.5.1.post1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fugashi_plus-1.5.1.post1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (724.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fugashi_plus-1.5.1.post1-cp312-cp312-macosx_11_0_arm64.whl (489.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fugashi_plus-1.5.1.post1-cp312-cp312-macosx_10_13_x86_64.whl (492.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fugashi_plus-1.5.1.post1-cp312-cp312-macosx_10_13_universal2.whl (559.6 kB view details)

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

fugashi_plus-1.5.1.post1-cp311-cp311-win_amd64.whl (550.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fugashi_plus-1.5.1.post1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (759.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fugashi_plus-1.5.1.post1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (741.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fugashi_plus-1.5.1.post1-cp311-cp311-macosx_11_0_arm64.whl (487.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fugashi_plus-1.5.1.post1-cp311-cp311-macosx_10_9_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fugashi_plus-1.5.1.post1-cp311-cp311-macosx_10_9_universal2.whl (559.5 kB view details)

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

fugashi_plus-1.5.1.post1-cp310-cp310-win_amd64.whl (550.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fugashi_plus-1.5.1.post1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (729.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi_plus-1.5.1.post1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (710.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi_plus-1.5.1.post1-cp310-cp310-macosx_11_0_arm64.whl (487.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fugashi_plus-1.5.1.post1-cp310-cp310-macosx_10_9_x86_64.whl (491.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fugashi_plus-1.5.1.post1-cp310-cp310-macosx_10_9_universal2.whl (558.8 kB view details)

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

fugashi_plus-1.5.1.post1-cp39-cp39-win_amd64.whl (551.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi_plus-1.5.1.post1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (731.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi_plus-1.5.1.post1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (712.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi_plus-1.5.1.post1-cp39-cp39-macosx_11_0_arm64.whl (488.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fugashi_plus-1.5.1.post1-cp39-cp39-macosx_10_9_x86_64.whl (491.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi_plus-1.5.1.post1-cp39-cp39-macosx_10_9_universal2.whl (559.9 kB view details)

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

File details

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

File metadata

  • Download URL: fugashi_plus-1.5.1.post1.tar.gz
  • Upload date:
  • Size: 346.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for fugashi_plus-1.5.1.post1.tar.gz
Algorithm Hash digest
SHA256 55f98cf4cdeb9d23207e372f0d8f2291339312a97f04b7509172a3390dad2a98
MD5 24df694ef099fb0fc3665577d385eb60
BLAKE2b-256 fa055931c0a2defcac8c650644ebe1e35b7030a825e6f7db3a892b1599681b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8989a1b906e7284ecfbf14100aec7d56e548125e2b33724e235f7ca04818d6d4
MD5 b970c9da0942617fc5bd181b492a7274
BLAKE2b-256 b100f617f5f617c29bef53e3f11b061adc6c057bfc6efaeb68212de112a92ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 88312c40000beb73988154f3d826a1926da2cc7dd41f1e9c6b1e4e7c94b9b915
MD5 619d57922fa541d3b6cf2045fba5e8f1
BLAKE2b-256 d4bb3a85ba518fea685ed9b865d8a880e92eac63f3c233d76fe8fd00a206c1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6f006f159e63325cfbcd2797fae6f8cf844a57b8ca7022bd39b43ab81b0df039
MD5 bec65a3704a1214bbec97d8e5c31523e
BLAKE2b-256 589096808b32a0fb8265928c97ed788a4eb522d486922841b67bba8877a1d2b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da30127eacde14f210203f31d42634eac86106ae6a4d75982b65cba7df8c17de
MD5 7ae4df0d910730eed4528e49d0eb0de8
BLAKE2b-256 d83a228f2d9dce7e76613a2c0874f1dd2487c6a3bdbf10fc2b143197f6d809e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 44d77b44b5b94e2a3b64c1f1ec82308ce8644d4a1a6fb48ed1b34434411f6b0d
MD5 77567fba74f86a5eb6ef5cef47f6ed88
BLAKE2b-256 301370081645099d521172460c6b84e72e536ce46780d676c172ac5f36be5078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e5ea7082bbfa65d3f755f2641cb8891d14fa73799ae8c341fe95f82b89c86633
MD5 f3a1a7566b879ac8baaffc38724299cb
BLAKE2b-256 3c15b108d467d81faee8c3e87798dae3ea3f577fbef20515213537dead3403b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b090683ae5da9970d6f40af7a501e24f2e435f3e519664fbdbbf345a6f84c5cc
MD5 24526824aad8aab252fe3222cbebe0b7
BLAKE2b-256 aac64798c71b034f31959e57875b2593834f807306161df86a74df2f6e48c824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 93fee638ffff30ef3b99e0a75056b5de873dde97b434eb53d417dd69709fd104
MD5 2fa36a627e49262c589eafe227195890
BLAKE2b-256 a1e1aaeaae7319042092fa23f8be9cc61be018f5748191cbc67d8c2649a7437f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 398f7c7f69adc6f5cc72be88378dfba9bb69787ff64fd25e9b392c008709be71
MD5 637842b1d7ec831d2240601a6dd22d57
BLAKE2b-256 16f923cef7558bea004fb38f8502ade65ca55758042ae36015b691be4e83182b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d86a45abf847459d685dea11547ce60a34ec786f0b495e7181e18176e31077c7
MD5 b05c1df5556e6f3089c1cd1dd4388ffd
BLAKE2b-256 9c05cf1cdbb7591a6bdc56987aca478ab959b7f1600db920f3043e6adcb1e154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b848500abe221a8e7173e4bb1737459c8278c8a66cc46a85ff774f570fbc6158
MD5 d79c96d0c3f7a501fa51174601ca1342
BLAKE2b-256 da725969ed5045f8e503f2bf5533ededdbae2ea8ccff15ecee2b9f4f24453b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b00825e6a302cf9f7a104083a84c2f0e2c6aad51f94abe727fdced0a4228819
MD5 64ebd147edfd0b4b8129506f64c9756d
BLAKE2b-256 9d761c70e2650e196e185537d3638166544216cbf931ff8eef4425961416db25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 225c43f284402692cf4544c8fb2fc870279810598b22b662a0398265889c7214
MD5 c41dfd65746370a3fd0b5af8f674e087
BLAKE2b-256 40ce631628a78aeaa16b2ae31f99d16fd28b00588c648138cebaba3c08733891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 54dce74edc3f8c85b9267316fbc418bd7ae6527409fd09661346be4df80dcabf
MD5 d8b8e58f48e86fe9f2ea7fad635b3c4b
BLAKE2b-256 d689bbbd5e87d9fe63f076570e8e8cc8049249e181d74cf836411a80e2d7c2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d82635ff65092661b222904d500298744585e667645087e94a0f0326ad083e37
MD5 c89d905c1329e3c07ef0173e9d596c2c
BLAKE2b-256 c7b80b44d1f2301a724e52ac5bfc2b33ed9b730383e38d852e5ce1a086be2c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37e5b09de71366e2a802d1f9aa61cb79c53db9c702c12beb1ebb334a83684f39
MD5 8474306592d34ba423c87060a0232477
BLAKE2b-256 cbb8ca106b4b906ada2fcf1d38c4748beed66d9b3e73fe1444c1b5ff5b492195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d689ce05bbce336be45a3f8597bc3d8d2d93bd516cf03b3969e460b8e5cab57
MD5 b2a73dd86641045b5f1800b5b735401d
BLAKE2b-256 86fbda310640aba106a665af3bf4538b8942b70c85487909b1da4ac15d89bb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 604a571b9fbd7a3673b6c87ff3c4c2224f5236d52f5d03c16b46cdd999122a73
MD5 3d24c74769dc155f0399d3b4e24f3bdd
BLAKE2b-256 fb0eb0fa9f332747234fbf42df6bc239e0c9f248a3bb12c4fddb92dc92564d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7be7d6889c02f644158da4d25cc09c5ac5214dc0dedf5aafeef51e3f515284df
MD5 ed713bbc4addc309b04d6f5b72492c05
BLAKE2b-256 79a477d3f2d95fb945aab665542c9e742e623eb576c7050a84e65af987113798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c72dcc20ca3e17ba2c97e0d596f3d04f06f61f5897b64d232a5a158254750960
MD5 8d9f582e7050e5d6f30a0cbe42c3c449
BLAKE2b-256 8c9323ef0b4ee3641e0e1195c9d0428844c71cd48d95d9db27af12cbd83e153a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9a66d807ca754f5d2e460b8b3a44a28ce621b91a4358de9fc373e4e844e0b20b
MD5 0e89519708e35103378ee261b8155304
BLAKE2b-256 7f7af34567707084927700db65cbf8dffc26566e68da0161d75ab63d01b45472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d7c0fb584e4e63fcd436f5bce59a409dafd3cd659b6055d062ac2772c43afb4
MD5 346689bb19e3eafc0f19e1d04549f385
BLAKE2b-256 18aa20e702e353831cf17a7a8e8837575b462676052e728721968f32009d9f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b39d9768f8bc0c69b9394ccd7525329bb867b355e443e1655645b4d2cfc2db29
MD5 f889a74278b8af6923e98febfe86e68f
BLAKE2b-256 a8b86152ad1ed1593c04fcf0de037f09b08151e3d1f201a0c567ee106571eeb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 61e763f81cfc3483a9490721b8e5f86ec3c9126407c808d3b49977217ced3412
MD5 ad1912fc4e590e48dbc6ae45cca70829
BLAKE2b-256 cf9511dfa80c2001ea8cda7ec244d06e786e806432fd5302e84a41dfc73aa02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f98a4294e303088ff8848886ec553c705ec19ddc209270f2d654a1770f10162e
MD5 98628ef42b8d628bb2e8bd1a43a93fd0
BLAKE2b-256 65ec69dc8abe80c2e860deac150d0a6753d889dce27c8c2a38841f6aebbb9d0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 132c2be921bbda424d40fec08e6c92ac437e51151c4ee78ca2d5b562d276e6ed
MD5 dfe95d4a33116aede53ea3333ceebd47
BLAKE2b-256 568ecba62d914aebc2d47ba75b74ac80d84ce60d9b662c22ad20e207e49cca0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a33dd8c446cdf025c2363d9038e3f711ff08926a0dfdce4c739d14719fee9c31
MD5 31e65713ec64b61d7edbadf5d13da4bb
BLAKE2b-256 7837a31c77eb24f606eb031ecca3f7885ce62c71f28215c5f795cd427175d410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbba5b5ca0fee8a0c64532d18419cd8ed2ff161c5bdd2a6e5b47df2ee2de3014
MD5 25a2ddd16474a8be2a51a84343763d5d
BLAKE2b-256 467c1dbacd6ed2b36c70b95361f7a0bf19b6e2a64e17672b6d4b08ccf42d56b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 492a06ada02028d5286881813ad579e5cf8958ec4bb6bc050ebf3c1bb774a5d6
MD5 28c96437bc31d49af822a4ac1b17d070
BLAKE2b-256 ed17b677ca5103812cfd98a69afce09579d2ab309813b757158547105bdd211b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi_plus-1.5.1.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4eb088240bfa334c2535424954262a65c3680ab52830d1db022c178b65e01bf3
MD5 cccc566e9c91c4c7ddb085de4769a356
BLAKE2b-256 e5c28fbb60ff6c2775a64c199a891c54858919f67f65d68cb19e5a355720ec08

See more details on using hashes here.

Supported by

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