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:

  • Mac M1: need a CI build solution for this #55
  • 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.0.dev0.tar.gz (339.1 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.0.dev0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (507.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.0.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (507.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.0.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (506.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.3.0.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (506.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

fugashi-1.3.0.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.0.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.0.dev0-cp311-cp311-macosx_11_0_arm64.whl (512.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fugashi-1.3.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl (519.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fugashi-1.3.0.dev0-cp311-cp311-macosx_10_9_universal2.whl (561.7 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

fugashi-1.3.0.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.0.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (587.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.3.0.dev0-cp310-cp310-macosx_11_0_arm64.whl (514.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fugashi-1.3.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl (520.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fugashi-1.3.0.dev0-cp310-cp310-macosx_10_9_universal2.whl (565.0 kB view details)

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

fugashi-1.3.0.dev0-cp39-cp39-win_amd64.whl (500.1 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi-1.3.0.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.0.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi-1.3.0.dev0-cp39-cp39-macosx_11_0_arm64.whl (514.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fugashi-1.3.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl (520.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi-1.3.0.dev0-cp39-cp39-macosx_10_9_universal2.whl (564.6 kB view details)

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

fugashi-1.3.0.dev0-cp38-cp38-win_amd64.whl (500.1 kB view details)

Uploaded CPython 3.8Windows x86-64

fugashi-1.3.0.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.0.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.0.dev0-cp38-cp38-macosx_11_0_arm64.whl (513.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fugashi-1.3.0.dev0-cp38-cp38-macosx_10_9_x86_64.whl (519.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fugashi-1.3.0.dev0-cp38-cp38-macosx_10_9_universal2.whl (561.8 kB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

fugashi-1.3.0.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.0.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

fugashi-1.3.0.dev0-cp37-cp37m-macosx_10_9_x86_64.whl (518.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fugashi-1.3.0.dev0.tar.gz
  • Upload date:
  • Size: 339.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for fugashi-1.3.0.dev0.tar.gz
Algorithm Hash digest
SHA256 8f9e4213d9f4b8bbdc10ac7bd771e8fd1d61eb4ae17f34b05b129b04294f5e38
MD5 9ff96f342956f58d6330d4ccade1165c
BLAKE2b-256 a332910de39f091b56f2d9161317b183e494265068ca7d9af91d8a6e527cf209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb4849bc517bb9db5bf6a4bfc4882bd58146f5e4594ad0431199febabed877ee
MD5 e3adbb71f4962e744a15d3356559212d
BLAKE2b-256 eb029079179c60432cce10af2ad46a8b25ebb7294998f32d3f7695aa44254461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52d5b3672207020af03b9644db98c6115defd16be23b91dff1328542413466fa
MD5 7056ec839f59f8ce8392e7431c8a76fc
BLAKE2b-256 d61da677cd8373c92540be9f2687b14ccb4175961f6f1818677c009b27229934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cef6b2196ec9d21063385624fb0f32010c003395b77faf14975aa83f63105dd
MD5 8d8567fb776b19d82560a7c6b015fa5e
BLAKE2b-256 3b703dafbca3a84e16d7d44200c591305d90ae02e21a1d910cd3b02709f442b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06d44a541abcbd6743377adfe2db93d12bcbe08bc47337a53029b78a3f06f86f
MD5 ce8f2cfc080d6f3d65d70f585fc79808
BLAKE2b-256 ed33bf118567942553715956840f5a52a566d001fb7124e2e12e5ab450a341ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84dc4e3b2fde91de9929d5bfe7bdc61855051eceafdbff0b9460e450b27d5b34
MD5 98ce8f2e50dd3199262d136255e8a7ca
BLAKE2b-256 e49589ec1c84cc64586ab11cb244c6d967d308cf818760d31900853e93956cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0a96c08104a09bf5dff51ef84743ca93d0885ec5424468af0a2ddf50510727d
MD5 a5db39a921a52007319ad3336989441f
BLAKE2b-256 f2d431641bcce23c82e3185c7aa60d5d7bbffc78dc559707a728229b42e19176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 731b678f2ee19d0face84f3ba70455b485bb0604c2c7e6d0d82b629256ceff16
MD5 a6dd04f8eb51ff4dcdfb9485f1705143
BLAKE2b-256 66e12d98cd8ec3ef46ca1cf8f053657ced9000e82d1ac130e4f0451a456a4aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 674df17569a0ca37e9fda8646309289b6bfcb6c4adcbc29f38cb14cd9d9040b1
MD5 71ff4ae391534bf3c996b98a8259327c
BLAKE2b-256 e7959283a3eca59111d0c7aad2455c4925c3153499f7c9025d6468744a2bf600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 237bc10c77a4c99514a4c751e37259ed023d8cb189c4bfbd7b03a6e69cc208ab
MD5 4cdbd1801d5f44790f124985d21d8791
BLAKE2b-256 3a415e7c0ff2346b0fc543dfc0c07b233f822e71c2489081b5917545c64ddd10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d619b53fa6d179a6f80e3aa1d1234bf61f6f74e89651092e791b659eda5d8687
MD5 8e1653e3410b12facb2fe5a8227969de
BLAKE2b-256 418298cf46a84f4274fd2f977f40b5b572465aed1cc5618ab00dca82b162c185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9816caca780b4e7a43e90dc3750aa4236f9c10d31a634908c3f8e6bfbd2dcb7e
MD5 f49b41e57af08544db922233bafad6a9
BLAKE2b-256 5eb6a102a8733606c84639bd94d7a505741a1da35838b9367cb3247bb487f02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee7450e8e064e29b110ead160ed648b875a508a39b016b9fd551c96a5a1131c9
MD5 f3eaaa4556a26d288f999ac80dee9ecd
BLAKE2b-256 0aed75970caecfabb11bfe704a5053543fea5e4d88726fda5c574ab3ea3b5383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6812eec4b627675991db0629b6abf1a537b74237b2c81c1250fe506072af92c
MD5 e562bcaa2653c978574ae4c21c2fa1a8
BLAKE2b-256 4ae72b7db25b6526ee58af702a33ae7a61d5433549cfe60fe276e32a78f5c56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a067753155cc1995134010a4b77dc8116f91f32e62c0d64a01690f4702b00f4f
MD5 3a17b0a5c451bbdc7d0e4875ddc98848
BLAKE2b-256 a3e027225e72576bb7aad185b19b69f09962cbba7f102cb5543e428a985f827c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8f6193b62cc1a267fbcd171c1da58f3e7c8b25a561d439a8d6a310ccb87bcf5
MD5 af15f937352f75d8859e0b1e31dbbd8e
BLAKE2b-256 271edab70a6488cb1d8afc04b43105254bca3d220e4621fd23fd7f429dcbefd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8386b29092c94605c6ccf8827fb46c1efd899adae85dff51803456ae153f581a
MD5 71fc217157e18232f65d79730c186779
BLAKE2b-256 859931a5c44e00eb06f1d7c6abdf48ae7e3049641cb62936461cc8319943ad72

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0cfb3e575185de4595faef2d39a5d23358a44edae6b4ac8b37a9634b220f23d7
MD5 fe57503e9ee366feb69b935a7be9d3fc
BLAKE2b-256 584ebca3609bd5a259232d82cbd12aa849ed4367a7536e7465b4a8c4bf50cdf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87df0d689bd8e4dfdec1a17a7edf5ff6b6d544c56cbdd261913154468ce051c3
MD5 d405337a58b3f7ad462e514828a71272
BLAKE2b-256 15d85bd22647878d8116deaa15c897b0be7f0eaceba16202ffe7a21400f9691f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 367ae715bae57eb868b4eb802c0e15b9a4658143943876d85f6b5448c6424a75
MD5 c29005b58ea24769fac5a69488bb6858
BLAKE2b-256 47595dc3488e429d47902e71d0b1f6eb8be4c3e3c16e73b50782553758cb2ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bff879f75cf1cf6005d7e21adfe4f63caa9b73d5902f8f8107e06adb10aa783c
MD5 f97cd7c7eef83d42ffa3e9f02feff690
BLAKE2b-256 a8183496e51ec60879d8f5e2ee55456502628f7ab592841e303803ace9b820c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c70428da1ea1501e479b8b50aae83bc5dc140b37f7d273593660bcf0283fc0cf
MD5 6fe66cea60da3b42b8a2316ca74e0323
BLAKE2b-256 4a5dadf0384b49c7e4b7e88f541af604ffa2572cb17ed737af21aa773e8dd76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5bc54059300dd4538d240da926b1a129ae7067b9c77e75c1d0ba522196a29fd3
MD5 b2fa2da125ac59402187b1548658ed8a
BLAKE2b-256 ea29a8bd0fa6e6a9ca9fc165daf9ba842e96217ab16c2fc7a64bf741dd51f9f2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e31ab5c702cba7e6e35a7247c952c75a82f59d749a5de8d7498b0c9c73c77b89
MD5 920b538cc7d11f4b6d7b9a7c6ee4d828
BLAKE2b-256 2acb9f349684028df36cb43c78bba8ff91ca0116c2cfe50f70c59c5e898d19b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 309de78023783fe2f770ae05219be7c9c710360cb4b4593befebac8940769049
MD5 0161687f296ae6ae46c16265037f0950
BLAKE2b-256 ad478eaa611b337bf5d7eb18e4b10f96f5d09c72391b38e332b8eafc6f814e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f67561aa1c2c8d00e8fb1e52c3c1e26c1a42118569ee1c6f43356e5d7e06a456
MD5 b77ac3affae79f5ee0084bd2d9663e57
BLAKE2b-256 7cd09e7811a024cddd9288c0b3282dad81e2b65accfd7c289ce36d9f47769a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d401650a1a6b7a84eeed7b08709b6b7da6bd932da34f9d468bd170ec3e3407fa
MD5 b58a17b9fb872582c4b5ce629be7e9a7
BLAKE2b-256 08b18c2561eacb83319a59b06c056fc954938e72f4155112e6b729dda249e261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df6940d08f7a3e8e36bcbf6254290f1b32a7fe8b4b0f81ab8b97550967f53af2
MD5 0fcbc5487209e8b36108bee1dd5f641e
BLAKE2b-256 461d205a74f57b31cd35f6d75898f41a107aa57e249a6e760b047e49a529828d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c548fe43dffc9f017edd95a7938cb47a595bfe8ccfe33070cfd2ffa613be5cde
MD5 666612053c97d1c263aed8a6d594ac5e
BLAKE2b-256 c25c729e55664d4b9c7f572bfe30b1745c0764259e77b60305950f580ee66662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c962913673beba36d4d82f8d1a1933f3c26b3e43326e9fd21c66c48456aa38e1
MD5 e5c07f08fac62110902f27950ad07817
BLAKE2b-256 7d02f3071fc018dc9ba83fb11c71e480aeedcb86023257457c5afdd5f2c40469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c2bcdb4f5411876ae3372b74094bdbf4a0cab917ff488b5bb2ef11c2d99ccca
MD5 0c57121d9b3ed1f69082a58e249fcec1
BLAKE2b-256 d7b91bfcf2d2bb92a53e25b280f6508ff8d0304870411b54f941400d22448407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef66c4cdf3939341642b91f4026388795270b65c8d616a17669b53e1d6b80754
MD5 d8d76d610253b188308beb26f7932625
BLAKE2b-256 34dd65aec986e797d3481581d6e0a5ce1ec76036640e07bc9b047e1d0e8711ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13bb9e1d488333d42bf4638b75517ab5f38b4105d2612b174d91a49f5b41bf9d
MD5 4e1b1179c4c4f551f387f6af7c14d9ab
BLAKE2b-256 604792e50faf2f3cba8c256db7c7fc1dd060c71155b6b21618b657262e724483

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