Skip to main content

Python bindings around Google Chromium's embedded compact language detection library (CLD2)

Project description

PYCLD2 - Python Bindings to CLD2

Python bindings for the Compact Langauge Detect 2 (CLD2).

Downloads Latest version Supported Python versions Development Status Download format Build status

This package contains forks of:

The goal of this project is to consolidate the upstream library with its bindings, so the user can pip install one package instead of two.

The LICENSE is the same as Chromium's LICENSE and is included in the LICENSE file for reference.

Installing

$ python -m pip install -U pycld2

Example

import pycld2 as cld2

isReliable, textBytesFound, details = cld2.detect(
    "а неправильный формат идентификатора дн назад"
)

print(isReliable)
# True
details[0]
# ('RUSSIAN', 'ru', 98, 404.0)

fr_en_Latn = """\
France is the largest country in Western Europe and the third-largest in Europe as a whole.
A accès aux chiens et aux frontaux qui lui ont été il peut consulter et modifier ses collections
et exporter Cet article concerne le pays européen aujourd’hui appelé République française.
Pour d’autres usages du nom France, Pour une aide rapide et effective, veuiller trouver votre aide
dans le menu ci-dessus.
Motoring events began soon after the construction of the first successful gasoline-fueled automobiles.
The quick brown fox jumped over the lazy dog."""

isReliable, textBytesFound, details, vectors = cld2.detect(
    fr_en_Latn, returnVectors=True
)
print(vectors)
# ((0, 94, 'ENGLISH', 'en'), (94, 329, 'FRENCH', 'fr'), (423, 139, 'ENGLISH', 'en'))

API

This package exports one function, detect(). See help(detect) for the full docstring.

The first parameter (utf8Bytes) is the text for which you want to detect language.

utf8Bytes may be either:

  • str (example: "¼ cup of flour")
  • bytes that have been encoded using UTF-8 (example: "¼ cup of flour".encode("utf-8"))

Bytes that are not UTF-8 encoded will raise a pycld2.error. For example, passing b"\xbc cup of flour" (which is "¼ cup of flour".encode("latin-1")) will raise.

All other parameters are optional:

Parameter Type/Default Use
utf8Bytes str or bytes* The text to detect language for.
isPlainText bool, default False If False, then the input is HTML and CLD will skip HTML tags, expand HTML entities, detect HTML <lang ...> tags, etc.
hintTopLevelDomain str E.g., 'id' boosts Indonesian.
hintLanguage str E.g., 'ITALIAN' or 'it' boosts Italian; see cld.LANGUAGES for all known languages.
hintLanguageHTTPHeaders str E.g., 'mi,en' boosts Maori and English.
hintEncoding str E.g, 'SJS' boosts Japanese; see cld.ENCODINGS for all known encodings.
returnVectors bool, default False If True, then the vectors indicating which language was detected in which byte range are returned in addition to details. The vectors are a sequence of (bytesOffset, bytesLength, languageName, languageCode), in order. bytesOffset is the start of the vector, bytesLength is the length of the vector. Note that there is some added CPU cost if this is True. (Approx. 2x performance hit.)
debugScoreAsQuads bool, default False Normally, several languages are detected solely by their Unicode script. Combined with appropritate lookup tables, this flag forces them instead to be detected via quadgrams. This can be a useful refinement when looking for meaningful text in these languages, instead of just character sets. The default tables do not support this use.
debugHTML bool, default False For each detection call, write an HTML file to stderr, showing the text chunks and their detected languages. See cld2/docs/InterpretingCLD2UnitTestOutput.pdf to interpret this output.
debugCR bool, default False In that HTML file, force a new line for each chunk.
debugVerbose bool, default False In that HTML file, show every lookup entry.
debugQuiet bool, default False In that HTML file, suppress most of the output detail.
debugEcho bool, default False Echo every input buffer to stderr.
bestEffort bool, default False If True, then allow low-quality results for short text, rather than forcing the result to "UNKNOWN_LANGUAGE". This may be of use for those desiring approximate results on short input text, but there is no claim that these result are very good.

*If bytes, must be UTF-8 encoded bytes.

Constants

This package exports these global constants:

