Skip to main content

Python version of Sudachi, the Japanese Morphological Analyzer

Project description

SudachiPy

PyPi version Documentation

SudachiPy is a Python version of Sudachi, a Japanese morphological analyzer.

This is not a pure Python implementation, but bindings for the Sudachi.rs.

Binary wheels

We provide binary builds for macOS (10.14+), Windows and Linux x86_64/aarch64 architecture. x86 32-bit architecture is not supported and is not tested. MacOS source builds seem to work on ARM-based (Aarch64) Macs, but this architecture also is not tested and require installing Rust toolchain and Cargo.

More information here.

TL;DR

$ pip install sudachipy sudachidict_core

$ echo "高輪ゲートウェイ駅" | sudachipy
高輪ゲートウェイ駅	名詞,固有名詞,一般,*,*,*	高輪ゲートウェイ駅
EOS

$ echo "高輪ゲートウェイ駅" | sudachipy -m A
高輪	名詞,固有名詞,地名,一般,*,*	高輪
ゲートウェイ	名詞,普通名詞,一般,*,*,*	ゲートウェー
駅	名詞,普通名詞,一般,*,*,*	駅
EOS

$ echo "空缶空罐空きカン" | sudachipy -a
空缶	名詞,普通名詞,一般,*,*,*	空き缶	空缶	アキカン	0
空罐	名詞,普通名詞,一般,*,*,*	空き缶	空罐	アキカン	0
空きカン	名詞,普通名詞,一般,*,*,*	空き缶	空きカン	アキカン	0
EOS
from sudachipy import Dictionary, SplitMode

tokenizer = Dictionary().create()

morphemes = tokenizer.tokenize("国会議事堂前駅")
print(morphemes[0].surface())  # '国会議事堂前駅'
print(morphemes[0].reading_form())  # 'コッカイギジドウマエエキ'
print(morphemes[0].part_of_speech())  # ['名詞', '固有名詞', '一般', '*', '*', '*']

morphemes = tokenizer.tokenize("国会議事堂前駅", SplitMode.A)
print([m.surface() for m in morphemes])  # ['国会', '議事', '堂', '前', '駅']

Setup

You need SudachiPy and a dictionary.

Step 1. Install SudachiPy

pip install sudachipy

Step 2. Get a Dictionary

You can get dictionary as a Python package. It may take a while to download the dictionary file (around 70MB for the core edition).

pip install sudachidict_core

Alternatively, you can choose other dictionary editions. See this section for the detail.

Usage: As a command

There is a CLI command sudachipy.

$ echo "外国人参政権" | sudachipy
外国人参政権	名詞,普通名詞,一般,*,*,*	外国人参政権
EOS
$ echo "外国人参政権" | sudachipy -m A
外国	名詞,普通名詞,一般,*,*,*	外国
人	接尾辞,名詞的,一般,*,*,*	人
参政	名詞,普通名詞,一般,*,*,*	参政
権	接尾辞,名詞的,一般,*,*,*	権
EOS
$ sudachipy tokenize -h
usage: sudachipy tokenize [-h] [-r file] [-m {A,B,C}] [-o file] [-s string]
                          [-a] [-d] [-v]
                          [file [file ...]]

Tokenize Text

positional arguments:
  file           text written in utf-8

optional arguments:
  -h, --help     show this help message and exit
  -r file        the setting file in JSON format
  -m {A,B,C}     the mode of splitting
  -o file        the output file
  -s string      sudachidict type
  -a             print all of the fields
  -d             print the debug information
  -v, --version  print sudachipy version

Note: The Debug option (-d) is disabled in version 0.6.*

Output

Columns are tab separated.

  • Surface
  • Part-of-Speech Tags (comma separated)
  • Normalized Form

