Skip to main content

A wrapper on hunspell for use in Python

Project description

cHunSpell

Cython wrapper on Hunspell Dictionary

Description

This fork is based on https://github.com/MSeal/cython_hunspell and modified to reduce dependencies by removing caching and batch functionalities. Apart from Hunspell itself, there are no other third-party dependencies.
Additional, providing precompiled wheels for multiple platforms.


This repository provides a wrapper on Hunspell to be used natively in Python. The module uses cython to link between the C++ and Python code, with some additional features. There's very little Python overhead as all the heavy lifting is done on the C++ side of the module interface, which gives optimal performance.

Installing

For the simplest install simply run:

pip install chunspell

This will install the hunspell 1.7.2 C++ bindings on your behalf for your platform.

hunspell

The library installs hunspell version 1.7.2. As new version of hunspell become available this library will provide new versions to match.

Features

Spell checking & spell suggestions

How to use

Below are some simple examples for how to use the repository.

Creating a Hunspell object

from hunspell import Hunspell
h = Hunspell()

You now have a usable hunspell object that can make basic queries for you.

h.spell('test') # True

Spelling

It's a simple task to ask if a particular word is in the dictionary.

h.spell('correct') # True
h.spell('incorect') # False

This will only ever return True or False, and won't give suggestions about why it might be wrong. It also depends on your choice of dictionary.

Suggestions

If you want to get a suggestion from Hunspell, it can provide a corrected label given a basestring input.

h.suggest('incorect') # ('incorrect', 'correction', corrector', 'correct', 'injector')

The suggestions are in sorted order, where the lower the index the closer to the input string.

Suffix Match

h.suffix_suggest('do') # ('doing', 'doth', 'doer', 'doings', 'doers', 'doest')

Stemming

The module can also stem words, providing the stems for pluralization and other inflections.

h.stem('testers') # ('tester', 'test')
h.stem('saves') # ('save',)

Analyze

Like stemming but return morphological analysis of the input instead.

h.analyze('permanently') # (' st:permanent fl:Y',)

Dictionaries

You can also specify the language or dictionary you wish to use.

h = Hunspell('en_US') # Canadian English

By default you have the only en_US dictionaries available.

However you can download your own and point Hunspell to your custom dictionaries.

h = Hunspell('en_GB-large', hunspell_data_dir='/custom/dicts/dir')

Adding Dictionaries

You can also add new dictionaries at runtime by calling the add_dic method.

h.add_dic(os.path.join(PATH_TO, 'special.dic'))

Adding words

You can add individual words to a dictionary at runtime.

h.add('sillly')

Furthermore you can attach an affix to the word when doing this by providing a second argument

h.add('silllies', "is:plural")

Removing words

Much like adding, you can remove words.

h.remove(word)

Language Preferences

  • Google Style Guide
  • Object Oriented (with a few exceptions)

Known Workarounds

  • On Windows very long file paths, or paths saved in a different encoding than the system require special handling by Hunspell to load dictionary files. To circumvent this on Windows setups, either set system_encoding='UTF-8' in the Hunspell constructor or set the environment variable HUNSPELL_PATH_ENCODING=UTF-8. Then you must re-encode your hunspell_data_dir in UTF-8 by passing that argument name to the Hunspell constructor or setting the HUNSPELL_DATA environment variable. This is a restriction of Hunspell / Windows operations.

Author

Author(s): Tim Rodriguez, Matthew Seal, cdhigh

License

MIT

Project details


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

chunspell-2.0.4-pp310-pypy310_pp73-win_amd64.whl (600.3 kB view details)

Uploaded PyPy Windows x86-64

chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (937.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (910.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (822.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

chunspell-2.0.4-pp39-pypy39_pp73-win_amd64.whl (600.3 kB view details)

Uploaded PyPy Windows x86-64

chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (937.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (910.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (822.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

chunspell-2.0.4-pp38-pypy38_pp73-win_amd64.whl (600.2 kB view details)

Uploaded PyPy Windows x86-64

chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (938.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (910.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (823.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

chunspell-2.0.4-pp37-pypy37_pp73-win_amd64.whl (600.2 kB view details)

Uploaded PyPy Windows x86-64

chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (938.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (910.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp312-cp312-win_amd64.whl (606.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

chunspell-2.0.4-cp312-cp312-win32.whl (589.2 kB view details)

Uploaded CPython 3.12 Windows x86

chunspell-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

chunspell-2.0.4-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

chunspell-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

chunspell-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (949.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

chunspell-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp312-cp312-macosx_11_0_arm64.whl (830.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

chunspell-2.0.4-cp311-cp311-win_amd64.whl (606.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

chunspell-2.0.4-cp311-cp311-win32.whl (589.9 kB view details)

Uploaded CPython 3.11 Windows x86

chunspell-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

chunspell-2.0.4-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

chunspell-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

chunspell-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (931.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (951.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

chunspell-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (921.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp311-cp311-macosx_11_0_arm64.whl (829.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chunspell-2.0.4-cp310-cp310-win_amd64.whl (606.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

chunspell-2.0.4-cp310-cp310-win32.whl (590.2 kB view details)

Uploaded CPython 3.10 Windows x86

chunspell-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

chunspell-2.0.4-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

chunspell-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

chunspell-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (932.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (951.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

chunspell-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp310-cp310-macosx_11_0_arm64.whl (829.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chunspell-2.0.4-cp39-cp39-win_amd64.whl (607.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

chunspell-2.0.4-cp39-cp39-win32.whl (590.9 kB view details)

Uploaded CPython 3.9 Windows x86

chunspell-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

chunspell-2.0.4-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

chunspell-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

chunspell-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (933.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (952.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

chunspell-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp39-cp39-macosx_11_0_arm64.whl (830.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

chunspell-2.0.4-cp38-cp38-win_amd64.whl (607.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

chunspell-2.0.4-cp38-cp38-win32.whl (590.8 kB view details)

Uploaded CPython 3.8 Windows x86

chunspell-2.0.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

chunspell-2.0.4-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

chunspell-2.0.4-cp38-cp38-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

chunspell-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (933.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

chunspell-2.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (952.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

chunspell-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (923.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

chunspell-2.0.4-cp38-cp38-macosx_11_0_arm64.whl (830.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

Details for the file chunspell-2.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e557dd362088204b620ac4e4aac829a235db2617046fb7ee84c859f10bd9973f
MD5 42cb343079760d4dd0c0916cb5c6bf4e
BLAKE2b-256 0664074aa568112a8b6b8f6499ef243b3866bd4d72e505e886a2abeefaabb038

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3213ee862c773059b9649d1781bb631c80f6ea69fed9e7bbf5a46e8f07e8ea26
MD5 632b06a20b21155e85045194851a1ff6
BLAKE2b-256 12ad3d24761009013087a63960572a38fc7bf80e015a3ae1e01a663c920ba54f

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97b59fa055807d9e078fa03e0f07caeb8c6a39ab5ad992e54357d19281c27d6f
MD5 16f56953d292b72f8fe81e2460923431
BLAKE2b-256 4d5839b9b98583210a22aff4d8b10bdaa85a5507d273ddf7f48b5f1197ca155a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 966e7cf415b30474165256c979928fa4de3dd463ee4f6f0012bf6fcf678be8b3
MD5 301b29c15652cc3c165a3cccfda71d19
BLAKE2b-256 ac91dbadffecd291c2fe67954157f307fef83a311de673c6d14895f24509310c

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef0890c4be3182b23916ba2f47d6eb6be391c11b7aa929ad93e1a039cb732b50
MD5 2f97dc83a902c15e69ed6a7f35b64b9d
BLAKE2b-256 d2704fc879f5d55687fda5f992ecfd33bf61d0c7703b756a85bfe694eb2d7882

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c1baf5bdd632224403d4a82fcc847410c2525452ccc27089839b285863e7b2ea
MD5 701d2323218ba21eb9bff86691efd104
BLAKE2b-256 f8c4553a981d9aa0f9ba59d3ae0c0002fc6f8683b931c6d8a774de28d6fd1acb

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89346f07b58038b80ed177e1b1af6969d7c0f58b97790b08e42f9db3a15dcb48
MD5 b24e23cf594fd15abb168a66908a10bb
BLAKE2b-256 4946f455f3ba210f855a66e71a14e715024e662dbee6496a3e4c219de380aca2

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 313b86abbb94106126465ec5a2cf7d366c42a80babf31e5c03399549637b043b
MD5 11ea8f3688ff9db3398e4297aebec5e9
BLAKE2b-256 b2f5387849607456bc553c864673a098c95c8f95913bd138bc46592c567cc515

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d68b0416e4d3ca2821af0afbdd3b219daf0c1bcf2e9597454e0af144dea8a41
MD5 2471b04288b9f55fafb1888c06a22cc3
BLAKE2b-256 65796553c565b7b07a20f9b0513239a6ba70a079bd25609021c0d6ca7a774b44

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89a0ea6859a6a64426d5f7de76254d00ded8202991790d883528219757e284b4
MD5 bd3b299d9026fabefcab8496678ba5dc
BLAKE2b-256 9f931dbc8b7a0c64aa3c0ac601ddf3f63790e5885a19847a854c70f074d2e9aa

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f81cbd678c961cce3cfb10f5ebf95941d748b2365ce0e39067ddb8295f38923
MD5 c12590416ec2459b9fdfd1f4cd9ebcaf
BLAKE2b-256 581ad6864c22aa4ecb82d9ab7e65c8e07022ce742eb58ea73766dd9a1274af36

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fbb02ed9bc069a8f5da6e4d03e55ebb176b330d34751ddf6b250a374e6d0e48
MD5 b50878d555d777db6f2bc2236e211abc
BLAKE2b-256 36fcf1799db4cb11894f0d9bf083d4111a0aa939040a6d98e8f7787739cb9fe8

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ea82f10c519a56dd205e42385ab4fd6718a537dc3773647c029c61ec4dd7de7
MD5 391d9ab720590f9f0bd770d85fea7b20
BLAKE2b-256 82da1f3ff49a9a72e974d737f77a9d0724fe05770f9d9fce4b2f849d9683def7

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c9129511f9094effd28cbafcbc625f4744d772e54204fd23c01c5eded4d5dcd
MD5 9d1c5f24cf4daf802a63e2a14a234666
BLAKE2b-256 ed2290125b9c3b2ae4c0ac9a4d62f565a01ce734abc9139c3c75950416a11f25

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044390b4cab59985e8971e5bd3886c1261d70d62fb5eeac86838fd4df36658bd
MD5 1924ddb22f6232a7b2d6f44fca7e381d
BLAKE2b-256 3dd7464a4aa38132d42a83742f2b3d739d698074fbab37740a308b6985c26246

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 09ccf196109e5e78d189350caa1c3a3b5f56f77ad47751bb7a346f80618edc78
MD5 b46405d0be9a9c1e5cf28d11eb663ed4
BLAKE2b-256 deb0fc8cc552ce2c7542709337887e97dff25c81266c391b375469de7fda33b6

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a7f56db6b8b0ead4f9bfb34b925803f660a9193e2623a92cb51cc732e0286a1
MD5 f6b2683f1eca5d289623ae2d52be25a5
BLAKE2b-256 f84fcaa3eb09ba39f75c0e8f9f7091a323f2470990362985f21cee112627671a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0966f3092a7f3c01a88c807476444125f5cdbf062e21b98f5ee135e74419efa3
MD5 58c3e43834cf6725bb008da0cd208725
BLAKE2b-256 ac44721eaf594d59ec0b96125756c78f9af31058778cef04c5c24a52a0144923

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 605e3c3404e5f5d0b577f2f8ccdd60bb05cda9657dbd2ec11b4f0f6a68b358df
MD5 48e3452ca63636d43bf9dae2b02842a2
BLAKE2b-256 bf736dedcb83bdd8f2b2c9f36bb116788042ba325ae2519b55c38b60d8dceb97

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d26f9a99b2c2674f4fb5ade7fd738f207f5d15ced84485eb8b7455110ad697c
MD5 23a06c3b8dca62a9b02c2837f6e4e66c
BLAKE2b-256 0f6232bfac36f8c98e5bebf9f9cd756c9a334bcd21520561b020b68bdd9c260f

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 589.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 92e9339e98d963bfe045d1cef90a076be8f18d02c6e291bc96b7cf223a6f6fef
MD5 82a33f167ea13ef794a067e4a2df27a2
BLAKE2b-256 d8b1494a0ae5a485c56e7198b489a470023f40fb0e8220dbd4c77aa5881fa778

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb54adbadece19b9ee000a6bf5acd821a2fc5799125229002ad9495f7ed5c87b
MD5 05ceb3a1b2f7c1ba10cdad06d6e0c465
BLAKE2b-256 ed2650b74e3c27c488344776248157717416cf0b69a1879e4eb6058f53143f4b

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0bb70c67c04b6e6f3597f729763f344579447b7f845e78ae5e9ebbb6472b5e1
MD5 860fd9695a82657ed367bfdc7b99a799
BLAKE2b-256 ddc73b9f10cb4b94ece2cc59ec794c3be8de7f3c8361a85907dd83556b09476a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3879848e0ec8fa6e601bc8ef70885c724a1c6793977307853eb38ab3d314f2e
MD5 8939e1289bf37c9144dd283b594a8afb
BLAKE2b-256 fab49573289f15701b4dbb19c50a1d09edddf7b1825e32f25b23d1e52647d6f3

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1632bfa913f6c91f6fe90685e28ca98ba27472471153c81adb2a6de6e5ea5212
MD5 e9e94cdf6bcbc52be34e83e5091fcf4d
BLAKE2b-256 52ebd151c8c53c35ace4e3e92be988776dd3b892e85b0d34d08ef89f1b8efdf8

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4a1ccfb313faf36a25270a44bf68a612425b1a6f48064efba31b4d5e5aa325e
MD5 0acd686aeec2c51f9848ced82dbfd63f
BLAKE2b-256 5b81fc8322c5229f0013ce7b9f965f085e362526512f4fb7c1fad69c4ca42b2d

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a85088d91c433c2f4be4a435e9d2da341ba3461e5770630e7171ef20a39f6397
MD5 9f743dc6e229311ac482638ad8961143
BLAKE2b-256 1867031dcacc4e613b3dc7ff499400f828fb2eaef753869d501fbd041a713e1c

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38ac79aa68564b7e83a9dbef1f88c5c9d2c1e9ea769115a0fd3806c86e47df77
MD5 4aeb7618597c1db2db5ca90433dd46ec
BLAKE2b-256 207efd1665e199161d7c4dd533d0b9b3d0f6055f5b4245fa7be044b8ea466fec

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54601a1c54cc51ae2f4ecaf07a11c30d18d24b1a94cdc023de8b951ec0b7e98e
MD5 f3f6f43f4728d3d6d9467fbabf8ee761
BLAKE2b-256 8dab148e7027df54b2b04fe2084770bdd8ab8f31522a1418a513e7700a9b7438

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 589.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb9eaca62d15c047c1d8856d04de31d5d549fe28bb9ff5f75349bd74ba5447d7
MD5 5008b88f247904db23b2b1772b393701
BLAKE2b-256 e695bd3708e8633eeb7307c76a42cb8bc756977c0f58e6c5c2cd5f2cbda86440

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75e263517d7c3f6b97a1d398f76f98a6b5b831df1ff58a3e9ac75ca5fabcd2e5
MD5 5bc2053230cbc8cb232e8371a9155071
BLAKE2b-256 412c3ca6484635eb8487566f334cee10a696db8c30ab7efa81a4b01d425e95a4

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afcc9e9ef5d203bdca067e477fa7981f5359716ceacc3d6f1d1a7df2477928fe
MD5 63bcfa8f9293ff292c3b2a0882c2ab45
BLAKE2b-256 d1b7e45b522ce822938efe61b003c90a56f830b37a40cd92612d99542f1baa5f

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e1ac7ffade51f06ce7fbdd063c1e9f95102d6403cf2114d69454f47cb165fc9
MD5 e748d6d2af3f0c38bff7870cc14a07e8
BLAKE2b-256 d252961d6240f9c0d2319eeabcab8a0d300c13cd2037c2abfb46142f27e7a5e2

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4383d6e137449477cf0561466a403866527181e7df49a51a9d5ba3fbd05a6459
MD5 d24c03c6d2e9166894bccaadfaf91fcf
BLAKE2b-256 f6da103644044f41ea42157383e8cc8119c198dfbaf547df6e3a0ccfeb96a27a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 763f525d8d329c43f9036ff90c50d3c25cab29f7c956fafb656ba09324fc3c44
MD5 28041aa07334e283a3c95cc8d87e7ffc
BLAKE2b-256 589a735aad0dc46919f81ae917443217944625ada4373feee39569a7c31fd08e

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4708623361191eef02863fa0f9493258d3d99b0e02a9e22c55edcb36c8998c4c
MD5 b1cbc61e6b0b5f9fa560dbdc01a98b09
BLAKE2b-256 f8a31ce2e857006dc45b5f668024e1f9d8574f3edb91905d4bed9a3c34ee2ca3

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7215351fbdb07c48a181b30dfb38937c9faa4f705ecd7819e7823d955bc45813
MD5 6a34d48fa2924c18989c9eb3e1096786
BLAKE2b-256 0565c9d5a5d8ef8bcbc68d182122d212b17571f50eb5046d0b147d05019b3fa1

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2822115a305d3346f0aecc1c0253a169d2aac431f290072953b49a8651b8db7e
MD5 919bcf0404ebbed07e736050f4272c49
BLAKE2b-256 dc2f188e79f774c5ddc471d4793ce6604c35639216965995b5c0a813e892074e

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 590.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7766a2d36e0928f6e4764481902c08fc13443cc100f7206dc18c06cc526878c6
MD5 339746703a95b365def95b5c027b079a
BLAKE2b-256 9826d720438081eb7fcc93b5d685f3a1ae14d468d1e5036e8438400edafcf045

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f333ba3e88726befcbe0d96b1dc57148dace4cd636b8b9e8825b588bb1002633
MD5 b9ff63fbcb9fc8d49875766dd5a92701
BLAKE2b-256 f197e966bb907ad2c7e09656caa287e352a8d738ec5d10c8b01b3110aaaaf58a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97566af0ae83f1db2bb2e27967b3a61ea73fa71342ddb3134d4f16c85c0dfedd
MD5 d2507b2362c0527f3c4b6fe58c1af7ab
BLAKE2b-256 dfe09a7273d635c2a205c148fb65cec78a4e5a6fd1bcfcddb5547ab7f6dea794

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d13d95159937dfa2e18cf62dc04e544e9f2332679d90c41339bfa41cd4cddb02
MD5 3f3ca13b932e5f3b86be65dea4e0b045
BLAKE2b-256 ef3eb1e3f908ee09c2f730185856b2a080240cad785ed743ee3e1aaae15edd04

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 941bd4892004f83abd2cbd848fab1e32b447a88cd4e5ac36f6c659241300ef50
MD5 d7d3301c2196114d9958df5d84a8a02b
BLAKE2b-256 7ed2fe6f6b3471328b249366701d5f99cc5e0886435f77545bc68a6e11e081c4

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b76a17ce33d2c0ba09c97a1421f6448569ce7efcae25e53595a48466a9f4e017
MD5 09f507c7970b6e536fdf06591cbc400a
BLAKE2b-256 ac0b27d08ea10258ae70859e2c78f495da6544733bb96c55910319bf36bfc704

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31d73e187ad11abf690ba1d8e10a1de40916826632fc9ca22e019ece3aed4a1c
MD5 a6b5eb3acde881c59316084d0b901054
BLAKE2b-256 478600897d19070a687afa25fc6de7cf153b9411d420d9d16dcbb407f147ddff

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3f4a7905eabd9bd8e85c00db87942453af18b9ba30e020db5851a2f97b5ca36
MD5 b8bbe71f3f22a1c8a88fcd578c63ce7a
BLAKE2b-256 5315e431abb437b92c76517fd002e96e4529ac60be181dbb14bfc9f58684c56a

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 607.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 626bb281682f80bea51d0433a4e1e70963d921a0f61ef805dfa3683975e7bc1d
MD5 741a5439cf76412bb17d4b3f94fc0c53
BLAKE2b-256 e9e19948f826a51a218e18cf661fa5f1a537ba71132179f4ded77ce21eec5bdf

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 590.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 46c030e80deaeede58d9e5803451a2debedbc962f29e64056dc6fbd51594e7fb
MD5 be45f4246b1f0a77d8a80c1bdfceae0f
BLAKE2b-256 05bae0093bb42fc32c304049b50c8168f5fb406eaa44e2896fce25c80f1e82b6

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22561246382d90fdb09f406e24b5011e5550ca9ba729e3ce788f6f823ff88762
MD5 a5265a38ddf30a33faab00384b03993e
BLAKE2b-256 cfa185beff7e66029ada5bb7088253f9f6b495c5c098f191a7409b6c09f2d20d

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8aee7320c8a4d358f639a253e8277827ed4cc519793ae4cfb1eb48fef5c2ba5c
MD5 23a27595d93362d3cc38bfb509cbe5c2
BLAKE2b-256 1c6464ca1d34576107aa58b96b3f9d5761ef7a746878779c057963fa5dc7c9a1

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f31c8efd9a562f6658b99114ffa2681b7a227725d2b3a7ca4d1118b913c1a76d
MD5 1988ae059743b3b53c5542b3764c9e07
BLAKE2b-256 7d79c4585a37907c718f8fa0dfd1af24c26eefa171af127fa460250fb2d74aba

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84b5aab35295a990f3dddba66741efcccf7f0be23f65bb6e0e28b1eaa89774c4
MD5 2194a603f738cb8546abc9623acb8968
BLAKE2b-256 03b52cb1af3d5fc213a445e93e29fb1fbd3c0085a9091c452978f4d7dab94592

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3b71e2964432afdb81ffd743978d8b059b157d2f3e134363508814d636b589b
MD5 3aa04c0eb990875f55ecd4a28887b99d
BLAKE2b-256 faa48a176731cc3b43164dff5d424041878038847c7253fac57421dffe3ca1de

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b1437fd3ec1c5ed63ce8d0236c637f458791b9d1fce86064c7436571065ca91
MD5 9fcf6910fb07ef32d6b8d0820539d5e5
BLAKE2b-256 cc4e29d4b8998eef13dc07a21b8c03be52c22aac0c9d9890b02ae419f19a5b36

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c5604dccc657e5dd0a2f936bb17f76fec6a70a988d5714420f96ad2c501e1ed
MD5 da875f9f1367b1938c9677bd89c557e5
BLAKE2b-256 3788eb301bf2d7c1f29ffd9f09d3c1579e7fcef77aad2e3b33a681d6f1a168a6

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 607.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6022ce0c6d268f7a707f1a61316c38da077570cfa5f20256e8586c806b0530e2
MD5 66a86c9645882e2db103f00f593bb107
BLAKE2b-256 fa5ea75ff3874fe6e570bdfc7eeb455b5e235a79b278f23059d6c446aecbd980

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: chunspell-2.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 590.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d1ed238df52f31da52f083a7ae38f793af2593e583c2e007a644afe81b1c4ce
MD5 41e599f7d29894da923bc35c580173c2
BLAKE2b-256 da5297fc9748e4a34287f983ae631f75e6da1586af82d860dbd06069abf12fc5

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 111f8bfafb99083cab53b0c119f5ba0aa1c8c77c83ef5d9865f9c14c59c515f8
MD5 82cfd789b36d8dd2621e647b3044aaf4
BLAKE2b-256 371948cbfa4050364304b8e77a26e61671fb2fde330baff3a764b2d19d6656e2

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0912355ac115e462db4f6ec310bd869fde6075e61e9a6414f079b248780389a6
MD5 ad11953b380c1cebc8f4c675b7ac81e1
BLAKE2b-256 eb9fb803db45d65e0aba08dd39515b73b5ef1c2957ac0f121d96acc8bde829de

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2874671891de92a11734b5cc9412fac01da293b301856e23e877b54793f4a594
MD5 71e0fcaeeab4ba4266c7f69df917bcef
BLAKE2b-256 9df6673df6174b35972089c7d21753219f3ff505ec02ebfc1f9f387580bd3f44

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ddb82805d821069c2729d6be2541d915cff537a8f7955d06764a5cd6cb71365
MD5 d024ba87b482274b6aa4d0b767912b6c
BLAKE2b-256 239d6d48d49bd6cd6e383998355b57326060e9f30046d65bfd57581176dc925b

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a6f033e3a27ffba74e9660479170523c3cf578528a24e82bcdb548a037e7e9b
MD5 76c54473006dcd19cc1af3cfb1157883
BLAKE2b-256 37464051b354d9b68a0d6e97c8c348578ef8d429767d83ab06d3031497dcf8a5

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca5aef38c0285979607a2ad4dfa804041bf73dc1bfcc962f1b06fe49f6283a01
MD5 4147033991419aab884f3d415bca3bee
BLAKE2b-256 5380d130d9dcf20ba539ed87b527ed105317de563a3b6d7a7327d2459d1bf4a4

See more details on using hashes here.

File details

Details for the file chunspell-2.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chunspell-2.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ce74de25bf14f544e384da69f42c9d3ccbf8f782041bc40fed54c09d678f886
MD5 c0df2d241a935d115b3edfbdfcc608bc
BLAKE2b-256 a78d6d71bf3edd2c0147329a5e8f43c12163a97d1f44d0370861f2e37875ba39

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page