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

Uploaded Source

Built Distributions

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (445.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (410.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (445.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (410.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (445.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (441.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp312-none-win_amd64.whl (267.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

endec-0.1.7-cp312-none-win32.whl (260.1 kB view details)

Uploaded CPython 3.12 Windows x86

endec-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

endec-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (408.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

endec-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (366.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (369.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.7-cp311-none-win_amd64.whl (267.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.7-cp311-none-win32.whl (260.1 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

endec-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (443.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

endec-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (409.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

endec-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (367.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (370.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.7-cp310-none-win_amd64.whl (267.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.7-cp310-none-win32.whl (260.2 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

endec-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (444.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

endec-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (409.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

endec-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (367.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (370.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

endec-0.1.7-cp39-none-win_amd64.whl (268.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.7-cp39-none-win32.whl (260.1 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

endec-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (444.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

endec-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (410.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (409.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

endec-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (367.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

endec-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl (369.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

endec-0.1.7-cp38-none-win_amd64.whl (267.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.7-cp38-none-win32.whl (260.0 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

endec-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (443.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (440.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

endec-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

endec-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (409.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

endec-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (408.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7.tar.gz
Algorithm Hash digest
SHA256 4ab58124ece546ac375e85d8a51a94abf18e8679ee38e891b6d8afab17e2db6d
MD5 70626fb8191063d0c0be7760a1a56edc
BLAKE2b-256 603341982238534a3007361cd1f1f1f05b21893165fa9629a93df290b106f3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74e370270882caccdaba98ab1983db1723ed431d47d64a7ca67482dd6120e5f8
MD5 9812762d05363f2e1d613c5f51146d02
BLAKE2b-256 3fc969b6938a293701c7591ef689c911ac774d1370e404c353646d74db425eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e84eae013c9a6ef8800dadb62685d6b66a708193d23d7701d9fcae2f7a5d564
MD5 66425aded964cd15803baae5f000e4fd
BLAKE2b-256 2641c662d79ad1a7c11cd1e2e2fa4e797690a0c12f7bac6d8f6eaea763b53e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e4d1714729baa5d4efc3c38c64e40734a755d91182122abb48a6c0495c1e659
MD5 a48084c94914d68d8723bb0d6f25de79
BLAKE2b-256 4bfff9d3935e9d444a153d1651443390b81dd3b4c11f559d0dca2c6b1a21a521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e5a63c1396c36dbc095c0c420155b667f64a8f7c7b6e4d7f9f7f0d4477bb4e1
MD5 ee036cf6a63518cb68c01ed376e6d5ea
BLAKE2b-256 2e1dbc3cf854e2562138300ee19ac14a1a9165a90b10ae893b5416952afbd651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 868dd924e48b321f11d917919b0cd54fb70b5b941e827ccf0ad5afacb0c05be7
MD5 9cd04785f48c556d46e49c4aeae8a114
BLAKE2b-256 b6e88d465499af5661d069c2541823e55539fa871c1dacb16e0d29edbd16065f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36191ee7ec13d9bc330890d25f2c3509df89164e45663a81c235562b51d9ef05
MD5 b7db62430c49fc063be7925c6008a98f
BLAKE2b-256 bfbaf79422282028a3ed5f8f1d70d683d79de69e18c50c6b3eec3b577cf418a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ce41952fac35e32e4b05d7e8c9db4d2cb97af242d4a38a23ac26ebaf659e556
MD5 287e28c4223d73d73c266a93f830cee7
BLAKE2b-256 f4c96e5d8a34d20457b2ee3f0b26cab72071372728870795292fc91ec8f8b588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94fba1bd1e66a7312602dc1e8f787decd463b1d09d9d754ae29e4d97902d72a0
MD5 d60ff24c7a48a01bc33f8b4ae5ba9740
BLAKE2b-256 5a21da6cad85ffc0666aa958eb6a28296b18095c762fa694e82ba27a7bd296de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b426c15b862b1593258e0df7627dea57cb38903913b5143048e179fa2ca44fe2
MD5 e46038dc07b693714992148d08dc79e5
BLAKE2b-256 83080cad126ba39877c1b7b63fe335c30f199b9abe2a48be49db12749bf3048b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c43c88b54fc721e7c2b450c507cc3ff411fc4f7d74b2560661a738c3ab8033d
MD5 59408341943a42e969b039d66ce90e5e
BLAKE2b-256 6091188683750ea9f7225f76602795eaefb943b67be433fcfbba354208979a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c6f285a7df5dcbed0cfb43439b78a7ed74d4ef4062893e9cd4268fc561d378b
MD5 2c599dc32becad0ed584c4255926d4a1
BLAKE2b-256 e48514e2bc9decb1e3cc7fdd2392acf7d5212a348d6626142094ec1134756e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 732eacdd3213b07723ffa658794c1e5edf9fddb55683d9d26f1b64a506d54d09
MD5 3f1249bdbb8a18b6788e76dc34a9b5f5
BLAKE2b-256 d485f0fa013c8d3d5b1ac4609d0d987bfe7b2160db414ca96d96ac1b3a659e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18d0a3e6fdda9167e4b9254dac6b1bcceab6a3ba28b5b10e21fc4329a0c64b62
MD5 9d419bd60c1d93e7400e9d3990372ba4
BLAKE2b-256 9494845f3df61ad45dce9385595355a52716b45fc33eda1d6ad8e6cb9cd37d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2daf413f546b7b51d4ce5196a59de5be5eaa86d1f0d4927f7218951e17675470
MD5 98446b7aaeac8d51ec9d58c3f1218a29
BLAKE2b-256 f71a02f3250515129af18fedfc374f44ccd67072a0a0a9382acf3bef00972266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf820aa89da13029137ec82997b7f32551420bc78d1a6686203cced88ff13577
MD5 c04f4da1572db9a4e8fa8f2f1a0411bb
BLAKE2b-256 b315df1b6003b955e66c132c7cb7eddaabf34295515f0884b92885adecb9ea03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74fb0b7ba7a5c0a6427c480397f85f91bb09ca673f5b1779f46e9bc8cbedb9a9
MD5 47aa9d58f2ff8becf439100edc4df453
BLAKE2b-256 2a0355e6790b9f312c33b930393fbed6cf5a61ab379167928a80eb19fc1c998e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 60a6f06561f9e491d8fc594fb4730bca5a6f8b5a3d6951963deb75547be06232
MD5 901a42f94cbbce8dcdf450927a245533
BLAKE2b-256 8e5e7815fb9fceadfb6d0bbb0e47276d6f48c64d6d7fdb970e3aa030518ab8bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cdef89703300a2e79fe72fddfb5c18da3b5ab573bbc058df67c73d989eba536c
MD5 60007cf2afbf53b308ea64cf971ad1c8
BLAKE2b-256 ca7e316df3086c973a85eb01d12c1f5292d784cc8da75a55c2be105b7b0ccc4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ea606352cfabab235d6149318d1c5fa8fd628a9eff852635a9bd0f404eb1bd
MD5 834d4029b7e276d57cd391682e0aad43
BLAKE2b-256 0285920d7bf5017a0792d36415314bcedf1a19749648353c24b542863863b852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef6d6da9dbd60acab02705ac7215a663ea509fab571fa39d050b65cb0e31d2d0
MD5 f1a4247e7dc482dd860f08b19f4dfb81
BLAKE2b-256 2d12b92b16e31ec11534aa410943e01644c404aecc0611aaa636b9bcef6d6d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8e047212997f945ae459c474e67e6103ff1b1ef47e67c60cb9104a910c6ff09
MD5 ca9e0e22d019678f31b9e3cd88c8001e
BLAKE2b-256 ba17130d3e2902c15b129f008f4f1ba4dd7ee167f7339549c442a7cce067c394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a1ee93fd92aefdea370b1ca422d66e76889f532a68a3dc3cb4ec4b3b552ac87
MD5 2553b6d1e6af108c5ce18d3ff558067a
BLAKE2b-256 b7182704674af6a56286ee77666dbf00f6d23352e34c789f049ad89c3f8901d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed161942990e2635fe467b23ed27b28969d29ca99e80649cc1a2a811e83c88ca
MD5 a81aaa51ff0b050935d8fa816262c14f
BLAKE2b-256 5a57f471909229c9239c6e356909e57720d5f9081f0ce93b340e10a7cecfcc03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23dbb50bf8dc0674ec149c1787d27c69895fb3f6f285c52714a79a19e7cfeda0
MD5 652742ca8d9e97a012f3029bd912914d
BLAKE2b-256 c0994dd6132f869f26c572df2e5b1aea089cc6a2acfd997afb02dea69a01702c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea036bdf44b9aa2ad1ecb790bf29a434fdf955102097f5ec74031440416da5fb
MD5 e0795ac0a1fb5dbed8442d36d0f7bc82
BLAKE2b-256 163b1536ff97344fa5536ba9161859c0777f3db07fa657ef28f098d7b760a01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32fb4eafd76373efc0fd4df350359f6feca79fb71ad83c94d412e95b14521218
MD5 42ee30d12d185c595706e60c75796706
BLAKE2b-256 0a518e4aae1d1362dc85fd3ef7b6da6f9d4b3286ec9d8bae90a27585ffe37761

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6e6a8980148a6c9d66cfdd9b1cc70307e9d8e355ac9d373c642d355769e2d229
MD5 d44c1ecc03fe4baa781c164a5b604f12
BLAKE2b-256 05b12eee3cb2098457a3397eb5dc0fbaa8189cb8be6ef5c59b9e2466ec585fc6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9ce45e3f88c3a78eb1af2f009bca9f9dbeae3e1f9eaa544da3d2cca6fceceaa0
MD5 015cb3c9fc23e78ec01ead2e5e675c95
BLAKE2b-256 533f8a1b589072d00d6dd36de459e3e61d81445938a5bf54fe52195a2860f18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea89e503f494d65aef24253742c698b97539a368e6e2ddd895aea38df1404018
MD5 9fa749db6f11d5ac90ebad93dce66524
BLAKE2b-256 faa20acc93ddf1c31c5d57063cd97c942aa771917e2f397247bafe6e17f38bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04a09ca77876eafe5a26ca34d8a7bde4d203ab81a1a0acd97f587cbf90ccaab0
MD5 8b66e268d5e9bce02ad0dd6b6036f7cc
BLAKE2b-256 9269e060fa30ad74a75f1679a59d077522387da2dde4aa990c515f7f04e451d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f2886ff0c5346b40104f936bc3cb2c0c7d6449746596597dd12a48f5558881e
MD5 cec295fff35e2b675e0c398a812b3a78
BLAKE2b-256 d011ae887952dca269f90dfc8392285d22f66cf1fb821959ada03becad33902a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 884038704f721cc5b86aa230d495ece016b39c8f8d1049cf750ab6ceb102290b
MD5 a0ba57f37098d1ef6b4f59409acaafb1
BLAKE2b-256 8ad6f4aa70995425734d8a6a7c6ec5086ff0ed76fbc38e97c8a0868f1a90243c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9d197a48f68300195a88cf2b31c0ce57b30dea21f6f660b72b4685d5bd7fca8
MD5 c9e0d0fa753a17d4a17bb8f8c0eff67d
BLAKE2b-256 cb082546d3ecf463c052ee486f03994e7e0eea0a4a50e120d14913a61f9a87e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c97e79e50d9c933659be20c8477de6a8057b772c565b9fdd5b521809870e6a9
MD5 2c617ae1dd70e4c99300727f802a2607
BLAKE2b-256 54121713cb4064d7f6fa0c47cf87d060bc32e013726fc1389fdd181105fee299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc4b5efed4ee185b6da6b2d7f17891c4a34871051d4d1dd9fcc4527574f53021
MD5 7a838fc7c35574585aafdb208d0a0275
BLAKE2b-256 797dab09a7d89f00d543cff04fdd2b1029d691949877e09a01cb4af9654649e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99a1140d1587a2413a5b13f5ee700182c79745e6a2110255f44bc5d3bdcb589d
MD5 7c5875027440ac65e790f1cf17c66659
BLAKE2b-256 df7b2a3a13b3bb4731c8d84afd5a1e238caa919965e0670c71b14e37765b6a62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d98152e22991f2cc66651792e3ec95cee30e360efe31b8dfd2e94ed4b6996f69
MD5 53fa21a5be8c7a84a12c1178f4545856
BLAKE2b-256 ab6a5f5c48448271c8661a2ae7c808a5f7753e4dacf9bee80938ddaf9db03a4c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c368dba2d277ba7cd42e88b25fd4b9d6ffa1b80de509e14a3516f454505f14a4
MD5 8adf2ba4b13c02987f4c7f5f45603b54
BLAKE2b-256 a0880709d5b5365641d20a707d0f1a8bd34b97c11e9d09cac78f5e320910e256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 782704f26137c63440ec955da52d687d8322858bb211706513e31c8370b58e16
MD5 76cc7e63bab0a419d715aa984a8db079
BLAKE2b-256 a58b83c93fd040e822d7bf17d5a4fc91946249ebecb72879f93519907cbebbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e50a16c0fc58ebebf8f3299405874611d771f521be9ebabcbbd8fd7c21fd038
MD5 f4004f41aa9f4c2895972c72a444a720
BLAKE2b-256 15aaac9e7dfc5ad86537bc1f15f3b1f48804600cc668318bbf496dbbf3e15231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cbd7594390fcd4012389edc11abfb9a5995028329c25cfaadcdbe533a6eb5af
MD5 c3df7af3aafef5dcd8d336cce09fa1d8
BLAKE2b-256 a129457d24fedf38fca3b2ec80139813ac38f5ca511d73c036297b665b0768fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3ca09cca79938502105c0c46f10612411eaa7db3eb8131a983d39acb1fa944f
MD5 1402cb595753488586830a08412e651d
BLAKE2b-256 72224efeb6112873b271cfa1aab2aaebd27a52fdfbf812923a8062b56deb5dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9813947a4cab5d6fbbdc3ff88e05b8d5140a715c225641d5d641d6acf106017d
MD5 3e963e486adb54c11f17e27824e2bb6c
BLAKE2b-256 da4111b67cc22a1a7867101180963bf0664676a8135d881744b18d9811a5740c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e51ff121844a42f0bd5edb893c7982f03c7330c236f2e05698333b7cef2a55b
MD5 471a73a60ed3541a322031c8966cdf30
BLAKE2b-256 74ab4fcff6d3c9795336d7017349d0340b19fefee56ec130afa652db55bf0fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44b1fae1fddc7503ac55d5ddb7ef225bfe2a17c75206c9c753319ead0a0f7034
MD5 c3f2d56ffde83976d472c25448eecddc
BLAKE2b-256 03471f5c22dc079aa3c50514b9fa86cbe435a10cfcd0a002a69df9f47c9075a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 627387ac4d6fbcad77adda635402267b6713ad25af4dba70726e620849ec1721
MD5 68d392d4fb2bc6e6340a78605e2dcb44
BLAKE2b-256 b0bc40c3934e574bcf4ea27aa2729e0aa2a4610705e29a5bc7204ac3ae32bd26

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8ecbf3c68a37c034f12c66df81f71d19164c5f14c07e40aecc7ff19c8efd78e4
MD5 c71c5f541063bf6f24caff686391f46f
BLAKE2b-256 f86b90aa316980bd968d47e766df428c54824c2fcc239a777d6422602c502d01

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5994ef9f205bd8928f821fca63b935d6a38525607e6e0df1b7eb0dfc9b326bc8
MD5 d3414d0324c81256110912255bc9f1db
BLAKE2b-256 eb529febb3a7873937dc29c992a54bf2b910fc5448ba45a66134576243ee2f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc3c115e01e87d8766e010a33e204268545fcbd38331831398496979e842a54f
MD5 34565f3dd621e21334b7e0fed2f92880
BLAKE2b-256 5f6d6e5363732bbfbd52cd1d8e863528df1aeb77a02e8e0728860f653a777b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3c3cf82d5f3ec6dfcd6de200d019395de6b0783382ed0564483afcc31e827dd
MD5 059b07368eb8b60339d0491c7271067d
BLAKE2b-256 62e098cba1c3ff05a03f4358b5396058d96c40999c37497bd59d243f655e3e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e50c2f76218bc28ce7f347bed8f52393463c272ffbf9a67b31ff4b69f9e146e
MD5 a74c01f9f07e194a0ed71a4871497806
BLAKE2b-256 6e8431535495cfcb216f27ce2b041ca837b9dd7bb76917f1019a107f7749c058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb640d2a08a95fcb328a97c133462bf54cffd322bc24fdfd7bec6a6b7cdb2576
MD5 c932bc1d09145f773377b19c53e6186c
BLAKE2b-256 c86d9329a260fc1f5b811b2c821450d60d1f342d850ff853302cc74030311b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a219882fdbbdcab7658a3a2a1117023b86a8e5a70f8cd3cde572d1029c2059
MD5 2f931d6b16aa1d5974c1849a6d9acd2b
BLAKE2b-256 59265fc9086ef84f17d73a6885c2573e9c74d2dfc2ac2b6b985bb291292daf10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b6ebab11f9fa3ec4d32cb17e6fc3cf08525158e453d2fa82b826cf277f6ca55d
MD5 4757371060c3d8ced0ac3af2db294162
BLAKE2b-256 03f721c7065516b4618cc69c96a1844346650baf0cd72eb24d320b869eddc333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a43a3106f7ab5b7b9461d91ba25d3e9cb20dc943248fbd5b62c12638242d2a04
MD5 f9865deb2f825bf0dc582d904084ca6f
BLAKE2b-256 01afd1fe929c617b25c43525874d253f7c5814995bf438cdc65aa106a92161b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9e9046e48b4b6b8c77d665b5c85d952727e9f1d5bc906bd96017fab40fcdc46
MD5 f465d383b0ef2411ea78297620a983d9
BLAKE2b-256 faa7136b49dc6a6a58a67d15f94ad0bf1794c5eb85b8e458477dd194e262a586

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c2ee0211c18e02504f6cb93ee8b038672efe965573b2ab2c8e20a8514248dd7
MD5 2975603582e4ce06ad128858c87f42bd
BLAKE2b-256 48f4fb6f0bd4f4ee8cc2b283ffffae1156bebfe0c0bdf99c5cb45594260420d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3cb0b61891afd6fd646d1a17547a68bd931e4c848a2f645b4da05753cc859944
MD5 15cd336d4c5f808f108a9c55e952b9f1
BLAKE2b-256 20b2fe87af6f4e3f20a8830c213fa81f523aaa58564f75d5b15f8eb6fb71adb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d840aac7ca632a48e2693add87b080ea470b424c9a22e982e5223a160b1916a8
MD5 1d644a37148fd2f65cb58aa9184d06fc
BLAKE2b-256 32af0060924169f8c87399801d2a9fecabe4f7036492ffa16bcfebac6c0fd2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20a8d363d9f3c99af674e08b5b4e1a6012f9ce3e053e9441dcc1e65537ffb164
MD5 2e6dddb5586dc9104262c86b73c01478
BLAKE2b-256 9465c53f0423cdef60bf6ff405d80604473586e9bf5b0fcc74ef030bf0c03678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c7591d4e1c234c2f4454066a3d8a14ebda52b95c16aae11b034756f0be0eb29
MD5 b1826535f9850dcf3058e3808ea3d7b4
BLAKE2b-256 02f048bc3d7f5ab1506200139cbf5ce61e29553282cec1ee08b0293ace3f2a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8684c1a73ed7f942c0a3bdaf002efced3f7957214b699b7ad2140add8b2c3b9e
MD5 bd47a38f335e0e5771849546899a70c7
BLAKE2b-256 11ce4a50cc27704f6e1404eb5541c497fc74522e14a19d10e5fb134da956c2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec4e161e6a2b78fadc9ad7df07d27424d382fbb65c97cd503af34ad239b4e425
MD5 59ffc53e0fc661aa6f60391377fd90b6
BLAKE2b-256 41c32fb32a5d2596c9a043f81a8253210886aff55c7b194dccbc980f9b55c165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1912222c4dbbf2c4ee27a4529ef5b078f12691b1b11eb0b26e0dfeedaa9907c6
MD5 71a751bdcff068db969ff3f8651e39df
BLAKE2b-256 c286d3fc61a07d35dd1c32ae84786c065f4ced6554c0f26a509fdd0a3ef2632c

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