Constant Description
pycld2.ENCODINGS list of the encoding names CLD recognizes (if you provide hintEncoding, it must be one of these names).
pycld2.LANGUAGES list of languages and their codes (if you provide hintLanguageCode, it must be one of the codes from these codes).
pycld2.EXTERNAL_LANGUAGES list of external languages and their codes.
pycld2.DETECTED_LANGUAGES list of all detectable languages.

What About CLD3?

Python bindings for CLD3 are available over here gcld3.

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

pycld2-0.42.tar.gz (41.4 MB view details)

Uploaded Source

Built Distributions

pycld2-0.42-cp313-cp313-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pycld2-0.42-cp313-cp313-win32.whl (4.7 MB view details)

Uploaded CPython 3.13Windows x86

pycld2-0.42-cp313-cp313-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pycld2-0.42-cp313-cp313-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pycld2-0.42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycld2-0.42-cp312-cp312-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pycld2-0.42-cp312-cp312-win32.whl (4.7 MB view details)

Uploaded CPython 3.12Windows x86

pycld2-0.42-cp312-cp312-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pycld2-0.42-cp312-cp312-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pycld2-0.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycld2-0.42-cp311-cp311-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.11Windows x86-64

pycld2-0.42-cp311-cp311-win32.whl (4.7 MB view details)

Uploaded CPython 3.11Windows x86

pycld2-0.42-cp311-cp311-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pycld2-0.42-cp311-cp311-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pycld2-0.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycld2-0.42-cp310-cp310-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.10Windows x86-64

pycld2-0.42-cp310-cp310-win32.whl (4.7 MB view details)

Uploaded CPython 3.10Windows x86

pycld2-0.42-cp310-cp310-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pycld2-0.42-cp310-cp310-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pycld2-0.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp310-cp310-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pycld2-0.42-cp39-cp39-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.9Windows x86-64

pycld2-0.42-cp39-cp39-win32.whl (4.7 MB view details)

Uploaded CPython 3.9Windows x86

pycld2-0.42-cp39-cp39-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pycld2-0.42-cp39-cp39-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pycld2-0.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pycld2-0.42-cp38-cp38-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.8Windows x86-64

pycld2-0.42-cp38-cp38-win32.whl (4.7 MB view details)

Uploaded CPython 3.8Windows x86

pycld2-0.42-cp38-cp38-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pycld2-0.42-cp38-cp38-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pycld2-0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pycld2-0.42-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp38-cp38-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pycld2-0.42-cp37-cp37m-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

pycld2-0.42-cp37-cp37m-win32.whl (4.7 MB view details)

Uploaded CPython 3.7mWindows x86

pycld2-0.42-cp37-cp37m-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pycld2-0.42-cp37-cp37m-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pycld2-0.42-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pycld2-0.42-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pycld2-0.42-cp36-cp36m-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

pycld2-0.42-cp36-cp36m-win32.whl (4.7 MB view details)

Uploaded CPython 3.6mWindows x86

pycld2-0.42-cp36-cp36m-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

pycld2-0.42-cp36-cp36m-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

pycld2-0.42-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pycld2-0.42-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file pycld2-0.42.tar.gz.

File metadata

  • Download URL: pycld2-0.42.tar.gz
  • Upload date:
  • Size: 41.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42.tar.gz