When you add the -a option, it additionally outputs

  • Dictionary Form
  • Reading Form
  • Dictionary ID
    • 0 for the system dictionary
    • 1 and above for the user dictionaries
    • -1 if a word is Out-of-Vocabulary (not in the dictionary)
  • Synonym group IDs
  • (OOV) if a word is Out-of-Vocabulary (not in the dictionary)
$ echo "外国人参政権" | sudachipy -a
外国人参政権	名詞,普通名詞,一般,*,*,*	外国人参政権	外国人参政権	ガイコクジンサンセイケン	0	[]
EOS
echo "阿quei" | sudachipy -a
阿	名詞,普通名詞,一般,*,*,*				-1	[]	(OOV)
quei	名詞,普通名詞,一般,*,*,*	quei	quei		-1	[]	(OOV)
EOS

Usage: As a Python package

API

See API reference page.

Example

from sudachipy import Dictionary, SplitMode

tokenizer_obj = Dictionary().create()
# Multi-granular Tokenization

# SplitMode.C is the default mode
[m.surface() for m in tokenizer_obj.tokenize("国家公務員", SplitMode.C)]
# => ['国家公務員']

[m.surface() for m in tokenizer_obj.tokenize("国家公務員", SplitMode.B)]
# => ['国家', '公務員']

[m.surface() for m in tokenizer_obj.tokenize("国家公務員", SplitMode.A)]
# => ['国家', '公務', '員']
# Morpheme information

m = tokenizer_obj.tokenize("食べ")[0]

m.surface() # => '食べ'
m.dictionary_form() # => '食べる'
m.reading_form() # => 'タベ'
m.part_of_speech() # => ['動詞', '一般', '*', '*', '下一段-バ行', '連用形-一般']
# Normalization

tokenizer_obj.tokenize("附属", mode)[0].normalized_form()
# => '付属'
tokenizer_obj.tokenize("SUMMER", mode)[0].normalized_form()
# => 'サマー'
tokenizer_obj.tokenize("シュミレーション", mode)[0].normalized_form()
# => 'シミュレーション'

(With 20210802 core dictionary. The results may change when you use other versions)

Dictionary Edition

There are three editions of Sudachi Dictionary, namely, small, core, and full. See WorksApplications/SudachiDict for the detail.

SudachiPy uses sudachidict_core by default.

Dictionaries can be installed as Python packages sudachidict_small, sudachidict_core, and sudachidict_full.

The dictionary files are not in the package itself, but it is downloaded upon installation.

Dictionary option: command line

You can specify the dictionary with the tokenize option -s.

$ pip install sudachidict_small
$ echo "外国人参政権" | sudachipy -s small
$ pip install sudachidict_full
$ echo "外国人参政権" | sudachipy -s full

Dictionary option: Python package

You can specify the dictionary with the Dicionary() argument; config or dict.

