Skip to main content

Python module based on the LZ-String javascript, purpose here is to be faster than existing native python implementation

Project description

Build Module

lzma_pyo3

Python module based on the LZ-String javascript, purpose here is to be faster than existing native python implementation

Installation

  • Install Rust using RustUp

  • Install Maturin for packaging which can build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages. pip install maturin

  • Update pip (old pip creates problems when used with Maturin). pip3 install --upgrade pip

  • Clone this repo git clone https://github.com/spl0i7/lzstring_pyo3 and goto the directory.

  • Build with Maturin maturin build

  • Install build package with pip3 install <path/to/whl>

Benchmark

import timeit
import random
import string

import lzstring
from lzma_pyo3 import compressToBase64, decompressFromBase64

N=1000
SEQ = ''.join(random.choices(string.ascii_uppercase + string.digits, k=N))

X = lzstring.LZString()

r1 = timeit.timeit("""
from __main__ import SEQ, X
a = X.compressToBase64(SEQ)
b = X.decompressFromBase64(a)
""", number=100)

print("pure py: ", r1)

r2 = timeit.timeit("""
from __main__ import SEQ, compressToBase64, decompressFromBase64
a = compressToBase64(SEQ)
b = decompressFromBase64(a)
""", number=100)

print("rust-py: ", r2)
pure py:  1.3936761820077663
rust-py:  0.0515352350048488

Caveats

lzstring and lzma_pyo3 can produce different outputs when compressToBase64 is called. This is because of different base64 padding.

import lzstring
import lzma_pyo3

X = lzstring.LZString()
print(X.compressToBase64('hello'))
print(lzma_pyo3.compressToBase64('hello'))
BYUwNmD2Q===
BYUwNmD2Q====

Since this is just related to base64 padding, it does not mean much. decompressFromBase64 from both package can decompress either of the strings.

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

