Skip to main content

Web-compatible encoding and decoding library

Project description

endec

PyPI - Version PyPI - Python Version GitHub Workflow Status (with event) GitHub Workflow Status (with event)

Web-compatible encoding and decoding library

endec uses encoding_rs (which powers Firefox) under the hood.

Installation

Requires Python 3.8+

$ pip install endec

Examples

Codecs

Please refer to WHATWG Web Encoding Standard for available codecs.

Encode

import endec

utf8_bytes = endec.encode("こんにちは")
assert utf8_bytes == b"\xe3\x81\x93\xe3\x82\x93\xe3\x81\xab\xe3\x81\xa1\xe3\x81\xaf"

iso2022jp_bytes = endec.encode("㊤㊥㊦", "iso-2022-jp")
assert iso2022jp_bytes == b"\x1b$B-e-f-g\x1b(B"

"㊤㊥㊦".encode("iso-2022-jp")  # Standard Library `encode`
# UnicodeEncodeError: 'iso2022_jp' codec can't encode character '\u32a4' in position 0: illegal multibyte sequence

Decode

import endec

utf8_str = endec.decode(b"\xe3\x81\x93\xe3\x82\x93\xe3\x81\xab\xe3\x81\xa1\xe3\x81\xaf")
assert utf8_str == "こんにちは"

iso2022jp_str = endec.decode(b"\x1b$B-e-f-g\x1b(B", "iso-2022-jp")
assert iso2022jp_str == "㊤㊥㊦"

b"\x1b$B-e-f-g\x1b(B".decode("iso-2022-jp")  # Standard Library `decode`
# UnicodeDecodeError: 'iso2022_jp' codec can't decode bytes in position 3-4: illegal multibyte sequence

Error Handling

import endec
from endec.exceptions import EncodeError, DecodeError

try:
    invalid_encode = endec.encode("漢字", "ascii")
except EncodeError as exc:
    # endec.exceptions.EncodeError: encoding with 'windows-1252' codec failed
    raise exc

try:
    invalid_decode = endec.decode(b"\x42\xff\x42", "iso-2022-jp")
except DecodeError as exc:
    # endec.exceptions.DecodeError: decoding with 'ISO-2022-JP' codec failed
    raise exc

License

This project is licensed under the terms of the MIT license.

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

endec-0.1.3.tar.gz (10.9 kB view details)

Uploaded Source

