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

This version

1.3.1

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.1.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.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (507.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (507.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (506.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (506.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.1-cp312-cp312-win_amd64.whl (497.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fugashi-1.3.1-cp311-cp311-win_amd64.whl (498.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fugashi-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fugashi-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fugashi-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (512.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fugashi-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (519.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fugashi-1.3.1-cp311-cp311-macosx_10_9_universal2.whl (561.6 kB view details)

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

fugashi-1.3.1-cp310-cp310-win_amd64.whl (499.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fugashi-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (600.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (514.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fugashi-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (520.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fugashi-1.3.1-cp310-cp310-macosx_10_9_universal2.whl (564.9 kB view details)

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

fugashi-1.3.1-cp39-cp39-win_amd64.whl (500.2 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (514.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fugashi-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (520.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi-1.3.1-cp39-cp39-macosx_10_9_universal2.whl (564.5 kB view details)

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

fugashi-1.3.1-cp38-cp38-win_amd64.whl (500.2 kB view details)

Uploaded CPython 3.8Windows x86-64

fugashi-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fugashi-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fugashi-1.3.1-cp38-cp38-macosx_11_0_arm64.whl (512.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fugashi-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl (519.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fugashi-1.3.1-cp38-cp38-macosx_10_9_universal2.whl (561.7 kB view details)

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

fugashi-1.3.1-cp37-cp37m-win_amd64.whl (499.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

fugashi-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (584.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fugashi-1.3.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl (518.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file fugashi-1.3.1.tar.gz.

File metadata

  • Download URL: fugashi-1.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 df271ca3cda23929cd13c68ea07813ce9f8a2b106279047335d41c038ccd6b90
MD5 a6608d28a19d9c95d13a2b7e9b59d0f4
BLAKE2b-256 d76e193e325a37a8f38de2222868b7120371cfeb45647e658c42a82a95efcd1b

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fdf3850d890850663e37b2d2912f19f37322769e4e4ae01ba16ea0ddb62c262
MD5 ce5165646badae45eae2a0c7c78963a5
BLAKE2b-256 c2bb428228eb1db9d9e4f1747a8f8109baafd8f7e32bf576d2998d7e38e065ca

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 707c6f2b2cd92b2bc7b4592c43454977815ec9be6c652375f0f02496c1f2af16
MD5 2720d8faea3023e3ef62a7ad56c2add2
BLAKE2b-256 58f273a32922f99174d91656cf02d6cd1ae04e3163c1d8f5c72903995bde9504

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0920e5b507c242c9535fe2f2c5b4d2cbf135ec3661b15107b9695bf0be93c06
MD5 e6870adc4a9eb3ed47999d053734550d
BLAKE2b-256 6952cdf81dd6e0e539dec8dafed8dc1e1cc21ac8d2b878f5e60ffad75c5bb9d6

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fef3012279474a8234969ebb16b6be1d7b8d6deb8d45c5cb06d3633d7812a68
MD5 2e9c64233d6bc6bacf86deb5f3f247da
BLAKE2b-256 5580cd8e7ae5c8be9d24eafbe2042eaf9c5c9d5131540e9830614329c7250a7e

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 497.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for fugashi-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1eae2ed896e855d549d78ca3e2c6a47600eb5d3a5b6cf5067f04db92f947c546
MD5 bde77e739dd6cbc9293116b58f485a5e
BLAKE2b-256 2181d3715aa75dab63cd06a163ebcfad405c6d766b4e73fe30037cf59951558b

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 498.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1612a6257a0fe22839d3a4bf5266c1970095324ed2755e22b771130bbb6a5da3
MD5 c162aec100dc23f7aa7e1d335fdfec53
BLAKE2b-256 74b195b8daa7f2a7482f8a368b4c203229a6940c087bced34713f1b97d606d62

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 604384288272a94b8a74e06665e2042fa83b392ccbc3a894491a99127c1b84ec
MD5 4188020aeb3a0b87aa0525225c1c9bc6
BLAKE2b-256 da349bdacf323e4b5d8e796c111c9e9035434527e445e777635df6fca6a5bfe9

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9390c3e40861035b04444d76c0b4c88542d644435f7898be5d9060ef146baf8
MD5 00d6a9f5f26f91296f8985daab354f39
BLAKE2b-256 e69f0f22a4fe2098223be24601758eb785cd0471ba2c49a2822cce8ce84356d1

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bd2f103fcb57c47e1457e53fc020ee618b239433317108a22fc18f8092744cc
MD5 e2e7e8072d33687435650f654042d0b9
BLAKE2b-256 f73769e65599568fb0c9142191acbd0d0f6c186c55c9330dd2667e07d7ef939e

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b77c441552ede0f73ab3db569f826fdf9df4a20949dfd8543b79f6f9fe126d1c
MD5 617bede45fc44227ed7e2c011158ab71
BLAKE2b-256 3f5aa00b3ad2a5a7b22f5da5f934ab8c645b2fc306f7115a55412582dcfcd3c1

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4e809b9c26edac30fa70ba246db0b88cee81d9eeab790d00bc36dec3c27a3b4f
MD5 160901759da30ce58d0566ec7a525e98
BLAKE2b-256 b40a070e19fabbff29e8129fd8e25f053efc6f83e4e7575d62046c16b14487f8

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 499.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.11

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5784fdaecc8e8d3d6f9633072cdcc77018e60101c6aacd4f4f2dff77cba41ec
MD5 7b5762834eaad202a71f70282a7982b5
BLAKE2b-256 237e83a77f4dc80bcd11a24f75f1fb79491fdf663819875a7b210efb6cd90aa2

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7eb36f3b21821c33eeae5a3e34c408c8640463349502e4d53547255b496d771
MD5 e6130841fc3b9ce8ba783312bf993ad4
BLAKE2b-256 7acfa67c951d53642b1746e96a02878795fa9712491fcbb5131bcd5cc2a48503

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5b6670d23f6b2b06946f6eebd86c1d09bd7fb1b9fd033e3a1a28f8f84c89c16
MD5 458846cdcb5e297c8e8f7d0acf51ab0d
BLAKE2b-256 42cc0e6ae776b8e36dd04da09257a7281e3029e7ed53d9e77547aca8908524ad

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a41b375256d722cdc85329cb03b723fe95dd8e3030b80b75c0fea0a53471de08
MD5 ac799b8700c37e8b7fc38448614d8a6e
BLAKE2b-256 a824030adc35eb8a8d69aaa1e835b8536f45243eced0782b7d3487862c745362

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a995b15260cd6cc6ffdc4aef3cf86ea71762e5d584e79167f54717902c3db75e
MD5 a678c15519b9f2eb2380bdd08fc9f5fc
BLAKE2b-256 e53dcfccee64d5f5a306172f65498bec6881f2623198e46ebda2b055448894e9

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4c059d77dbeb02237aa508ea1a3d4d39f3a7e383ca5c0dbc91ccf0742514eea1
MD5 c771614f0e2e141a6df47c945f563a9a
BLAKE2b-256 3a0fc8d262f03d41226e6962db86b6f55496f374d8609de4acf5c2d7438c144c

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 500.2 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c85539754b2de2c41990dc457b5b0a7f34f49f1d3e12397f53880de4061b57f
MD5 df29cf31cfb39d658fded064b78256d6
BLAKE2b-256 1d9fad5751d6a1c46766ba504599da9a5b5fb2a4fdc1be2e588c59de2ce57fad

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5266d7798d9cf43cc3292b5f6ef7638b6ca5029639b07f53936aafe02949f517
MD5 ab3ccf2e0671e3ebf1149142940fcfb2
BLAKE2b-256 22396b02aa406f1b098e288d6946ee1036a9f9975bc39b1aecbc39bb1c53427d

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dab2b023652ddb779299506475bbbf3b77a56bb4740a1745369d1945471481ad
MD5 126744b0161beefebe128e794dd054be
BLAKE2b-256 4851779ae8e4e1f456cdbbd8f2f1116f00136bf75a1d85e1500640a512dd79f5

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e337716b5d96c8136f0fc76f485983ee87b57223db2ae69209c8bf17e7f3b63f
MD5 05a80fd01d109a5ec824b25de781e618
BLAKE2b-256 cf2e6b34db97e6ac05f0b934e579ed7189bfd2136412a02bacbee3e6d4018391

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4eaee56eceecde399344e48d93ed5b07104411d619dde665195e8be78f3d9b2
MD5 7f5249b96c6a966bab634d447185dc49
BLAKE2b-256 12edad5bbfc782f2c1f3798aaf4fb25329212b486075eae2350aa6541d73a8b6

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5d8448f96a0f7cbfbac7bbbd3429ccb21a5b3b05044b25001bff7efe740786d
MD5 773e3f4cb7c3e952a2b4c7bdde16a75a
BLAKE2b-256 4cca138a46e5de78e6e04835676664e54a99851e1cce18fadbe7906de97f4de1

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 500.2 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 14ce53d88137ba5d424525037e1382f23bf2cb3126c9d356b56b826394fc1b1e
MD5 b06bd5b28897e3bb783eb27478715746
BLAKE2b-256 d3c7b4634b5a003bc5afbc062055c917ada1ccc6822827bd01014bb4a688ff48

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fe43def3592e89533e25bd016a18b10ce46abeddd4ab6ec6c6198482626459b
MD5 6a4c4fd6f8ce378fe7264b107b30fd5f
BLAKE2b-256 9e0ed429bc33bae265eae1cd037d22e24624442f9f38a0b5d56aaedde4a8ec9e

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b9335866a433cb41a36e5364a171afe93f74bd28053fe4d095db8d1cddc3584
MD5 f1fd78d242e3a892ba4ae06b9f08edcd
BLAKE2b-256 99c46b5148c44d13eb8083a6fb37b7f86ce3765e78573c1b647a62d6f3fc0ab4

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c33b04b7871c41bc730cf66cd7594cca201ca4bef1adc941a36884a34086db61
MD5 2c97a1c29cac3898901e734e8163caef
BLAKE2b-256 3b32ceee92ea8da1a214404deae58e905ef44b0c32e02f1a6259eb19dfe00ab3

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74c2a525bb46521de8fbcd52c75040fe8e060a14158f55a73ad9babf2d3c46c6
MD5 1ddc98e5cc77c1226a0fcffdeb22f45c
BLAKE2b-256 c967f0e0373464ed40b2ad3d6e9865886f8dd412b8544a6da0584e5e8005ebfc

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b5f3f04a916c072c04d9e149db0a6689e4b0f8c04b5cdc23afee0045ddfc5b7
MD5 daad943c899d7fc51fbdc6d20df55bf3
BLAKE2b-256 7c8db244ec5d5eefd5205e3c527c1281a76bec42b6c261d608a1cc110f7bfc8c

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 499.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for fugashi-1.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e44241eef8ce0650023424efe81d31aeb43c1af33168aaf737cb40fe601a297d
MD5 50043e1cda8ec5627e2eddf84538c8e3
BLAKE2b-256 c80736bc67749e856321b1d2c124e35c9299437113612f579071c1c6c7b110cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1ba6d47a862f5a618ecac4f1222787d8d38e534244b33b108b1ce6093dbd113
MD5 b0b59af2cfb1060413048694060e9d75
BLAKE2b-256 fbd98da8b6e2a96f3ef58ecd1eaaae86b050310f824ee165363de9346f08ef65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd481c3653bafbc4dcd4209e9f646f3b98f50611c7e4a1bbf0dd00d1df361609
MD5 88ae2b3a334ab0bc0154433c83b554a9
BLAKE2b-256 b7b8c84016acdfd46e647bc06189af2b3aa3c7ec0f8311d115747b8af80958aa

See more details on using hashes here.

File details

Details for the file fugashi-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdff6f5375af9a709d545807a6ef0eeab7703d1bd284a745457bfe813c32aa73
MD5 457be6aa2c4efe263cc3af1014045642
BLAKE2b-256 97808c2a5027a12aed224225a4285cb79f2ad4a4b4da225775ffc96896c2b0a9

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