Skip to main content

A Cython MeCab wrapper for fast, pythonic Japanese tokenization.

Project description

Open in Streamlit Current PyPI packages Test Status PyPI - Downloads Supported Platforms

fugashi

fugashi by Irasutoya

fugashi is a Cython wrapper for MeCab, a Japanese tokenizer and morphological analysis tool. Wheels are provided for Linux, OSX (Intel), and Win64, and UniDic is easy to install.

issueを英語で書く必要はありません。

Check out the interactive demo, see the blog post for background on why fugashi exists and some of the design decisions, or see this guide for a basic introduction to Japanese tokenization.

If you are on a platform for which wheels are not provided, you'll need to install MeCab first. It's recommended you install from source. If you need to build from source on Windows, @chezou's fork is recommended; see issue #44 for an explanation of the problems with the official repo.

Known platforms without wheels:

  • musl-based distros like alpine #77
  • PowerPC
  • Windows 32bit

Usage

from fugashi import Tagger

tagger = Tagger('-Owakati')
text = "麩菓子は、麩を主材料とした日本の菓子。"
tagger.parse(text)
# => '麩 菓子 は 、 麩 を 主材 料 と し た 日本 の 菓子 。'
for word in tagger(text):
    print(word, word.feature.lemma, word.pos, sep='\t')
    # "feature" is the Unidic feature data as a named tuple

Installing a Dictionary

fugashi requires a dictionary. UniDic is recommended, and two easy-to-install versions are provided.

  • unidic-lite, a slightly modified version 2.1.2 of Unidic (from 2013) that's relatively small
  • unidic, the latest UniDic 3.1.0, which is 770MB on disk and requires a separate download step

If you just want to make sure things work you can start with unidic-lite, but for more serious processing unidic is recommended. For production use you'll generally want to generate your own dictionary too; for details see the MeCab documentation.

To get either of these dictionaries, you can install them directly using pip or do the below:

pip install fugashi[unidic-lite]

# The full version of UniDic requires a separate download step
pip install fugashi[unidic]
python -m unidic download

For more information on the different MeCab dictionaries available, see this article.

Dictionary Use

fugashi is written with the assumption you'll use Unidic to process Japanese, but it supports arbitrary dictionaries.

If you're using a dictionary besides Unidic you can use the GenericTagger like this:

from fugashi import GenericTagger
tagger = GenericTagger()

# parse can be used as normal
tagger.parse('something')
# features from the dictionary can be accessed by field numbers
for word in tagger(text):
    print(word.surface, word.feature[0])

You can also create a dictionary wrapper to get feature information as a named tuple.

from fugashi import GenericTagger, create_feature_wrapper
CustomFeatures = create_feature_wrapper('CustomFeatures', 'alpha beta gamma')
tagger = GenericTagger(wrapper=CustomFeatures)
for word in tagger.parseToNodeList(text):
    print(word.surface, word.feature.alpha)

Citation

If you use fugashi in research, it would be appreciated if you cite this paper. You can read it at the ACL Anthology or on Arxiv.

@inproceedings{mccann-2020-fugashi,
    title = "fugashi, a Tool for Tokenizing {J}apanese in Python",
    author = "McCann, Paul",
    booktitle = "Proceedings of Second Workshop for NLP Open Source Software (NLP-OSS)",
    month = nov,
    year = "2020",
    address = "Online",
    publisher = "Association for Computational Linguistics",
    url = "https://www.aclweb.org/anthology/2020.nlposs-1.7",
    pages = "44--51",
    abstract = "Recent years have seen an increase in the number of large-scale multilingual NLP projects. However, even in such projects, languages with special processing requirements are often excluded. One such language is Japanese. Japanese is written without spaces, tokenization is non-trivial, and while high quality open source tokenizers exist they can be hard to use and lack English documentation. This paper introduces fugashi, a MeCab wrapper for Python, and gives an introduction to tokenizing Japanese.",
}

Alternatives

If you have a problem with fugashi feel free to open an issue. However, there are some cases where it might be better to use a different library.

  • If you don't want to deal with installing MeCab at all, try SudachiPy.
  • If you need to work with Korean, try pymecab-ko or KoNLPy.

License and Copyright Notice

fugashi is released under the terms of the MIT license. Please copy it far and wide.