Algorithm Hash digest
SHA256 5188084c97f99e896cf464057c64f6b0f91f68d111182dceb5bcfe487d7f4c0f
MD5 8b72be68ddbf10a60e55180321e8bba7
BLAKE2b-256 8981d4d348e224ac0994234992c6d5fb3a78cc9b660337d5bd17c67fac1baf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42.tar.gz:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3570a6c2d9487fad4c7ac9d36e1537caca9456fccfd23ec1b87d0c7e6a544e5c
MD5 77443f141a8d49e6634d41ee592aa9ff
BLAKE2b-256 7b8048e21c1c93cd375c61d3ac41737b166152cd105e653b042c401cbbb2ee91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp313-cp313-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9820d363886177de1cc0886db9cd40629d61261d2896f755d682c71539b5ed5e
MD5 74e387851c7f5233efb3ebf0058befe5
BLAKE2b-256 a79a67e29dab3665ea7925d5d9160b8560c97a588c980c336e402957a06333e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 593465e6f79ddb3a4be0c43dda8f0400015124a0f3bfe5cd3741d8d2c371412d
MD5 7fcccddd1bd52ec98d067132e0e74649
BLAKE2b-256 f234de9d6a785c45b0679da5dd545df2f0b95e2011588eb74b08d819bb01c420

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8d6dedca968b3b64a0bb1e693f67cfed7fe7bd207ab13d4c5b9fd1a27ce9600
MD5 ed692c0c51a3279bbd8e29a713ac8b99
BLAKE2b-256 c1222583dff682a54366857dfee5d6f4478bedc03265cf0fff8ea610d17baece

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f939bfa74347ff931d2bfa7e19b06e1b21ecfcc93769e0ed2db2f36fc4252735
MD5 12c892568eab6aa4605e5dd5238727eb
BLAKE2b-256 292d649713e978b89407d60a88f5406e98bb347b572fefcb917b29a866e24af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a3676d4c9e258a74fdb6c94e7577c02a99974e41c8641e045a980ade64b818a
MD5 a47b70540659183ed4274d5b402ebbd6
BLAKE2b-256 dd9e90598c4d66e300d760666d93fa17af7946cc612d5ee64a828bb1ae636ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b84050081c85f0038369ee4db1bdddc5c8178773809aa55fb4e78b94a3a1c5
MD5 0fe0f2f4fa54ec7cbe3c511869833441
BLAKE2b-256 0aa9eb235acf4233d0f448b644dc58e955c304ae35fb646dee06b11a54375177

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea73aa77c5f1aa122bb9cfbc568699ca8a2182e0f49bc68c527ca78c62407841
MD5 d983b10e5d0c5d09bb7d00ad5ce8db9c
BLAKE2b-256 aa71cb20195b034bff0361677d1b8d95c923272dd361e8c41238640272f936de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp312-cp312-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 81592540410a185c1b01cc10bc200bbe686fa3d868f6f61aa76a93daa3c54d8f
MD5 7ba161443459769fde3644cc4efd328b
BLAKE2b-256 e0aaf123c1ab28147d9ad45cbe7b6a450d0237d340f77d006ce513cfc4071bcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e607ba47efd5d81a8ad3a2e5d31dfef35be73c0adfca1cc7f4f2fb795f3209d
MD5 5a562e73079bd568319c8f38d0bfec0f
BLAKE2b-256 d7174ad5c060829d959588d0c921a1a94779d611c0ed46017c2b2935ad72bc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f397d70aa46ad13d89db6912fbf3324afe0dc1685cd51db152f2613d7f76b9d
MD5 4d180231669e8ca8204cae42757d1979
BLAKE2b-256 bc719404ff796950c066042e0056f478870fc5fbbcef9e467431298910231cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dc9bb56e2c44b3c55857442b3975cca0398c0c31b6ad9138c6f6ab7a2a36f49
MD5 f1c1ab80cd631925615582e1fdbfeb8b
BLAKE2b-256 f3a6afd36659a679c41deabbd2493712ed7a15486c944410fa5d1e3de255fb72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4acb5e8873dd7c5985a7dd16c95a0096bb82adfac9303f92580f4b0cf5053f9
MD5 ccb6b194b3601a13a4c0329942dce27e
BLAKE2b-256 4cacb81bd376c56a3626eec59610b4fe79e5d599e6baf4f67b1ea05b87e098df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e09f7fd7d3543f08b8f5b1e22af7272bf19415ac9f1647ed805e16257a06ce77
MD5 e56f25fb5f9df798509b20f8828933c7
BLAKE2b-256 ef118f8a1f46e95c67b553bf90abd67dc676faf1d94478dc1bd78195ad8689e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dac35607cd16281a64a51b916d219063dd31361ab1e8cb4203b922d535442b22
MD5 233279a2b03bd9a20baee82827b5a584
BLAKE2b-256 b34a975427adf00d5d04e11571d7a84b7b1c0b2d27ed77585b7a1796eba52e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp311-cp311-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb8fa132026b08fc4a24b2b964ec318842b966c54d6ad8da84b30fccd5d694ec
MD5 10989cd1ed51fc28f81d8212cee872b5
BLAKE2b-256 501db93d4a3dac5c796bf537a880347a3c7307841a43138e2ea781ca956ce7cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e3b63ad5fafaa79f64cdf7078e9022b5184a98995a1b9c4533d27f41b3ecdb6
MD5 c134a56906e07cf9423aa5d39ce23b31
BLAKE2b-256 67610a4395a3eaa5aaf44cb14db5864067e1cd5533aef81209e008074c88b031

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4afd47e2bc0f4a17962dcf1422dd9b8549637bb3f6d133fb6fea2b127e64e451
MD5 702244722df45d2c335360a6e7da77b9
BLAKE2b-256 31c7e16dba31e731267c0e8573593ebc08b75c8bd08be8ccc404423f7273f841

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7092c00df1aa822b5acf2258330ecbe7cdc2ce3e8a4474ee8f23483462ebe83c
MD5 e3c87d479e21ecac80e6e2f261e23319
BLAKE2b-256 332edcd5d53ee6dcb7e25e05195b11cd37255eca9d73cc31fb733a5c6ae2a88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f0964ae7a022698bf7a282f77fda9523ff354c0deaed9e586fbda3bf88d218d
MD5 de945e4e97c5371a8da082696e84ded5
BLAKE2b-256 07101df66b13974e8d72ab4b1b3ec8a7ec6908b1de933d802d990a120e48d218

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a58b864bca55bc5c751ba5f2520aa1812d0f137b955cb8c057d72e1bff18eaa4
MD5 d2ba2ac48d8629d16d22ea049fa5061d
BLAKE2b-256 67d64ac8074a366ac355fc24242a0b2821c299f7c533f79cceb7c7855afdae26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8880f0495845e2646546f369cc2a6897f8c2d0974d4a9639d500fa10f7f28020
MD5 4bf3c96f751f0051ac5efc5c14461179
BLAKE2b-256 1471a02a2d57f169e80247fec316cf441915f2fde9d33a5972e33e65ae74e001

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp310-cp310-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 67b71c0448a0ce48ac60b5c2c1646afbada573f46f027a61bb399e56c1ad18d9
MD5 a3c3305b3cf220725f819efa55c3231b
BLAKE2b-256 8e300196b4e40fe1a8ff4129828370d500b66ea6f8e5cb7982553120a41382b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13f3dc267e02710dc8bf4a87a547e24768982a8f415921b54936a2925d45a31d
MD5 9b3d8950605388c645cb8aa1a0583ef0
BLAKE2b-256 56daa28226f6eb0cfd5368619469f62f3909f8b41f7ba43f78c5112f7319d860

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7073d0fe8803045286e96de2c48553f1de32c85ca765108eb379ab871bd4d6e2
MD5 d2606173a558c7e9e9628d226f83a489
BLAKE2b-256 c57a06f9ba1976fc0a7b398fafbb590b399d60fe6d643fc9d10c6170135ed02e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce384bb927415a60ef69ff07781491e5305b80d4ae995a1948d396b3b22f564c
MD5 8eddea56b82f3c44f756437ffc27ce2d
BLAKE2b-256 99e70a245c375b41ad3533e6b6110d9459124d7e7432dc8dcd4a29fdf8e284c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6e3460474f1de15932facc444dc2ba9d391fb97b11c0b48eeab15e58488b152
MD5 b9da5b6904effc33334d1cd6e5eb5aea
BLAKE2b-256 7d8712150b7d7c668e7b77252cb0cb5d891b43951f40215394e608a40b96ccd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0770612afeeab2e5ca72889553e8e7850b865f9b3ca7b2a783e2a43fb1792a26
MD5 42deada8175bb7551bc5fb8dfa7909ae
BLAKE2b-256 0af27f9b04717a9f2592b180d5e34b94e29b5e176ffca60effaa058b34d503af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e023d60a1ea00fe6a8efa520689f62e8a57cc5e3f0ca3eed012fee147dbac0eb
MD5 4d062898f534947233cd331565928106
BLAKE2b-256 c5437b3e5d7b27a8e3335e6d063121106655839d6726e9ae30e52ef19b6bd3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp39-cp39-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8953576586d41291a1e755a628159a057f9dda1a3496c9bf098c638e7046de09
MD5 081b4f9180bc6625199f684a80316fe4
BLAKE2b-256 cf6bc2c96094bab8c1dbc7a847fbd52589acb4591fb7f67453ef246ef9178613

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 647359cddd351a29b39c65be4db6559e17574c20c7a25d44f48ed87c80639d62
MD5 b1cbeba784fd0fdbc6503788ff80989d
BLAKE2b-256 740d36d20232061b9bfb63f3dbe48c661eba7c2ae0087cd441582704896a2948

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pycld2-0.42-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e7aabfdafe3ee4124ca758dbb357b7c3535e6cc704407f89b76626c17f66d5d
MD5 6b0984ab82a603c741e0de9ebfb253c9
BLAKE2b-256 88277bfd7a73b02c537a08a45c093ba15a667376e47dd978344f4c95ac5bc060

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b59e7fe448d3af3374b359fb1bfc9ba45e494517abdaee1d8f895d38cc1b3e88
MD5 89c07af5067b648abfb63a0bbec6e4c8
BLAKE2b-256 fa66e87b8a2d2ecb4b6f3a2e87cd0175c98bbd7590e6f1e70ae271f452bf28b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac5e8188c77bf168e8170a44453f852e49a62a1cee9ddeeafd48b754c86c5fd9
MD5 6c35bf692f054bd136b03f6ebe3420c7
BLAKE2b-256 41a75721a248296ce28c66f6300da2dbf15928866c3ec8db61491bf0dd5f3d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pycld2-0.42-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ade7b18ce928cfc88367ea829160166a41e4f67557df7a5ace3b2ab5dbbd04e6
MD5 345596c1dd657e0ac8b5986ccbd7a18e
BLAKE2b-256 75023984f4f302b47d15c5d9d2c0602e1f5c9a17e4d6401197ecfe6f69d1b3f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c5e62d18e285b4997548972d08470ba9cf776458d3057acbeb8f3e3338ca6463
MD5 278398fa7f762cdc7b9f821095958c90
BLAKE2b-256 caccdb3028cc5da861e67a63630e1ea34ba75c2fe9c0a51e1a70b1196cb3b587

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp38-cp38-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 12ba5201652e0ed97c90fe6d07c05ebb94835ca141ce41c3e80b2b803bb84ee8
MD5 32475fa5243d3ff5bef32abee137b517
BLAKE2b-256 77949a0918f58c45a9fc06057281f3e97e15dfd274277511bde4a5a3e67584e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09f48f4f24a6ee14802a4d5e85b145ffe626ddc39e6843eee06dc90aa11fb7f0
MD5 ced2d0600433215bb030dcd5b3208cb6
BLAKE2b-256 05edfbc8c955214c3bf7deeae1163dcde92e0f582c5d1518420f1ec4011fb65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pycld2-0.42-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00f7dccb76a49d98409b9d6ca6a85b63fee78c809271f8b448637b43233909ab
MD5 e09476ee6c5b60b6470571891a653ada
BLAKE2b-256 23eae769ddff766091b9a45d16b5ec68cf28c449e61503968ff038965ce2670c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fdd0f17b8715be8561a0581c717b4e75de39c70f1c8514a140c92954b29b55a
MD5 ffdf6aea0b200290baba0cc009f46967
BLAKE2b-256 cff1f53cc4633345e63102092185c73aa01177eb71e8d14af4e83b4fb8215af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1010f0c989d954893497a81f89f9332e83172f78e412ed6de76777d9a39a2316
MD5 22fe4098340901784e5825659bf9f146
BLAKE2b-256 9024b2188a63ae4aab8bec3c3329e9b255d11c253983dfd9cc86781a87ad200c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pycld2-0.42-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6a3aabdd55f2c9a5607f07c13c8bd5b961639c5cf9add52707fe292fb3aea32
MD5 bf688a52ac083826009ca8872517d7a9
BLAKE2b-256 5bf3e637b1c28807381235bc0d6835a920ad77b0694cca268dc30c03258c80fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ef01be6ab96bf4be53f3a1e71958ad16d968ffd67b4d24c85c3c1c879eaec69
MD5 0b81920159c57174d09f199463e9ecc2
BLAKE2b-256 11fe4da60a725c666cb3342eff7713db1c83068be287a8314fad98c30aee4c47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7ca4c99d8f56f89baced57c9d9ee98d26887e68531a91e88993eb772afa1eabe
MD5 0cec1ef0acb5e40e25cbe7d106b74622
BLAKE2b-256 14914fedd195dfc7597b4a9da75b6a7b5f13efde31b8331196663731ac2ffbaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0257c25cf70de54400bba26ab8660df70a88ffd3aaa1ec2ab9c4e72fda32b7a
MD5 0cd3d4323908def99cc8ccddc78ada5a
BLAKE2b-256 7b6103d534a898e21bbe13622a430c07d0cce1e442c7abd1db0624375e24fca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pycld2-0.42-cp37-cp37m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6770668c76df5acade9804d199678d54ae91eb746f1b4fe67b77a91a45e3b42
MD5 813a8d1c65d6e5f8596c970473e93b29
BLAKE2b-256 5577551b5a3620a2642b29bfc7ef9bbc181df9c272ce6c9d480cb155df095ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4de7c7e87ee034e9d56c3889a587ed296f0ec34317d778da9238c783cb9e5bce
MD5 78aac8a14fc0d0bcb09d9ae2df58b60c
BLAKE2b-256 ee90d19fd356f84e55ae571455174581ee9b5bcff15e5d1baec0a02f2ddd3d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bda1b84632097fa9f1f557ae16011b4a8622cafc4cbefb9da631ca655fe1efe
MD5 12573a6b371c61b143251a02a2b5bd5a
BLAKE2b-256 335433466333a0828e4f9c5e23722bb02c64bef898e1a209250c34c973e3b4c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pycld2-0.42-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f5b5b8d46229f785b5e36126a6d6c2820a6669d62f1c7675e52e4cf8ced2522b
MD5 1d308a7dac03946a18621c51f37885bb
BLAKE2b-256 5e860e0d04e4f07aeef293ff53d0cc3ee5dec6f44194b762212d3763ac15fd95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-win_amd64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pycld2-0.42-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bcb222909c21680128d8bb3bc79725f8482ec4924314f802ebff5880a3391664
MD5 2355c533728f5f051aeaba22aad4aa48
BLAKE2b-256 99f38898b40148a68a6692bb2baf9fea38e6b5d20d6b907c6709a7d495e7beca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-win32.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09c4088bb6b49092f807d06fa2567bcd6826c896745554cd6316c53cab5d01dc
MD5 cf7cf34bf53b41ccea00cba9370e207c
BLAKE2b-256 a2171a390c0a0efc7b486a4de99fbb77d4f45f056d86f09cae8e66e7177cf32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pycld2-0.42-cp36-cp36m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycld2-0.42-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 903f3aa91d36e47560e1deac95a87cd3be11c47980f009bb2276a3657971f6df
MD5 4c1cbe3ba687a3c66d78559c901b6ba8
BLAKE2b-256 733edaf8e884f409bcddace4c5e470fa14ded5ef21f392f35a6433d0e1df7728

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-musllinux_1_2_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c4a0e6fa28e716b7d68d55254f8831e41115aff940234d7cc5209b93b6bc5ea
MD5 2cfae661ce484b5b9f3d0c52e2c1e2f9
BLAKE2b-256 835eaf0e4398485d051b9fbc7acc790fbcef5a52a43cc689c32a08a8984506ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycld2-0.42-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycld2-0.42-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a3cdab457173a12c622b25d8235b3b1aac63f964fdc9e44e8bd2287a5bfb566
MD5 81229392b4311c026804b62496e25285
BLAKE2b-256 a2c78aff4d571c7dc55f9114eb14b2f92c856a830e19765c8320265c7165c67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycld2-0.42-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pythonpackage.yaml on aboSamoor/pycld2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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