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.1.tar.gz (11.8 kB view details)

Uploaded Source

Built Distributions

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.1-cp312-none-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

endec-0.1.1-cp312-none-win32.whl (273.6 kB view details)

Uploaded CPython 3.12 Windows x86

endec-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

endec-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

endec-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

endec-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (380.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (389.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.1-cp311-none-win_amd64.whl (277.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.1-cp311-none-win32.whl (271.5 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

endec-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

endec-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

endec-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

endec-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (380.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (390.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.1-cp310-none-win_amd64.whl (277.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.1-cp310-none-win32.whl (271.6 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

endec-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

endec-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

endec-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

endec-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (380.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (390.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

endec-0.1.1-cp39-none-win_amd64.whl (277.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.1-cp39-none-win32.whl (273.4 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

endec-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

endec-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

endec-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

endec-0.1.1-cp38-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.1-cp38-none-win32.whl (271.6 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

endec-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

endec-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

endec-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

endec-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b11ff5a45b36ee626f2dd7c1546943b70186b77499bb197e5e5f99236f4ddca8
MD5 baca113fc7358b2c76a29ff2f897c8be
BLAKE2b-256 ba0a4a3b4976f78174df6521a6969411859592533843ac78f5c3b2765166fa58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1df2e1e66a98de93a5ceb1b23cba38d33c35b6d526724dbaa2a224cec893b421
MD5 3cf72a8931b71c3fd7bec2a4adb98dbd
BLAKE2b-256 54785abb0fe8b57e9580b4856c82621c913415f8261a98dece626679bde6f3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0c6f2bcfc939a901e85c45ceee30be3883f66852d88522c2446edf3aea77e7f
MD5 f7a655f75af69540b50a3ff30c259dbc
BLAKE2b-256 5287724d828be88efb5303267b7516948d243222458419ede8587f411db97051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7a7fd83f41b6ebd9d6b12702256538fe4a9f03da0c2c6195b513e26bba5a599
MD5 f7068ea61278d5c9a613dceeb9696ff0
BLAKE2b-256 b4e280277c189e9cdf82d1e8122abfea6c760fbeb8e5853c67d43e4739e5f965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc580e733a0f920464786816010f897d0d8510dc4b2aa6b7d1bfff2464e03e05
MD5 e468be0f0f4fbb3e75636f1ac7835184
BLAKE2b-256 72541612bbd67c87e1fb0280f758016c23a0b4307ac8edb0e0da7e17081bc8c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a228bab19025d9af6e079099e469cae1d26512f4e15eb1b8a5530dd1edf9145
MD5 d1cd6eef7b3fdb5d2d8086a889e9e49a
BLAKE2b-256 b02751f144caef5c54e9f64d8288363faff5d7e0fbe1a0e397d65115d3e93772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88b69387b119a89d851c4072a4a53e4a66f1a8d8fafa00f74838f17d58e32227
MD5 a8c8f9484599b546e670ceb2d52a5a05
BLAKE2b-256 7bd6c09d1137f73366f42c98f287d0a35f92f0860e805540128d82916d971763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0de816898a395758f6a9d4c6b4c93b6ffd4701d0dedf6aeaeca81668e1a4854f
MD5 22b27b56514694561710b67413e69f26
BLAKE2b-256 05ca456e0242808cc98f4cc39e19b13a604675e4a5cd018b99529fefad206522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e878321ddb30779ffe1e19db39824ee1cdf5447f90082259ee65f67da344254c
MD5 91d0e599b58aa10d43950726710f151f
BLAKE2b-256 54a5b6bf1c10c7c41a0a22affb85c54e2a04bf7fec41c83516bdd118ee85b283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42fc384d441c88e7b163845c0efa8b2504da48eebaaa590f5a1fd8d2c8ee15a6
MD5 fe99988bced7ada7913f706ca411351f
BLAKE2b-256 19e140dbb21a0b081e025aafea0c3ec07d8f75776a168c0c11ef6903101e8b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98717a44097c6b73ca3c886374dd78ed13bade6e55f09f88859d99f9fdf49a91
MD5 c5fac2d646c98511cf79ea332ba116ef
BLAKE2b-256 ab7fcff00c8137a28ca0582c6e956bb288012c9b4c6cba2c3e0f77c91d2da7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d548eb1786d2b00fca44d1fca5862c7d4dd1110e64cc11db19fd3aa8d79f5dc
MD5 98fc1e1c4d8d2515c1aa6c2e7104b49f
BLAKE2b-256 49986cd08daa42ab47564de6bc570b235132c2654f6c27831133d6ff3c109cb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19a4ebd995adb99f1c06af02d71524ec776067a34ad29fcad6e0f155badc7103
MD5 f9f2cc81e47413ba17dcc5032ca2224d
BLAKE2b-256 ed1714aac98af3a4191be958ca05daefb840e69fef1a0e37924299cfe6c2edba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3561e3cf5f1dc31dfb161906f41d453f73f971eda3b2e466c8ae9cb8f54239d7
MD5 1c0faf5d0c3127b11e12aeb5eb467b01
BLAKE2b-256 cc78ef8377673ed2771b292427fbac66441561ca97f2d7b8aa59a769b16a89c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 646abed3e7af047b7ad89f0ada2eac2573ecbd072da88cc66cdaa42fa06fa452
MD5 8b37d85d78658574f9642ec0053f3ceb
BLAKE2b-256 0586473af5f4a3d0ae829740af5d206c69c3b6245051473afba4349fd0a54c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c24b13c8dc9365e761931653456593cb2f649142470334e1fb652026e382807
MD5 13c250963ded0e2596b8cf13456a605d
BLAKE2b-256 6923a8ea1563d0676fadc2de6462eb9cbcdda933514bf392bb1b8a70b709e2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79c1624f007c4b212f03c5919c85d0b7bcc193a1f423c6d9f3aaeee953fa35a3
MD5 44696e0d56cce62b84ec9304ce40e0aa
BLAKE2b-256 26e7a3db3462843450395ca1ec31c8058dc64d995f84b437b0e74488204e69bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbc859ab757c0ec4e17819940e1a95b593b9decc34946588dfd56ea5648c72a2
MD5 f88d19c949faff3597b2239663f0f859
BLAKE2b-256 1f4a85b5661035f17789b1f48524f1c071ca04326afd42b41310bb9f66eab6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9300c31297e816d0317777243ad0d58f2f049372faedbc421b393793908cd002
MD5 986187ce2b77290f3cac74032a4e3c08
BLAKE2b-256 57289b0c147a32c54f2247f1ada3abc5cccd6a3b63aeefe1a4ca9c9d18c0dc41

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 dfa3a2bd642072c9b11345dd98832b2dd32fa6d30abd6380a7e31258efe6fe92
MD5 eafbe1210b1875dc89984d68cddc60a6
BLAKE2b-256 3aae9128e9d0d2c4c93fcdb592a5a800d3e2ae6d955c23c9dc15c28d3da4168b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 924f75439207d1b275533f7a22f0f9288efe8fe0fb89e13d571274804a14b3d6
MD5 b1ecbc0e0b88d74045d0f36ca7e9258e
BLAKE2b-256 519462473438d565394616bfd3d1240a5f1b5d0bf73f91146ca564d96a57d296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10994e39fd8955000e922abcebc7ad01aefff56de2e132dd0dbf6c262888392f
MD5 17489abd72db48eee0ae4c71bc9edd45
BLAKE2b-256 1070bde2cb9c96d6ef551c175a9242d3f4deee9d27afdffd2b5705dd88e84eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63549b0981f8ea070986359a58c4d234a5fe7ce304fbe808f409260934fb5f21
MD5 8090ce1599a370d116e054d8e872aad8
BLAKE2b-256 55d48bf1f4ae07f2c5e8d7e72b82bc13d8a99d189af1377064b64803a36e5f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d6ed32758472d02333cbd91fdd73a76d2c935af2d336bc8057f302bcbc8336c
MD5 301a97ac9d1f55aa66f558c1714e42a3
BLAKE2b-256 a8346fabdd4478df5e3dad5ed6d9e523a43ab564aa724bbfbf4965ecfa293040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 394d0e31337dbfa47c90aca61f6ba809b1f3245c80aecbc0a1219cde1fed22e2
MD5 a2d536f3a9a71f2faf556db097b8eafa
BLAKE2b-256 96832c03620ec5bef47cbe5814f897a50e03f7a0c3e9418cce66d3df80506221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d925b721620bc18ed9e55adf4353fb84342fdcaf4bfffe3b9c84215383d8875f
MD5 83963cd2782f78448984b3f7277677b8
BLAKE2b-256 1eee8ea59384aa581676b015d70744b815118a199a50fc40b47884a72b0d2d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f24161dcba96ba04e2c9c6c2f90cc3542aea0d0b9217f5ebf541774d273b3dc
MD5 75a228e1b4140577bc707a26ba4cb71c
BLAKE2b-256 0213ad944be221f60b6a11a86690f4f096060123acc14f37625c169a884667ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1321346f2053cc8147c6662c35a3b20199908353ec755128a40a2a131a44d827
MD5 bc83eda90105c2715796cdc69528df53
BLAKE2b-256 2874c3044b2e1296bcc826387fb5aecb26ff6e215f4dd1d9211dc910b3d3f82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 490805399a825b2eaf58b5bde388d4eb944fa354601049e4b1c71439559fb64a
MD5 603f99d32fa945ecaa407a4f136b0aa4
BLAKE2b-256 972e28f9ceb6db218dd11563c327baa218926fbd72e6ebeb6117d4e7e2ec1ac1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a955972fcf2d3af36b3a282bcfffb416c3ca83725c2eeeda697de99b00f0a874
MD5 7a21cfff8aabb5d30ef2a0b0349ac0ef
BLAKE2b-256 44c438a4dccad3f24cecc76f6eed1af23d9f4f749ce704d62d51550f26d6baba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 067cd1ec53cb6129b986cc7ce26a466cffddcf3d4e6c409aca38157672787819
MD5 99110d75778c72530e081404794cc68a
BLAKE2b-256 ab4aeec64116c8fa807239cb4c89d173df3c03ae6214a6716a570c8e874b5390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b273b466dd746cbf18cc7bc722f7631b9859d731694d246c64c2043034d7bc88
MD5 851b3a5f5fec30276788c904a88aeb11
BLAKE2b-256 e7e1c5f2c18beb1af499c1b42adba74b76a284f1c6a7df2f8d197731c744ebfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 322fdbb84cbd219c05266ad642ca6113e03a36d6dbf5926b065b17d3511cbc16
MD5 e5207bd0d0edd74b3c1c9dd5398ebe0d
BLAKE2b-256 9eb8b346a2672cc321ec7aa3d7f8fc64b0f6d74a08554b748e2b02fcc403b89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfc1f6b99c6266f1e8129775cd51d5765827f1bab067b35b9a2a1e79cee1c436
MD5 fdf583a2f6d0e1af5a5d6d574b0b1fd1
BLAKE2b-256 a6b309c18edd138a3a788840aa02fc1d663236a1b528f3b0274687a8c6584b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fa12126d217dcbf9f40720ed94f6229b906ffaf168b428e44b22bf9e4a15fea
MD5 137d5856a951600620048feae29063f1
BLAKE2b-256 f08d1d701733729962a18686803e8e28285cf78f72db4fc05db5bba51771bb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35377559656d3b19c9d5f27df70e5b7ff724f6fae14644715dd3adae56dcacf1
MD5 21ee38b51ae13f914fe6e505f8ecdaf3
BLAKE2b-256 3530fbb94f7650f1dfeba59b0c9fe810345b3ccc8314cdb116317b2d8650ccc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78782df2b060624b78a25a9fe5ffbd7887b1ce8a78b2c6529824e6fc74c002eb
MD5 123d71667cd5a68aaca5949be03f845a
BLAKE2b-256 7f10aa40fe7ea642f928bb74b577529f64f005dce0321c28ca61890101c5fbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94001cdafa9ea49abd14ab4c1b4d5dfb7174c2355ca0c847dfc5abed3045493b
MD5 7d3b7561072553c73f9b2a14db4cfd2b
BLAKE2b-256 b496955788044e2aa0f6c00e6c34a33fb444729ccb6a3ffca21064ab1a9777a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9952bc2a9d383440da53fbf47028a9ef886ee29bdd41e4caebdd9ffdc786129
MD5 4e26f239c82ddbe796954af0b4e35de3
BLAKE2b-256 84d99d3f591620cd45e5e480373558df626133e9294a8558fb29972dd3b6056e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 db086494d56fb10537cd10c80b09798e70b3a74d10cdd0fb9fa6f75048939de0
MD5 98b9a274e582803f1e78f5f2f180e0e0
BLAKE2b-256 78872a71e2b0a91cf6b3c6fcf02be078f672876a35743eae66c38ec6d55e46fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7feaa8a7a58b133524cba1f2c36f4ee3e7ef023b2aa3fd6a0616fa2332d810f4
MD5 3d820898b1c9838c21edf872d4e6cc3b
BLAKE2b-256 f21e47f0d35b399acde21112d87de1d99cf26a90a7373541b5caa2eb9f524f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86aaf9aa2bb4967508a4545d6f28cc5f54babce042cdf49f5ee9d483583aa20d
MD5 0f26c8d08d6a363a34cddc501c56140b
BLAKE2b-256 0368d2a06caf2f31bd2bcc75790787003f4416ca82ac88b6429e4331e210be1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e4cf9216a2856286c09bdf1f92fcbbc5147825ee4e6a457e56bafe2803c162f
MD5 a50ff5ae590ae7732be8188e8b59c0e6
BLAKE2b-256 af0d1a595872eb59f90707e9d68f6d8daba6440fc1fbf0b22fde32a8f420256b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83f421bc90d7d17bbe2b0aacbe21263115d037c0a8aea417147d7360195dde00
MD5 aca2c27595ab3311ad4f4c62f95fdb63
BLAKE2b-256 535b66b6983e4ed69f261756a4ed0895b2f0a8b4ee5666c531ae558b3c1ab359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae41033cc01a7c655ad3e89322a3054b27cf001c44d2db28b740828dcf8efca2
MD5 db00d46b67137237333f0f15625f8556
BLAKE2b-256 911b8b496ba39dd919a4f34eebc611d23e43b2a54ec612ba5563b71eacbea006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36ef0f8f0a86b7d4d1a23ed70bb7db8705efb581edd0987c90b30ef128468fce
MD5 33d6f61215c358b268a38eb017456713
BLAKE2b-256 831517d21204a89e19e36a9660189a6f074982c8ea42dce219e80f113c75bfef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc22541aee39f0c144f8fdeb73c244abf74b2627e486358ecb05cdbe05ea10c3
MD5 564f023a4dc232f2d8c20b2b654bf84d
BLAKE2b-256 97e03e177f9d29715bff483ec4dd71213884fd6735aaae83ed94d8ed1c92a159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efee0bd61f7a076f80a0d03c8d119e1c162b67e8eb35dc3ddd716001c39ba1a1
MD5 ae59ecdef63b1ee3d9b2f50eba6da415
BLAKE2b-256 94dd61569e88622ca2125a1c4829c34d0fbac4cf55c0b069d2298530f9646b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 659043b29498c14f72bc3626ef6d7f08a63e1ccde31540db81de02862c9f25b7
MD5 4409168d2cdee97d85e28a94464d8fe5
BLAKE2b-256 5e54ab1547e303b914769e7929e5177b5eb8bbd80c7b2453d23dcb9142158d0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e9ef9276cc2f306084fb6ed2881acc70ec6fe054791fe0f7b546d30205688a29
MD5 70b36c626af39fc02a4044ebbc2fc803
BLAKE2b-256 87b4f65b8285c16e6e3bfcc537abcddf98bbe0b8e5e8b9265216829e8d5f1e71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9961f781d9eccaf118c81b7d62690066700926ae59ee98703b9eead5b2c4c75b
MD5 77e1a2517cd70d8ab9cc70d0e29caf2e
BLAKE2b-256 698de0b5d6d185d4ca3caea2fc07289ece4982b34e341e141a2b881f20ee339c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13c660a16437405b6fca519b387630d5f733c7f602421149085293c8e6509509
MD5 56b3b06c269a5da18d85b6b35f005efa
BLAKE2b-256 9096fa6b085391d5288024a0068e3bfea3ee690a27d3df0800acf67fe4ce0374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c007bff04fd21a4a6f6768a608c7ff581fd7365d363bf5dd8b1f531288a9a0ff
MD5 ac3445f10d4a9b905e3e69d3c3fbf527
BLAKE2b-256 7d685e360554096c2200dc837bd8ec895b918febaa10da898b45c2dc51dc39dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e93c7d9e2a645bb7c4dec10f7a0d07898d0ad40a7e0bc4bf4ee361baa1ef902
MD5 606347f7a040d728c4f7adfe8860efed
BLAKE2b-256 14f99a60abdb30d6060fd9810de86db365ee3b036e73a01cf3f7261a5f9e56cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b39180d0037c4fe929f47c76a97e4279a7c3846ca04e39a01c9b0af30f736191
MD5 b54193cf8168f6ee7a4a3929d4f30131
BLAKE2b-256 ccb6d7109ebfd82777982f5abf8e263043c29939c69247668503ed4fbdd8b6a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a56af7d85e400292735227a2c9d7abaffb3acd6a6c00308c2ebfc9e0284e4245
MD5 129a189776d202149bb4e221069b10df
BLAKE2b-256 866b516167a3d68ef709e450e943750ce4e4c4944cb058e412cc9bc60154ac42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce958efde328bfb8831ce9c1fc805421135c35cd421f672ffa4071672cc147ea
MD5 469187b0105bfa423af6adedceef8d92
BLAKE2b-256 a696017527ec91686f5784f33ca9ba9dcdc1baddc5a43c86b88e7a8f6bcbaa9b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cbc0ebae53e577c1945bee633904ab05c34a4347adb87d1da20e6a9423f2108e
MD5 eeb41061a3e9aa7f5af0c0ecc89b9ea8
BLAKE2b-256 fa76a77e633bc026cd77c6194e747e23ed66590ec77998f8eb4553274cdd0051

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 87882a582bb3c93db340171177369b2042944dcecc448a4ae233c1dfcd106f53
MD5 02afa4d1e575d6ed22b04a05cdf246e3
BLAKE2b-256 83e89ca8f1228352cfa388eb5b757c5ff28f85d4d42d322bdf6a82b21aa008d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45e6cfca0d383849318f798a97b6c70e53d185460383b06694370e504af24c13
MD5 d45d6e349069a0e9c89e5e0a3a2641ee
BLAKE2b-256 91e79c6815d261c5ec04556af049684443534cb3815d2cae86c5e71b6d278e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c15ad555e2a72ccc5e6c507dfa60ee0f53a3dd24daaeb0c99eb126eeb68b30d7
MD5 87b46cf3ca38d9160804bb27002e3f0d
BLAKE2b-256 1febe500876e82f846907a68f55f339c29c2e2fdb561615abe591af0cc0f3813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c1ccb347908a58dfcd6f0fe25c3f26c4c8810c092e9e897dd414f872a50de62
MD5 62200760e15a090820c4c326cfa03fee
BLAKE2b-256 eec77b42ddf6c745b4550d69983767e366e0ebdbf699d773499cc8fd66e72c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c5f8f260ce15af2bd48b99385a00099f7623f40a624be013d335471120d01b1
MD5 be648beb0e234f5ded11c12272dad2b9
BLAKE2b-256 7bf7e9017d932459aad2156cc87ade381871be41267285228f4ac9e305cd3282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3e457e08535084c939fe3f7959aafb9851f30e17f3e1eb1f29078b65c81f3c5
MD5 fe4f0afa8eac6bdff507770c13e1e8e4
BLAKE2b-256 a167f8a5568e95fed9628466a78399c2d509dd258844234167d419749ef29d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c8a25033fc0a71e57ded6b2244e3eed76c656a3465ab52688d989f6c8350999
MD5 dcb46723950047b0d015120f5a27ac7e
BLAKE2b-256 8739120322d76fd4e756c4ed87f4f584a79934b3e01812d965578d010cbb3c5d

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