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.4.0.tar.gz (339.0 kB view details)

Uploaded Source

Built Distributions

fugashi-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (492.2 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

fugashi-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (495.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

fugashi-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (492.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

fugashi-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (494.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

fugashi-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (491.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

fugashi-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (495.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

fugashi-1.4.0-cp313-cp313-win_amd64.whl (512.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

fugashi-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (672.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (502.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

fugashi-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl (506.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

fugashi-1.4.0-cp313-cp313-macosx_10_13_universal2.whl (560.5 kB view details)

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

fugashi-1.4.0-cp312-cp312-win_amd64.whl (512.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

fugashi-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (697.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (675.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (503.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fugashi-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl (507.1 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

fugashi-1.4.0-cp312-cp312-macosx_10_13_universal2.whl (562.2 kB view details)

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

fugashi-1.4.0-cp311-cp311-win_amd64.whl (512.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

fugashi-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (698.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (681.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (502.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fugashi-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

fugashi-1.4.0-cp310-cp310-win_amd64.whl (512.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

fugashi-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (671.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (653.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (502.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fugashi-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fugashi-1.4.0-cp310-cp310-macosx_10_9_universal2.whl (561.6 kB view details)

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

fugashi-1.4.0-cp39-cp39-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

fugashi-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (657.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp39-cp39-macosx_11_0_arm64.whl (502.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fugashi-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fugashi-1.4.0-cp39-cp39-macosx_10_9_universal2.whl (563.2 kB view details)

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

fugashi-1.4.0-cp38-cp38-win_amd64.whl (512.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

fugashi-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (678.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fugashi-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fugashi-1.4.0-cp38-cp38-macosx_11_0_arm64.whl (502.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fugashi-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fugashi-1.4.0-cp38-cp38-macosx_10_9_universal2.whl (562.3 kB view details)

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

File details

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

File metadata

  • Download URL: fugashi-1.4.0.tar.gz
  • Upload date:
  • Size: 339.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fugashi-1.4.0.tar.gz
Algorithm Hash digest
SHA256 443880fa975defc3194f524fbd6cdbcd32776fa66d573d07ccec9edb76cd5271
MD5 fdee4c7cf5974ce3f7baac34bc04075f
BLAKE2b-256 3369bb037690c3cc218a139ae89afaf0b099814e7aff570b28577aa0ef1a06f0

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 334793ca17a81c3fcea0ca2edf10bd5fcd9bc59cf8c99572003d76172d9e352d
MD5 eeab26325609d26dda9b6a33d45d45ff
BLAKE2b-256 e3da5b56f789d47ab8ba35e871c4f4c188364c72ed5b0c3df022e63d4f4b2407

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4348142a8edfbbaefc6d4d11ee28de375bcb8e347a86908356ec4245d17fe259
MD5 07dda309811f4353d005b742d9975a5d
BLAKE2b-256 ef2ebf504baac3f24a0caf0b0ef2aea42adeb12723c14f71edc024b128838c49

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52ff5e6230344954316aa1a37688a9da46dcb94dac1960a52bd19dfbf6e2ae00
MD5 073bb1ae449c1bc526698e47e3f687ed
BLAKE2b-256 ef8c9233e080982bc2e3eb767b90e67cfaa3c34462b11eff9e968ff1f79dbd4b

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f69c7cc1ca6ff896dc307702d80d80a1575d15237c34d9c8cfdc7cdb65b5481
MD5 d615dd7f393e633f584287bfc455aa89
BLAKE2b-256 a117a80a6c80fa7771e3d623ac276efcc2b2722a03f6ba61389c92b88474fb92

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c511691cf2d0b2d72ff69a72cdf51ce9ffc9c81ee193f95c4ca16ad9eae0b84
MD5 d616e4d532a5619d69703f152b4cdac1
BLAKE2b-256 f8d8d3f6e37f77f5e78bf0e224e5483bf716c093dec1b93340ffcabd40d4d79b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c95a08ca732c68b85fc0e1d9596d9c930c062e107d5ecfc2e7a86d5a85ed907
MD5 9f27e7cb352021f2f6e34fb3307952ea
BLAKE2b-256 fa3c4c42018249f11048558ee5ddf49e78a207d17132c78419384a54a0079dd8

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 512.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99328a498150cfc39e4ac574a1431a24f967033420f4f92b4ade24aab0271ea2
MD5 db1101a5e71f6a321b4e91e9f5dcc728
BLAKE2b-256 f3378f56f6eb7d4a487d1b737f4fcc41e25c1f61c9a6ae9adb49581f151d8ef8

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 016d003de8db2b7b67a6ffaf74915cee8f717c3aa7a66b78acf30c5b13e0e9bc
MD5 340d74d21060112260a466c6b8ac266f
BLAKE2b-256 6b499ebf43cb093bf68ad97de098ced3e9cc42c0c5da4ff11de4115c040cc891

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cca9a9ecacb5269598764a56ab73b883001b93ab726032962d4d2d416b76c7b
MD5 35535121e41b3f6ffdac7cd5fe4b2edd
BLAKE2b-256 d64364685e4d47599bf15c285fa1f9c3a1d0f86c1a3c8427e051ad17d8f9f22f

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe382c159c2afb6dc3c653b169b9efe1699a7701ab23e5e019539058e5d06db
MD5 504d82584bbc6a65e3d691b9df4e36a9
BLAKE2b-256 a59930af27297ba8a386de9091968155fbbee54f3efde58c4ceb61b28c439262

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 322d357c446c1b2eba42f8170fc3c1094d78f08a13dbf060a08e58c7cdebcf42
MD5 7eb3f7eb2bfb807ac4c58f9472824664
BLAKE2b-256 154b9d021385839b3e3b17a477d34dba81fe28bf15632f49ab977d8aeb8b117f

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8b5e43ef6532c90ad3afac816fe5c63f8613c66119b28aeafdfa442abc4e5735
MD5 caa3e0a3eb8ad8a5db466605969b2aeb
BLAKE2b-256 51a40aef3c27441b080bb526db74d007d05f42376de101d8d9995df86d3a44ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 512.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb63079142cb9c9ca98c79ba487d58e169dde8750318c38d5fab8e00ac461e2f
MD5 2cdab4ce8d754243965b180978738c33
BLAKE2b-256 8df969b6ea8bd1958822c8a04fa3a9d2d1d591e745f169621d3c57864f3b1a46

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5e383c5fac4addb0203e022944df1a0c49859a64921af83ea9591da98211501
MD5 8e0bb15612a74139eb2b614fa6611755
BLAKE2b-256 c88248d6388a3d379cf6fc91ee597eec2e7789dd14d0c74aac24288056b2678e

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ef5a3537bf2a3c5255b82f816e30f86ffc4711777357a0104a043753b84e82
MD5 95774ef938fffe129f36e636766cfa2c
BLAKE2b-256 12aa01269cf238f79890308331993b6822b1925ccc48c816aac4e91c8d95b6a5

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44dd186fd5fbe295d2f5613f528ec8e765c93c31138adc65be0f391e0560da2b
MD5 657134474868a98c3ee3556f4fba5d44
BLAKE2b-256 f472a9c040fb56583b1733f55e5386fbab3df738727aa482590f01c4369576a9

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 08e965ee31782d8324e0aecb7b03c36db79a999f573f8fdc53960643c2637050
MD5 f8ad4db778ffd2039868c9c1629f227b
BLAKE2b-256 c3210833eed9766cca63dada5e12cef4ed960675e44148b477c21ef3d2acc466

See more details on using hashes here.

File details

Details for the file fugashi-1.4.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for fugashi-1.4.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eb88cb765c5d7c9bd5f01e179a98262970c3a4d3f14ee39daab641a6d89870c2
MD5 f20f0c467f4bd94d43f186059d18e0fd
BLAKE2b-256 9b41326bc6f789fcfc8ec648c07afee9f8094c549823e5bd6c7a155bc7a3cb3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 512.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aeae8fc06d1c32c2ee1da79e30b8f25afd592853985e4776a3e4b78337e4b757
MD5 0935f526618e34c1e23a9b2a098f56fa
BLAKE2b-256 01b54bc918de7727f9a3e75406053aca7a1afcffe81cdc83d789ad9414bea7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b89b8e6db0fbe374c91322c1ec115061f154dd261aeb992a8b6d8e28056138a4
MD5 ba0f655a4b26f192861a010eba3558a3
BLAKE2b-256 30de550c37d262102f7def9b3b42519ab921b8bbcc4a5a994c44b1960b970736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6a5ea534278c4dcaad44d7752585f8375029a28dd3a9d853deda34ddd2ae32d
MD5 de93b0676b9baedb10316da00ad2b7bf
BLAKE2b-256 66ab1c4c9fcf58469380ef9981723dbb274dae89f21233e44f44f9ab074ce943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86b8284d3ad49f970fd704327124a9b71a8500723222c35106c93c459acf7b26
MD5 c1cd4e9e468ecc773a1673fe790624d2
BLAKE2b-256 bccf2ffa40ddc3cac649e1862e9b877d625ac1052a1233a61c43a938afed7ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96a1da8e74a36ce651a6452a94d339ef749b1882bc568679d0c9a03154569313
MD5 552245913398d1d8e27a084c63cc4603
BLAKE2b-256 a5405921b25558bfd62bbb41116c57890bab87f29decb7b6b4f1b6a2a3be44f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ec966fdf2647b87fea1ef31850ea3ec9960f0c409c8398c583d9b46673be9f7e
MD5 88b0391c8aa8abdaa96555b6d8100422
BLAKE2b-256 453321d4b33d86be5baf780ba4e53b40ef5c25084416b2b1450df5664098deb4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2eaafda887d1e7c41e1c332888e075459bf3ef74fdb474286671ac2033acaa5
MD5 abf3892ef2b1d88301318cc6678686a5
BLAKE2b-256 18eb3aa7e7b23c9d475549f39dd1ce1d429abcbdfbfd2872ff16660644f46737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd19fa1b3d4965ef162801cd554b82b10dbe0344f094fb3375ff064c11c24478
MD5 78e17b4065b5967c2c7e28215ce42430
BLAKE2b-256 e3a574bba09a8873ab2fd9403987ccaf55c48c720242633ee53c93c7feb17a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26679c754cdcb1683911b3de5c6c13d99eb47d962f98da0872fb0eb80cb278d1
MD5 d732519c286ab47966b44f7b6084b341
BLAKE2b-256 55c3d7656d48bd866bac61f71d7bf5374054c6a54bcf453249a95fed9db44cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7aaa73e5c1614e9a4d50d8f3975727fcc01f318ff45fc000f2c4e4d96f2927a
MD5 9101040d54b1fd6247f1355064ae034a
BLAKE2b-256 110c3645ce322717916620678b3eb9f2d631b90bc64e3d3980be72102f8d03d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70940296be946ea9dc3a0d6608f9f5cfb19d18693573634083e50aed5ae09edd
MD5 b5851ec38dc421db37205d8ebd7e3417
BLAKE2b-256 0ef574043811e993b7e49d32020acab38f20862136680c05b6dd20d51075c995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a2221232176244ff983b03d29a80b3be0768ef708405fb5f7629cf250386698
MD5 9f7737804d8201f670bf2ecce11afc94
BLAKE2b-256 092befa795594845f8e83023c458939cb3a375f60e6df69b9fda9ee310b2d6a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 de5b81a63654fcf583669d92f3b3b0c7c4ab41aa54441dce827c45232dbc98e7
MD5 f5fd17e229fbaa8cdb7537bedf0dc278
BLAKE2b-256 f56113284beaf9cd05a2f417774033ce8446aa64f10464857c4d32adfad93687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51598ec28fe49ad2971dc83b224d13b4d057d4fbe13754d55ad04a9286e9ff2c
MD5 1731580502a9df676a4ae0e130479c69
BLAKE2b-256 903a826052367fae3deb98a5f7ed1e33a68107c47cad4c23a0ac13590fe06987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b007f3adf5e185ef55093b65ade1b8201b3d2553bd363278360cfff2821b3154
MD5 603c686d6e5da6eb2bccba453798e078
BLAKE2b-256 c514bf3055765711c9554d471dc55b254bcda997d836c5063853f8a933883e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99f1d0ec94326e5215610b156affb8e2dca2d96f2859f03ce380189223809101
MD5 78d45ea972c2ad31fc76ca00be1f6c25
BLAKE2b-256 1d91a9763dc0b0d89d90408f22c10d6f45a7ccd99dd0c388dd9f9cc24666c507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04db2cb4e157e7f9fe436336fbc0aaf0950acb93ff84fc0ed62752a7fb97acda
MD5 3ad01446c2bfce404849eb226baa81d5
BLAKE2b-256 01646e32e500dcc76ec2c2fb967f9cb7ce18ee117cd573dded12bdceb964b0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a9e0f66dd1fcda351e8e07565b826706b8dd535fa4a27a19a4cb138261239f24
MD5 430b8b54f765fbde2b21f68691a576f2
BLAKE2b-256 d8818a854a8e06756e9d20e5de2810a89825545f0b1908cec063e6aafdfa08bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3615340db5b0f5b3f0fae1550bb753549dc7a87b8bfea67db769fda47c513748
MD5 b1dda760153e50be3faca110d718ea93
BLAKE2b-256 b90101c8217fb3d0f18c17a0212c1616721a5b03b3f8e4cacf51a29f507a1021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 884672b090c4f8d8582efc1c921bb0b69fb0f154db7ec3f57b345c8fdd0f9909
MD5 d3c9170944275bf5f09ee06bfbeb14e4
BLAKE2b-256 2ba29995dad4e2eae730ebe23f333069bc214979049964999c20885c5f667cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8fba18a4986dd9f9ac39c276c6b0372b9a2c0e981f7e1dd8a69199ce316d244
MD5 c42e9d183598bf5440b49ad80ff557c0
BLAKE2b-256 2daf5b6b68d4dca06690f4982c4c0f17350c1d485cd72c6d1191a40899eec50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32d4c66bb3ce489a20ca87245e05626c8fedd8f9b72e901eff4518d2d21ba97c
MD5 6ef27ce62d396d9ac9f383512eec83f2
BLAKE2b-256 03440b696853dbca3eeed666d859a323964a5142197ca049ef1b29a7be866f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63f1309e248ffa4ebdc4c927b6666075fcb41fce2674296edc6e700bedf72d41
MD5 96727f4016cd0fbfd0d8afd3ba23dc0c
BLAKE2b-256 54a5ed7df8fa9a209e6d1c8a1269817e2d213170c97ef6bcd3a42751212a35ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.4.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f6dc71546bd995578dd58cade68b267392c0e5382f80ee30d3339ff370fa0a7
MD5 3839f32418fa8b499286ab5856218e16
BLAKE2b-256 8c941264ae1b9994fac41bbb32707c776d4b78bb878e0ebeb039e5e8d39d61ce

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