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

Uploaded Source

Built Distributions

endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.0a3-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.0a3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.0a3-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.0a3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

endec-0.1.0a3-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.0a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

endec-0.1.0a3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

endec-0.1.0a3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

endec-0.1.0a3-cp311-none-win32.whl (269.4 kB view details)

Uploaded CPython 3.11 Windows x86

endec-0.1.0a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

endec-0.1.0a3-cp311-cp311-macosx_10_7_x86_64.whl (411.9 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

endec-0.1.0a3-cp310-none-win32.whl (269.4 kB view details)

Uploaded CPython 3.10 Windows x86

endec-0.1.0a3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

endec-0.1.0a3-cp310-cp310-macosx_10_7_x86_64.whl (411.9 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

endec-0.1.0a3-cp39-none-win32.whl (269.4 kB view details)

Uploaded CPython 3.9 Windows x86

endec-0.1.0a3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

endec-0.1.0a3-cp38-none-win32.whl (269.4 kB view details)

Uploaded CPython 3.8 Windows x86

endec-0.1.0a3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

endec-0.1.0a3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

endec-0.1.0a3-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.0a3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

endec-0.1.0a3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

File metadata

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

File hashes

Hashes for endec-0.1.0a3.tar.gz
Algorithm Hash digest
SHA256 538d8feed1e894fb8ff9332cc7d324ab516241f25019c1484ff6b6c1ee9ba8a4
MD5 3aa11675ee410e5d78d21700dc93a85f
BLAKE2b-256 d507081547b21f984f0916bf5d621eceb4c400eba656da18379ccff0788d876d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a7c4101341f27493ec7e41a1d9a17b359170f20855664fc99f93d7bf5ea7e1e
MD5 ab51775675ea9f05c6334a968063249b
BLAKE2b-256 febc8415d313679d89fead82431095f05422d64f2549ce1f929df6b107a45705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bbcb93115ef486b8f93bd8d03272d7f17c2877b551322f837e910b3ba524c90
MD5 c84ca0c29e130023086ac9197ff8221c
BLAKE2b-256 97bd78bdf5cdbb0c2cd0a1997c22bdd0d21246c8e0e1977b0eeff9f98a9c3622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9c37af73c68f8c6f55660610000403e3e143e09b0d445f3fae3ac591cc04e71
MD5 17f886b31622eea675eae4e8c73f0b1b
BLAKE2b-256 54baf210dbe461105ed42a39bf1bb5d8739b0f98b3fa5842f5cedca43802a24a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 318e58907db617dacd9477538cdae2b99de00bbf1a850f3f8904797694b0403e
MD5 431bc5ad489d7c7d377371995014086a
BLAKE2b-256 23967456e024263310fe5a08d121243bf159cd73c118dd8cdf6d9af578745564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fd9d87143a3fcb23667f1484f61ff03680c7818391129e5c76933aa8615fb32
MD5 2f248c846ce4c279a9fb64e87385b651
BLAKE2b-256 9aebaeeb4a5c3b740f23f0b6fa7f0cb6681cd3f158838f6b68bc546399275a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f8a04ed4ae9446503a09167bbcc219b6dd127005ac87faca12ef4e271cf81bf
MD5 034367f844e7374ab60cb4f280326774
BLAKE2b-256 4ecaa6df2ca199aa558ff4eaeda688a783a4bbfa4038033d276063760dd132d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54a2090dd15f349bacc06499188f14f42b76f36561b8114eaa471b50e0cd1eb5
MD5 6a2f453938527ffd5f54427cc6189127
BLAKE2b-256 bcac0ef4921705b5d0ac5bc48a5f235b403b6484ca7687910e43973045b083eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a307be465c793a6c44324d1233b511b1cb77dc7e41ddaacf09ecc1e18459ad70
MD5 0ae290f90d82407c9b06bda38c09ef21
BLAKE2b-256 c816876eade9b230d3d0f41ad60d8e883c016a6e16f055e109edc9960c65a86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03c6ba0c7fa1f71580c545865602e9fd72ebfedb3366aea8a054ccbbc7b304a3
MD5 37d062e51590729fc0469fe2ed8c0844
BLAKE2b-256 69f9748905b5ecd7eecc31d7f426046015a6379a6e35db230f130426eb572d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2da8312f78fd1ae80fb4766ba90020327258765f643e427ee7ca4f5a4faf6977
MD5 1459ada43f3e08d25b28379d99b630b0
BLAKE2b-256 90f1e8fff053dd38ef4171ed31820a8cff4c7c5ae313965e136937a992d5595c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8efeb63c184d5bf458264c6c47adc3892d15146abeb774f4aa34b15028cdb0f
MD5 9ce12b3d11ca92cadce9e3a2982ca09f
BLAKE2b-256 933094f922a77565c2f3c4200e3f9a58330dfcba76f01a42d686ac29f91211bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a847fc9fa982188fd197969021466a2f1c1fa069b71ff96124147c5c2bd797e5
MD5 08c969c2e56ebbf0cc97e2f1147c80e9
BLAKE2b-256 e5060f54a128d74c99099fe93861cc5098d4fcb6e7e8d983e2d3b609ad155d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da5412ad61f22f56f2f5ee5c702a3c63a84554298d3fd49f85407c597abe6f92
MD5 cf60d2b250470106fe2c2285518acf63
BLAKE2b-256 e03c105a721878d12c2bc0ffcbd7acaeb76192b980d25b68875dfc1b3c0aaaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3721bfef8f1d334b67276bb5997c0a43453c983feb38a63b966bc3628b5fbb4
MD5 1134ad96acaea55c183156ec3d207dbb
BLAKE2b-256 bac72df8695656db9807f91ce44c19d0762718fc0531ca9097fd7d7424775d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ee360643bb2da94a7e330d2207d16dd3e866393bda993031e1770d787144bfd
MD5 2fe950f3691509d25486db3b9584dedd
BLAKE2b-256 f55e3f92761b0ae113310804845f25fe658eeeb774867c494adbe772ed51e6b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e029e338d15b2ec831c31b36c5a9a183517a66b91aa822590a83142582c55fa6
MD5 a9bfde4e916081d8209f45fdd6223126
BLAKE2b-256 31a366f02801097206ccaf8114ea707836ed000cc3d2fb3b6afa5cbb0b43791a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0315bfb4e3b474e76877da1735525b1a9edc7601a1c367b3c8fe0597ecc03a5b
MD5 77d177bf3111c2e7c2fe099260df9e4b
BLAKE2b-256 c3669cd0e12e34c065e6453f057fedea95162b7bd77374794b354655b73afaef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 823aea0744ed925411472067b6e8a5fc29527128644b58159247be94779db6bf
MD5 56d8f128493a534f7f320125772085a1
BLAKE2b-256 d3730f05f51599304c813153f413d282f147292b2aa5212e395555077bb16ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10075ab18bdf24304ab1213d61a1c29671935c3f7641b1014f84b9289c4abd4b
MD5 7cd8ef7fff3c868f6ca16ab6be56185e
BLAKE2b-256 9c4cf4d91401766464ecd0de306191d33653b2b6ed566e675a6275b85951f276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ec7f471e22b8fc5aad554ce0557a24703933d7afdd1397f5b31307f7fc57d27
MD5 4cc26803259984fd204e4bab9f9fb184
BLAKE2b-256 a54a492f26634e444d5b21a4186a5352a2f4413eb0779008f7c56093f1184b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90dd6edd3c07180453bdbd09cc8ec75c6af0cd28801333934d39f774f1fa0dc1
MD5 13af2f68fa7af183e6bb188817200aa0
BLAKE2b-256 e30542730f897d2c329c1eb71d63dcab64b2ce2ba8de99ef56c10773080efbae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8494b072823d576fd7a83812ace850f617ced787ba8fe82158c650ea3c9aea00
MD5 a244ef5b6745c536f72e4b83c6e7f519
BLAKE2b-256 2b5d6653614f8106a3093fb057320424ccbe0560fe0193e921cfa1f75bbbdf3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9eb02a5324eaefe2bd7b6bff985c9e316edf2e99b6a596491f880f1a07821c8a
MD5 fcf92aee35a5828a21a4fcb8f4324a8c
BLAKE2b-256 0d917c92636cb5f932c095a360f027a954194de8c7c0067b246706616a94e878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c6579b7a3b29b6a8df360a161d92e9865773166d8a9718644d5fe27c60e5105
MD5 e17a9adacb9643bf350e6f1e6b152115
BLAKE2b-256 13f1214c383c17cc2bb54cf0a8336f523da5a582324de5123576092a041d870a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 de457eb722729d6eae98e665077fda1968bff0ffd0d447a349fda05afb2e4cd5
MD5 fb566e0dbef90cd6a7604ad7fd9351c6
BLAKE2b-256 d5ab1c797c0516a6384b630f8a91b575d39d998112e914fc562fc71e1823dd15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f7d0a5c1b546a879295a981e7fd7babf6cf58d23e3c7f3b4f92a96f13f120e03
MD5 78d917b193ae6a17948c61590d5b5818
BLAKE2b-256 f8070164519a2cccea47bdd0a1da9d4a5035b8572ec062cd0f0b5bbbf7b84b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3c1744c2c0e3f6936cbaad1821e1f3a23db781fdf133593ec037c7167afb994
MD5 590f915700eca0823798aa914be377dd
BLAKE2b-256 39339e4b016974e0d83e78a07648d35293fe125f4271599bf89e3edfa4df1e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 640aea299c60facdf9dfeef209bfeac1a35f331949732f73225f8e53d1d1c9bf
MD5 fba28500d813ea4da3da7ee5d8f36474
BLAKE2b-256 24a4b0dc63bbe2d8b306f70516cd319945aa281d9cdc29fdc8e0c144e2b13f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d3d26f044b510673e80dad7dbc25e06b7ee8c5d6a438c4109aa335624920907
MD5 47e36b0e3d386d5f3f25232f896a25a9
BLAKE2b-256 b862a5baf940e27a522482f4622db4677a1a7faba0c208feaa29e23443e04fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26bf5a813d066d8e28fa1f00360ac6a96ae01d119ca0d836bee889405c3190b2
MD5 2312fa546c193bcdc3238790062498f5
BLAKE2b-256 d130645075370e432d7a4ff243f248ab0c5bfc57280194ae67ae3a6084884d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d743aecc3fdfab7af93c5402546deb38dff6cf5fe5878d27e8b6658d5482ae5d
MD5 bf3c6ce82f6bf0be7f8c21ba3c15cea8
BLAKE2b-256 d281f1715fcffaa2cb25440d78226faac94cb1c5933b368bb7b745a06903d3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b459dcc8d0f977e662aaa87878efab2d688d9c55d8a201ca81b64d5bac4fb6c
MD5 de42bd51c0bda2552cff8c51e79e304f
BLAKE2b-256 f169c62174a180ca53c5f5c4ec6f47d5396df36fb02302e9102808823d40f2a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c925bfe59aa3aa5ae34cf5fec07fdf3838622cc0928ae2a7b2d9e47886077709
MD5 b1583223604abbfa89fa4a7fc8af6d8f
BLAKE2b-256 677602a935f2fd3b48aa6900ea1e0ce65a8c4357ba28de0d64ade3e10e3e84da

See more details on using hashes here.

File details

Details for the file endec-0.1.0a3-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0a3-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 de001c181cd75c4ddea85f4f8c9bd4fe9bbe1a648370aa577259738472888a66
MD5 82279bef50953f759a4f3aa99f8f9b88
BLAKE2b-256 0fe68fc52c8de56fe64c9286478fc4f6cf3ccc3d36736f300c254cb9446d22d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 17a90f929768212ce8fbdc9db7cb7d396163a527eddbebd4c2eeb26227d0f95f
MD5 56893ab859ad2ee7371ae3a27801d0d4
BLAKE2b-256 cffeed3a012337989c0fd874d909bc780ec3ddbe328b509db3dc33b9b389a8a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c742d4caf8873e85d3489d7aed58427e1ba31362dfe6b029084125cc827bc521
MD5 09c1ac150a7478281564446a63643945
BLAKE2b-256 2ec697e1602e7eed7d27abed01d2dd23f2178057d89a9079fca2763ac73c34ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f61359e75b2934236d8c2a28dc1789823b638235e91a932fc0e8ca095c2451f4
MD5 2256d9172be4bb31231d85f6032b46fc
BLAKE2b-256 4fd8718e43cd6419f4d075840ba4dc6a9e096165c832ca07664048422a027ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 088b2ecbcec504649b65a4af7a0d4d3c3697a13036be92381dbd30f51f6dbbd9
MD5 56ae198479a22763619d3e17004677a5
BLAKE2b-256 32d4bc6e401238a0497e053db1e22452d14337b18e28f3c5daae60ec46277c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8b59e021e30f07897c117c924ec9cd80be5be71d36fa0c67bd8423c0bd147c5
MD5 fd0491a0ea4fd41d83ae2860c2a0014e
BLAKE2b-256 f619256450f0e44a30c21354fb799d3364bbccfc2863814cc6bc0ae3f0c428b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4984069cc46f8945c12150ebab22b50dc7e8473b4370818aa85540a420a173d
MD5 0f0586ba547b1cec26d469f441f28ca6
BLAKE2b-256 f40be75c7e4afcbad981840ae95283a7044adad5d4dd9fc976216934d723f8e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 786c7a65f3e4b590c59c5bbd0ff0a438f3edd5b2cdf4b07636370ce9f31f6091
MD5 e25b3843935e5fc900eead36fa3f05c7
BLAKE2b-256 897bd42d474db06a153a016487c4b81d56efc0a1dd8b670963e4b697771a3c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d234e87d2347f8704d62a57a790e2fff99f4d6f04a5fae4a32b7ccb5f30a188
MD5 1894a2509afd9bd689a29d96c3bc69ef
BLAKE2b-256 d2f8afdd6bf1f55d3887d873386dd1d5a49431a289713868260d04665a4effce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bb641433541c5a93b71acfa5f5f6ee7c2d231df2839d126fcfd4f7dd1404b38
MD5 4f206702a356b5187b74e6768c4aa2cb
BLAKE2b-256 d4819ca4389c20cf1bfb09997be5bfe32508fc07a5649953d794468bc377d89e

See more details on using hashes here.

File details

Details for the file endec-0.1.0a3-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for endec-0.1.0a3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b0390bfac1213ba760b1781785d1db834a44a87c3ab8c95d708d91266284c1f6
MD5 e2ac350a55c10e005eac3453e50433cc
BLAKE2b-256 f04624aea01689765380dc5bd85e5a6dd09507d003730bc625cfc0eabd8f004e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d86970a2366bc23b93795d8b09bf768c85e982384cbb6fbf995b931003c56815
MD5 c88c76086fe0a4c69663fe4448b85523
BLAKE2b-256 e6a0b1951cb92530eed4f0c81aea0e6344af87e821a136662040e9e893e41f7a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 02d7c6c043d9d5604e2611b77c6a99a308c79a181f39623dfcbac091493b7b64
MD5 e02ef118b7e341c5ea284ecd44e7f354
BLAKE2b-256 3f892dd0517f3d06a36d33be7369dfb57d91f6e61acfb1d59a617cb2a3ff008c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1f5c6c887dff0039d0baa76daa9f1e62661773ff4400e49348b39afb6a3c363
MD5 ecde3fcac9aedb83d2b9f15803a14420
BLAKE2b-256 9706c7d6d3a3d3e1bf420fa4aab30c3e3354c1ca61021414e0d78b3e899cd948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61e7d4f7f3791448a6184aa7f554a52d8547fccfdb9d8e1e788f2945e0f4bd9d
MD5 afad60ed6e6dad2363f299d4ef68695c
BLAKE2b-256 f4e3bc3e194463cae73ef4d48ed774e83e73b9871938a296320308b4b922eb73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50a42eecff9f1f5f2d3ea507a61f9846c8ee82070da2aeb0c2055ca0ee8edc01
MD5 9acf4ee4ac2798dea32983cc573da541
BLAKE2b-256 e38cf0bdc9e1ca77a50eece5d8f8c97f4d128c3a91ea2da6b37bc9f945791f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1223deabd93e70f25b02ff5ea89fa4ae65404797675cdc1727466dc12320651c
MD5 439969fb55e069aa6d7491fa168bef96
BLAKE2b-256 9d423665f58b82d857a69ce531bd8f6ae025eb0ee77c7fb9ebd7d51d83017c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c1ce0b08db3f62f4f94470c723aa61c163793b2e5a599bd2a386ce807504d3a
MD5 25a2a252da39d0c0fe79dc0d4674f5ba
BLAKE2b-256 ea5eb2cd8062119587736e536d3637c4244f74f2c945b00fe2c81fe7a62009dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f0aff0d0a30bbfada1a3a598ec8f0a57880583d7ab8e2a9a59f6681b9e1bf9c
MD5 aed26160ed405fb301f9a1f38703e6ae
BLAKE2b-256 328b22ccbfc87b2f93e5217bf122bde85b14ac3647f8f185bd14d63dcd4c7c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e60b6aa59cc76976329ed62e84be5f9df661ecdcf983654b9c22675ca6ebba49
MD5 d2db90c03babb6864de028b9bff5e21e
BLAKE2b-256 de15d3e79caada33d5822bd9ee1ab312629447890a25a65935bdb7c962f0afa6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for endec-0.1.0a3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 10845c7adf687371a0a9c525669fc2efa937f48545b6e7988dfc38aee1655874
MD5 a01c43d3dc159fd4a7eecfeb26b05950
BLAKE2b-256 426b016247156ee16c9e1676ee682bc649d2335c481708f6c0093ae89f333177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a53026fee1b60d35d9ac5f64e6c311d2d8fd6bcf059902cb84640fb8c27c80d3
MD5 05d0f0893424aad46e6cc651f7e630b5
BLAKE2b-256 758ec521038f4cd54efe100756347372cce89e86a92af90a4576134968f7d154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13a29c54f17d30a8bccfae8f9c8e903c7530d77ad7669d96d7460d574d6a5c93
MD5 098d4f8c1b1b2dfe05953d6dc570f325
BLAKE2b-256 3163da47b1587164a27cfd9129978b3672f085f0da02d5ff33d41e07289ed605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd89a2a0e7cac0229893f76b2d89ac73d975e22d34d8848d7eb91041bcd5c93f
MD5 2e18b740310b41ea3fa464b129bf1b7d
BLAKE2b-256 5c2aca850b0d186a6e775290b41c2758d2c2691de46c6838a42ec7d139221cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a8cf58fd935965e0ddf4d6fa76d4bed7367e136a9bffc282090729487e86eae
MD5 553a9f5274f6cdcf9df33af09f39f1b2
BLAKE2b-256 979d291006020bc573c04a28443d061a017aa303289bca486364c2ce4486f473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2a5a5747ae99a21eab29e441106a29fb1df2459e9150dbb3de2e40f58c0ad09
MD5 01804967acc0e9710b077e9028cfc0fa
BLAKE2b-256 46291ce818e1112546063263abb9f264f4dc689c769be0de5f3c77c51c011a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for endec-0.1.0a3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 424a1fefc30659c72d901e55c4b96531d08c72e166d7a1d7ef50d8a1892a593d
MD5 ea4b94f6241383774348ad8c99c9a901
BLAKE2b-256 9720027d28dd27a31f86173a5f923816b15a3e6416f60db9ef580044c5862908

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