Skip to main content

A Cython MeCab wrapper for fast, pythonic Japanese tokenization.

Project description

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


Release history Release notifications | RSS feed

Download files

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

Source Distribution

fugashi-1.3.2.dev0.tar.gz (338.8 kB view details)

Uploaded Source

Built Distributions

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

fugashi-1.3.2.dev0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (508.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.2.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (508.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.2.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (507.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.2.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (507.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp312-cp312-win_amd64.whl (497.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (622.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp312-cp312-macosx_11_0_arm64.whl (512.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_x86_64.whl (518.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_universal2.whl (560.0 kB view details)

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

fugashi-1.3.2.dev0-cp311-cp311-win_amd64.whl (498.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp311-cp311-macosx_11_0_arm64.whl (513.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_x86_64.whl (519.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_universal2.whl (562.0 kB view details)

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

fugashi-1.3.2.dev0-cp310-cp310-win_amd64.whl (499.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp310-cp310-macosx_11_0_arm64.whl (514.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_x86_64.whl (521.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_universal2.whl (565.3 kB view details)

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

fugashi-1.3.2.dev0-cp39-cp39-win_amd64.whl (500.3 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp39-cp39-macosx_11_0_arm64.whl (514.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_x86_64.whl (521.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_universal2.whl (565.0 kB view details)

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

fugashi-1.3.2.dev0-cp38-cp38-win_amd64.whl (500.3 kB view details)

Uploaded CPython 3.8Windows x86-64

fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp38-cp38-macosx_11_0_arm64.whl (513.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_x86_64.whl (519.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_universal2.whl (562.1 kB view details)

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

fugashi-1.3.2.dev0-cp37-cp37m-win_amd64.whl (499.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (584.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

fugashi-1.3.2.dev0-cp37-cp37m-macosx_10_9_x86_64.whl (518.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file fugashi-1.3.2.dev0.tar.gz.

File metadata

  • Download URL: fugashi-1.3.2.dev0.tar.gz
  • Upload date:
  • Size: 338.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for fugashi-1.3.2.dev0.tar.gz
Algorithm Hash digest
SHA256 8142997c60f1fc08cce5ce2cfea5e1941a07623f5b9f515c15df0dc092dc9244
MD5 6badf616cd6a125e86b5a822b2dd0f18
BLAKE2b-256 9c3206b164ddfa42cd639a998be507ce9bb294cc3d448c6a1ef443f1da658025

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f12fdd17d1fcce631a8bb1cced7676c71afd2b05897faac54a60bda31edeefb6
MD5 4754e2500c01d2aebf8d5c53d2f12d00
BLAKE2b-256 703dd475ef36ef1c7035084116d2c82265009ea215c49cdd6bb73d0b6ed1b139

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67616b4b084b94c46d8c0261441943b2fbdbea8d2fe0ea31e20a3f6c91772d1b
MD5 1869e94f5bcaf09a902ef220729c45a5
BLAKE2b-256 89dcfc30b72d324db2052ce692d527ee0eaaa5f6fe8d97f4872c773db64e34a4

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ab01250b98bcf21d2f7f16b33e3acae18d6aab1ba6df3e1b5aaaa96643494c0
MD5 21a4fa998cb805d006baee125f2fd333
BLAKE2b-256 9f4263161644141d9b56d2bc17dd45c99c94d2a0c04cb332b87bb1e4c9bddb88

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d8ccb48ccbdf3a3cfcc66fb35fdd2c48bf6db5995c1294cfa815a020d9bfef3
MD5 aabb8017774f6bc7e4359b8d4fe67d4d
BLAKE2b-256 7b7da9164300595ffd8df243c8a8f88be77405c33c5bd7142edc2eef5f09241d

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db55ff9f001ee869e2dc6398244a1c530df5b7a501c2788000cf124fb7122fb0
MD5 4f6833992dddf86404c5f0300fdd9baf
BLAKE2b-256 7f36cd79cdbea6f5dc1ef4c4d18b703623271447cfecc504e27fb853a8c9d895

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fb6e48e35396153abe45279840982f2a4f80e20156f2bb4ebd73d4d7629c351
MD5 6650f77f7899d3e65b26177fb78b7937
BLAKE2b-256 19565e70fbceb90deb10c538eceaabb8d199d962af5410e4e7dd0b791ae3fd3b

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38bf52fc8a542cd549c5fb2ba9dac826629318a7de611187afeae16d6ab974b5
MD5 ce39c7a11d2626767afa8a382346809b
BLAKE2b-256 34989ca0299ead05888673bcdc61918f84821b182365d757642e45907e1deb16

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75587bcc77d43c37b14f62cafc890563ab1f029d35829bdffcda069230116fdf
MD5 65f7ff2d881a074a4a0d091197641a58
BLAKE2b-256 f1a7b975d553456992be3c065ab85375edaca50d6d6f41e11096290153ce4dd8

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0029b6a74a1fd0f2e08289944a9a70ceee5b19a00bb35b1f7b3f378a9668c2fd
MD5 b98fa5e2672191afbe132f7e8fea5c74
BLAKE2b-256 141199ecb3be5456fbacb965d0a2a82825531409e92d16f7851994cbd8b369d4

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 05ddef497f308b9678b1e911a88ad69ddc5d8d71bfc8530a936da2dfb9a4464d
MD5 87960ac930472f63d1607b87a4f226a9
BLAKE2b-256 48769e0b0d21ca86e55aa64a931e847d0cc4d4a39b0bf6c279841f977943b9cd

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 034cefb2c78c81a0658fcf96fd7b47c1cda536a485fb245aac09407f67a8b9e0
MD5 839b5ff3d874d51a9d461abcd94a1a86
BLAKE2b-256 a8274553b7573839d4d40fe2caddf2afb7d752c27228c00f81043a0aa5bb2b02

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30035ab5c1019eac95a31b14c4fb7de084f49022967f26b51693ee59acc2a471
MD5 36313fabb8f60fc6239b850631c234d7
BLAKE2b-256 abca47db205afea92817dc122f363658a1dc957af4ebdc9e3ed1d690de7bf8ad

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c99767b70913a1aecad309530f9deac36cbba5f18d0660fe6ab3cc1f1cfecaf0
MD5 cecdbcb6b968b7defe96e3914b44cb9f
BLAKE2b-256 5f2e43f1d0365b21876aceba394d32c3401b1b7e21f5b8eb78d2d456d736d168

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1660f609176c0754b4b5f17ec18513a34ccc982eab7b389205c783e508ea1135
MD5 d499e1bf3fc373d9f25fb9273b42a931
BLAKE2b-256 0fbfc5eee8b7be77e1ae542443b60b3d66cf663a8043dfce3334bfa8da590494

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 780cf25621821640fb0c12af01652251df2e97ed39547a1ce3dc704655ffb34d
MD5 eaf9666293f0979bd283be19e4f5574a
BLAKE2b-256 704058cf693a8237b99c5837b58a92da27f5159fc57d33079d56d6d1eea245bd

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f2fddf54290dea7e3b69801d4f46717ef7841e2077b0b6b93ff7f9191437318c
MD5 22b7c8bea6dd142636ad5960034a76a5
BLAKE2b-256 b074041fa2accdd779e17fa0af3d3141f142d84979a60ada40e61d1208ad8f3f

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 42a1eb5d4cb3957341206b9e77b5bf793b21b67fdc10f9578f1aa364f70c37a8
MD5 4f53e4b8528f23a84d966a3ff347d996
BLAKE2b-256 174a3eca6f84a637ffbe29079b390058c8f9c5a1049c497ff76b996c4fdf8ce4

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ab6bef9048cd984e4f8de6c291a8810dfee0128e56cf176994dac8df11dd700
MD5 065cf1ff9dd410b9f1fd953f4cb9989d
BLAKE2b-256 6e1e99d0524109ed7056238a66cf0934e18c6287e63e2342c6052e4d73061859

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1caf4af991f3ab44fd02e5b65abea8407c78c661307ff7f39fd7559e3716ee04
MD5 9fa041f07ee09566c37f02d11bed2b0a
BLAKE2b-256 fdca8f2cd80f583f8b34db126c88d3996da1ddf899846f83a3937da477a2aeb4

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e46d1d94aaa35372243777826324db9011a982131f4f3654f759f9c515bcf1c
MD5 48de20708bb4e55f3f3f39d2f41a994c
BLAKE2b-256 df2984c4238469f726c72b783ab8f8bbb84e58050aab0eac6975310f844964e1

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d961e4bb90a911458d11bc0f9496e99274bd4a25db04a46f214fd9d7d81a861
MD5 b193fb103405834a5efafda8ef990aba
BLAKE2b-256 a51ef3cf8db53103299c37a921942716e0425a6c99c67b55712a8c601940bd9d

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 61d1b6a5539f2b0e3fb80ae32bece4bba77f598a9aea5582328ee953f894449b
MD5 b003b8dce129e708ccc1004d183dad63
BLAKE2b-256 90f66fd53b476bdefe9410b2e5b7d4be95cc35682f709262aeb690a9de89bd4c

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.2.dev0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 500.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.13

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 280e23b9906a842aa33273e61be4f39a480a2ef489b245760d002865028e40b6
MD5 8fe0e2ae0719381df1c3deae1cc24680
BLAKE2b-256 fad270fc7377eb61e11ed222bb545238bd2931968953abd69fdf2a0be7cf49c3

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e2ae2845f10e534300c68ba2387ea066e817532781dae2902e17ba035a66cff
MD5 38ff53fab5930f2fcc7ee6bd7fe2b0e3
BLAKE2b-256 1d14d929d7d1a58abbb9c576525b2cf4ae0c11d3f48dced8fa390dd0d5d0be2c

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fe9adbe5b01e3625c8e289b9f90dacff65e1e6e14e99523e9df1f6b90015d74
MD5 8c27a85094599904af701e4bedfe7030
BLAKE2b-256 2259d2de17c0dc0a2df29bbe8e65daba7e121a88e3f9f619ce97e3f291a16254

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83e77a63aee792a50191cd95e6e92f99e80ac00e165cd85c35c3003a311a2a75
MD5 d50bbbdc576d856d7046d71c1234a2e1
BLAKE2b-256 2b20279a63a8e6104ed32180ccdd75b7b393f66925cc21f75103ed2422304d78

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9c106b0e2d4bddee61eb70532833fee9703091a78d1d943daadc79f0001c60e
MD5 fbbfcb194db5deed75fd0e523bba10cf
BLAKE2b-256 4193f245c0b4e9a368a719f771721848678de518929dd1138b30dfe15633b7b6

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d07d3d17e2e16755f11bb704cc05b6bdb54894358220e59e495204a3bb8208bc
MD5 47da22c287e17c3a5b20fa25984fb1d4
BLAKE2b-256 d2a0496c4f72850c4e72b55da814a5b310ed9caae86bd85ee81bb5fda83dce60

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.2.dev0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 500.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.10

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 44820694e5f84414b402da920ddf79d363783bf7ec7d27b4652e7648e94def7a
MD5 0c2e7240f1e31bb8788924edf2a2a551
BLAKE2b-256 d9b093055aa5228bb39f5f8ea8873ebd4e7ccbc9b939745efa0be2c11ae3f397

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9c4a4159683509b00534ed420a090182dc96236dce58359a3ac27889e2aacd0
MD5 6ce63dd96efb580e1796623accf6abd5
BLAKE2b-256 c85fdb8ab9316fb76729a2e699c2adebc9a84c238ea7f269523e342120c00e42

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ae4bc1c5fa19174a9e719487abaf84714fdd8f47b257e493c9307407acace9e
MD5 644a51351e5cfe7278fe99e795a1edf3
BLAKE2b-256 ded7e86504747d478fac98d1b867234f145b12a6a511689ff0e8cd5392141ea3

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5590629108af3121277033f9c7f422e83c43ac4de97f8c686a88f3c91dedc6a
MD5 c9f90c2c42a440ca35d6647ee406c2cb
BLAKE2b-256 6282ba5bc8596598eb1ac0450a6fb43fcc7ac7460ab4f10d123c2dc120a5e277

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87be60e6eccd0403aa3fa6231b9f35f08cafc50fba43199432874490ff4028e0
MD5 158133503a0653da85daef0ee197650e
BLAKE2b-256 d1608d0bec2561e67a632d71da6155c6a06d40dea39dba671e7e73aba5e2d1e1

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 417f9bab20bf60d74f523f7e086c985762869c69a0151536b04ca51a978a2c5f
MD5 e8ffa8f316da32e5c41e4547e302a20d
BLAKE2b-256 cf413911901845f5f1a12c33762becfac5cdf25e563b33a2be567e244f179341

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 03182f2924b24593409c7440da8c4cf738eb037a5503a3f793d32cb0d21c933b
MD5 804a56f7c87b77b01e130c61388e86a7
BLAKE2b-256 6930be3c7445e0c139a22ce3af5156144c57c8fa439b9d029008b079f65f8abc

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ac69ad69fa28f8ca2722cb7b340c6e3cb5e62257ff13031ac0342b44e759909
MD5 0308be6e7f9d3c768f80fc0fa8efbb1b
BLAKE2b-256 ca3b1e361bfa90b50a02afaa8aa1f2813249098526fb274c2b4028ea1648ef33

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 323a8dfb6c9a6201e0a0e1f27f742337e47766fd05d1a2bf69bf405d3b922c3b
MD5 151543c043e3f720b16955b73bfbd2a7
BLAKE2b-256 519f70d5d8ddf72a61eb728a8397f70a24f594f2ed8151778758e696820ea054

See more details on using hashes here.

File details

Details for the file fugashi-1.3.2.dev0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.2.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70787122b6e3bf8d20bb7be5aed7a85a19e6a3957f3f828bb31da7fa0732a395
MD5 1a6de79da30a862ef6273ee2f5b4c490
BLAKE2b-256 7170913fe2ff8ab982baaab4d81e55c8709724c590ad9e7ae3f60d1898c26213

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