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

Uploaded Source

Built Distributions

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (405.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (405.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (441.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (405.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp312-none-win_amd64.whl (268.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

endec-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

endec-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (404.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

endec-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (364.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (365.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.4-cp311-none-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.4-cp311-none-win32.whl (262.0 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

endec-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (439.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

endec-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (404.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

endec-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (364.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.4-cp310-none-win_amd64.whl (269.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.4-cp310-none-win32.whl (262.0 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

endec-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (439.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

endec-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (404.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

endec-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (365.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.4-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.4-cp39-none-win_amd64.whl (269.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.4-cp39-none-win32.whl (262.1 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

endec-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (439.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

endec-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (404.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

endec-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (365.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

endec-0.1.4-cp39-cp39-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

endec-0.1.4-cp38-none-win_amd64.whl (268.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.4-cp38-none-win32.whl (261.9 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

endec-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

endec-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (404.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

endec-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (411.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

endec-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (404.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4.tar.gz
Algorithm Hash digest
SHA256 d69e20deacc8a66ea6998eac57b89aa72963fd190d5dfe6fc0b67b21c8377e56
MD5 ca5c5557420e01a2615d42a7993c9e19
BLAKE2b-256 61da1dbbdd6785ce894072ded7acf6357d819c415125dd7c5d468fad849d2040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9dc2c04f3d5537420aae8c541eb4b487a16378add22088f1041f409b35609e8
MD5 71a42b40e50c4000f8937cd174257b6c
BLAKE2b-256 ffe5b25732ae94529952757566417d9292fc24f242936a4fe44ded2e6cb269d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebb94d2592db2113b40fb67d03a056b08df78744a0ac757b0617e10d6f85271a
MD5 f3419c6daf9213e0743c9708beeeca46
BLAKE2b-256 04bc0778e8f6bc86e8199b224f37671af22e868766ed357c12715ab11aab7da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0391868643dac3de231b60120ea6434bf0dc0a8551d663e461c606c5685a04d
MD5 58a743365af3dfafb808c59ba219afc4
BLAKE2b-256 8226823e017207530bc2b1a9213d503e3aad4e2ddd913f643cee38b1cdb9121c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb4481299e7d2736cb9709dd23fda41f15e4dea201f9d4204147f8d65f25b1aa
MD5 e307a098ea824e133234f43025429648
BLAKE2b-256 f65ff1c68a626ee4e1ea97939935614b7e4db7c1499af93ded4b0a642670b833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a08c0edc3a858172f6f4802948da9e16a0f01b85475d68e54e238a6484da830b
MD5 e23601294337ba705b6ccb9c0d42d857
BLAKE2b-256 2e8d42bc032034ac5165f0027b6bd16993ed5346e3fd5725d33281beab0f98d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 053f6015c3653c65e00fdd84a3a8a4815b4184bea333058c724e4d584005c7a5
MD5 d49f489f6e7fc6e649c8a865e4acf9df
BLAKE2b-256 df59772ff3ba48446334dfe7aecbed9e6bc592800889f5ee0bb0d0994b484fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3acda4dc98eb394cb0efc91cc83dd663a8a4307d612202bd81810f4573298b1
MD5 60f27f2408d4ae5189ef136387052ef1
BLAKE2b-256 726092cf1e1c40c94fef7b46d58d8ca0c0bdac7ee4fa8f280e207bc8a93a1c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01b5013b7eb600d896e7aa70cc6a0fae8360c0149982107bc24834a082652e48
MD5 96e7798df00362a9da0c1ebec44139a0
BLAKE2b-256 4fa25c21f5d7188343b7efa6777b7e3db5f9a1cdd6bb14ab57bbe175bc36634e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 454cc777803334f38d66cc6f13e758e0f46a692c9f42259d5882a139fc866fc3
MD5 2d1af8ffe44db89b696cabfce2fcc696
BLAKE2b-256 337896792e3de6936a6b5acdae20e251bece5cfac54c66c7ade9f1ca23622796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05d0a4befe742362342499749ecf3d021924bd093550909424941be5c17d14d5
MD5 d8b59997d01dba98ceb3bcdea5c6e37a
BLAKE2b-256 e08756a394a92477ba55c43933145abcf28ca9e8b88325df08f8232c1effcabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 466d7d2ee9614f9a9888c99cc1b6e899aeccf06cc47ed6ef152d07fbb84ad82b
MD5 89e7c5d07ce0747a6d80db5c7d76ab31
BLAKE2b-256 42ed03e41a5a652055e610b6955b01f85b407bf5a4da0b43010ffa0a8858923e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d6c55900b4ea5d10b008c7dfed2233afa772cf2029d4834382cde6c9a5cdaf8
MD5 7c15953a8b3498136b11de719cd8bacb
BLAKE2b-256 5a10c3d1b5cea195473a4db58e247c2d4a7201b443b0e6e9b636334e0a7d2791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c68d4e73961c115864d08a2cbd80458e65deace372732600e43dcd98d329de8e
MD5 68fb7cee7abb353898f58fcaaf6ea277
BLAKE2b-256 eb6db842a1a5c2c0eea35446427e3ba9c56db037545eaf535e9a5c25e6182785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b85c8e511c26f0f058776cfea988801a24e170c885c26ff25fcf5b2e8a68d2a1
MD5 9fac3a5816c3592d0d041ec53e1a4447
BLAKE2b-256 811e88bad69a8ee1f48417974ab7341d80ea8480212c3c885593bc235dff46db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42d576ca22322455b70bca65b2ed502457a5a96b7abc15468f3ab8ca179db323
MD5 8bb99f6b155cddfc24ed495f071751f7
BLAKE2b-256 ca4fc8e4f4e7cff92b1a4d4cca4ae40578ee6c1308c2ec895fbaf3087fafea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b967a5f8c1cbbaa82e888fff405ca456a286e1bce25ebcd354f26881db450895
MD5 6853c39269d27b9bd29ab21c8039983d
BLAKE2b-256 f13a17cf2b1fb820eab2aec73d2bb999c275b9fb64a3cd9d09f5cf423ea45e0e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c23c1a0860572c7ea7a6bbc288c374c961bb286929c139dd7574fa0b3edcd3a7
MD5 3cd750e4f0ea7796d3f4ccd6001d6dc0
BLAKE2b-256 6a0de90fa84ec3d02564b350d3dd69fd6eb1cab2de0a1bb08aa668dcaec56f25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.4-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.7.0

File hashes

Hashes for endec-0.1.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 13f9e16fad23da47cb71eff182d544a34a105f918e843522d7209d5109cc790a
MD5 491bd2bf90d6cfbc89f325b1de36e118
BLAKE2b-256 ed25a492419840c827e8f2d84ea63e4401672895fb6a6460868fe5eb5e2e38f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9793abf1d8b1506aa8b63265fa06a5e816da93b5788e44907bf3aecbabd518f
MD5 806622ee0e82d51af1f055e0a52646c0
BLAKE2b-256 3547eea14e3bfeb060dec0391e086c2a6639bfc09ec374ea93cb0eec42891d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35a634c23e8a3da93418ea65a13fba3f32914dd6af5de74287bab249f443d2e8
MD5 37a5c750ce6a3e06ccaba357a4ff11e2
BLAKE2b-256 d00a3132aa63b10d41c7c5cdd2370ef97d5af47516babc9f81374068e5d74dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c886f81527d286900b0ce28665c7b6437eee9be9b719bd7bba2788da36cd182
MD5 7a67b4ee634ba58fead11fce8624552e
BLAKE2b-256 e1133e0cf9283c4cad5b9089e50a3dc226eb2dd7776ef61427ee47639d20b76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7564cc56a57c81e177ead75215c5ca143d9d225edd3cc8de94c4bd13deb7a5c
MD5 bab281edb593f13dff7c7a336274d1b5
BLAKE2b-256 edcb711c9301721f82c1571abfadaf8a7a2db5b370b7700e5850b66ee823f553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65e8a021b3c665b2da02b3cca1d0ed87f01d8659ccf8891eb79ba61c4e4d94f4
MD5 aa23f54f8d293ba752743af8f6943dc9
BLAKE2b-256 7d1479dba4243960b976ad2942ff4c0b84c30e41800b1909e13df2c4df727fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc63aadbf39049f3f5a5361627408639bdd9c5fdb07f52a24fa0d28b12b19462
MD5 909322742ddb8828ef06a2f1fa9d259a
BLAKE2b-256 6ded0780032c5b5de8039d8a3283acb7b3b611063a8a9c97b77a86bc55e7f7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac92bdb7dc8e3555d87c049b8dc8e142080bfcce0976c4e1b88ef01366db57c0
MD5 9780f935f8d9f073241cebe5a4b488f6
BLAKE2b-256 fb952bd8691b685f71bdc6953650b03fab1ae3c90dcca22ed87f9fb3110898ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62a35a1708389cf1edca8f809adc2d93936ec0f1f1d450b57e236b95c15c38e7
MD5 e2206baa1cceb19149e923dff98e6448
BLAKE2b-256 0baf7e641f4e2fb71d35412890bb55025e819ec9740b2617dc3ee98a6e8cc587

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7637320d24c1c8768c7f3127c26a5c79ca6ec6762d67666ef4be03db6d409524
MD5 1706adf153cd4e2051448c4d090eb42f
BLAKE2b-256 048dfd591dfd3c49a7bf6500c304a1d5d4c0d4497beb912c86310a16d5e5ac92

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c3697cedefe1d4abce4a06fc73a3e002979003ae6da1d3d11c845ad69ff97433
MD5 21266e92db00ec7fdb9602abef0bad51
BLAKE2b-256 64a9f226b6f72f161e5ea23f42a8e5f6999b20d276cabdaa817b918bc221cd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7733a772088abb7cd5b36daf3bcb3aa103aa85fe14c45e266a61ed5888617f1b
MD5 73e2bddce2c488967f0e07efa4b75d03
BLAKE2b-256 1de1155ed6bbeecdc6d15fdd46d1b72c5df6e28692e8538d0f7ab54f9e80e9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45bcb375f0576b0f418389fc03962a55b3c8e2516e74e6e5be04d945649eb432
MD5 baafc844457c9f86908d8561e5241d68
BLAKE2b-256 1e7f893ea475a995e831d87b4e766ed38a0c19bfab242c4c7fced44eef371bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d2343e84a6149464f8ea97d9b891b8a2575d43e4ff5c5dcc7df32b7cc8625e6
MD5 1b3f25de144134fc2a6099e2dd366cf4
BLAKE2b-256 6907fce9b7f032420706fae7ef032f53130c98b7e8550a9b676cdc3aefcb6e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ef28162ef23824247a70e30eb6de03d976c6fe383aa3d981a15f631ebe5aa42
MD5 bb41dc9b67d2d9331a0e859b51981b7e
BLAKE2b-256 87b774f914074f1b98f75428289063edf4157018aeec5f5f313422edb5d5cc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5d449cab312137aae6970a135e2b898fad0ae50deda7f27aab86e1dd0cb2090
MD5 9c686f0a2517002364494a477647cc50
BLAKE2b-256 358063855ef407ce33d2c6d478f50e75560477b96b50c5856584c469871f7ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ab2617f99f0fb389d2031bbf29309294911df89e2057205e08b7a84d9b732c4
MD5 d503b882f04350850676a90f0d9e5b1e
BLAKE2b-256 bfc8bff0cec5dec99530bf0c88389900c38fcc4dd28601069e3b916fe4dd6083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44b979699a47d1627218b890944cd3e1185eec4bb3bcb365b687db6d75f08863
MD5 44c0eb41ed55fd20ea755e4631b283c9
BLAKE2b-256 b84643ebb37eb7b15d5f6784baf5f98a0c2b5fe3685c655f65581592442c7ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91cdeac062e6e65c2fab56ca3bc093f8de2f9b0017acf1a94b365683d67716b0
MD5 1196ef599a5b05e3c794d1f1b7ac39da
BLAKE2b-256 63d1e8d9b668445fac8abed23d882fa764645a7b3e6e170ebcd1f405fd134235

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f0774e82c70c798efd48eb04273fa5bae1dcce75607059b9d9dc319d5907b91d
MD5 64dd9eb9a16d5a11cf19dbad51cf2ec4
BLAKE2b-256 580126cd50e6090856c7cb02f691e3099122261af3ade9ff31e291d4dcc84c0f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6961ad30afe64d3fbbcc1b0b26527da106a0ef3728e1e8bb2407fa22c90431a4
MD5 b7d7c3d65fbf9d4560538243b9b5919a
BLAKE2b-256 5541cba58298211da503cf06482a4624c54fe4ab3679c9f82d7a544f9f20bf10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6aae38bf4fcba2ad7903dfdbdf5dfe3e7c2f9f33844d8d76addb591382b460f
MD5 99e2623e5db941a97abe1467b84a7aca
BLAKE2b-256 b9ff72586be5ee12a371255896c6319e7648ef72f67dd790fee57c5b0681b624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 283fc8096be7218de7f10b85304b517342142d21a28aafb4747c5e7ef38ed355
MD5 340fe3fd27dcb2863bb8f7270da964f2
BLAKE2b-256 c85ff7b026c71dc4143b4d6a6065f31657de0427826874bc21909bc69866480b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3594af6121beb7df423b13797c29461a17672a525bf657a62d4da5e2aa84c717
MD5 1223fabe4da04cf5681166c5e6245796
BLAKE2b-256 e76ba90d3cfdfb8583a70e95c2507e964cfa6cfe2484791ccea0a8608be28301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 342a2c3e563fb0a38758a3ef05bd294e9434bb20c8ba45d3391e6b64c486dadb
MD5 bfe85af0f60aa671073caca55117f258
BLAKE2b-256 470322e459404ca26405dc92801257a108478a62c93bafe3c91e1be8a6fc56b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8f6613dd4ad26076f9f12753f52aa1a90fc05a118c43bf11f01e22caafd5b0d
MD5 f40baa2014841a71d62839525c0dcbbc
BLAKE2b-256 3dca9d473b0df70dbd53aed4dadb747cc44cce7d17d412a081efc945bf67c676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56de52d0cef647fea1dfb212600e0b65c7d1e58ae1a7c74a826a8c39642bc171
MD5 a304c669cb301f2965e1c554364d7708
BLAKE2b-256 314a8a2b5f5958d5fe76abf26623f365b814d0c722397653e840772859b419c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 278d69353a8a271c7eac15078f48e7985422a17c5975705fb8505b1b2fca7197
MD5 565d8b378e3a74cfdcc48c08fe21c957
BLAKE2b-256 169c1ec3be3faad4153c35c884cb95bf7066981f789066b8ef562e3a9df459ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3bfeab561ffbc6f1dd186764b273a83ff448566fe1ecfdf5571d0d558ed27b3
MD5 9fa0e3141e983854184bcdd92118759d
BLAKE2b-256 5122d790fead2bd997c9508899be6f6572be31407993a436cb714ade82f9e88a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.4-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.7.0

File hashes

Hashes for endec-0.1.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f63e114dfd16b33a4e7ec37457942e48df773407fcec9f8353283281d1657c6
MD5 f83573124537d3070643e2673c4ee2b1
BLAKE2b-256 488c80c2a2373f97ecd563c82c81275dada12881366712e47d0c9d49af1a7d33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 110e6650c18eab6bcc27acd72903115b009f77b64ded8f673f9e9f00f70fea77
MD5 0e760904607f4e2d933349b9417ed40c
BLAKE2b-256 1c2720e1d5373773abe53cc531eb3239febf3bd83aaf92c84d1d91c254a43003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95c09977fc6e8c58aa90d1a5042c87fe97cc93d5b067f6da103a13f9031793ad
MD5 f3478a3fc174f1d86e606e6d9ad724ec
BLAKE2b-256 d2b9199085008d0a38f92d5ac63417508c45d81d5f1b5096ef6f9de6d5f40223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d135df67547ca598b283566c9a1ec85c1b64e369696e4595614e34af4de9987
MD5 124626817062bd47c165f58dc6674a7a
BLAKE2b-256 40590186cddf7c5f877afadf8f4db63d19ee670e056851e8ec5190cd55dbbf6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef8af795d54a82bfe90a255d30381daa7254de034aaa125896f7e09014d34546
MD5 ba24533edf273ef74f0c3f99b3f43bdf
BLAKE2b-256 2121107b31c08c0b168d67e315d36f2346b280f7e5ca50f80a4feb6bc4c1f1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b2b274d4fa18d48043282f843c382db9e53b459963b9fbabcaa2f72d77f46e4
MD5 76bac482045d57aff914d28c40f84cb9
BLAKE2b-256 dc6a413ba5c07664286fd1ab84f1877bf557c46d97c7329b95292e3c5a589747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d112ed7641d5f8a8e2db90f3775e1d1e14fff8fbe8ce54fa9c0bc9a2e044dec5
MD5 c19c98fabdc746c169b57d528799b989
BLAKE2b-256 7b649065d62cf8cf3479327b6459444cd394509f391dab4b644ae47cd116aaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 420591bf5e5872b008bd76e2c23d609fe89a5ea1f6ce896f567f95aeaa82b036
MD5 558ef67cabc87226453b2e9fb5f08e2c
BLAKE2b-256 f1535d3e384ee474c1c1a6d7a653107a27ca84c041c809ba4fb7b5fceb7de1d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b556e912c5334c78bc137ffebf993ce3b7f59cca603faa044396626fd6fad58
MD5 beec6bdc44620416afc46803afd4cb56
BLAKE2b-256 83a84c59aa0c123b435f3bce00976ada92cc268949acb6150cb641866844a387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ed598bab43cd59c3e9895f26eb5ccbfc22d6a12fa959ae324aef71dd0568953
MD5 f9e1d6e663f8a2d3ec45b7d2c27271d1
BLAKE2b-256 fb46e23e10fa09ba9e1a030b5e03cdf3ea0d6626f36c42cb70fcbe73dd0d86be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9b68ba68733dd8b3acf5a0accc1924bf79395298f93473dec3949827ca3a8f2b
MD5 72ccd1615505e73f4e1e339f6fd8b6a0
BLAKE2b-256 05a69df74bc9415a3512a299d96b1f3ba696bbfb7f52b007c9ef3b2aa54e55ab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 af43fee85d8d270ea0e9f8cc73da9b0663389cd4bffc787e01dd34293608f59c
MD5 ea0573fe11e86c5b7672cce73affd5d3
BLAKE2b-256 0a13fe64b49043cd1400b6762b49252e451cc3bb2166c1de91893bb5a43ca903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31dd109de3d05fd3f491e2384ff96cb15884590b2b21388731e78164d54d8725
MD5 0473c46491b6d7632094b5ca1ae08e6a
BLAKE2b-256 833629434830872b7f3249352eea1bbd25c5798df8766572fcea5d49337c60b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b206960936061e4719279e6eec2a5be0b1ea578fdbd2bd0bb01ab6a3051dc40
MD5 d22b38a2c941799839f6c4ecb780a1a6
BLAKE2b-256 2cd87f7026533b9eb87fc87dababe2562b13ca6b26e1f52a09a814ffcaa6d720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a633d4ebc1308e803c0e2323dbf960e9137391e589c5ade3d7aaecd3ec635b55
MD5 617480b51ccd1a4fd3965830669b61d3
BLAKE2b-256 f6522ff47ee25b7497683d1d3438d07ce464cfe0c5975ae8a1e88658866988d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef8126ff510039333c2ebf970082e3e587adcfa78d5902baafe0af9f6dba2242
MD5 19db46b6bc142950d8ca1b954f57e7f5
BLAKE2b-256 e476b174a2b3f99dec2b78ae3bb83fd8780fb0fcc7ae5f2ea696dbfcfe0e2334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deb3d958097b5d1aba7f93fdbf1fb6757ac541ca0f529aded17a86a812d3c2aa
MD5 f857defa7db574f397ae8ff8ae9e55b1
BLAKE2b-256 090c4cfd3fd254670ef7a67c922462202819dba03f0f463eca09f7d8a3a7bbbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd546a41479df84e8e4705a366523cd5d0d1dfb3f19a6ff75df044979a0cc37b
MD5 739fb2e63e3327c79b39d7aa4b4daf42
BLAKE2b-256 2572ffe5e5eac86172e57e1fbd78a10b7bce312ef5ebd9ad4074580f2e55c2a7

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