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, please do not use it in production workloads.

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

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

Uploaded Source

Built Distributions

endec-0.1.0a4-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.0a4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.0a4-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.0a4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.0a4-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.0a4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

endec-0.1.0a4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

endec-0.1.0a4-cp312-none-win_amd64.whl (272.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

endec-0.1.0a4-cp312-none-win32.whl (267.4 kB view details)

Uploaded CPython 3.12 Windows x86

endec-0.1.0a4-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.0a4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

endec-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

endec-0.1.0a4-cp312-cp312-macosx_10_12_x86_64.whl (397.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

endec-0.1.0a4-cp311-none-win_amd64.whl (272.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

endec-0.1.0a4-cp311-none-win32.whl (268.1 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.0a4-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.0a4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

endec-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.0a4-cp311-cp311-macosx_10_12_x86_64.whl (398.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

endec-0.1.0a4-cp310-none-win_amd64.whl (272.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

endec-0.1.0a4-cp310-none-win32.whl (268.1 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.0a4-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.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

endec-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl (398.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.0a4-cp310-cp310-macosx_10_12_x86_64.whl (398.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

endec-0.1.0a4-cp39-none-win_amd64.whl (273.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

endec-0.1.0a4-cp39-none-win32.whl (268.0 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.0a4-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.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

endec-0.1.0a4-cp38-none-win_amd64.whl (272.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

endec-0.1.0a4-cp38-none-win32.whl (267.8 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.0a4-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.0a4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.0a4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a4-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.0a4-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.0a4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file endec-0.1.0a4.tar.gz.

File metadata

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

File hashes

Hashes for endec-0.1.0a4.tar.gz
Algorithm Hash digest
SHA256 c1aae8bfe423c92e25dd1546a5997b97e0ba0bcb9514fd53dc14c47cbcfcf73b
MD5 b8d062af984da1a49d270355cb8c207d
BLAKE2b-256 bd5f0ef9891fe56fcda4898346c18ce645652b871ae1b6e3523666406a38e738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1be0e044ad3a1c5f4a558b8af0b0a02db62ae72d10c9f6304f0dddd989bc98aa
MD5 f09264900331e1e6031c3eff48d00234
BLAKE2b-256 4dbe67f950f507a08d8748c79d056d5182eab5d9c901d0c252d4e563e8316dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65a78079a4f27c079f920f2b2b90e850fbc1cdf447ec4577808f3cb735244153
MD5 b03ebbc718e5f81970720d0fa0a9a06b
BLAKE2b-256 e597a14d4a7da7c2b31c5ae1e38087d572975564e26a10c86a1d756c89671ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e1c371276a35f577757ee9e008ff838cdfa33926300e1785afc38e6c12ef856
MD5 54a1547aff84db81d0acd2be0dfbc1a1
BLAKE2b-256 0d445395471d4551174cd125d43cddc295a73211dfb65000276265385ea61db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3d31d764b693c64e3841efa324bd26928c8083fc3c07a5a38dde97aa4da7c24
MD5 890d206cb9999564bbdb571100a26224
BLAKE2b-256 26aea8afad3f0591a25bb202016e474205a880dd93f3950696305dd1e654e979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4985e9b38c8b042a921ff7adf617b890b161c494ebbf22eeec03a6f4b88b177
MD5 b54d62fe1fad7c13ae0873c843d1eae0
BLAKE2b-256 4865f57ef8a5804db4e4231c3cb23d0793705c6f9636b9c5dff094cd836bb75e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 944c1c51773db4d1e64ea043d3e3bce4800d25cd0b74d60f08349b8b4084c272
MD5 7736307311588a624ad6104c00f47f2d
BLAKE2b-256 ff2670c646013a7ed0a9f4afb8745924305d0c00dbc199eb8a49ea148252a87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00634a9085b615c49f66fead6ac179326535bdebdad4859392e44ea06fe561e9
MD5 b744a59036782a544e9c03cc7923316f
BLAKE2b-256 fe230bdc4d06890083a471b714860c3baf7e815fe3387a82fc86bdeb0a1c85bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cdec8ff23ecbd00d06349827fc884706523255374c291291d965bb2cac53527
MD5 69630b7316851b211474178cb269015b
BLAKE2b-256 bc431f41f1595dfa21c451d1fa474410c84b1eedb6927ac137eb7a6677b92a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7f355e65a6e6bb0d1472539d9462ac440c44c741234cfeae7884ca48a1335a8
MD5 55d56647935f18071c70ca04274140da
BLAKE2b-256 10499b56d3dd6c33dd10f231b3389b24878334ef994b7fab4250c49fa72b31da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6078bbe49617ea5f74075969a3e6d5b3ce0aff339e2c34262816e63a03d6688
MD5 8ef4c461778ce27ec7e50d5283182ad7
BLAKE2b-256 10bdce2c525ccab70b370a9529df6e6b7b7e625f6ad53a9849fd4159f230e1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f90e95bf8a9ce52c4da58f2832f842942ccda9be9cf4be0412800397f2da17d9
MD5 fbcb60dce2f205591f0ec60238037935
BLAKE2b-256 e621e4e5b081be609f0e6aabea709de810bdc98e9f066051af6be12c0fec2395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0f9a7a47f2ea98eae791ae85429c572ebcafdd0859c8c91aa539834b97f003d
MD5 4917b6b442fbebc7ba3ad386cb5bf837
BLAKE2b-256 d444838531d82a5fe73a673442df09ce74fe47da3521cb32715754e5f1790b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b0331df4739d0521e215d9d10e36bf42b900b97e1e90f76ef30bf99f41cdfbf
MD5 ce19c984ae5d35811cb91709faafc6fa
BLAKE2b-256 477510b3f20afd1516ba2a4c44d9a135116f4b9d1b8a003d56b673f51b291a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdc653880bf8bdc8c46bb8681af33a3251309023341ff6848a24ea4dddebefd3
MD5 11db0fd3efbd78a4f227879095b4420d
BLAKE2b-256 f9fed0fbfbf422ad4b2cdc4aa2d15cb509e2f744f456db289260a1d5656b38ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22b7c916cf145bc724f2a095a1a2a806b8aa858a3e14e2a81246d4740e17ca83
MD5 09ce7177945d24ecb05441a2dff042e5
BLAKE2b-256 629df536a45e5b161eb536ab02dc2707f978bacba57744fe2190a904602f814c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 293995146af54fa43e2fac82d824401322da6c09d10202e9e1407352a75369e0
MD5 988c6f65c37c6396527a69b4fc39125f
BLAKE2b-256 a225dd5f0fbdaa185153ceaffd13dce098f32fc7f8e7f01fa34a4e80d3483775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d7e20b236f899272440bbd9aa5cce9d94cd07287eef7d08e532eb1095539fbb
MD5 128f32a26e20a5b2a3014ff47700802e
BLAKE2b-256 f71431642f3b9721fffaae7f642ca4f1f208416a2f6121902537b571c1a649e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66f4292f7e6c5766c94b2583f0b57b276efaa0f303f9d211f1b6b26a9f01f07e
MD5 11558b704828bf348cf13c1e077e7e69
BLAKE2b-256 5acf23d62f87e48cd1c47def7263e3736f564915726577a73bf1e73122f8e96c

See more details on using hashes here.

File details

Details for the file endec-0.1.0a4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for endec-0.1.0a4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04ad26e5e386c43c5256d5fec3145621a94fce0446edabea29509b12961e3bc1
MD5 90a110ae084523c29212c55d88839429
BLAKE2b-256 be3839d4808216dc9c03dbdaa0e5b456881fc9d9caf5daabda78cd0fb096c62e

See more details on using hashes here.

File details

Details for the file endec-0.1.0a4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for endec-0.1.0a4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4478eb2f80119578f1cbb2489fc19dba6ea2fe5a864933880d11b373114c6dd9
MD5 32f59f945b985bafe88585f5d6967d39
BLAKE2b-256 9d08e23bf99d032721b75f479e9e99374f20b772c0962bcc58daaecc2d9eed25

See more details on using hashes here.

File details

Details for the file endec-0.1.0a4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for endec-0.1.0a4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a11ecef9631a692f13070dde7fdf3924fa05566cc727440c85461cca45615bdc
MD5 4edbd736373673b47b5f7127b0b7814d
BLAKE2b-256 77a43b33a4621d94ab78ae11e4b458e9dea1a30a20ae16edd5fb206c39808e98

See more details on using hashes here.

File details

Details for the file endec-0.1.0a4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for endec-0.1.0a4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e77f5c8837e30b03a53d2da9b318c92bce037084e59a9ca1d956f8aec9d43263
MD5 324dc632a56d0b34a38f31863ae4a834
BLAKE2b-256 0dcd62ae721deb8b02754163af711f1335ee97e057c5da9531af99751d78d9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2dd2364e32a0aff3cf72f14fadb93aee12010158a8d198519f83bdab6f3bb4fa
MD5 3d5bb789db6edaa55339364895c57303
BLAKE2b-256 c568877025452718b2583f9b5d35b0d308fa6f388ff2ac0c7e0a2ac9308ddb64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f5492adca2dbed0a1ce4f26c701d651a325f80268d596e9dd01f73f008b1672b
MD5 97e98c487b46ab5a12f9f6795c698602
BLAKE2b-256 6a90613053a6f80c55a334975af5925ac7ff620439d75890cb8cef4ef086c8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0addc4b5d29a3e2ef5e2e0a03c6b4e1291e6423ea177f77a0b34542d3add9b4a
MD5 f8e23af0f708f1171b50b8e7358a6f93
BLAKE2b-256 2120150692c0c1241bf549ffb407fb75adcb22d2e7095997af1b74369d142c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3c0b659084838b9a29d12b2898ab8f37d5385e941f8bf94a4ec4165d96b8fb4
MD5 ccfcc82c549154460521e21c9a48678d
BLAKE2b-256 638d7d17f098330f70ca8efccd4839593f889621f34f6e1c09471abf9e50889f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31b48372bf3e157e2554b83cbbb2a18124eeca49c870641255f04ec69ac97a8f
MD5 e40aed697ef6798e8158a881600ca0cc
BLAKE2b-256 a50e5dfd2035f5c11b844c7b3109c3f0576d53835715241335cc810be4463878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e98b24ee203d5f39f0bba0669e92f299b481c08012a0cacce58069383eb613b1
MD5 a70bdb01666e59541bd2a1874db141b1
BLAKE2b-256 d3ab453ab170757f718abd8f0ac58e0e1a74bc2628b37da1c546d71b19197b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f226ed156dbe0cf94384b796a32b8c7b2da6a57a1985ce1509a1de9da1fb059e
MD5 99ce7e4cee8ee4d134d976b391d44ba6
BLAKE2b-256 d251f0e2424055b8787a9ff07a7d53c75131284c755a06bf5c725d42f5e1f5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d799b6b33236aab073ea110e66140416213551d130e9bd493da5dfa53381a59f
MD5 b9a07d45ac747b35e9731b100f12ea65
BLAKE2b-256 3ebfcc6493a59a9811ebafc13ad55785377a961ae35ff56416b4c00ac3b49c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cda7a3bc4948b0c0bb7fa01a48031b7e02d58774d3d60afabfef8d394576429
MD5 8461754f1e736de6bd87db5b17ad6872
BLAKE2b-256 cbe11e27d36f21295ba19739e6c17c05592df2c22d4664b12d52509cef081171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff89e6288d0c19fb9f330a728814bd7e9942b72a5ae3627a2035dd81fc8e1946
MD5 7d52f172f384e495b0b94ce106eada44
BLAKE2b-256 c980e59d73616d25bdb6d3e81ac1cecf9805128de7a6a37cc518b8f199eed18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 45001541721c4e49df6175d80136399838b364a7d906239e698264b5c492a76c
MD5 67bfdfd5d4545ec6981b2c25773521b7
BLAKE2b-256 54834ba83a34ea2dc3901da81016a743e063a231171b28b5233d4c1efb149657

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e995c91f05d55b8cfcdb97860a34a0ed2b59832506d2abcd1e6be64d013025ca
MD5 0186bf81f6fc2b684743dcdae49b746f
BLAKE2b-256 7718ed65dd1095e761da461fc4df5bb7a818c26c2c53eeb19aadac8d86a9b8d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b60f40533ec111f3a435fa05f63d495e3dcdd01660dfaeec7835de571ac4a35
MD5 dec2bbc50f8a5b3fdf0cc5b222f02e93
BLAKE2b-256 0aa6c81535310bf5309b244252f67eae4a8fdac714a015e01148fe6a0e3d0c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8aafda69455741cf4bec2fd8d1ae69ee92f1370162a51c2820d664d9044f77b0
MD5 64c2bdec4f4a3f2c61cfd0461e6bbef8
BLAKE2b-256 3e18740ae47a203881e04c9d66b37df3fe7053287dafa7a1ed4f01b74f20155f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04b89cf705eb476d02b4a218363d8b7a9230e44600c68d51165ecd469e994d79
MD5 53d11d866f84531e73922a7c6acf3fa4
BLAKE2b-256 69d1741e122f7084459e5004450a4d78db165605b6d45b72a07ed322427795a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e2788d2de75c3738a81cc5408806492fb78c6cc2d45b7b35b87872c202eb7bc
MD5 5053b434598eea1ca004411b6a9cd4b8
BLAKE2b-256 4b21ab24e4bbe176add97dcae169c73151ea4fea4f5ff393d276e02fd9e85a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6177460de846f04fc2834fa6c1abb02739c17b7f183f7d7be55cc14a7a12a155
MD5 61f3bfb326f0565ed1c83ebbcd606cfb
BLAKE2b-256 2ce6299793ca4312b637d47337b8fec54c213040295524d0327d9d561fe03757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25a1ff471f14e1925a1d4386ea213fc00f080b04caf70b4664564a24eab504fd
MD5 31e8e09d58d1de084c46930dcd0cdddb
BLAKE2b-256 3b38700e4af1e4097445ecbd61178ec7d82ef903106bd3b992a5ac476127a06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eacb2ff2a318188c1c2989fb5335f1f18e54ed4b453010957618a483c0d1fd3
MD5 f5d872f43f41fbd1170d3a042ba46a07
BLAKE2b-256 fd9e243b545ce657d8225e104ca61d0fe6eea53cd62382d6c97aeb8a470d96e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2a192cad4dc90d6b9b570d2e3a124df947755b8c1add0bf22383e14ef220c71
MD5 1621c41c50faf49d13ffdbe4084b31d7
BLAKE2b-256 23ec4a946a9b1dc6c63e78f87ab9980bf3ddc965e73b12249f182e132b3c42ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 2cdeaa9404477653af5982eb41646093505418f6c31db268177436bbf2d43e4b
MD5 34b3fb9db7ee19896567cbfc6f528fb7
BLAKE2b-256 c82da878ce1f084ff3cd589599314be2c5621810b7b4eb9de9a12edc67e3f58b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5e71d395fbf6048d127fa1aad17b94c32821d8238ec86aaf3cc7e1b65169b1a8
MD5 1ea83447960031247878a9d61de02691
BLAKE2b-256 ca0c44af8f120bbfe6d43ac3504c0b23087a712d078c808a8f463872ee2fce5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0471bd72628170683fdc1bd31981017fda7079453fe22683120a27b08b0abf2
MD5 8ac4e8c8418149f7dc136fbe19b7cdea
BLAKE2b-256 b3349c9bd05756108e0f902633be67f228066f262bdbdbf1a1a649fa43209b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dc959cac3b095609ab3015e061710871e78ffe567fbdda0c6152b19ec90359f
MD5 fd166978cea835e505794fe9ba6a3a0c
BLAKE2b-256 43d8db9d133d1619029e8d01108ed0bf994111099985375cd5b98f6c404c46ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74e7d7bc7dcaac39ec3ba431c5bbf8dba1eff27e8b50faa5205cb1dba98de460
MD5 9382949f461079cd4ca484477e4e1559
BLAKE2b-256 6d1533e7d2b1de36008728ec20f2ea2a81cba886ae6a1428043a48bd2f3a5dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7865e0517622968770068cc4c40335f79628efe2a8f7fcae812710dac0b6fa63
MD5 089e8174ccd357f084e496d9b776104a
BLAKE2b-256 ce1251a3196ad87aed39cfa10bef0d7fd75bbab6da1a695010e48212387eb366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce0b46537f8a48d1e6625d7dc0593d2e8e719ca5313cdaf45c536e5215d2a080
MD5 887e68c578e1af5ec5215423340efa96
BLAKE2b-256 ece7397968fbc5994e33128f5de78a8cbd10369e71509798b6ab570567aee7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b29d0d7f80fae07957b6674496384f5380731c78536940728485d43040915c1
MD5 5557a7c56d8780cc2dc7688e6f92f435
BLAKE2b-256 7841972a6bf1adcc6422ce2d03d5457e0fd8ef0235051f49717807bde0935e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b271381f360787b371caf0f58c63399c10867a964034adebc7f9cb483d6204a
MD5 29cde441a4f7aed30bc0da92148dfd4e
BLAKE2b-256 b981aafd71f6abd40b81cc4f33c2de0a5943bd5d1507aba03151b118afc2820c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af45a7c49cc0e17d955cb2508121e0b88336144f7ce1944197138c7a0c9d1123
MD5 2fe227d0b36b6f833762d44b5b39b6cd
BLAKE2b-256 c122d092a5c87e899049773ad7d7810e6ce66da2cfe86862c196d77c45387103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7889126a0aafb544cd2c107c402fe9a968e39eb612cd00dce40fd8adf87fc6f1
MD5 99b357ab5cb302f1a5b19509b329c7ba
BLAKE2b-256 84eecec495e533510cc25dd4ee0c3682181daf58d8aa14312bb4b70f4f2d713f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ec18011353a7526085216bdb6b14ffaa2b0769a36addac4a82c077586c2383d0
MD5 4a4c4c530e5497c3ad5fd2b39fc90b40
BLAKE2b-256 504b4ff1982d20a1db226c35980dbac7756ca4f0461f26d9c1dadf1cecfee175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9e376fc4504934323a53688549b0fe02e8aae73db30c3f57f6d3e3a3ed1a157
MD5 3a11a7ea04e9e3e800231f9636b478b7
BLAKE2b-256 f3466c5602464d65562bc25e2d20606895bf76898d64b4e7d19fe3720c5a49ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83d9afdb94237d8082071e25ab238a44f43e38d08566955aa9603859f52b7038
MD5 1823f6713a9a1d8d83455a8fd99b1ac0
BLAKE2b-256 03d1ae41f08784d5608a6dad96a6f8262c09bcb06f9f37c2f7234a6919038dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fde9b116e0c5611e52f8e50d0e86543b1291214f4cbb5ac9285895a6f54897b
MD5 fe31d31350e0e714ebbcfa722d5b7285
BLAKE2b-256 c0a9887e09a0439038d1540e070b34d24fe079504c36880f582468f2503477c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a9ebed53527c0418bcb2f22fb4e789ebb9d31552f18ce6e3698654f27af7197
MD5 c6d82f97492d111053572ed7ca342980
BLAKE2b-256 233ab6389fd547742263abfade57d0b4d8ac62d8534ddacfa6d28db6e79684bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e3f487a87b115f71ac3530a503ecb13e3b1952ecc111fae36be8039ba3ad9dd
MD5 41e5c1cafb1fc47dc02ebba9263ef40f
BLAKE2b-256 f753b3f28fccb944c531d1c769d143d796d75c2dbff5b6eafcdec6e355c8619e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 067c88c8021a28a95a1393893b8e9177ac4cb683283796451dea3649ddd72a74
MD5 2bddd5480d2c4d5f846f93c9ec139002
BLAKE2b-256 bb65c5462d912ee3ca20095d64c5812fa41e1a6c9c8f235c9fa5dbbd88489f59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9445cebe3e42ad391f64f52fbebcfd8c1681881f50775742f1cfb0f50798493f
MD5 2d4213afbefaa9a65fb93e97073b440e
BLAKE2b-256 4c8f851ad97041abbe48365759a607dd0e378d68034df53411cf8a858192ab2a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5356e13bc05520d28e0a672ed7f3d1c11d76dd29060b9b0595c556dfcd5ba7ba
MD5 b1ee7eb97def330bc02d052f052141e2
BLAKE2b-256 e5340edf6a7f0f4d5a5bb9ac19c62beb1f3b5e3c8f9b083f81cb40f244247ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 764158726a33eb510465d3ad8f3889d5d5512dcf50466a16466166837c285bba
MD5 01860b663146fb97a40796827911ac4a
BLAKE2b-256 bad1f608162dbeac26b7e6238fbf4defcc4606f146593e2c4eab0725bd2bee6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe7d5ec828e1520fe925ba6cccfcc426ea8998920fe4fb59682b4d792c935537
MD5 a540e9e5990053201ed9c66025071d33
BLAKE2b-256 e708265c168d1dc95ba3ad969e9cacdec227ebacabd0f3cec33faeb1842adf57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0b4e3732138893da05de9c5d9bb864be4dc02c9f806313f024e087aeda10d2f
MD5 89c5af4a313665f738840bc8de9f1eee
BLAKE2b-256 9b24e2d9ba0cc996807721ff200ea69474e8f9e2e526176249552458389882c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80c5ed9cdba8f8a9c0007960dd89666143680f6322bca92dd385ebd0696fa20a
MD5 df31748c30eb66e2352be6d5762c7102
BLAKE2b-256 32e40fdeb92a65f6ad86904de34f88896386042e2998f5aed3aeb835f29b1510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cc8160dba50be42f4c2be320929cea61614cdc164d1be4991a4398427854911
MD5 1ef8f8d9044675a5d107b7cc9249cbf8
BLAKE2b-256 027315c8e21cb77228f39c7385052cc1305e78d683ddf1cb9993e65a0237c077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7cdd8833f8103846f26a6eb2027e89274b9989ff2a53407a4453b000bbd3683
MD5 15098a79903b58d3de2c89fcbdef4d06
BLAKE2b-256 46b9410eefaa10a8b4f61cd8211976d601499965fc402af012016d9403cb8d52

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