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

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

Codecs

Please refer to WHATWG Web Encoding Standard for available codecs.

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

endec-0.1.0b1-cp312-none-win32.whl (272.0 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.0b1-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.0b1-cp311-none-win_amd64.whl (276.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.0b1-cp311-none-win32.whl (272.0 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.0b1-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.0b1-cp310-none-win_amd64.whl (276.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.0b1-cp310-none-win32.whl (272.1 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.0b1-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.0b1-cp39-none-win_amd64.whl (276.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.0b1-cp39-none-win32.whl (272.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

endec-0.1.0b1-cp38-none-win32.whl (272.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

File metadata

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

File hashes

Hashes for endec-0.1.0b1.tar.gz
Algorithm Hash digest
SHA256 89b416f9d93dd56bfcce75afa009599e1595b3cbcbc28663490fe8b2e3e41f45
MD5 27180508b8f2d2f96ee48dd9ac2e82d0
BLAKE2b-256 3cad414eed85c8edd903f972ad8a9fd2dee3bb4ff44e5fa522c62b75387312be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73f7f22d3f8243d8e984ad1a55dabe4afb48bdd043faf67f462028005b7303a1
MD5 10fa54112024bec1235dd9c392d506cb
BLAKE2b-256 be8394bbe74954ddc729899e158944eb6fdc0a4029fef7268804e610ddb6c785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c415ef1ccb1102ff63887e4c001e877fde72a5dfc7b410857ede144c4b69e3b0
MD5 acd676beb9b116dae407159375802fe9
BLAKE2b-256 59ba6ea95a964a9523a9290cd57e1c45545d26deeed58edcd4683d4c2d0bee11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53f1202e046049428da885f0efc093324ccaf9d6217308f2ed5bba191fa51a8e
MD5 ec0d01ee5a71767df0dd3e234bde8ba1
BLAKE2b-256 1252a099284db3e96d6cf8153c748e106ef4c6fda4d0aeb93b1ad37303ca51ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9e7bbe2006111d747424bda5694dc00652adbc294adc36b0016511d81c70938
MD5 8fe9e37ef7e4118652b32dc8aa35995e
BLAKE2b-256 79683fcaf805cdc8ecddc1348e5621d6335b38a7254258d798114968dd0f12c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a9958a4b6aaa68a719583d86f3363d22d61f1e7115a7c5cbb8b19fab7146c64
MD5 e2ea6ca08aea716fdd83354c90639f9b
BLAKE2b-256 159fa21361a20b34a1d7d7a97d4cab0518933394ed3b222b8dda44d315096167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 386426fddd4497aad61239ae53e9a24413078c8540e0b0be31153e788a38aeab
MD5 eac79d5dda06f5b5df12f8a0ef0d124b
BLAKE2b-256 1234a452eb9459c83ac23860c2bff6f9605f3c324b603737a60ecfda47ede602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdee57ea945adcd75d8788ea09070fb1b277fd3a65c828d12fe464a985d5f0ca
MD5 dee9afd9b23b24820f686bdeb283ec60
BLAKE2b-256 6badb64d43d63736d1c3358e9ed6532a1cd2d9c53b23ec84485242a251e41314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbae76b5cc9ba68822a4379878d5e94204510a8702e2f07358fcc889937c22fc
MD5 7b9322ae40d15f3f9a7cff55168f6a71
BLAKE2b-256 daa2bf0bc9b3a25a6594ac3f815f9057981fbe0721f8de794004f55a505c48f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb0acdca2e8238b6535521a5005ed79040f7e04a2e3dda89e9006b117f06b2e4
MD5 4d9531e5b83370466a09fd5de7e8e53f
BLAKE2b-256 701241eb7a2e9f7deef26302e647c04b36d707f5bcb80a9c355965d53e234d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b3052c80affce43ad7116d8752309b25ee4715de9765ed86fb409eaa9481808
MD5 3c2b5970a2b27feef16ebecf72fba63a
BLAKE2b-256 6fc651e5f40ab2818d392ed2d0ec2c87e96f4a0426c3a2386fd6cfdc383c13dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b9e2c8f17ed1247b0357fea90709a8b9a818131200ec0ea1a254e6648fd0c35
MD5 a9951437f0c1234a8308c386935655fe
BLAKE2b-256 a32d05b953e1b8c02c34421a9bf72bff78934af4bc64065c998f72511642a422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01c9eb74d6ae96a36a210040e1c161709712102730e372c61871e278eff8349f
MD5 51b3149deebb063748c14faddac03805
BLAKE2b-256 a58a0e2f534b0bbdab928aabc6fd8661ecb7f71cf8088cbe5a3711b9e6859bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9988ff23712ff35653532e12caa6e0d66eaf26787067562019e5eccf7d1a2ff
MD5 263ef819a3cfb337052a49afc5e634fb
BLAKE2b-256 0c80d0350652045f8b4e8bcc791c403a3c92816ebb75a5abb0e7a879644d226c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95288980a4472ce7cb35d59ddcdddc55bf67406432a6e7791ad156a483db523a
MD5 79a8bad058b301de4c4bf638a076c001
BLAKE2b-256 f3c32bfc4421e33dec458a4223ffabd7c1cfd4d1dc28cb0b8e23c6c473e7d4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0add446617ab1ee96aa5e7acea9ea31054dea73aac7500f7f36eb837ddae61de
MD5 e363fed48d3841f6fc6a347dc6ddc4d1
BLAKE2b-256 bb9cf0bc2498ae91d58cb369376b6f97739fdbc6db7bf7fc3f5acb047c705421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fe770ffbb7da206677cf90cf9fb62cac25b472d2076e5881ed87ea2135053d6
MD5 0d93cad9502ba7aea33d1bacbcad2802
BLAKE2b-256 965c0f3d6e35ba695bb4b2f272dd7aefa638d423f58988bf93708fd74f45f8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ffda26cde18378736ee62863363c226736ee0fa378f20c0559d73cd83d979a3
MD5 b5535f916619d856860d472450ccaea8
BLAKE2b-256 1526611d845c4234ce626240338b75283d6e1983b66bb0e0d8911d20086423c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc21bcc92dada94e9a01b16e04dca2557051ae6a2132c9a0e2748a0bd19c8238
MD5 65c487efcc277f085653410197d5509a
BLAKE2b-256 a825a10ee71480140dbc6d9c700a03e7ffb925a4129fe9607155db788227bf7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 db92ed5ad00755fed126192544e9c04a0de97cfb2917d9c43891b81c57e25ac7
MD5 d97c13005cb3b4fbd006e40dca5bef5a
BLAKE2b-256 006d5348b3a85a45b981014beb4596a2cfd73e86dd5be21cdda7e50751416ca3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.0b1-cp312-none-win32.whl
  • Upload date:
  • Size: 272.0 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.0b1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 565249d58f15ce97b5939e02c0707bc799ad4749a64a7ee2d1872e1b24be7ed4
MD5 200da08ce6c8a9cad52110dc9b8f8cbe
BLAKE2b-256 8f0b7f2d2b9ad8c981abf5d6ea22c048abaa2039ae4518d63db22715f34115ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b40190f13b54d2209cd9f10ad4f2db2e721d04d06d1012fcd089ce56441f29a4
MD5 394c0f8a1ccd7edb4b306e56b5b812a7
BLAKE2b-256 dfcc21ed01f12413060713192efca97575eb407d5d99f65b21078c440d755b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d64354def8f013ad5b9c95e7257ad335cf8982b61216f6ecd50bf3d552cfe57
MD5 71b838ae2fe7cd365c79e4e9ae6af4db
BLAKE2b-256 50b8eedef477054de076868f31d2b3ca2eadd3cee3d969023450368e2022a31a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8be8399de8cfbfe241483ff00997d1017b067a86a02c0702505aeb93b4a417eb
MD5 310f85dbbcbb9e368d3305686d04531b
BLAKE2b-256 aecd4f314fc251543228e1f910f98c656c6b4af92c85b56f1ae81728c68a4147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ea12e2f469eb3fd6df8e515018cef0869d1ef2dc29f61ba100d3bb3be79b02d
MD5 686f061dcef4b2b8463ab00a5f00be01
BLAKE2b-256 df156aad74233d2283b299c03489869d3d500c3428c6e92bc46018452fc08190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 061c3b5f727faf680b3ee55435b6c1c25f9cf17b0daaea7faee538e223b91eaa
MD5 9b5df16bd75897e454569ca84f17b6b3
BLAKE2b-256 919f69e948ec7dc6ef99600daa4a8066f2771217c7357d5ac84957427b0ef42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b16306bd1480ba667d4085e16ccc2890d3409601b64c214157414e4d095923a
MD5 60d333dd22463edebd15f5603dc45726
BLAKE2b-256 f9434086fb78c25a92bfaa3aa2a4a6ca3b64bd91c6a43acebba0c6391925efab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d29ac34b48e12ec17a6bec93c13ebcc9da1523a6f0325c5f79cce91f7c0a43b5
MD5 8262f9cf6051648b1f1df3fa9744838e
BLAKE2b-256 3a628c8b22b99f6910f907bd5fe7c3259855fa93d60a068cef63ec48a64de9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0234c1cf7830d3e28d079989e90c7b41e54bd426c7b865ad59c49adacd2cc4a
MD5 e88cfc8b2cde1dd2b2addf7259981c70
BLAKE2b-256 30e0c48c4b56cb50ceb4e3fbf6d10959a46a71c8f7f29c41596646027fbd80d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 52753bd46a178afa743efa6fac7b06f776c8230c2bfb1c66a7bac1733828a3de
MD5 f33d3799be144e74f8c38d38fcb9953b
BLAKE2b-256 3bd397b7b5eb59e45a7393a7860f6b25458d068a27bd4944cb978112c04e8756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.0b1-cp311-none-win32.whl
  • Upload date:
  • Size: 272.0 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.0b1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ceb670d3d4f715a4ccbc43967d26cd8e53a84e645b888ee2687a0dd4700c37b6
MD5 0a224d43aed4732bd47d041c53e7a47b
BLAKE2b-256 cd8da897a9fb47b38e8cddeab84f82b6a4833317a470da7224f05d64a5116295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85731782e5acfaf7dc340b262d9d4349faacc2ec4984f538a1469df386e61599
MD5 f7d065322ca56b16a68764e7d7be31e8
BLAKE2b-256 f28485d59af1f3e1f4a1e4aefda206d5d586afd12bc914a57974e1ecd4360e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4206866ea5324a78316212adac3184a7b851221a510c27c7c8e66c09026ea8a7
MD5 d6192f32b6d0b2112e49be5bfc267ee9
BLAKE2b-256 3db9523076c04be16157580b73e15e15b8d1977220993e611de62e19bd03ff4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbc75f1a114f6b55de07d500c568542216954b20bc40cb2404379dcefc6716f7
MD5 737a94f71363370a0f0b90b68047f492
BLAKE2b-256 2af134a430047eeb69e2927a67cf3742c38fefcb0927f5bfd2c5035f50ddbecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3b285dd04f07c9c118331f710e6fd0a748414f7b5438a8e038681a2d405a204
MD5 8277f85c5d9e01b0bc028b805abfd14d
BLAKE2b-256 c97dca456f4973153ea9353f24efc26c9fc236356bf3b779fc776b6e1f2e4e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90c6e8b6682e6ce7ffb2f09516ec14360c485380ff5de47078a7af279c0cb709
MD5 94fe7eef48439885bb0e8b39317da17c
BLAKE2b-256 2890c1ed66d32f8494d369178121044fcce252f0d79eb97e4353fa4523bad424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cf9812b0873202eff96354f827ad42db7eed48c77321697b4e2c1e46b80d3a1
MD5 1ef99e696bbcbb754b2d17096c9d1688
BLAKE2b-256 5eb5e5521df3eea86efe4b8c878476033fba1c9762c1c27dd6253e1af3e0f332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8746587545b2e262b36f19a9058a816fc9444c1edc232d7743b17885621c4f57
MD5 ddc3831da0f933f7c9c9b9d5eb45829c
BLAKE2b-256 11a9e24edccf3e57a3d00d9102449f3e0b188cc9162e83fdf4cd4a4840831e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fc2b80e4a6e9019c96fc24ddbce7d85d19a5e6189da04d898fff71213e54fd9
MD5 dd1f4f8419524d158da82cb20a40dc73
BLAKE2b-256 d34af9c688ee25c85cdd0cd54d28f993c6be53354e685c14892d6a9dfd84b5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bb3934eb1c85a8396d33c2435deee5a1316459440ebade323f80dd4b01bbd55f
MD5 d2f7c9252cc6f997e3845412a34b9e4d
BLAKE2b-256 3b81e84772506d431d6ffc7feb7e039365590605a953f7e7a021d1de0cf00c94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.0b1-cp310-none-win32.whl
  • Upload date:
  • Size: 272.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.0b1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e1c84b2a6586a61d6a98a4b2621b0d233637c6f64a52c9560f4edca53b94f0bb
MD5 09c1807fc2681cc8f8e09b7ba2ac68fe
BLAKE2b-256 35d5228ca41c48d8e413e091d3f72d8f1042be38b412acac2762d972d3fac9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e75e4a63cb1bb7820aeb514d1926384d035b18c3176563f732a444dde26da7e
MD5 6a180e7c96c1373d39a2567c76a9490e
BLAKE2b-256 bcb707b0adff6e49d41c189e66cab25a128b45584668da5b9d54043170517749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ffde2dd67d84799863466a802e49df5d6ef8696107fdf6bb70816b09767e64a
MD5 fb6f544773508d7d168dc42e2e39a537
BLAKE2b-256 50ae28c40f59012cdd094763bab933e4eb6d874547e6716eab99e1f2bb38ee48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8bae843fedabf0c54331a5030a4153dedaf63fa011130f5a9bb6d532f2eefb6
MD5 c92714360f3c07cfd0f425f3c532b896
BLAKE2b-256 5b809f6bb76c4a05fe015e1cdb283b458bfa18302c6919d31df0473d547bf6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b32e8a5450485aa4898ebc4c9125d10b45521e9ead0ad280a7de1debb69cc09
MD5 91ac4962d6cf4b469dd9a74b99daf790
BLAKE2b-256 1c8fb093a8e0dcfb6ab57995e9870ff1874b4938cd548cd58cd98004c9552440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 837e296752969c3a283c7932089640f17076727dcd6316987582ef9119754579
MD5 d43a3e750cc217288e0997a1a863970b
BLAKE2b-256 ae0532344ccf0eb9e1c827ebcd34d3f19355b2233a7c6ebcc975b1133de8878b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bfd64b421104ea0f3daf16060c609dc15f0f4600ceb74d13e04ef25ec5e6d3d
MD5 5a5d9cb9efb4e51c6d76f93b37191542
BLAKE2b-256 89c52f1665a5750965ff54dcc36366fc73fc9b5117b35c8afafffd2781de01f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9df5241ebdf531db04f0329add39ec44f85bee89c21f333b92ead2a33b400d62
MD5 a2ed1ab02642f59586318015b263bac7
BLAKE2b-256 1cff6e8eb154daa9a5575a42176209c2fd0739fb0b86e8a9606134181b532b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f8ae453b7d6f16cd36f8bc66757362a4a47b8c40c0f2c3c0405da8bb045e2f9
MD5 7bd22254fcb049af1e36da6b14238dd4
BLAKE2b-256 32187e0d1650423ffef46ac6ce044f52aaa318a49ad8e6fde2482c763809cab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4556fe72df195260dc9a3422412e9f0ffe32cc858d112176de2d6956b55be46
MD5 e281c2aa288541f1ed175052a65f67e9
BLAKE2b-256 4b4228113908b081797318324a92999130507696add7ec08a757d7fbe0c45201

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.0b1-cp39-none-win32.whl
  • Upload date:
  • Size: 272.3 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.0b1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 824547bd541b6c8f4ad594a5cbfd4b6d0ff4250180a515fe34f6d15d086acfa7
MD5 25e9ecc784542e9657a4f8edd5e3e9b4
BLAKE2b-256 176d836212fa267c4c913c98c195d898cc00b2f680afb4b898c61473c0a3fb43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df4095016e72600876f026c40cd3e80cf295fc5b15be750cf1d36e316b8dff8c
MD5 4d2224ed84bf1e7d619984cd8de1e03f
BLAKE2b-256 989563bd9492f5986714fa2372e5e45ee294425e8ff4452552054e26c13092fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c927f34a929405dc40c3c803d607b0c852ee886f01b154b26dfc6ff758abdb83
MD5 903372ef8f6dea23e8203c623b25f497
BLAKE2b-256 5777a3f7b02a5aa76571ba5f0e6e0b7b46049c9a74bbbc4fb761331a12cf87c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dc461f5c8971c422a843f21f9aa638285b1e1679cf2791d83a0078cd9288140
MD5 fdce84f7befd15cbe13b5170e79b40a6
BLAKE2b-256 441db77074d9aff7d2c8dc491498a062004e09bd919da199f4b60242bd96f17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a8a7fa7211e61067682156819b83efb5a24c842f1672b0b07c89aa9254939fc
MD5 44f22d68554ff6d8352004ebc93225b4
BLAKE2b-256 087b822b80abe1266677dad347455241a3455e42d5cf852beb73b2532227f325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96eb517c041518448b539084e03a9640375bc8ccb52dfcba58cf71875a573c98
MD5 8874bb00a87033d56070f78853ad41f4
BLAKE2b-256 4ec216fd406ca6ebe08738a654514715bf2c4fc64b840d443931054651907d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8327ab7d2b77c6c6d4dd3a2195f0a8807650204d17dca8f0c750507ada5ade7c
MD5 2eb6b0c10cdefda35440e5e21f77c3ba
BLAKE2b-256 c8d3b2f66f3c067fdfac82c4c26aea189ae05086977c71ef566e3daaa95a1ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 961a1ba39a04599390433324268765df1bbcceb95ca9020e0387c25e3af76a3a
MD5 6ac47ddd457d9a485ea5361819fe3076
BLAKE2b-256 f8f3200d8c49de92f451d6523d96081810e7229e500e4fc2da14a11b325d505d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: endec-0.1.0b1-cp38-none-win32.whl
  • Upload date:
  • Size: 272.0 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.0b1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a82daff860f6a52e28d279a16e887405ebce2867412247ecc5b3694e62479fd6
MD5 aa398cd805f4c26eba4067221f83ede2
BLAKE2b-256 21a31eff501c95298385cc0c608c1cb16d7f97f69c63dea6b3acbbd1a17b93cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8603c79734a5430359e2b7f3d6dd9c8f9bb1c58946610b13c343296d487263eb
MD5 b1bab20d47f2ba0ebe1162d4f134696a
BLAKE2b-256 5266553463d3bbad3f5aa9be80a4674b75dadc52c61233ce92bfb1e657d27dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59d21150dac2c7d7945de14642121128c362e307551c647cc6bb7f13fd624e0c
MD5 e0724bd1ec8d95b0aeae859896c51459
BLAKE2b-256 dd9332aaab054a8768640c8430583b1c41c5d3f6d02a3c7c2c5af065a6b617d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49993d26714e2d0dec84a99f87d45343465c258a1345f41f5759bdf3e2fe2eb0
MD5 4c6354c57878b24a19d31995f0dd7ecb
BLAKE2b-256 a9151c8995d7b22a4363834eeb28d3a0d478beed121c0e4e8f9e552006c8b166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 279511745c76bd6b6194ab049612032e9cbf47c16b0174ddc826bfc17e3f153b
MD5 0f187cb25f890c5ec5ab23baf547959e
BLAKE2b-256 e24639476c842db0787050008b51f8aae35f0efe8c7e2c353b85f20c1ef4004b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a730c6291e7220c4878ed952b4447bf3043a62852bd5f33f583b1449edf9451
MD5 c9962ef374372396b3023ea3c7e41e1c
BLAKE2b-256 85ae0e0d2f19afee13b895b56ce57a0d21439e9bbd927afcf674c91ea3242de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8c658947c8b316210425724cd0316cd3d38481af23a758278ba21ecfc616952
MD5 8ff3a5f01dee4a171a2d2b581d6578b6
BLAKE2b-256 4e38b55ca8827d773c1c105331da271ede0b02ddb6731378818f75bf5ba8b159

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