hmt_lzma_pyo3-0.2.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (201.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (311.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (201.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file hmt_lzma_pyo3-0.2.0.tar.gz.

File metadata

  • Download URL: hmt_lzma_pyo3-0.2.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hmt_lzma_pyo3-0.2.0.tar.gz
Algorithm Hash digest
SHA256 34855d940f5b808b31ac0e23d516669a533688626a0425b9fbe5d166e877e588
MD5 71f94c4f0e28f661852d7b5d5e0afcd4
BLAKE2b-256 9102f568c99388104ee28518e13de0aec68ab4e24b723c06e360cb87f3fb48c8

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6c954b46f901814ca36991633c5c5426f6c461a70254f3c4b272a735a76df78
MD5 8e1e9fee90267ba0b9f38391e9fa06c2
BLAKE2b-256 e3b4464ddc5b122b77ea743438c6c3d3353557e5d45a896cdd3f1a2d41c0fff9

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 039ba07b7eee0f22f220012f81a29ee7d42b17f7ff3956849ea51b3e9ddb92e5
MD5 2d06b52959308df2607501a836c9136e
BLAKE2b-256 9e5fd49b3b6cc7be45e36f6afa72846afd40c94c5fbb1ebb7d8387693e16bccb

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32fc09d50624bd319f343168a67fa5f07abe7cbb663197fefa72c2365ab4a618
MD5 ccddeca8050e2e2fed14e72d78c9148d
BLAKE2b-256 79ee6e68ccda23d584a204f4f16ef0bccf9d522fec74b790ebb7bed82c9c8cfa

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26c8b10135fec16b5abd7a9d546fa274b9ac883893230e966902f3f78252ad96
MD5 e3d4dd3d84e3b2f41434704ba3833220
BLAKE2b-256 9f352411ebc15540ea779be4feaf5e3f353fb581628b6676095239add437303e

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 189689186843450803c353d759b87cb55ae1cf5abf8b61f61125f6437bb5f834
MD5 25bec09d1ea2030f747b1497e397746b
BLAKE2b-256 f76af1e622d2f5b52b53998b03d15502f600e35f27ea59c40916b989266266ed

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 120cf38e3db4ef03a3ca2068e92227c1943fa538d1d8843d4d79a6bca6f22cac
MD5 e65dc1e86f4a49ffc3aa7054e78520de
BLAKE2b-256 902c51cdf697ba416a7de7058c88cebc720fad7039438632d0fab4c2fa787f0b

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce507f37594d25c2d2eecd00ddb4bbaecb45014ffb3b61996d1acfa56b5e0a54
MD5 e2010c9b81963e90d037eecea9320fc7
BLAKE2b-256 c07628798f3f239ef43a576eca75dff3a5f5adf8bf549d04ef996c5ccd6b4c69

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6906dfcfa5eeab295c0e9ebfecfb72ca297e1d8e9be04e47f338831fa3469cd3
MD5 2bfa950186b982cfb8f2626961c36034
BLAKE2b-256 11958666f96d95702ff291eb00fb369f54cf2882d402455667ac61acbaaaaeaf

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb11fcaac6f361020ab9ba41a4d589db56b8a4ed9fdc76cea0db916410f5e33f
MD5 ec9ba233016dff200c65cb60f8e56418
BLAKE2b-256 e6ccfbb5f095b7fc55747d197bde896607a1daf34e237dad73ba60ef37bcb7d2

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73e2be635da061c1ab56dc8b36b05cfec7bb72d9ffc2f93593fc8b5d07be50e4
MD5 fc36e951d8b22d23f8df2c87f62d591e
BLAKE2b-256 48395a91b82a2699f85dd4017c91f838f40772e3ad0b53608150680405507322

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23a3eba3d3c9b2fbcb66b09b6b0656cb97f4076b68531cee033088e27f896a46
MD5 2f65c4d50a73dcc049746ba36abbe167
BLAKE2b-256 9cfc8585d92e6cab03fc1ccebecd97ee42034e9cb2f1d8658b0d1c6fc17af4ce

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e47d572c3e7c4bf36c86bc9e227b95c75add05791a51a22b70604a78324f5c15
MD5 2120921d20b44c99815d9b165d4035d4
BLAKE2b-256 1729529e1bc2dd5e8481f741e4e8650fae4d7c1460e00426344ad5360450fdfb

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72d1aee8e2881658c7b57000e51493a8653a5b489aa92bad118c40d2954de8d9
MD5 30cb0d45f4465f454a32dd7d292a5f8d
BLAKE2b-256 0660ef80f9ed5d19b9252462149b9056ec00755fd3acfa230d0dfa0b2c722edf

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04324b9d4748e0911743317fdaf538581e317e1ea61280d34d603338d0e5726a
MD5 c4d33e1c061776a6f11b45dc27980154
BLAKE2b-256 689c534300f1be4265460848992511db793a936b8509bc2f79088d7f3c190d58

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23c512a5798308deed0a80d15d95b690ee0187d50a2a278763cffd23e27ddd66
MD5 a8fc49f99e17a3a90ebe698fa803316e
BLAKE2b-256 736dadd92705294a774787faf72ec535b686c07bd37174e362dd59a8389e9be2

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c3665982b1bf031b5032ac74187aae48edccbf3933bba7fdfd0d444a695e418
MD5 305f043dd8e424cd9d28a2a39fc2ed8a
BLAKE2b-256 9970079aa3861986e28eaec4568e905e869eaaa0b3aa53ac0e9b0718fb1db350

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c90e47c7bbbba683724a25168b835e3b682178e60b8b7283c7939844d650d6c
MD5 3e09f8e847f254834c18c9599d928110
BLAKE2b-256 63d5a51d2fab651963e67838d397e08c578b07d7a2e9912ea34b414ff9d65a13

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9be43d52d02cd9259d92aa1b5b7987179d4c941ed94125b70b12c2b8f170072
MD5 7717eb4213d3eabe52677c26be7770ff
BLAKE2b-256 fc075405cacf0c1cbb23c6fa5ad6dcd2e2329713fc06ced77e21a46dcd76f14c

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe73f6a6fce0e608a98339f39de3475810f164e0ff643dcee4b085a96856ce15
MD5 db5cfd684593f19381f07c16ede19094
BLAKE2b-256 dd20de30f93bdf6844586596feb95667c0a40f4a8d2cebd4e06736ea29faa0f7

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 297f51ca2ec47bcc6bfc660c2f5dcf6e304cf4b844a928896f6f715f9d8de112
MD5 778f071bbfad66da79a6e91af3d7f7cb
BLAKE2b-256 ad5481c7688af125be42dcad7cab87e07148bd29439c5edd2ef9938140b45f7c

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c745535f3dd0e8ffa592f0f994d0a225b167450e7117f4905e7361866ddc9ff8
MD5 ac06d5a3cee1f4266cb58a11c249a441
BLAKE2b-256 0268ca5e58c3fe8ff22c020ba90813c5ef7d1da2df08aae7713fbadeb905995d

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8547f6e372aed2b4d21ad564f76b4ac4c462db1311b3d76e304f0c18e4ea46b5
MD5 01c51c05e04ddee45d6d88307426dd36
BLAKE2b-256 65dc26d8b9c4accfa7d742774881608ff9403cbad6c747deee732decbb85f598

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41083c8ba8e83485866b6c18b177fc18469c29ba5abcb250fcd849dfd296b1d7
MD5 35e6f24a5051565981b71da56f427139
BLAKE2b-256 a46fc2f6d7e06a8629735df74807cf9c3034624693cfb1ed8405da99f3d4c2a5

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80287a64ddc48368c133c9efd16fd1b98e5aa9eb5ded1328d39f2c9a059f9a9f
MD5 3dcd2c005d12f1ce02346e0d43d920de
BLAKE2b-256 c35d3424f28fc85cc6ffe96fe92aa077b1abad49b425d91135be1b01ce69ecf1

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64d2230d4ade1f7280303a50e744f51fc8b3e1d110fa99d516a548af123cebfa
MD5 9af43f65eb5bd21a016ef89de83dac53
BLAKE2b-256 ddc04ae0793471c53880cff3959ed718034437578f591a1ba971a791311ab52c

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7793387f03817b6da9b3c792149828b448db48d74fa7473ea5f6f2c8843cb1cc
MD5 c062806c9492f05502a522e95920dc24
BLAKE2b-256 1475c09b08bf953f8088a3d447e8ecf33fe470672676fd28f922e68a05a6e13e

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0920cc7d49635d2ae4b27af0d12003f6a910ac6b8cda9fce6221085592d584f5
MD5 4b966cbca3b6cdf7c27eab5d4e9e5a51
BLAKE2b-256 0cdd7650c918fe32781d54ddfadb91e5aa6085839af0d892d76f9003b6f167e1

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db5d6dde766e4ef665fc7661c79bc221143a34d9be00597588770a9b5696a3b1
MD5 32d621883c1e4e80986d1df819d256c4
BLAKE2b-256 cec5f42a310d0dc0df61b3ec10aa357b479eda0c15765f56a7193c62e44a4cb3

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e7915d160e3a7a6f794efb0752171edbc7d6aefc31e4ac74b2d0f5e1c6b6c6b
MD5 6159c2151ef8ea2f0e57b367b93dad29
BLAKE2b-256 4f3187fcdd4bc5f885f1f21c42c9c0a7451b7a44bb3f25065120d6d4671c7799

See more details on using hashes here.

File details

Details for the file hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5407ac2f187a15e593364ba12572c3bea38201542e8e63fb70ef6762567a13c9
MD5 4ae2be3ff2025ede953dfd530390f249
BLAKE2b-256 aa2d2aec13a83dcd488bd6ef5cc42a0d12571e51a089c13069eecaf609a4c7e5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page