fugashi is a wrapper for MeCab, and fugashi wheels include MeCab binaries. MeCab is copyrighted free software by Taku Kudo <taku@chasen.org> and Nippon Telegraph and Telephone Corporation, and is redistributed under the BSD License.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fugashi-1.3.0.tar.gz (338.9 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-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (507.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

fugashi-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fugashi-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fugashi-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (512.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10Windows x86-64

fugashi-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (600.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fugashi-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (586.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9Windows x86-64

fugashi-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fugashi-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

fugashi-1.3.0-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-cp38-cp38-win_amd64.whl (500.0 kB view details)

Uploaded CPython 3.8Windows x86-64

fugashi-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (616.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fugashi-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fugashi-1.3.0-cp38-cp38-macosx_11_0_arm64.whl (512.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7mWindows x86-64

fugashi-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (584.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fugashi-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fugashi-1.3.0.tar.gz
  • Upload date:
  • Size: 338.9 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.tar.gz
Algorithm Hash digest
SHA256 0deec0ace31859897774238a6d7c136243f83f6fe4f98fdd48e4e770d859c1fc
MD5 2dcc59dc082ab0c67a721c504d1dee6a
BLAKE2b-256 924425877d3fa370a9075a9ac78001e90553ac0dfc1a2715d989d8f69a56431b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1413c7d7c4954a323731d343c5c063c5f357c801018dac64cd0186ad66954b63
MD5 74259802195b0e715b8284fc94b70afc
BLAKE2b-256 c925a7538ab22c18c60f7f619ec0237e96d3fa376a918737d693f8f76628aaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bab1f55e27e0f2cc08c57dbf9135c03b9f38a6e491c2f56f8e78bb4939d4c60b
MD5 09bd786f369e45706adb6fe2a2dea26c
BLAKE2b-256 831dd05ebf0606180423ccb14858879959d69cd7e1c8c3dc01d0b5e377dd9c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bab08d7e9097641aec4c3572d77ab31be4bc80278ddfd120f0e51e91cbf79ea2
MD5 5d5324977a12db37f15739e315e59ade
BLAKE2b-256 e96a8979fa9cdf9fc87cb8db4d3273307614111369f092329af548fc07539df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d87a226087c5fb15fec2402585aeb490c79ad8bb483213f713976aaf2ed4608
MD5 cba646bcdbfcec6b4112c7faa45669d7
BLAKE2b-256 90204718aaca663a44f653d392f1dea1bd4a23faa7c46ee102b2e46b6b19785a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 498.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75c88c30a60222f95ea245cdd92b3fa7bb3ecbe74626ffe22f7cb37f5206e207
MD5 a8b3daf773adcf1cfe9d4353f4a3c197
BLAKE2b-256 8a9de490e56d017402b08c858bada8053efe42e95bf241c36c286a27aa62b4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96437109c407d1f6b47535767c8439be7c4a5f8859213ba25b042145dcbda405
MD5 dc2601ac0ac68668f9f1545a834a4ced
BLAKE2b-256 f327939cf07c4b4fbeb52404d30244ce9166ae9da123d1987640b1dfc839beea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edf2bf3155a2bcd43f305874de928a40602e46dcb76725c34293c211429d9b66
MD5 59ac6262239bff1ee5999c2c1a57175a
BLAKE2b-256 cc98d9cc75300a19205e4e8e80dc2cf97014ea7ab97931c4fe72e35a8e4e61d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd6af40364cb27553e632b8c9672dc97dde908d82ef3e66bbd3178c6a7f25d3b
MD5 a24d600adc538c561b4058f1381c492f
BLAKE2b-256 6ab05bd717dad22805e452bd31656a0f85a3f241a7fa320bc5931a7bf33dd19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f5f71b796f126efbb2e38f027bc4dcfc01e115ea79b115ba855dc08e6e6a72d
MD5 50f911e2e403dcac7f97903280ae0e1a
BLAKE2b-256 e62d5b0959962da54ccc8d381406ac9d219986109e9af9d420b913d140ed09b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 85f1669bb5af7a0d761cd64eaf6becdab5460c6fe6ce4153d3b23ac6f71a797e
MD5 67cbb6fcb4e59b53a33f95567d937724
BLAKE2b-256 adcacb5faf6a3bd81aed5ddeb30211b623c34cedae6f0a8e34d6b1cb713aaacc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a059e0e5f5ac48401a51760be6d16d532b0b27672e63a61dae9e5da96148a13
MD5 84a05a1f5b69b9e9c0f4f592f2a04219
BLAKE2b-256 71aecac3c8b276800e8eb9a9e03c2f7d6d1d76d22395b2cc695087c9c0207bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c14e385c90230d49e56ad2ddb49a949c317b2ae9b46ce99cc8923447ae9c4e7c
MD5 06f7d341af688509e5bc58205d74d14d
BLAKE2b-256 7b50acb7ea80d5840894c56ae0dc7c6cebd2f3365992d375300c936208f460dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a4f2f3732cf9b99bf04f463beef604490b59fdbce4f77dc14e4f1e291ad0ef6
MD5 e37d996bc2a97bb71ffe7a105e254cba
BLAKE2b-256 d3ff133ad646f5cdb58cf0609b2f2a3b80aacb900d400764d92e3d89696d64d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ebbcfc3e36aff6cd8a08272591ee1ffbc34d622729b2b6a186cf33bd638e56
MD5 f3231fd327503911e19c3627a4e913dc
BLAKE2b-256 5829ea85138db21a3fa30f892ab69514b0aae86a08990a58b5667f773cd6b4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3f3191305e2b6fa09cbd0d3521bed9fee0eab48ffe26de7d3590e66b7a042ed
MD5 cc25cfac924e39a1f91e6b016b1190b1
BLAKE2b-256 f3354c3f4b58cd8ca92e6f4f79813a354946d3abdd1d8afb965c8572744e8997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6a268af1b31e5348b881743867630175bd03fe5e8f9c6aeb6a36763bb8385dbf
MD5 4ef9078250e38a0229d9b71f184eb5a2
BLAKE2b-256 aa1a705f9b9f9a9cf8968d256194917279d78dcf91d6bce54b108ca222b8a2e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.3.0-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-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75e93a5178d812f33dbbc1143aafe9fb08ac04837a36e219da7f632ceb9a37fc
MD5 8ea272c3127fb67b0768d17243aee3e1
BLAKE2b-256 ec818d47c13666e30b5cd88320bc1e82ff550c1cedf85020f081f5e35c76152d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a7b75ef71dee7b4b5ab995b675775e5317303731942eb8faf33567dbf8fc3f0
MD5 4d0748181949756d242f718fd6cbd70c
BLAKE2b-256 373bd57e02ece8c3d9bdf7226785760256734ef3297d8e44009631db2c259ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19a4653788727781501279cb65143db8ba487715c33da484bfd0af6744f76938
MD5 e3fc712a4d3c901c86b60d3f5038c41d
BLAKE2b-256 f4bbcc690120e11bbe640f95dc89d796fa8e29ddd34ddf50bf56eac7871c573c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b545087036e5ec835cedd25f5a9b554aeaa12183720d1e5a32b377e7eb3fed3e
MD5 569d02060e1ea2427b6839a973071065
BLAKE2b-256 a61e43a4d6c69a76740e881a001090c81d2ad5381e8fe3d2a5054522860b0619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16b0c314676a608e3fb6fb7a50f454fff557b544dc85552d89729fa046d8d408
MD5 f8ba16d6753d5f1e93549ba0ffbef7d4
BLAKE2b-256 f044a714b0c0f6910b27b5ad641e186f7ddaaa48a5b050f391c968df1b24f09c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2d8ff8fb475ce939956efd77f228c1a624eec9c933a60d04ef1182485c279af8
MD5 b718c71a47cfb6d0975e767923c5dcb6
BLAKE2b-256 17723c9699102727b053f374676ba5131b9059a6676da0706be7a23a4ba39d94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 500.0 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-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bb3106dbf5ada2c372f7773a8e4962a920c696305e26fbce53099e0b5b536f5d
MD5 2438ac8de3c5b177547d72d904239407
BLAKE2b-256 f83db430d9d5140ef2476263f68904b8638aee41c971d6a4149de20db5e05466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c95300d2cde2b8524b8638b5dd48ed5b2463de37f1a599155011ba0b1bf7a888
MD5 edc8568dfbbbb65f716a9351b50e7ea5
BLAKE2b-256 b49d80980b4cfb65cc6103a567cf41c61fc4d0ef27ba82b2cecc94ce9d30297f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33f438388a52fc15e3a4d94b99f61b840a1851813773224ad223e1007607c8b0
MD5 5e7eb8968ecb7289d2b9e6b52aa2f8ce
BLAKE2b-256 560b26f4241a1fa1badb5bb09ae2592533383360187991cf9241b31f50a0ee09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96644c68795f2723e051c6ddc0abb8a14a9f7458f8334034d19fecbf3d8afd9c
MD5 e00c6263ed256c06e3d15755eea1a5c5
BLAKE2b-256 a97e6d401b3868ea3fabe8899db2331a5f560defa6afbfd3fb47cc87f0f6a329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 883619c3ab1d0f331b404c923ccf23624c601478923a802c47dc84f0b06defa6
MD5 0c55ce9a3ec24642af568bc37ba691f1
BLAKE2b-256 e6496467efbd5bb32a91fef0abd839fd48c80c02e01a754e7a1e7c67714ce33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7657b72344273c52c9aaab3ebd1584fb7e1b86ce5664b314f1a632bb71d5aa2d
MD5 659a11bef3b9199cab200fedff344ac8
BLAKE2b-256 88f0f66419e56ea1f17a0f1b01dc641d063dc84193ac61029cfbda415fc37438

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fugashi-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 499.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for fugashi-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9f1d50f5ea19479c2b2beae11242e723a738429ee750f072c59a9ee6bb071399
MD5 c7cc628519860df90f0c5a712af70474
BLAKE2b-256 abb20d0dc6d096fba95fe494cfab175a603b0862e8e5175bf6ad9aae796d4fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c100cde515d312d5205884ce6ea35f1d6e8e88079f05772010eccbf699833d5b
MD5 deedecf02ac8549039ff6175d39b58c2
BLAKE2b-256 0407ac7c19495331d330f055f6c4d837732ebc5578b22f72fb459be6297fb771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48ed15444e54d1062bb9b8bf71bd0ee3f58188d875cfb02743cb701963324fe7
MD5 6f80882c13073bae70aadb23fccc7c64
BLAKE2b-256 fe4233320a78b31832123c7efa5bef7c8270080c1738de4bad07f4eaf31459f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fugashi-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ea537c6f517f722442f5af1da0b3edd00f226cb02386fcdf6b8ba69d38dff8d
MD5 d50c35ffdf2b81531e2312df5491d631
BLAKE2b-256 1fc0cbc2b8d7e548cd49b832831939e2b5d9d0de14cd398ffcc7be039c65360a

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