Built Distributions

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (400.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (405.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (400.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.0 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (400.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.3-cp312-none-win_amd64.whl (268.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

endec-0.1.3-cp312-none-win32.whl (261.5 kB view details)

Uploaded CPython 3.12 Windows x86

endec-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

endec-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

endec-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (403.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

endec-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (365.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (366.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.3-cp311-none-win_amd64.whl (269.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.3-cp311-none-win32.whl (262.1 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

endec-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

endec-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

endec-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (404.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

endec-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (365.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (366.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.3-cp310-none-win_amd64.whl (269.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.3-cp310-none-win32.whl (262.1 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

endec-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

endec-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

endec-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (404.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

endec-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (365.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

endec-0.1.3-cp39-none-win_amd64.whl (269.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.3-cp39-none-win32.whl (262.2 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

endec-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (440.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

endec-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

endec-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (404.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

endec-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (365.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

endec-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl (366.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

endec-0.1.3-cp38-none-win_amd64.whl (269.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.3-cp38-none-win32.whl (261.8 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

endec-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (439.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

endec-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (403.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

endec-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

endec-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (404.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file endec-0.1.3.tar.gz.

File metadata

  • Download URL: endec-0.1.3.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3.tar.gz
Algorithm Hash digest
SHA256 af635b5ae1986c64197394b653dff2df895a1f6f9f29f2b2a08ff93b9a53d607
MD5 b5349881ac330d17e0af07e2f1bf60aa
BLAKE2b-256 9541ac3e9a61bab6b56163725022debe3bef2daeee09c32b13f11fb56d6f0533

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a4a10970d428de0c2bc1d23b80d88a10b3875d1a74aa92c2a72985b6bb1ac1
MD5 2158cdfe8cfe66f1e2af5e5078cf2ca1
BLAKE2b-256 2568baa8150cf86f006d36e2fe6cf9aedee28a4773c5e27276acc7228aa4a8c7

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee89ddc3abc716efb614e8679caeb2a73d7a0bbabe620dc81b7523d1b03cb1a
MD5 6fce03f87c86905decb469c70d6066f8
BLAKE2b-256 fcce0a9aee1d7b4973e850efe3a5081d00a2c4313c54e45ac9759bf9312485bf

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39a4b57a46d994892e35e9b74ffa05b9c0a9789d0692fc3cf8b0b89590a4ff5a
MD5 cafa30875e39bf8c16918c5b0e1cc420
BLAKE2b-256 06db1168fdcba75398d43ba751918baf1f808afa1f52a448987f767351fd411d

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c51155350820b5c27f3ba91713dbd1428753ec44cb4247bdeaadb53d0a2b5ec
MD5 29cfdeec0bf9b9c3da446090fdba8473
BLAKE2b-256 6c430fca578f3210dcc28d9ff07bf618ca8b71d4adf0ae7c5a21279ba6b9c941

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89e00e5576f7a7c08482d875b5daf584322afa3e59e7842efc8cb26bcc20d25b
MD5 dafe909b14a10572a37bb3c46ac15686
BLAKE2b-256 b2bc1e7290e6f5fabe022ade90550b2601f39d3adcf01aa9ad28c77ecc22ffd0

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d37c818f1431a7fdf2943d22e2bee014f7f2cf63f151e82061a3f02a86efb8aa
MD5 96ff6e97352f1985dc1b2c80c10c475e
BLAKE2b-256 0901bc355eef0f7ecd9d7735ea1264e99825e5a00ca86ac49856b7b395b1256d

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 454b3ff782a8948150fb2a955c6088a8ffea4cb67ba1fa09c4cbf89da3564e75
MD5 3fbec97733281a4b01287a3275107b1d
BLAKE2b-256 5e32a7a20226349c32fe28f7dd3df129e869a1a671d3da663ee5a6c63641b494

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6927df3dfeb40eaea29e08b31b75a944b4c3d72b9abdb650edb15905af26877
MD5 20005e26b7fa29812186220981b5b5ea
BLAKE2b-256 279daa88804d0ab7d27ae4f31e096ab273302e179df5493876075c9e3d2b7bd2

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f52b4242330cef239f6973e593b3b0edd6d4c7423703f6be1b1fa9391d7f115a
MD5 822ca6c865a8c7dc8932b8ec33359eb2
BLAKE2b-256 8a0e2ec4e9196dea00c91465cd20e06a77f13b2be08f917420dbf43d37eefa7b

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a988302a6b296297df16799116cecc3972585a8203ef5fad0c754d63022a541
MD5 45284f1062954d6db87a7171bb1d62a2
BLAKE2b-256 f066fb1c4cfed5c323cb5e6498078ed781905630c1262404ad5a177cc8a4f353

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4905ce6fe6669b9cd1ba766b221e93cbe96dd532392e643662b2ca94ac9e9bfc
MD5 b57b1825490b47782dfac2c198981cc5
BLAKE2b-256 ee56be505ba8590156933a859a6fb2a315f253b72359a931808f500e258d707d

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e001046a56953db099d2d3e832bde1571b0fb550ff1fccfaa1b68104324c77e
MD5 1d7804be39dadb094408e27eb5353899
BLAKE2b-256 f9b73a87e27b80832e10262de38763835fa38c1b539e90e613d519e391590c21

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3090917616742707be7cdb8cdfb10cf1a51bcb09d30192cd321ef1913bdedc2
MD5 959c7aedf8eeb8855053fea91729b423
BLAKE2b-256 45779c61d7e58e4cbedc0ce998fbb6fc091bb0c1f0ac5843a86f1ea01a24b344

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 682e6191298e328ff88ae76787cae4732bdd3f232f0ffab0264d1499fe693b66
MD5 ec3c9241924f3e4732d26f660554e896
BLAKE2b-256 c90ebed5b630a3a5da085baeb59676dd3f29f806d664b9ab91acd2eea005d4af

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc2edb7508389edd97c7273459ee960df8934c475e55bdc61492266c2313e447
MD5 ac35ddf249aae5992da976f07dfc0447
BLAKE2b-256 922fd7974464b47445040559d603bcc23afbf7e1c6a4f17fd8b57de20bacc4eb

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af550c43f993fa40fc8ab18be03976b11e5a577a34b3de4f3bfb4dd178287481
MD5 85b443b9e38666fdd04e74bbafbcda1b
BLAKE2b-256 48f74d1faf247d20251e62950ed750a32f8e7d9ec2a552172cf7d7d31033ce70

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b32d577b8bbae0c2b8e92072721c1035838b87c08ab41111dda4a988d477b36b
MD5 70dc7f50f95f21081ec86ff62d95158b
BLAKE2b-256 c36234d89d7abd40b295705ca50dbfd372bba7bb9d5f14287d59a0edaaf2cedb

See more details on using hashes here.

File details

Details for the file endec-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecea924e6d1074c2e6d8f3b708610ef1ccf591710d98a5ed34c009ceb545b330
MD5 fa2103d8413ab1883edb3d6fbfe9e609
BLAKE2b-256 d64553b8122bae2004fe42e9535d1718f58c7535fcbd6cbe75e50fa4a9746add

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-none-win_amd64.whl.

File metadata

  • Download URL: endec-0.1.3-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 268.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 40567a502cb8dec94f43ee3be60298476d35c68ee6a098f46fc5908fcfe819ab
MD5 a7601222514b6d35a85f5665b0d867da
BLAKE2b-256 a280679a6298af083b3bc702a9095f71927347cb6acc7ccfe5f93d2cedaec526

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-none-win32.whl.

File metadata

  • Download URL: endec-0.1.3-cp312-none-win32.whl
  • Upload date:
  • Size: 261.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c77056d24af64d653cf951e5adb76a84a169b6c8348f59b27d773363754a6afc
MD5 506d91ee7d546f8c7c9569da4e7b18dc
BLAKE2b-256 29c07d1f15d3f4812e6fd2d360cb8618e963947b242bf08aac850805e62a4704

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa62c0dce8223ddb231c89d35fcbcc549b3a9b4dcd37cbe423c5c8b20767ebd7
MD5 3d1e5fb10b6b781d87fdee10e8c1db58
BLAKE2b-256 d8f01c5be07b319f57d55c956d19948807e3a04d3b888e3e9fc0c882cd6645da

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c30fec538dd6f9abca03e6a518c9c90f04fbefb3fd6541f439a2a17673eea42
MD5 0a3dad45bcf41655b16f921c133a43ec
BLAKE2b-256 e14b2ec081227a1d64a203cc8a08931b6f7ec9b5141f3ea0970272da23f382be

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e5af73a4138d38b3a96a072c5f6d15aad12b17da1ab670fd37f874d8e3862a4
MD5 45857d6839de357bacb6965cac7db523
BLAKE2b-256 a8703a24c6788330c56a07aa40a931763241c8a7f210232577d3a123ef7c5645

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26f0aadd4907fda12df0a850935a6d96cceaad969705db52d462035754dbbb63
MD5 a54bee26433abc4c593f7e2e08e9cd80
BLAKE2b-256 c8429929b748ee612e020f11cef77dbf4de1316188a381af26e494e83de83f05

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 958fb5e00f21487b217f484d779ebbe6ef81d5d745fd7986c0d0a3a4d9361226
MD5 e54d588e89321a82b1e2e74c4f903ef6
BLAKE2b-256 f2a192825ffeea835991aa322a6c45a7f7aad3500c9659c87102d9f23fe4ad9b

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e06bf39da6e3d1e97e7bf3291db4eeb467a04a1cbd35b13e772c6a1f42e1944
MD5 3fc4c95f1dd5f2577bba8934c1adb71f
BLAKE2b-256 ed1980c477bc158baf1f26ef18326ee9dcebd55c62d91f0dc75ef2a0d61ba217

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5241aa3a4b1684b39c034dbdae8a5061416023b09ac8fe61be3c5768b72b574a
MD5 411ca62f536f036da3f00ff923ab0799
BLAKE2b-256 f81267af03970ca9e60fd62c651239380f57b33cde4bff7375151613356f64f9

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 982afb9dba317f02aed7e99f72bae2caff95313b806433b2b1c5664ebe8847b6
MD5 3c34924b69e6c42569f5f88efa2b6874
BLAKE2b-256 900dc307cf55673d3bcf259756338e3dface8fcd960f9ff06792a24f534a8615

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-none-win_amd64.whl.

File metadata

  • Download URL: endec-0.1.3-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 269.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b26637aac5c11342719e94dc5323d9d32af47ede96bada1e7849fb3168d81fb8
MD5 08a87911176ae10388a01b83450c3ac9
BLAKE2b-256 f990fffcac7bf24611846a545a16f073abe0a6b4587ee2a735d7022257d67b2f

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-none-win32.whl.

File metadata

  • Download URL: endec-0.1.3-cp311-none-win32.whl
  • Upload date:
  • Size: 262.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a9df5f6e16015238477391acff4be49fe5753f9ba58c71b4e09b0658ad488203
MD5 cc485773cfd163d26523f3fb91bb1a8c
BLAKE2b-256 b136359f192a2409ee55e800e538f9697912a77fa0941628fcfdc5e82ede875a

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c37570231c519cf439868ad61bd82e1b4b893975a2303eeed26ea60294760ef7
MD5 061ef236afa65fe7cfde723b8e6ba01c
BLAKE2b-256 f4e3e4770f4bfaf52eae11dcc948b81d74caa34bb6ff00364a5d2e6dbeb5d7dc

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c14d26e716517d68bc086d0b31cdb614281229089a1ccb2f5f0b1d7276f191bd
MD5 62c75891f1ac14cef15b5cae2f52f450
BLAKE2b-256 a830ba96c1ea18e2efc346aaa2f0f958e504952b3c9b7301c9a1368a7a29b6f5

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6312fa86b76c0fc251f90458115927311ef775cdfab930ff4dae811632bc8c5
MD5 68a6f2a804e5a691009cfa947d2fb82f
BLAKE2b-256 d9c832e5734b29865e9f6e94bdd49f58574e8a2a19fb19acd5850be04bc88653

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8de2b148d6223f3636da02aed657962e8aa15e8808138d0c0077d24edbc61a1
MD5 a89bba63531ebf244905850de1528651
BLAKE2b-256 07f4ee32e37f4e406303670fa54ac6cb8071cffa548e26ad8c061d6e000bd660

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 692b1aa75464fd20236f513864bedd1dcb7b7ffc13195319d8722511d6139a33
MD5 a605e3fc88c08650d967a879eccd36d7
BLAKE2b-256 8c67c9f6be6fa402cb38e609b7bd42bdb26143daed74650d4c493c7441f077e1

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d5362ecd2ad45ab872757c18c18f59a8dbf872521e83456a5dd0b89d60ac71a
MD5 1216599e112fd3b7cc1d3b97cacc9db9
BLAKE2b-256 081990c28248153272572456f2ed4a093a2f5b08c891305965a87493c9752471

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14d7d75e76464d990db676eef9db19438db96b91b8c308cb3866199f6348b02b
MD5 e66811a14113e822e520812f149237d9
BLAKE2b-256 1406bd1ecdc2397cb61f23dbb219237fc73701ecf57733ffbe2330139b671686

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47a008d229111d0272e860c914e88060beeccd89756b144951878364b8ef2857
MD5 2dcc22be6685152a0aaf63e056b263ca
BLAKE2b-256 5ebc0abcbab5d554b6e8dcd8c9ae7b3640bdbb1cf4d96919098444acdc5c1cc1

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-none-win_amd64.whl.

File metadata

  • Download URL: endec-0.1.3-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 269.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 253eefd29a2aeddd5174368eb9b78263ddfee0facd58e583df23dceb45cb11ed
MD5 860811354dd282cf96c39274da45c283
BLAKE2b-256 c251529baf786ec9b41df9e14a4facc0789355613759b5513444465b435899a6

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-none-win32.whl.

File metadata

  • Download URL: endec-0.1.3-cp310-none-win32.whl
  • Upload date:
  • Size: 262.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 02b5c4067a83257ed7216b4ffe9c9addb22d851b19c8c57aa1447dcdd51021b8
MD5 291ee79dec9d05687a2a9e19a0ec1ba0
BLAKE2b-256 55d39fdb56c5aeead5d65642ab45da40cd0f604bbbafc1281310e64dc82d1193

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 286d12ecdffaa771e3e3d84d8e996595000bfbdeed026d3433b330f6e061dec3
MD5 6a229a60659ea8024a7d1c5ce1b1a25c
BLAKE2b-256 1790ed4ff9443b22523b399f41c883cc2e96e29e84f94bb6157d7e752f02da95

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 337619be4a28c97d03e4d605ab0442c91b2adbc5b827be44b7f351c8682d1c9c
MD5 040344c9d156447f8695ed90911bb311
BLAKE2b-256 063d7ac0c15ea28529178f1405eb6d91c89484e0ad425ad5f26e89b1170014d2

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6976704da2bfc039ff00307f3976697d1f5370ba8ac31ef7cc3349217b021256
MD5 4a9c46d87c276564a0cfc23d734cd897
BLAKE2b-256 6742874563e8ebff048e12367fd614c93946147a2142caee6f744b3fecae0763

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3635d2bdf9f3a3dc806748baa0c1bd6ceb7af97c9e9377bad50be531607a44bb
MD5 9996096736abb0edf569e3d1caad5a48
BLAKE2b-256 dc035fc31eed26ab21d5a2b8a020c5410f142e9db0c8a34c6f016f0cc5dee646

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2aed6c5438a44fee731e9f04993b2a7a6b9bcbdb6650233f7a4df2fb04421d9
MD5 e6c1516dd80169e0728962fa940dfae0
BLAKE2b-256 149bb803afe4fc8b1ea92a1097a44b1b2238c336aca3d02d6aae2913418a5413

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ae7e019d6fb03c70a92ae90a2b5cbca120e9b42167d7f3d02afc5c16ea8507c
MD5 ef9609244b2ba3cefba6a856e58de368
BLAKE2b-256 04aae6c0f3cdae204bd6d28e3bc6aef36b40bbce57ad8277124e8eab22c89ba3

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d925a5138b4d8fc296ff18315ddfc03137068cd3b05f0698fe6ecc6d58dac5f5
MD5 084f0fd6907254f6ef285cc8bffdaeb4
BLAKE2b-256 90631bb787953d3133affb7d3512105fec171f9a8c0fe5f16eb39b2388955822

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5baf8932611163f2824f14f97ff1425eda45b7e6673bbb42d04a93bf7b34b258
MD5 e31a7cc315cfdb6c5f992522784bc682
BLAKE2b-256 f28cc401b83996e25baf239159efa9d8fdf7d73a6a88168f6f6c2427b2b7c2b8

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-none-win_amd64.whl.

File metadata

  • Download URL: endec-0.1.3-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 269.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 dbb6bd02dec69b4febcf7f187f270cabaf77c727a7f9a183f7dae9c5382d664d
MD5 a821334e1146252e17ffb9e0d5431daf
BLAKE2b-256 69cd99584c0177b9d702f05a3836637c208707c87be76521d4ff2bc1ab0db6bd

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-none-win32.whl.

File metadata

  • Download URL: endec-0.1.3-cp39-none-win32.whl
  • Upload date:
  • Size: 262.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4cf759da6b39bee16b62844b8bd35b2a3022e4b7f9cf790c61f3f4a4a7701a16
MD5 5a7966c8f59c5c306d5833a1b35c2874
BLAKE2b-256 970c89bff26db3f289d490c32a65e3dd381ca57340b5ddeccebf7860143a4c8e

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2732eeb97103f54d67c7f1db8ace0a7f6b686722a7e71ea637758c1b957410c
MD5 3f1c4defdfec1f9d854c1ac51c4cb7a7
BLAKE2b-256 59adcdb43e6ab9973c75967277b5f0432fab80dcce7e35f051c5d873b7e9b37f

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82a6262635ee8e6f39c630cb38a4bc1701064d9dd5257c8e456968d26ad0bcbd
MD5 c758323b720030c5f346c1b62307191f
BLAKE2b-256 a4f6669a0d329cd799842a1297569618b1b82c79ceeaec2f0983b84eb399cf31

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eabc3052b80c1bb91da9fb8b184702b16121f3b479a842e5f4865dd007a1b89c
MD5 ad11f4a93fd5b49aa85a0cda7e64d154
BLAKE2b-256 4d56c003ef7b51a343688d18796f664eadf890e62043247664ed5d25d2bbd6ee

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f15c2f25643b1fd0a29e63f8dbaab90b0b969c0a15f9a9d9c42fa3e8ddd2f3b
MD5 9ed9a1cd32af2f64e32e0ec209c7fc10
BLAKE2b-256 00a91acb99471de0fae26a32a1e09df10d87c47887d84480cc717a06f295e36c

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 833ba7527cb75a88f31a7353fb37a000e9bc8290858c5e1007d035bf25956fe5
MD5 31871a3171848aa8c47cd72d37ba8c1b
BLAKE2b-256 02c82e2d2db1f8f43a9b7eef53728c433e1d06cae872e353a155ff23d3e811e5

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6216b194242ab4527f4f2b4b1461668a4c1f5dcc9720179651290e49dc989b32
MD5 5b6693e93e01e83440890fcfba00a5e2
BLAKE2b-256 30520d51d95593b6838a0977aff1e6b168fe0fa56a15b9db78e85af95edc103d

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53d72ac5aa5c92612a9212ff6b233ac85ef3a0ac2a605ffda4356baf350d09f9
MD5 079713507155243f6bebfd91b39e9467
BLAKE2b-256 b9e726f0974cb3351b014f11c3a954a6c619d8fd46baa8b6cd7aa310d52e2f28

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 594a4527ddc902d3b65418430cfd913713d03ebec21a37a7c4f2767af08b07a0
MD5 d2ca0b1800855321a3051e5ec89afd9a
BLAKE2b-256 870f2b410947353db9716fa629921d4e959a3d4ccc65a6582b4dbb8123f68694

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-none-win_amd64.whl.

File metadata

  • Download URL: endec-0.1.3-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 269.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 26d3e09541e3ff6bdcc2a6f901157437fc1abd4506add7a2d0437d07f32d5a6e
MD5 fead9e4403e620185b5963094cc6fc03
BLAKE2b-256 4bde08943a30fdd2e3b0a2902e827ee4d1317640f5b1ddeddd1a465af380ba38

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-none-win32.whl.

File metadata

  • Download URL: endec-0.1.3-cp38-none-win32.whl
  • Upload date:
  • Size: 261.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for endec-0.1.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3d636d1c08069c6ddaa9ba050059cb33f634507d219487fb9ed9d2c22de241e4
MD5 dbc2c990bda0f46d4350172b247b56de
BLAKE2b-256 a037a6cf8c441826b3c03b53ddff40cfc61229f2e2a5d2f868f3460abf150f7b

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd230263282338e9abaf1e0776046fb942060c423714e8d0fe643357c99e869
MD5 a2c642933415e34d4eaa3368a4c0b44f
BLAKE2b-256 0fda4dffaa22dab0e9c9a8e02a987bb6ec760766fd1787a17dfefaf34ce31560

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 627e5174458143be7791064a9f7306512648d9c48e4e530051b986b6b56f3bee
MD5 e161156107d721ddbc7de8c36b9ae5c9
BLAKE2b-256 9383ac19e681abee98cebc8443f50268e6d9debb2dc961350870872796a16ae3

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e12e9ffaa69c32c96b4bdd37081d22e8d0bdc92ae7296812409763eda3c4f0ce
MD5 56329c2c519848bcb942511f22e067c0
BLAKE2b-256 47ca67f8bbe43600a75d96a5e4e994bed78cf53f11ad8328cf64406f0b90a896

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf4b2c0fdbb47d3118c1c2f68fc782546d1e0d99d44a3a7ea594047b10db6af9
MD5 a06349cac858302f937ad4b2ff4d29b9
BLAKE2b-256 0d0cfc00ecd37ae0eee1b55b445e758bc69dd5c5475ec559c0a8b68f2f225bbe

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8aacd15802abbff2bf5a3a142256aea948a68208793a663454bb11a2847c5941
MD5 766b70a4b43f305d94534207e9661590
BLAKE2b-256 f3b0dd6366a5f25b7a410102688e33e8b9f5c9470a5bc17b5ceffd5ea7ebfd2c

See more details on using hashes here.

File details

Details for the file endec-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f53956a959cffa9de796031f846c635a0c6b5dab57b1e5f28985cdf594ea4ed8
MD5 fbdd8ecc65467c76441b644f64ab8ce9
BLAKE2b-256 6f009e7975bd829be0141f8262e37aac6e509aff182d6fa5debf518f1c851a3d

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