class Dictionary(config=None, resource_dir=None, dict=None)
  1. config
    • You can specify the file path to the setting file with config (See [Dictionary in The Setting File](#Dictionary in The Setting File) for the detail).
    • If the dictionary file is specified in the setting file as systemDict, SudachiPy will use the dictionary.
  2. dict
    • You can also specify the dictionary type with dict.
    • The available arguments are small, core, full, or a path to the dictionary file.
    • If different dictionaries are specified with config and dict, a dictionary defined dict overrides those defined in the config.
from sudachipy import Dictionary

# default: sudachidict_core
tokenizer_obj = Dictionary().create()

# The dictionary given by the `systemDict` key in the config file (/path/to/sudachi.json) will be used
tokenizer_obj = Dictionary(config="/path/to/sudachi.json").create()

# The dictionary specified by `dict` will be used.
tokenizer_obj = Dictionary(dict="core").create()  # sudachidict_core (same as default)
tokenizer_obj = Dictionary(dict="small").create()  # sudachidict_small
tokenizer_obj = Dictionary(dict="full").create()  # sudachidict_full

# The dictionary specified by `dict` overrides those defined in the config.
# In the following code, `sudachidict_full` will be used regardless of a dictionary defined in the config file.
tokenizer_obj = Dictionary(config="/path/to/sudachi.json", dict="full").create()

Dictionary in The Setting File

Alternatively, if the dictionary file is specified in the setting file, sudachi.json, SudachiPy will use that file.

{
    "systemDict" : "relative/path/from/resourceDir/to/system.dic",
    ...
}

The default setting file is sudachi.json. You can specify your sudachi.json with the -r option.

$ sudachipy -r path/to/sudachi.json

User Dictionary

To use a user dictionary, user.dic, place sudachi.json to anywhere you like, and add userDict value with the relative path from sudachi.json to your user.dic.

{
    "userDict" : ["relative/path/to/user.dic"],
    ...
}

Then specify your sudachi.json with the -r option.

$ sudachipy -r path/to/sudachi.json

You can build a user dictionary with the subcommand ubuild.

$ sudachipy ubuild -h
usage: sudachipy ubuild [-h] [-o file] [-d string] -s file file [file ...]

Build User Dictionary

positional arguments:
  file        source files with CSV format (one or more)

options:
  -h, --help  show this help message and exit
  -o file     output file (default: user.dic)
  -d string   description comment to be embedded on dictionary

required named arguments:
  -s file     system dictionary path

About the dictionary file format, please refer to this document (written in Japanese, English version is not available yet).

Customized System Dictionary

$ sudachipy build -h
usage: sudachipy build [-h] [-o file] [-d string] -m file file [file ...]

Build Sudachi Dictionary

positional arguments:
  file        source files with CSV format (one of more)

optional arguments:
  -h, --help  show this help message and exit
  -o file     output file (default: system.dic)
  -d string   description comment to be embedded on dictionary

required named arguments:
  -m file     connection matrix file with MeCab's matrix.def format

To use your customized system.dic, place sudachi.json to anywhere you like, and overwrite systemDict value with the relative path from sudachi.json to your system.dic.

{
    "systemDict" : "relative/path/to/system.dic",
    ...
}

Then specify your sudachi.json with the -r option.

$ sudachipy -r path/to/sudachi.json

For Developers

Build from source

Install sdist via pip

  1. Install python module setuptools and setuptools-rust.
  2. Run ./build-sdist.sh in python dir.
    • source distribution will be generated under python/dist/ dir.
  3. Install it via pip: pip install ./python/dist/SudachiPy-[version].tar.gz

Install develop build

  1. Install python module setuptools and setuptools-rust.
  2. Run python3 -m pip install -e . to install sudachipy (editable install).
  3. Now you can import the module by import sudachipy.

ref: setuptools-rust

Test

Run build_and_test.sh to run the tests.

Contact

Sudachi and SudachiPy are developed by WAP Tokushima Laboratory of AI and NLP.

Open an issue, or come to our Slack workspace for questions and discussion.

https://sudachi-dev.slack.com/ (Get invitation here)

Enjoy tokenization!

Project details


Download files

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

Source Distribution

sudachipy-0.6.11.tar.gz (180.6 kB view details)

Uploaded Source

Built Distributions

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

sudachipy-0.6.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sudachipy-0.6.11-cp314-cp314t-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

sudachipy-0.6.11-cp314-cp314t-macosx_10_13_universal2.whl (3.0 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ universal2 (ARM64, x86-64)

sudachipy-0.6.11-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

sudachipy-0.6.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sudachipy-0.6.11-cp314-cp314-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

sudachipy-0.6.11-cp314-cp314-macosx_10_13_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp313-cp313t-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

sudachipy-0.6.11-cp313-cp313t-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

sudachipy-0.6.11-cp313-cp313t-macosx_10_13_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

sudachipy-0.6.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sudachipy-0.6.11-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sudachipy-0.6.11-cp313-cp313-macosx_10_13_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

sudachipy-0.6.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sudachipy-0.6.11-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sudachipy-0.6.11-cp312-cp312-macosx_10_13_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

sudachipy-0.6.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sudachipy-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sudachipy-0.6.11-cp311-cp311-macosx_10_12_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

sudachipy-0.6.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sudachipy-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sudachipy-0.6.11-cp310-cp310-macosx_10_12_universal2.whl (3.0 MB view details)

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

sudachipy-0.6.11-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

sudachipy-0.6.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sudachipy-0.6.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sudachipy-0.6.11-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sudachipy-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sudachipy-0.6.11-cp39-cp39-macosx_10_12_universal2.whl (3.0 MB view details)

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

File details

Details for the file sudachipy-0.6.11.tar.gz.

File metadata

  • Download URL: sudachipy-0.6.11.tar.gz
  • Upload date:
  • Size: 180.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11.tar.gz
Algorithm Hash digest
SHA256 4f03310fd3fc779b3000f49395c939d18a30081632d3cb14488426f7c07cc526
MD5 6845f9361a0acf2a0354ff70b2d0c2db
BLAKE2b-256 1334a52dc020e1ac67ffe2469d22771a850589a1184e0d91d48addd364ee02ba

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0d49c97ae999f78e8d11f6b5a5da4909d7e8ee7fa1ab650047db97ed1dcee642
MD5 5f164de502d587140e1ff61dca9e4ee2
BLAKE2b-256 4b81eb7c3e8b9dd8d2b9759830239869328a50764bd406d00ba1fe6a8eb70d81

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 263083769bb6a60c3b4d98d789ea860c39354bb078ab17fd1418b56e1d58280e
MD5 8af0677e5fd50704c76c657a2301043d
BLAKE2b-256 57466e72b5d96646b472ccce0bd75d2e2318963f1bdda95cc92f7761ebc86ff1

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43c82d7932f00ea7b10707e4dc8c435cea1d4d4984ed020fda6b0b6e33f8a0cd
MD5 edb7fca6f4989848c9039796661c932d
BLAKE2b-256 6de5914fa9aa8075ac8e06b95d876a151488b766f17d0e796bba7f1ca8073a4a

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7448cbf2efca7c03c620853aefee7e7a3a383e72dbd336fe7bb70aa72b7f982c
MD5 581c96cda8c1af6abf48546819f12390
BLAKE2b-256 f0f4138f9a4189b63c90312088f876817c89143e34a27b703e8b5b39e2cfcffe

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 92f5152a8ef8174c46dd78906ef60d0f5b1eca29471fe2574eb018d088f86980
MD5 e4822023e4a69acfb533c5a0757662c6
BLAKE2b-256 21d7f30121219d1be9dd41dc1d444f6d66cf11c1b7bbcd02cdcf326fa4c97456

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7392701cb6f97926b61e82362b8c438e53ffffa9b8be7b01bb4e550cade54406
MD5 7c82429ee57a7e86731f4e92e6692d8e
BLAKE2b-256 dd3b498efb8fccf32b9e3032e74ec0c54004d070517c507a6546d9cd3c726507

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0dcdb872648fa0678880cc21c09c5fc9928eb997321a5ecc2916a51697be6fb4
MD5 30cef27d858e3a80a0919d8836be82bd
BLAKE2b-256 41df468830dac0c56be104dd46cd91d20229f7d194705552f2916f0c45766a54

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9ce45838a633d708761ad86bda165076dbcb9c08bba3c9b8cba6ed9b50c6a917
MD5 9af65e9d211648c17f8ad5253c9fefb5
BLAKE2b-256 1915fab04da917e0d73b937dfe1a1886db913ef6a53def93686e81403fdb4aec

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16c99b6f54c5b9e490cacd2a6f773115b9999226ef365c9fb5d88077ec01a96f
MD5 db2ef541249f6e1826e2997f4695cc90
BLAKE2b-256 24238734144dbfb7c30d2ffc19a50442b07ad1db9563b6acccd1434e0716ce37

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bc4e9c0882d0b44dea4955416a9e862a80c8d73802ec90546b268d575e4ed985
MD5 9d714de76b4bc2c339249fe6d6462396
BLAKE2b-256 4be5972d5fc4af5f114b081e3280e669b91a5b6a1cb2740c4efb06b3f9748d07

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0fa6c8279d2eaa4abf9f4d2921708a518be019cd32894546640ac1f60060b600
MD5 7a017dff548c77e98d0594b1e454d694
BLAKE2b-256 95ad4b7d895e47924195f2feb0f07c4379cd6973b321200aa2ca7046e04e7e57

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2e5316b6279c93eca1b325a0f6eda16c284d647daaa1215ee994dd9c543decd4
MD5 c685e891c96193bfc575f637cd028ee6
BLAKE2b-256 24e9b6fb38b6788fdbdeb5e08c26200468a636df4e0ed8fb85b44572e184f6e5

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5f7d234e77577ac62fb207e65bb925bdec08fb8a3ac8df52302d3903fd581e26
MD5 40ff9b3961949eeaa4602a14834a3ff8
BLAKE2b-256 025142de4a2cb82e428b3f2d04cc5f40370477724429f6dcb5acadb3af488128

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b49d244423c39acb6ffa44a32c0296464f7454213f872d8738e9c43db4bc33d4
MD5 2b38af3f1947dcc3b905e4754affaf67
BLAKE2b-256 d02c022b1c2e491bddfd2daa488314973f864941992e20d602e8713672b37765

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 445cd4f8596d308582743cc48425b2c0aebcda04b37b7f18e00ad927d86194b1
MD5 a924d16ecd7f4d4ce006f013e4538846
BLAKE2b-256 67a3064353cbc163866aaf42f7735c9b85ea1ff8376ae1ad1b0a60f5a4e97a35

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ca04ecca9530d7b663f34f32309ad0961b3f85a8921908ecf39274e00522b598
MD5 d222f435a0bb03e7b9fdf3a4901fd731
BLAKE2b-256 db20c1ed0b8ab7a9f21d8954659de8113c5ae2f3a1667f21260b408038a94d78

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c56d8308e799bff8f0edc0a9921f0bacf9b0b65c5c5df031022a048402f1d9ac
MD5 6a2743af8e679ebfcd8ba63371299661
BLAKE2b-256 694ad5c1021335edfe8d0e78befb591fb11f4f8543bc0db1acf0ffc4ba135650

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cc86a6832448a56bcc6200b078a9bebd6059d925328214b96ee6b8830b8d34ab
MD5 08c5143efcb46a4c5fe987acad16081a
BLAKE2b-256 2a7e1b2cbdc8f1a889b76db9aad5599a86ed08d894a197b41dcdab265b1f8440

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b87831c5f98d634da04629bb6e3cace2a9aee275e83c1b62c8fdd7da4aca2876
MD5 f89d3c879de0555dbd09be10efbb5f3e
BLAKE2b-256 9852447115dc0a638081fd3f48a54f4ac8f455847366504fc68029ab1b7bd59b

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d074154c652ed6637a6a3581c67346ce642e47173e849267deb8c711b74157c4
MD5 98691fee2c49c972b53a2d78ffb6c952
BLAKE2b-256 eca894cbedeef4179536ee716504bdf5772060944dce7fa6cf0d3648c50a46de

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a07a9a9232137353bb96d1ae2ce7e33def1ac48b571e338b3433b90581a9bbb
MD5 6f06e990ba814c73389bd82f940bc585
BLAKE2b-256 3c6fcc4b530725321c098dbaf57fdc74306e22224b8b5c5fd88feaf8a501aa20

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f38624fc01c2bb087c875a32750e3735b67b6b66487ac30a8e3f2d3599c4e3ea
MD5 8848cacc66f85887948152b943ea226e
BLAKE2b-256 09714d4a6b771fef1571d2f6e73d25ffcb3e8de462af674464c1fd41c9787899

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 390352e01d195c15c9a5aa0b2a2270a987baaac64888cc03e164791a7d78fe9f
MD5 1f730fd83e127ea279e1dc017616553d
BLAKE2b-256 c2436c9fcd712bdcbd9968ec20d70504bd33fe1eb9959e611f6e29bb2bce4583

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9d024efea4ff8b5bd0709f1afbb8e8f230ebd4ec83f9cd76f47b0542b7c22e91
MD5 6363ed6eebb6c08ba79194c7948da86a
BLAKE2b-256 49eef7c20d6e17619c83f5ffa3ed7bd1582174809fd8b396fb9250f24210dd57

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 49dbcd237a0041f7beae867b03afb53da3c6f1a119c8f9aafc53bd1a4fc1a46a
MD5 29aa254c56b627602f0c9d62cb6a0dd2
BLAKE2b-256 6dda4df93405f5f7453a4fd4a8f5fa34628d2621d6705889a9032fd297377698

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf105a60a705fa540be074197e95d2acf0a8f9e9a9bab5c999b98fade85c539a
MD5 0af75b8533c64b2c474fef2d8c7ed1db
BLAKE2b-256 ab5144ae0420b6715472a9a3e04ed6ac6b9c2b8c7d8d90e2192e1e938ee1db3d

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d19e44445bf994755ae500acf0c61c445f65152b0e2cb5c7608c094a317f6934
MD5 2ec98c80afb0adb5c56b4aa25fdcb75f
BLAKE2b-256 46eb30283736a29184e962358e7678863f423ddf0f098d196321149c58b9cf08

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c83bcca7ab332a00eec3852d4386de53cf68fea140170d5dda4fafbe59f85885
MD5 eb6c0533444d9756be5bfb8022a3148f
BLAKE2b-256 48ad13f75fb5e1da9c76a3a4080e371ba261fac32d5035fd76707366765f93ac

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a702c684d5f255bd861b94a56332886a7ec6af995e7ca00ff13eff3ee0b417d1
MD5 6cd53e63277806b9d53349714f3cda08
BLAKE2b-256 5157bec9b2d140a7bcb1b598a82285477d9a2a193e2f56870fe4033977e53bee

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b9142b1f255f075a5e6768e0dee32b7ded1f2c159653698b9ce931484fbca442
MD5 f9e6082c6bc7d7e30afe6e7be8b478a1
BLAKE2b-256 c5a8e0a1e75de7fb45375f9c916b4955273eb3decb5ff824e0a5d325cce76266

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 628525d988834d021308cab49feb94b8870f9e2d929562fd619abc9933221366
MD5 3b5dfd54753c53f1cba2722545b30467
BLAKE2b-256 2a91992b5b7538611c0017c582d935bf58784d2c52a44a403171f8858834e95e

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c1870ad045d09dcdf71aaf40d49d895caf8890d4873fc4e72739e79855ac20d
MD5 76db5962b815034d8cd257255aaf8272
BLAKE2b-256 0d61f00001ebb2cb3955b1f4369a80d7c4c48d8faa8cda70b111c9781284a35f

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0312e3d87383c0a2d1357f3d7158132860a0b73d89f1d3c8887ed008359f3778
MD5 04cad447dd178ffbb29dced703c2dda6
BLAKE2b-256 e5ea2aac0721549a490e3648d5b0ab828dffdcec48ac2c3981731b065750ca18

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp311-cp311-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 347d208864c40e4879535768ca30093ccf9f578cb37613850a8eef8850e40a55
MD5 4687ca9cbfab208bb51a05f33de061cf
BLAKE2b-256 3575723bfa0ee554ec5947fc78ebcf427916db1b6cdfee565ff7615f87e385e6

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0963d1f06162bdb640f0f21210d9c08c5854985f4dbec089dcf9e0cd91cf716
MD5 30b267c1af60542f60e5b686dbddb50d
BLAKE2b-256 9a1889f4e5b3d828db0d7c518f3e7b8221e6d7170d395d2bdeb59f27ee20ab2d

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2f266faf29125a9d2b26a62683ebf872b248ac5d3b24542a3c016f496fb7d5f2
MD5 df4f69c00a98070062b6626e0c985211
BLAKE2b-256 35df374d05965bd636f0c18fcc1a22ed26cb92ff0035342025203264ee87578c

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c6b2ad953530963a55968762cc6fd359211f4f98fc90fac2ece2f04e60efdc17
MD5 6eb077f9d48aa67a127f1441e824588f
BLAKE2b-256 2677db396bc1b57c74d0e8d3b08f62616fa372321d64df70df5d048e9cb68178

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec915f0784d4ee1bf2ea58e50ee7193a4336b6cf9ee1103782771684a3967081
MD5 4555f5538e8d355f22c05b9075850535
BLAKE2b-256 e57a54b541e6c0a30e3dbca68fac6c2eaf4aa55a970b363f494db0dbed3e5ac6

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72c2f91ab3693013709a9fb42f94954e98cecfed4bcba77c9afdd3eb85d8628d
MD5 5cd711941db89aaf4cbd7c326fbec40a
BLAKE2b-256 e3e170c1dcae497e2847f97edf567ed46bbf1f1e97eaf4854666794f40c89f5b

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp310-cp310-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7764933f190e480886df2c6ddb0c1d9171833f23d40d278c65250031232779af
MD5 41d2c34c5e1bb0f891766732c8587be4
BLAKE2b-256 5604433c86f0de93298a99e90591a87b67023e636c8550165d88fdc499dee7a8

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sudachipy-0.6.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 70e9a35d23f51afe6698164a1a13bee0a1136631e7deb5077bd00577219e9f5a
MD5 25a0e30c9f2d8ef38cd1236b1e28cd3f
BLAKE2b-256 9510db74e43c8015dc9ba1a9bcce8ba3888508a0165f62b0bcede6b219a3919d

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d6d54835ec097f25995b0259a33f3265edbcde1071688eb66204b48ecb5b133c
MD5 af755765e1b67082a2a9c8424798983f
BLAKE2b-256 461580ee9d1d8576c35de242970f57c81ed0f55026c457da069d11f46dc8d26c

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5769e89e169ed6fa42885c962df22a9f25abacb5d1e86807e65b1794376673ec
MD5 8319b4a4586fce503c4f21b272df81ba
BLAKE2b-256 5f0fe72bc2c040744c37dc68db2b65da1163b4ea8508fb82d5048a1816510aba

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4be5211e6f238c8723a736cac927646c989e8f483c35b44de64daca5472bde37
MD5 2a6ad8b28d314de4ec811c4416055f02
BLAKE2b-256 6d01a2fe390ec0d337c62d5c590ee9010e89da5f3a99adc910b0ca355dbae59d

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 764f071cd9264e1cc0bbca47037fffcbb147a1f2ca0c64c655fc0cae575e13e0
MD5 b054b9f86298fad5f7579f232670865c
BLAKE2b-256 eec721ff6c582ac3e89cc9b35a5207947ca4ee6a26535928fade2d74aad8fd3f

See more details on using hashes here.

File details

Details for the file sudachipy-0.6.11-cp39-cp39-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for sudachipy-0.6.11-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 12d31356d4bba06958f4c5d91a67509785d9b4ab914306a64bfe224e0c37da24
MD5 4e4202991a1ec1d2a4e07913aac4f752
BLAKE2b-256 47178d795d2754ae3f26ff0d1512b99af296b50f715f1368045e3b21ac6d6a02

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