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 Distribution

fugashi-1.1.2.tar.gz (336.7 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.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (323.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

fugashi-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (278.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

fugashi-1.1.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fugashi-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.1.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

fugashi-1.1.2-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.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl (290.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

fugashi-1.1.2-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.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

fugashi-1.1.2-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.2-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.2-cp36-cp36m-macosx_10_9_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fugashi-1.1.2.tar.gz
  • Upload date:
  • Size: 336.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2.tar.gz
Algorithm Hash digest
SHA256 5e82fbf4fce097f7dc43c615e28aa4cb0417e5a68a665987e5cbf0882498056d
MD5 1e20f33b793f1f3c66d5871ca3b55ca9
BLAKE2b-256 e6e43ab86e21973712c2be63f003817a57e05b2f642c58669cbaef4c91fc42c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 323.4 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8330b8f8ef4555e4bf7df56bc5a88815b5f3c127c00f38915a970af46616f1b
MD5 a1506df804fda6955e8c320a2d062cc7
BLAKE2b-256 6243948a7cbbd4b47511da21d656c0fb0b32d29827c2b15e5425cf642959dc67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 278.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce22b80522a52f803638bdce5323cee02097b60a873cecfcd0b5fee6f3d95cc5
MD5 77873365bd1ba8bdbc7b56bd28ff569d
BLAKE2b-256 6f8e08ca7cf9d11820d74aa689c4682f07c7a0adfe6ea690be9df0994bce1069

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 497.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.1

File hashes

Hashes for fugashi-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f255a7595e5cacfa2bd7a76be47508f8e3ced32303830d5a961a42c249386c0
MD5 7cc461e50a05046d572426e741dd0d51
BLAKE2b-256 0436eb70a9ff60ce6538194092bbef8d921d5d9be01bde2e8bd4bebb2925387b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 597.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1b104531cc219bf9309e5d737a236e10f3c73b921b5c519ae1123f7a5b14421
MD5 f8af6222d9ff9f495486073b17ffcf30
BLAKE2b-256 3a8b48435c21b17f8edae4ea88601fcc6501d6535b4748558eee510855694006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 586.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72ef05b96444d47c3c9dae6939e8e9b7ac4e01ee64733eafa57386f87ea302e4
MD5 e350bed914ae8f2d95790e5de8a8add6
BLAKE2b-256 925ba4b8272d9358877775aefd1c9e7d449312ad1ef7458091094fdd0c6cd592

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 292.1 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 284f2bf161d32886ba2053d69d30d2f85c456df0ff4627100ded23a9411d2bab
MD5 a8a8e9d675a83d247ea361aa7fe43c55
BLAKE2b-256 a711cd8c7db5db26160edfe02f1d838129e37d46554320a68dcc22b531e95b62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-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.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.9

File hashes

Hashes for fugashi-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39f71a4334de0a62bf0f5ae7d2fb1520264f55a47299006da559b172b74068fd
MD5 9b54ba8aa49430d64cda33b1a476813d
BLAKE2b-256 8458cc0f45bf982c4b7147fdce25da72b37d7c17dfb4241805681ae47c84d3b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 596.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f50241a996bc88df6bf15cbd50bc918ff3822827709b695b692c84a84eaa0b26
MD5 f0c960f160cdd348ab7dcc519fd290e2
BLAKE2b-256 ce9ae047f7ac1bb23b8e19a6825df1c5625de2d8d24e273b627ee24a9d37e76c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 585.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b272ae61b40bb15ccaf1c0d2f9703f3c74da8ceaf25e6126c5c7c08796bfa1b0
MD5 ffbcd9eb17326b7b4da006f24206bd78
BLAKE2b-256 2845293a4058be8168fd2e74ac5c4878a033c3dcadb0834c570d2fec809acb5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 292.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 188d395e94e81fcc6b4d81c947e52aa9a3158385795426edf8d366d6a5d86267
MD5 a3bb7f2ed61cb629cbb868aca3d112cb
BLAKE2b-256 6c253c2c4f4ecc05598f9134bdad73de80bdc047468d48e2116c3cb1244fc5aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 497.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for fugashi-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eaa85c641f530c072144b60c4943ba2aad89a8c569dcd445895eab980e95f50f
MD5 38ba37e57a3c8751b5073dd3dc871489
BLAKE2b-256 44b95e22be48303cebd7f69233d9fe55d309e8cc66db1459335182ea600ff766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 604.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d2fd198cb86c8a6bf713d06bd05a8f72e99146453bc279dfeecb4bc986fe4e4
MD5 00715f2f3a64c7b503cff358652973a7
BLAKE2b-256 68e51ec595df61a5d34c73e11e965e3e51e30b46224a94cc93d13cd7d176f92b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 593.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1d514ca18b51bc20ebc3161904703fac521b1cb8a0ea0530810d124a080dfb2
MD5 485e02bad89435368ef06d18e2c58ba3
BLAKE2b-256 f7a3914b4cd6be9f66e88ee037f477c0d00c3c37604658ad259adca3a77af377

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 290.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a78513212db800d25063f923b62857380c36903848298cbb5cd6d4c029cb0bb1
MD5 eaf536f207a12865d871d216c2ade024
BLAKE2b-256 b64a22ddce3d4d7b9d28469747651e6caf281b9cc5d695cb89040b5c9465859c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-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.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for fugashi-1.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e19715c4aceb300e62687c4015340bbfd913142d7e64549bad4c8194d3e4b9e4
MD5 c1322f05c1adf667e0afe93ba87c5cab
BLAKE2b-256 461715687a35dc5f4c634d49608b9f3d9e23f7aa6ac08ea2a201327f1868b7a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 568.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3660f5297f6c0da0ac483a731b4aca73ab625311c7783d375de30e7a9881ce54
MD5 f9c0b55ec31f64b52af9d8ade29ad1b9
BLAKE2b-256 9b7c172082468f7b98876cd19246de078859914edda5f21a32d78f1e5dfac1b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 556.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d71b8664f7bc7f8319cc65b12fbfd96e30efb8caa5020ede1f6c9b3aa6db721
MD5 5fc2fb4c8a78fe34068f2c639a87dced
BLAKE2b-256 5fe29dfdf3cf10c6784367e5733dc018897ef259df0e45027669b84443bdf11f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 583f67d881cf6d8adaf68e1b69f891155e50fc9f1eb5e3fa71409be024b3be19
MD5 764ef141f3a206d15d7302139f0efef0
BLAKE2b-256 ae134a55000555a7b25e30c7d99b31fd3243ecc769d5460cb4ae9956081ff470

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-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.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.8

File hashes

Hashes for fugashi-1.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 875efccf41874e022c8fdbeff66fa936874505cf57f0070f1e276bd3b02572a6
MD5 07a221ea730f86a7fad027de4af79b05
BLAKE2b-256 83c9b89add8fc42d9aeb298e9be5017287a835d11abf8338b50cea0b63c174db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 568.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac740088b11e396f410d3491d4be0928624c1d0e9ec2e0009ae73f372068030b
MD5 97b232b40c9705826a162b50ab9bcf35
BLAKE2b-256 71f58fd116d8ce26fd9fcc186b0194835827ceb9f9454de8e4df255bbd9768d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 555.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e02d75a3ec4753e2765e5caaf38a115d7746fe75c1d59f12a92eb6c2ecbbc7f
MD5 1705a086b13db467f97f58225d5686d2
BLAKE2b-256 60dc9f57deabc5d1d998768246f3bd8a090c5f7d6f8d2309f5781eb0c4efc4c3

See more details on using hashes here.

File details

Details for the file fugashi-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fugashi-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for fugashi-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a78ee7f28e48734cce71234089dfce16bda6d3bd5864ed80d1bc5701844f8e1
MD5 bd02cb11d07903634dc21b64925c80c6
BLAKE2b-256 bd117ddb7533e00052bf19a83c45f8331375076d4bf6d7f880e2dfdf639898af

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