Skip to main content

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

Uploaded Source

Built Distributions

fugashi-1.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (492.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fugashi-1.5.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (495.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fugashi-1.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (492.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fugashi-1.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (495.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fugashi-1.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (492.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

fugashi-1.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (495.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

fugashi-1.5.1-cp313-cp313-win_amd64.whl (513.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fugashi-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (694.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fugashi-1.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (672.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fugashi-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (502.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fugashi-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fugashi-1.5.1-cp313-cp313-macosx_10_13_universal2.whl (560.8 kB view details)

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

fugashi-1.5.1-cp312-cp312-win_amd64.whl (513.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fugashi-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (697.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fugashi-1.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (675.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fugashi-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (503.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fugashi-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fugashi-1.5.1-cp312-cp312-macosx_10_13_universal2.whl (562.5 kB view details)

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

fugashi-1.5.1-cp311-cp311-win_amd64.whl (513.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fugashi-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (698.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fugashi-1.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (681.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fugashi-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (502.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fugashi-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fugashi-1.5.1-cp311-cp311-macosx_10_9_universal2.whl (562.4 kB view details)

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

fugashi-1.5.1-cp310-cp310-win_amd64.whl (513.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fugashi-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (672.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi-1.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (653.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (502.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fugashi-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fugashi-1.5.1-cp310-cp310-macosx_10_9_universal2.whl (562.0 kB view details)

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

fugashi-1.5.1-cp39-cp39-win_amd64.whl (514.4 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (674.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.5.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (657.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (503.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fugashi-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (507.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi-1.5.1-cp39-cp39-macosx_10_9_universal2.whl (563.6 kB view details)

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

File details

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

File metadata

  • Download URL: fugashi-1.5.1.tar.gz
  • Upload date:
  • Size: 339.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fugashi-1.5.1.tar.gz
Algorithm Hash digest
SHA256 3ff9b4d0e40e04d56d7ced906ae8fba6c6fa41aac46f5210de1b56d6626e7a1f
MD5 bb1fc5fbbb6a8805faf6d562fc3a895b
BLAKE2b-256 5e09e41bb13152e591f3dd5984be112a97927f6a1ae73ab0301f3cbd1c38db20

See more details on using hashes here.

File details

Details for the file fugashi-1.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fugashi-1.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42cb6788fad267eaa75bd3a1bc5f04ddb7a944030ba1a9a510ed20bdc9975c8a
MD5 6a58bdd371dc9f60c65aa049244a4a59
BLAKE2b-256 c7f9805ff50510332357fa68506405ee3dadc341ffc80c4db2fb7a79a51b6924

See more details on using hashes here.

File details

Details for the file fugashi-1.5.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.5.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b24041680488c8afa6ad93273c608427364868ba2867f2cc2807fb837e346713
MD5 bd0b499c2c9b666a38428a14717552c7
BLAKE2b-256 7a08bdc812e07f1435556cc84b8e7e4a061057a04eea00f9577f54dbb4751698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe83c015dc99e4fcafd660d5bc1a88b49207eb7b7ac280026d35d3f675e58709
MD5 4faaa19a6365e5b63d07e988501fb6e1
BLAKE2b-256 0c687ab5d37566de5140ba09e30c7215e743426fc5ac48774ae4aca25d2bc366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 419aad1c46480accb851dc5579c1fdc5ca118e3ba78c08ec03798eca8a5f2dd5
MD5 aa6b4f62263f42cec9ce633a272c6dbd
BLAKE2b-256 b70113ad613bd5b9522bae5b0e801840c9e7d8e57d4951320a732664fae508ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4feb168ee46a71383b78626649d0c672fd8938c0ccfc3b1455700adb54f1ced
MD5 da58e2bcde02dea224e4b02aea3bea02
BLAKE2b-256 e4a57ede1254fbad5f94eb4685892ae1056a56ea1e2ff084b08dfab21cae123e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5ceff307605a6b871b86ce8bc9e7bd06c478567e6ecfb748ea13032dc2a8074
MD5 b74af00560a147571a018acf33fd3d75
BLAKE2b-256 9e244cbc34cb3776a03c4714c4745df9f330b5db2878554b96f0082833dd9ee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 513.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 adf1646103151af5c0b78f11fd01e145c506774609243935c0978606e4a96ad3
MD5 e6df860ec1c2c7c9455dc3d5c9d21162
BLAKE2b-256 84a972a7c8261ddceb0fbaee8fe075d4acd9023504c8fa8cbea2cf6140892040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 53ce31df44b4e95904793280eda0e9895646828859801d457314efc1d535cb4f
MD5 2263b379afb8940db1199f4123d50687
BLAKE2b-256 726eb92fec651f430e258c9fd0a82b924be2fcc23d0defd74e76ad6a5bbd97f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 53ff43069ed46bd0d5dec4140115f7883bf4a590d70f3c90a422c61260be342b
MD5 7cff90d6224aeeeb66ceceeaf2ba9a50
BLAKE2b-256 14897f90847fd65ea1ef50a070b0cb63a8fad12b18f54d95627cf4ac57af3a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0f3e269bfd9ba92c64086d9e6963a0bd81a3dffb9b6eeb981f33902738b7956
MD5 e46dfa72d69cbc67131227e8d259528f
BLAKE2b-256 1a5d46a06d2ed06cccf8a553ba0c6d723bb9863b0a02ba81463a425e30eab082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2055a0e0993261906f3010522ccc94b8bb9278b35a726ed58b314a5b539b9511
MD5 881c0dcc88af3a15edb7bcd32123b65e
BLAKE2b-256 96c8e8ce5efa5a7a80a5ad75770f1944c4b22694408e956b7d8a5780cda879dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e6f69766af17299635fa5c2ee9fe99476482003126ee1769f565a661ebd4cfb1
MD5 53d614b719f9cf6edcfa813618e27437
BLAKE2b-256 0d2c684cd6bb8d0a988f1d4b7e41c8eebe0385417113b2a18006c3d032df7139

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 513.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5afa5a2bf11d039a8e45eac0ba5c2bff54ed9ef9379cb9ad7f67c987a7f6dfc0
MD5 e6654dd2c30277f74b59ca53ce257e7e
BLAKE2b-256 f4bca65acd05eca1e5583f34f215df866635a232e6345a80d965ed23d1af0718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 823e6db97d57079da4c3fcc26f04943b894974af5a22f4762e6f6ba2ed63f212
MD5 2f956f3eca40d200914560605a4e7171
BLAKE2b-256 eebee5723a9c3a6866c14207e7dbb6d06bc49d55ea97e1784bf1096c86f0d954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 97906d1c7c56907b87c3fcf587a4990504784d7beecb67673c78c8dd608644c1
MD5 344931df3d9d435c127af8114572db09
BLAKE2b-256 a6c102fa1c2bcdbb661cc618d11ef23aef5ed243a8f2e680cbf7398ae913961e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a01c97af19a378545d7600bcb10552bebb4fe70b54a66032cc78cee1be328d66
MD5 1085c109e2c543d61ca77b0ebe2994c9
BLAKE2b-256 51a141eeea4f5e71615b60f0ad39037dbbd787b9376e383219a2cc48e94b3733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a02a8e4ab7758c29d8b217c8d7b019079220846fdeb04b7e1ddd4dfdb2570b7e
MD5 a256357a353f772ffc4afac77c4b47a7
BLAKE2b-256 176dcf637e80350e2127d682593ba51916c19dbea9eb7abc5f69b58c5cbbd0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9d6e6398a1dd8d704dbd26790195455166f6f93d0fdbebf5d1913a69d15adb22
MD5 c2990b0b30f43ab4b205c014521a8184
BLAKE2b-256 0f03cb79fcc4ec503e39e4aec9878aa4ee2038f56794f418de7e5dccc127b6c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4edae22010b1c442467837134c059367d682800c8d11530331863bf8ecec9b6
MD5 be1f700ea6420ef4c6643e3da1096b8b
BLAKE2b-256 2707a72456f577058b13c0ef3e70b0593beb8ce3dda3b851670375859432709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c571d4a722405e619b17ed00b5f9cdb03eb322452d91966e3f23f08537d2a955
MD5 666194e15c2908e8cfc2539f74c8e069
BLAKE2b-256 cbb7450207eb7c978e4680caca9efd10a0385454fc5d6a25fd8972392698305a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d74e89620b8be99141b4458a1ec867cafc5771c8fa89821f2c272d6e87094e6e
MD5 bc69f9691a291d72aeeea5f2070ac6af
BLAKE2b-256 270f7d01e4101e5c0dc34a766ceb9069395bc3dd678475946c85c54cc00708f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9da56f12f6f1374e8cda94887b2a928bd1df18d068063f4b4fcb6f5aa6435134
MD5 717ed89b854fe490e2fc0dfec94f1404
BLAKE2b-256 fb23567acdde5490c883f6822428240d10888a3ae3ff006f947212b8ecfdb507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93b8b9ccfe9c997275a22254201413f8423d36f7ec983feee2eb799210c42b00
MD5 bf01283ef4fda8b99b5903a24f13fca7
BLAKE2b-256 c92d0e71b2f13f27cec0caf74b11a891eae3e4fd805f1f7228d1ea3bd8d7bdcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1bc5080f9560163dbe05f8db635a883452c6180231612c36f73b6a839080afe2
MD5 e1c05544609ede0d7258195315876b07
BLAKE2b-256 6c79b572502a9804c8b6c0ca4e31d382f96f8322957fd31ea3b0416711f7c255

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0659ff676f7c4b2a4e71f031cba4755ac7fb6ddfe247c6f39639b7e21ec06fe
MD5 82f9aee5660fa5e1cf88d5a6be891297
BLAKE2b-256 9f0a3ba7595806d1f5ab3dff6f5daafb4f02102e9ed7b28670779a56b2d7a0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3926f8ed37eba51b478d35044dd04d92722efc29e5a7e6e8c5f9fc25a1b73cc2
MD5 fdea1a243a18374f4fa76e36e6d9f7bb
BLAKE2b-256 804e71e2a039beea0dae4438c6c86bf3f83a92c8489f4884ca5805541cfeac02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 992c154c2534304ef225c799909634c0e4616644253a0dd30e1e51fac614e14c
MD5 e0f2daceda207c557961ec63dd3ebfde
BLAKE2b-256 cb16a9792cb9b23c5eb7ff2c8b15dc2de91075f9b8564bf08b49f2b26af6b0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 035c61d8f6741573e760b74c1481f1959cf386a38c5c7f740c78aba6ef3cf59e
MD5 23a098c7d9d6706edb591fb72340746b
BLAKE2b-256 219690fbad00380baf41dff2746307c0dff12bc8c546b01670e3512d53218bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0aa7a589620c908217610d4c00d8f6452e4fc32442ae12057cfb8684d5abb7eb
MD5 cc53c46f602177b9b2dc117b54544409
BLAKE2b-256 bd836018894b26ba7e0394da48c6f77b2c180e1ee0929c5242c865645a2b68e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d0869322aaca88307b554ef5ece9536fe225c88bc546221af5a93c47a02295c
MD5 894eeac1f337e84680ede76669fcdb56
BLAKE2b-256 3aa3304bbb000ddbcfdb99f932145029a5c949cc03d486e6f3094bc30fb9e39f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3b2f1aafc3a90e942ccb2d970d54740f68f70fd55bdf871d95914ed89b9841b
MD5 9d3d72675f0bd70c4f539fade0a50c0d
BLAKE2b-256 a7b7a4affb543c37aa34b48d5919ab74b0f25da175dd4d840807a4844ff30cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 877d2c8751abb08271db7c35bc87b1c98ab42917a80c5b86e786c01dc818ad7d
MD5 e2d4f5f0aff52bc4986db4ceded87efe
BLAKE2b-256 e39410372120cf5f2b07a4c7f43dc95d0d587bdafd763311b13582e3b53fe031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2c163744803791c19a6076b18be9d31c8c09e0de11f76a5aa657be138087c7cc
MD5 94ac1fc2ccab6033a4a98cef6d6741ba
BLAKE2b-256 39c6b0ee65038b4648508b1d7fbf1db2b008906ab0f35e6f6fcb93946e680e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1c8731dafe5f467c583f57c6f70d230099f023773f01ee376bf488a91dbcb37
MD5 502c2f4ecf500151534c84ba963b53dc
BLAKE2b-256 619e9bed4e209344581a7f58855ba5a1c38dacc21e9dd49620afc96598546058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07ab7d27674fbd19bd979cfdee20fecbc7f2b0f70c10b0dcaa265879be501586
MD5 35563f421c4c94d4d65c5dfe2b405176
BLAKE2b-256 9661d296fe00e98fd53c57a3638657bea158ad6ff4c0afec045861413eeb9b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.5.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fc0f599d64bb3047b991f577aadae7134ba4e8014523a3856f5ac74ec6dc95d1
MD5 b3c5abe7ec7a10f11782fadda6256b80
BLAKE2b-256 f1ba4c0c11c441118426203a4c575df6670aa273ca7093e8c608de618014d4f2

See more details on using hashes here.

Supported by

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