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, 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 an unsupported platform (like PowerPC), you'll need to install MeCab first. It's recommended you install from source.

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 2013 version of Unidic that's relatively small
  • unidic, the latest UniDic 2.3.0, which is 1GB 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 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

fugashi-1.1.2a5-cp310-cp310-win_amd64.whl (497.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (597.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.1.2a5-cp310-cp310-macosx_10_14_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

fugashi-1.1.2a5-cp39-cp39-win_amd64.whl (497.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (596.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (585.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fugashi-1.1.2a5-cp39-cp39-macosx_10_14_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

fugashi-1.1.2a5-cp38-cp38-win_amd64.whl (497.6 kB view details)

Uploaded CPython 3.8Windows x86-64

fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (604.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (593.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fugashi-1.1.2a5-cp38-cp38-macosx_10_14_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

fugashi-1.1.2a5-cp37-cp37m-win_amd64.whl (496.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

fugashi-1.1.2a5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fugashi-1.1.2a5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

fugashi-1.1.2a5-cp37-cp37m-macosx_10_14_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

fugashi-1.1.2a5-cp36-cp36m-win_amd64.whl (501.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

fugashi-1.1.2a5-cp36-cp36m-macosx_10_14_x86_64.whl (283.7 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

Details for the file fugashi-1.1.2a5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 497.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for fugashi-1.1.2a5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4e38143cdb1177855f956815bbcba4767fc83a6eca3a9f6101e163cf880a613
MD5 07ccdc6862631f81dc0d3ae39b1eff8c
BLAKE2b-256 4c424283b35b567a6fb2f7b5455eba97b18d47e4b43cbb82f6d4a81a76d03883

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 193e88738f112253532de908d3d1f788074a6a53342135034a063e1ba96f8745
MD5 87913e715f14084bd9f784f3e4618e0d
BLAKE2b-256 c35768dd81da937497f114dc9912911d56ce16c4bde0ed2af4946e3060e1efde

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa3703e8b56e4b337ab45ce53fe74be41dcbf76f9892b2ea67ccdc3161fa591f
MD5 be52df6257c99440d4469399f6399292
BLAKE2b-256 8885b981d86b4cc219029c762df064b78b33e204c0f5e9e6d40dffa7440a31e4

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp310-cp310-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 285.8 kB
  • Tags: CPython 3.10, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for fugashi-1.1.2a5-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b6522d9a87d363301ed828177ece147ad968dbd0ae34c1717fa028d33bd89fcc
MD5 5db16e6257c1efcd78f2389edd7b79a1
BLAKE2b-256 ddc578cbb28f491abdc4b6ff9af1ebfe8fe6743dbcfec32bfbf57ca1f42fde01

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 497.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for fugashi-1.1.2a5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b235a1dc242f31a27eec22e8094bd5aa57d9160e34d1025598d44cb1858ffa03
MD5 bc345be61bf0d5ac5287f3d80e89d6e0
BLAKE2b-256 4ff7c732c64d41c7874c18901c03492ad606e6599bdcd379066f441e6f4ed6f2

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 769935ea8c22b8d33df91f12eafb653f1d9fb570d7e015510c28bede0fcc1304
MD5 cd3a2cf73fda2172f6d41637cc8ea318
BLAKE2b-256 7637338c40c80e003e3baa7eaf0cce32d85c27257e52878d88d03be1dce792ce

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b61a2fdeb0c3c9ae66492f64a8210b13a12537ee26bc55ae35d4c53fc97d2d5b
MD5 f421b37e4ec2be609fa3e6e0538b24e8
BLAKE2b-256 da29af7cdbb4532ce08bbe12ad2bb0e7eba33e589e8420f9fe6ccbed6013e79f

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 285.7 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for fugashi-1.1.2a5-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 80b0f4d07680ebf7ee6e24cfca5446e344296c1ac76d606ed062d4affccf7a38
MD5 545a9bb382dd45adf7f5bcdaef267490
BLAKE2b-256 824225c946aef098faf6ce9432a7461bb45845c51c5973010219176d5332aac8

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 497.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for fugashi-1.1.2a5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ccf7a068a7331666be9701b35583c7e51df4ad226bfec6a14c780746d26ad447
MD5 0018d180273782554be8c7b5771686dc
BLAKE2b-256 4a08cf9f750c49071630ae55b4fbfbaacfbf70048d6c62821784b12599878235

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acd2b681c8d03b003919c2ef3325fbe54a988bbe9a81b71ca4bff4ec0d80ca92
MD5 cff8b2e5540393eefa40d796ecec0e96
BLAKE2b-256 50c42f99b7371e2922c3c2af5fa7132c3096525275257bb1d81a6bc0127837a4

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d8fd5234ad32016bc569959fc9a9fdcd47885799318c49d5c1ab19e3bbbacfc
MD5 2050cc0a5b0523c065dec7ab1b220ff1
BLAKE2b-256 9b1183b2100a26aa86c7b85850d275d3d1bde875a462570ca535317bee64a7f3

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for fugashi-1.1.2a5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 43210b5f9d0d2755496b0e816b651146f2d059ffe8340d26ca0ad39dc8b4a592
MD5 184c359e6483067dc4cb2f5e4674ed81
BLAKE2b-256 1e46edeab444c42e66fca183369500ccbc7553d28f5dd90d158c21677d97ef28

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 496.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for fugashi-1.1.2a5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5d784ff8a1be124ff777d0b121c1cce414025129480e942d9c7103c85c2f3588
MD5 a986f1b9ced2a6ab8bcee462218ac3dd
BLAKE2b-256 b45881d9772e82f76dc1dd3b84b10bcbaf513bf04fceabcef8ebc9a1672df138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f15fb1fe2d76bd23fa8235ea6235427d8ff4bd54c0283673a4c4e5240c63784
MD5 00cadc7136cd38227011f3e011de3713
BLAKE2b-256 61eca1519770a7242d4c991495607fa25a3f5c848fcf26ed5afb2e60ecc3ec0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c31417822e04acd4d46bd3c710e7f848f9808dff5de96ab4c0bb915d23702762
MD5 6614a56508136b9e1897d7c3e3e83463
BLAKE2b-256 773947b0da830bd805045e5684912e3e9b804deac091a7cdb23ae13ecaa68f40

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 283.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for fugashi-1.1.2a5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6fb199e042fddc73f33196080c2efe4ffcdaec75d7deecf2476a5837eed50a01
MD5 1fead711326019f9d21c7d07b8db8fc0
BLAKE2b-256 d6655078b37bc6df5db0007f1f434f23987ca48039412f1148a60303baca75c8

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 501.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for fugashi-1.1.2a5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ca243af26f375bd6b8e591d0c271bdeeb2a9ee3fb7d58c7a0bf65fa0c5e31296
MD5 7eb532bd4b87fa91c8e2d66e2efc1827
BLAKE2b-256 9c6855d0338705c124e771898c1dd9540abbc50f79b14ff7fc65900703cdf422

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9096306260afae5e5476c865ebe18ca095285951605e6cb497080d5d09bbbb6a
MD5 55478a5ee6b2c07b2c9859cb1008b942
BLAKE2b-256 9ee1189ab0a4e4ed1e623b4df3c62e74b8e9fbdef3d032efd12e2ba64de60801

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fugashi-1.1.2a5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9df9fb1c5b0999b5c03a7e7df49e68100610c76be48fc909eaeb0dfef62b34b
MD5 a7a25c82309bff633bda65a05eb29714
BLAKE2b-256 b0ac54cb860f5a99de54b2815e22ebb7b2e0e227cb23aceafaff127cfa88b5e0

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2a5-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2a5-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 283.7 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.15

File hashes

Hashes for fugashi-1.1.2a5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f8acf53d0311cf34cdc8c56c6956925116ee5f58bedd0535edbd91f50c5ea6aa
MD5 37972078126155a7c0f79ed49ab8441a
BLAKE2b-256 605dd7e222183fda6817174200508b004358f3dcf6fd96adbb8e6a25322396ab

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