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

NOTE: This project is in a pre-release state.

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.0b2.tar.gz (10.7 kB view details)

Uploaded Source

Built Distributions

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp312-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

endec-0.1.0b2-cp312-none-win32.whl (271.2 kB view details)

Uploaded CPython 3.12 Windows x86

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp312-cp312-macosx_11_0_arm64.whl (379.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.0b2-cp312-cp312-macosx_10_12_x86_64.whl (388.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.0b2-cp311-none-win_amd64.whl (277.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.0b2-cp311-none-win32.whl (271.1 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp311-cp311-macosx_11_0_arm64.whl (379.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.0b2-cp311-cp311-macosx_10_12_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.0b2-cp310-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.0b2-cp310-none-win32.whl (271.1 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp310-cp310-macosx_11_0_arm64.whl (379.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.0b2-cp310-cp310-macosx_10_12_x86_64.whl (389.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

endec-0.1.0b2-cp39-none-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.0b2-cp39-none-win32.whl (273.1 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp38-none-win_amd64.whl (276.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.0b2-cp38-none-win32.whl (271.1 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2.tar.gz.

File metadata

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

File hashes

Hashes for endec-0.1.0b2.tar.gz
Algorithm Hash digest
SHA256 3da3751ec6274245fa751b643357018a5b4c323c1d25f890b1cbe14bc055f8d8
MD5 23093e36ce159d30062d5b9b9e84cbd2
BLAKE2b-256 b6affcade7f32fedb2e7afe111e444996ef47461e9146fddf8c749b860039ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23f52f10c7fd8407a8259d87f53a172c8f0b797523bb98bce7df59b00a942a46
MD5 c1be4d8212de8538e979478cdf400dd5
BLAKE2b-256 d146b2fd4e959827cad2d365a36c30d3211245b6e1b2d8b79fb6c90613668972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ee30b96df8d10ac77ed8ab8a1c1d6f212f898320f5512c1aa5603a62ce90dec
MD5 681271a36c47b1c6ede57d3a1cd9d71d
BLAKE2b-256 33de761b275a57851e84b57caad810189aa78d462d0771ef104670aff7e903a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceb062413eadc48900d3ea0aa0e401c8b48f0203687e8eb249b4ce1e3a3daa38
MD5 8610f713dd6a4e15815f2385b55fbaf8
BLAKE2b-256 b3c035949955c926c325618044b2d3d8aee7602ffe7c19c903f5f9f6e11c02fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1013118d4700cc4e5cc5aa3a72a1d8fc62f5f286c8c4c28341b916d5ae9f058b
MD5 6a7a5e3ccc1f9fb400ea4ef7affacfb0
BLAKE2b-256 edf1eb9648a83bf857786916ca297bb2a8155cfe45873861ca6238bb49f1eda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2091b0af48284c2ecb7a7af8e24868a7b2326ed1aae2bfeae713638724bb8f29
MD5 60cda180807338768910df8e554a2fab
BLAKE2b-256 de3bace63f2544c4c29d9d3ac22e4cc85fbf2a6b6b84764df9d02e39cdbc60e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 95748e4ff6019a676a025ad92eac07493ada4ff0d133f5d35504847ac340aedd
MD5 4934889757635a4b031bcaa906b3cba2
BLAKE2b-256 e429586c813b9078de941a039bb77f58db37cd65c05c374cdb2e76fcfeff164f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dba9fcbbd02c5f369aa918b7b00558eab8a8be7e68e821f843f0abe9ee7313a5
MD5 b5dff9f312e12a75d0284d29375e8927
BLAKE2b-256 94680dabd97ce86c58fcecc5902d5b9b35c9318511c7e96d3622b91ad82b8a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b910bf2ca49c0799f6c8bd4c8b9a0cab62954b19abcb9a5d32f29961a07ddb47
MD5 377dc53d73b4cfe531a5805880f7a710
BLAKE2b-256 b5f469f21a156324804f10714a392ab1ecaf714169958b11339d024251124b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66991afa40033cf3f58b3959fa794f34d7a1c62b817e1ab8e72dcc6aa96139dd
MD5 4436b555cb5fdd35504bff30b26b7e27
BLAKE2b-256 d636ac45c2704c3e087356c46d7d0a81fc6f0112f9a6588de086fc4d7d15136d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e47637abbdbf5ae9a2a7ff5be6e8940ceaf3f0c207ff08a021c5d2865b46652
MD5 c529b61b0cbd52a50a031940ced53721
BLAKE2b-256 42e873a78c5e435d87a1d3e4719f3ad58acb3c80a2061a8903b1784a1fcf2f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 617b948811bd0012d477346345a1e19290260e4637b40a404ca7f8335c03eade
MD5 0f4e870fbd450a248dd6527197d02ba0
BLAKE2b-256 a8ef63ba5555a31c21d64fa8dc9b4ca5e73c1b69c7b3babb4365c246d6109705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 614caeeb0884ad6797038aa265b0815e643a4b0bb1feed1374bb414df752c42a
MD5 5152697252f8fe9a435c9047a378418e
BLAKE2b-256 4ac1775c807971542ac7e46991478c028bc2e276630737d8d15115c9a45bfe09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 975a48128feae046907d2d7b4a9d65ed18069955d53e17741f9041db597fa198
MD5 be7feb8d2d6b344c3ea6326773c61a5d
BLAKE2b-256 72463ba28d856fe53819685015b06bff8f4720efb5388b0da5c2a70f2466f7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cef78f954d71264ecaed59c1cff9662181a78611e685b35366a854bf6784815
MD5 73040c44382e243fad5c5006bf7c5a2d
BLAKE2b-256 0d3b4a411c9760e10af094d39ccf58eef4e23047eecc36f1bf8c2de4c62a14bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fbc99532bb0374543b6ca981b06b4bba6a7f30bcef58f3fa7bd23e1495756d4
MD5 d7ba490c34255b25fcdbf712cec9086c
BLAKE2b-256 4e262939e7cc522902bd17c9efa06fb9232fe34235f267a99afebfe3392148cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99d1a1333435ed7975993e9f5703fc3daf14094862fac69ad7b634f9967ebcb3
MD5 45f1c9762ced723ad686897e671a6d95
BLAKE2b-256 899c6565f8747c3500d65297541f53c5e2c03ac9413d42a8f5bbc0e8de39d960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f27d2332c01204f0646156a2b4d9550b26ea682cbc27d36fc50f8ae48f97b947
MD5 f0053745a2eed0e4e2f564401656ef35
BLAKE2b-256 23df5ffe9c204b6fff96a2fa94cc7a5f2d02992f4ed85420d23b540d5b952daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72be4786935171b21fe0e253cef6cc88de1a4b99b5cc4287fe749ac2e189028d
MD5 3e77cfc2046392aee4f497e51183452b
BLAKE2b-256 c381639af6078487694945970e4fe31bd621e9d207e05b6b02356dbe47a74aaf

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 46436630e4c959ec3b3804ddf72cb680a0d61d743905155db42cceec3750461a
MD5 71a8935cfa15c2eab19660354192474e
BLAKE2b-256 dcc52e13b55b7adc21e2b726f627a58a8f65afa4eef2914ec9ad49cb6b45433c

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-none-win32.whl.

File metadata

  • Download URL: endec-0.1.0b2-cp312-none-win32.whl
  • Upload date:
  • Size: 271.2 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.0b2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0d7c8005f25cdd214786ff86267c1c17e454937e3564f3c9a15c69df41381913
MD5 5088bc4b0748ae399df3a509e6a9ec0b
BLAKE2b-256 e75b993971593b57220b6665a372112bf68aecb278d3179a96759451683e176b

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ea4101f2c8bf771b246599d257613d9b8cb5e4c1cba5acba0ec365f15b98a59
MD5 fbd9c1efd1fc4822f20e842dbcec90b4
BLAKE2b-256 a1783bce80a66c6d65e941910fbf07a804630bd4742c7928db84a0c16b43973a

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df58e8ca3d3352161b8e880b05dc603d7de67d20356058ec736f9a5d7d6a66e7
MD5 495fc9ff85c110c983e628bd5543d8ea
BLAKE2b-256 dd1586536f4cd8ca583d09e427ac56e8268b9967871819f785cec603a82f6a6f

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 456daf3c87db116e5f0ee1225ca266ee3c5becb3b9dbf3b1623981dad5ef45da
MD5 54f4d0b7432de1154cf9ddd29db15259
BLAKE2b-256 ae110b44da38b28e444d9a74b3f7856fdb332ebd0c5f513ff4955564c4e64920

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4889ed03f00e4538c07c8c555a8accd7a6f340536490673d366b016c386dd232
MD5 3ed5b7d2414967dcd263af2be9756b51
BLAKE2b-256 706fa6a2589c73baade80747c91f6dcad8585335c09c2b889da8e39628ec8c76

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e5be7d45d151a540d02c4cd4f510fad86b8cd16c2846b8429c6888df1240694
MD5 9a62e0d8f12f90254a35ed05d449a12d
BLAKE2b-256 20711b2f54154b668e27f476f708081d6d8a555d676311ad7e7b53a8cf98e969

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70b40095f83650805e2f6464be1c863a6031c7e6c5ddbde539e158e627bd4641
MD5 37ec90d332053d04074d33a8cf49c03a
BLAKE2b-256 a519356650c2be02ca98e66f942eea5c80e48ba0a901a63d52e6c372c5eabe08

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad1e255bd0e02df6c773fd02fbacc96bbc2bba87fecb4c1678efca6731069939
MD5 4edc6b79119a70bfc55652b4c07ce696
BLAKE2b-256 ae3f38e429c30f15d1e1def12091b2ad97673bc69e520fb54b4311ad8e6acf1a

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8544e7eebe47734a2fa113fc9a775c80ed38371362a51df3e0e242614dfe66b
MD5 88c5c8972b31a58c751380b3d945d18a
BLAKE2b-256 22a3c987407db5ebf2dae912437ed1dd1a5bad22ba05193844f8f96bfadbb683

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b58bfa701c1934b3b5f08f64fd0843d5a037d3f47529bc1d5a1899945d6def51
MD5 eaaadaa70abd1e244fab28a085bf7a5c
BLAKE2b-256 91e2abd498db42835c8409d6aa598cf768c0d5fcf851de637ddbb1573f74c65d

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-none-win32.whl.

File metadata

  • Download URL: endec-0.1.0b2-cp311-none-win32.whl
  • Upload date:
  • Size: 271.1 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.0b2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 387338fc98359b0e76f4b024d4579c6e3878751834ea75d3f4a8648f5c82a972
MD5 b08db6c4fde08c485cff09a82bbdd56a
BLAKE2b-256 39bbdaaa8422e4b53d2a04249c0b946a54d9f09ceaccd1429a642fb5a0649d7e

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 faa4438754043fb8998e208c00d5d6a43a526165a40dead8d102395c7817fd93
MD5 0b582986eae6292b09f2627d11a15150
BLAKE2b-256 5404e95aef38d6b56a666cc67004cd0f8fa32ea2710c8e84ed6798cfd6d19e4d

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8bb2b79c12b540cbbb955be3481940c553e1fa185203079f7e3b6b2c4f89f93
MD5 7e008a28a54205d4ce88d00fe6604cf2
BLAKE2b-256 99aa0d8c25d2350e597bf8691af51ab3c0ba76c2eea5ad7a6cb4de56c9e09623

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cda67a5e6ffb38757b6ccadb0c59b064ffaceab2e495c56916bcf9bca6451a3d
MD5 d7e776993c02dba5582cc3630d9bbad3
BLAKE2b-256 bb305f457a6050ca42ab8856da06e08f34f9309043a1c407e16d0ec6799192e8

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2a20344b76d721221037493d8aa65c536c2124491df80ce9a72f0da7ec6c1b9
MD5 5c3a431d0138a3bb7978d88deee2a23f
BLAKE2b-256 b1b5d95f251473d05ca9cc88c0a009ef5bab074c33d55271cee5a090e9bbe336

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de965f446d9191bdc5340e1916cf289fe7a5d53e346827efa86f9ee07a7c9696
MD5 c68ea03b7911b6e94753ac0857f38eda
BLAKE2b-256 55e17d3b603d11bad4e7b6c8dc523e4ad977a332e0fbf85642833ef689657bf5

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c6e37fb7c68ce1356b7020dd13cb0ea802ed6a7803b2e60e24b26dedf845a075
MD5 e4263958d2231bfd3740986d63d45bf9
BLAKE2b-256 89979334e71e1e034d5aeba0d43ed6e231c8a49f266bdf3f2f63d7bad58ebfc4

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58050d8abc6308438f01bc2276a1b305b48c3fd4bd8e52c439359a321910fa0e
MD5 3991548e9a051998535846f9441032ec
BLAKE2b-256 761af7b505b3d50928abb2c87a262cc4bedf6c4c81c6716d36487b1567cb8fd8

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf8526adf5b9ab517cd4af2205ab063a1494a87048a9549ec8b8b5aa65899e12
MD5 e11cf458ce31c7b5ed38616549efe580
BLAKE2b-256 3228c19de1f3523986161c2faced575aaf4c9d491c390d41c5fe2ef6f5c379f6

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b42f0b988e4180c898c9aea9f417bc5c1c754b749c69948506fce7af5a76e949
MD5 0006a7db0d893c2e94edd1f6b23e1641
BLAKE2b-256 e86bdb07d26eab293e5acef3f628da6e610dc0981bd52423ec8dda41c75c09b7

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-none-win32.whl.

File metadata

  • Download URL: endec-0.1.0b2-cp310-none-win32.whl
  • Upload date:
  • Size: 271.1 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.0b2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 925cedab784bb9bf493d95266ee42d9c8080351ba5be07f96104eee7e68c2e66
MD5 b4a893e59caea3a92444f7bf0159cbb3
BLAKE2b-256 2d2f63d4aaebd30a00cdb28878b5c20a86a6a7c693a91b31da576e524782cd3b

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a3fb5a9e0c458fb89000a679742ee67a3f0f774203707db5246afd73d8808b3
MD5 7154dbfc0550280bb3ea5a3228312bd3
BLAKE2b-256 c97bfb9261f4fe0f4c00d67387f7d2851e4f985c95d465e2688fe22411146f22

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bb8b1f651e4528e9b6170563ddf9b1f93125a7b644ac51079c091004d58362a
MD5 04a2f4fc62b2e56fa3c06d64055d3eab
BLAKE2b-256 c3358891d90c3cfb7f8435335110368791bb3e501dad69194b46ffb3a297f1f6

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48453895fa50c5b52be0ab2b7e85bbee8ff7f397380b5c60985628d53fe3a4a5
MD5 d60c5b31d81cd46e1787a3e424e4f448
BLAKE2b-256 50db136289bf52ef142bcc6114d41176e95d8b66e8717fa9ece37cdbaf8b251e

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bd90f5ca8138404bed7bb5a7c3d22dec63e825e500348a6e62150dc73c765d1
MD5 e57c96a075ef8bfeed5aee85936e1a02
BLAKE2b-256 7536e95596ea6b678cc64b303970b7d2fce1d36f12cd50cedeccc08f17be5740

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96231a5e17b9d67e91bab259787e948e32d27e6751a7c197706bdc1b08528032
MD5 8ca16fa9cd782a63c0fcda9b035ae042
BLAKE2b-256 aef7312142a8a85951fb192e05b19408758eefdf01d077584fcbe337b26e36b1

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58c6253d3ce978d79ba3448ad2b53c13d227929b21ea0b203ea5c1236cd20c5a
MD5 0f81d1dc5db9c410424b8fbbf061bb9d
BLAKE2b-256 12ec434e2721665aa8e9f3bcd6c4dd858ea4191653b60ee9d53eeede78747b6e

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e2819aa440ef93e7b7c7d5331313b01e21256e3a34780817d8b6807163ab8d
MD5 2d977c0ec7600be1e10646ef80a5c2c8
BLAKE2b-256 c63c72fa028b52deeb95aac4fe7284518b72c93683e782366d5debf5ff0a086d

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 825d4482d1299892649edb15e6b196e6f4c642ed1b67cad4e9d578f452e96083
MD5 f50a24f2a1a6a08c868ae268ef782ccd
BLAKE2b-256 4dda1a0b7d1c5248c27a823ec0a48012c26c25187a199b9d77511470a013bc9a

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cfe98c55bf82061c3305a31ec656583d43d997dcf100121796eb3d5315bf46d5
MD5 3b66332d7e2c0ebd4dcc88fd137ca417
BLAKE2b-256 a9fbea4e7915e088531fdf213851e7268f28b5c743147c93fc9980de2183eb29

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-none-win32.whl.

File metadata

  • Download URL: endec-0.1.0b2-cp39-none-win32.whl
  • Upload date:
  • Size: 273.1 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.0b2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b3bfd7f1d37ed48b33f2363f5e76cb5a738c9fd7d178596f24073154befa3bd3
MD5 110fc975fa7ba8726b519d7c31e5d1df
BLAKE2b-256 d62097968200ef8498b81f93787dc12e904545b8c6dabaddca8a1a709b49b4de

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 756dfe45bc74f06352cd3923799c634e8048788f4633015a543d88152e97ea59
MD5 f9256a72e020a05b46ac35694b6a07a7
BLAKE2b-256 be0d26cf4b6fa625ae98635fd20e0a600e1b8fc77cc8660ef4e062d7d6ba3a4d

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9a3edf6e2edecef7ee3356769b28fd7b95302342ba437d9201f8f0416bfcd10
MD5 f573ed06555744eeb92bb0dbb6187989
BLAKE2b-256 71727f208224651540142978f0e488fe96f2b84e42c48417bb86d3a3bcd24e5a

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ed18814093e7d4953a07cf7154cdf4d0450daa89c2847e8f12195054b58c053
MD5 3ff52fe5cc5d69413db8ee69b9ff15ae
BLAKE2b-256 60b180719d5c7278a2581059e316de69d1889d793e45bf875344537ca2538df3

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1bef00ed3d7ab1922c306a3a95a2c0a8a22649a4f3600a06050cc40288cf8c2
MD5 25f5911889dc860b9e853c0df5d0beeb
BLAKE2b-256 47bccb8cb8db216b1f69193809e0c48d0c429fb841e09791c8b27c99fa778da4

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 012af6895e853a881cf49b5f72fb953f5c62adf3522e916132ef441fbc3e4a12
MD5 07fb752d57b7b6b9f30701871e82e3e5
BLAKE2b-256 059909738391fccbc09abf09dbd5490c10913277a992b6b5b72c1b2cfed8b718

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c5776aafcdea8312ca6d222cfe42572c2e188845bc93f2cd4a771868f61c589
MD5 5e1d1ac3da0e1cc402c22b9ae2da6d3c
BLAKE2b-256 fe0417ed03e9ee04a331cbdfe0a3441824d63e761af7b263748eb2bf9a58785a

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9bc973333191a62fe75ffb9e6524445ef404990f1a960c54f3193d62092f7483
MD5 4ebef189490f373ec1771c575f3e8ece
BLAKE2b-256 59543897badde7aef40132ab57d36f5a1418b3997306bcf0d166b307155d9217

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-none-win32.whl.

File metadata

  • Download URL: endec-0.1.0b2-cp38-none-win32.whl
  • Upload date:
  • Size: 271.1 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.0b2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2a00cb990e773b839969fa808497f63fbebbde331df7470ee21f93e6f4913872
MD5 a7e45c41929351808585984bc534d9f5
BLAKE2b-256 ee3bdbd98f53c4e7372e96b68e426b8dd98d137e3a5ef805825a87de2ee0cff8

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7073a7c73d490d08c3d2855cd254e9202f3fd2260306dff624e5368e007b448
MD5 fd4759ed4073e68e025f567b774b3ac3
BLAKE2b-256 2031f7706ad577b88348cb968c5cf9e98e414fdd406758e944e632fce5428a77

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d17d48c1775ff1588dd1a4186bc7f36e9fb5098755664135e2239f35cbe24fa8
MD5 f4fb2f35e3f8584bd91feb7a1f9f6107
BLAKE2b-256 2c8be25f4b5c6b7cf347f480a9e36936e24f1f27814ea6ab60b3a61686348fc8

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 398cb56f70fcd2eb737f2c5dc06bdde4a7803005e90bab5be09e34550f049046
MD5 ad3021daa94f55288516d4f1fea947a5
BLAKE2b-256 e3486eed50d8e34e9ff9638aa334f75038f5275adbe91de9b0656da6524c1792

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e22f3db8d3d055f20e98c40b932015d108db2ea1caec56e1f29305dc51efbfc
MD5 8d3240eb451b93b61400234ccd804cba
BLAKE2b-256 00e60c29f4af95dca4102602a1d37a51489eec787a024b6d8776afd2ff7d9fd3

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63fa47e88b5f3a5c81f2b7079a1350fa1eb6bd5831299272c910f2770dc26b20
MD5 f9d99804d8996f71c7bae37f5b96b05f
BLAKE2b-256 2485bd6f1905c418cae6e2b893ac576056c24cbc2a2eeb2f4d6dc8233f139628

See more details on using hashes here.

File details

Details for the file endec-0.1.0b2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for endec-0.1.0b2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b4e8d57328ace04f439f32390ccc745c1476188dccc2fc6a9333750aa631aeb
MD5 350a25c75b024f1cec3a97b33814628f
BLAKE2b-256 e5bcf17f88d28e0261ca0b7a01204eb6b002684f520c4b868b7c4dcb1f97aae0

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