Skip to main content

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.

Release files for hmt-lzma-pyo3 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for hmt-lzma-pyo3 0.2.0
File Size Uploaded
hmt_lzma_pyo3-0.2.0.tar.gz 5.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for hmt-lzma-pyo3 0.2.0
File
hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details

Total release size: 7.7 MB

Release files / hmt_lzma_pyo3-0.2.0.tar.gz

Download URL hmt_lzma_pyo3-0.2.0.tar.gz
Size 5.1 kB
Tags Source
SHA-256 checksum
How to use checksums
34855d940f5b808b31ac0e23d516669a533688626a0425b9fbe5d166e877e588
BLAKE2b-256 checksum
How to use checksums
9102f568c99388104ee28518e13de0aec68ab4e24b723c06e360cb87f3fb48c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f6c954b46f901814ca36991633c5c5426f6c461a70254f3c4b272a735a76df78
BLAKE2b-256 checksum
How to use checksums
e3b4464ddc5b122b77ea743438c6c3d3353557e5d45a896cdd3f1a2d41c0fff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
039ba07b7eee0f22f220012f81a29ee7d42b17f7ff3956849ea51b3e9ddb92e5
BLAKE2b-256 checksum
How to use checksums
9e5fd49b3b6cc7be45e36f6afa72846afd40c94c5fbb1ebb7d8387693e16bccb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
32fc09d50624bd319f343168a67fa5f07abe7cbb663197fefa72c2365ab4a618
BLAKE2b-256 checksum
How to use checksums
79ee6e68ccda23d584a204f4f16ef0bccf9d522fec74b790ebb7bed82c9c8cfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
26c8b10135fec16b5abd7a9d546fa274b9ac883893230e966902f3f78252ad96
BLAKE2b-256 checksum
How to use checksums
9f352411ebc15540ea779be4feaf5e3f353fb581628b6676095239add437303e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 201.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
189689186843450803c353d759b87cb55ae1cf5abf8b61f61125f6437bb5f834
BLAKE2b-256 checksum
How to use checksums
f76af1e622d2f5b52b53998b03d15502f600e35f27ea59c40916b989266266ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
120cf38e3db4ef03a3ca2068e92227c1943fa538d1d8843d4d79a6bca6f22cac
BLAKE2b-256 checksum
How to use checksums
902c51cdf697ba416a7de7058c88cebc720fad7039438632d0fab4c2fa787f0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ce507f37594d25c2d2eecd00ddb4bbaecb45014ffb3b61996d1acfa56b5e0a54
BLAKE2b-256 checksum
How to use checksums
c07628798f3f239ef43a576eca75dff3a5f5adf8bf549d04ef996c5ccd6b4c69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6906dfcfa5eeab295c0e9ebfecfb72ca297e1d8e9be04e47f338831fa3469cd3
BLAKE2b-256 checksum
How to use checksums
11958666f96d95702ff291eb00fb369f54cf2882d402455667ac61acbaaaaeaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
eb11fcaac6f361020ab9ba41a4d589db56b8a4ed9fdc76cea0db916410f5e33f
BLAKE2b-256 checksum
How to use checksums
e6ccfbb5f095b7fc55747d197bde896607a1daf34e237dad73ba60ef37bcb7d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 201.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
73e2be635da061c1ab56dc8b36b05cfec7bb72d9ffc2f93593fc8b5d07be50e4
BLAKE2b-256 checksum
How to use checksums
48395a91b82a2699f85dd4017c91f838f40772e3ad0b53608150680405507322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
23a3eba3d3c9b2fbcb66b09b6b0656cb97f4076b68531cee033088e27f896a46
BLAKE2b-256 checksum
How to use checksums
9cfc8585d92e6cab03fc1ccebecd97ee42034e9cb2f1d8658b0d1c6fc17af4ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e47d572c3e7c4bf36c86bc9e227b95c75add05791a51a22b70604a78324f5c15
BLAKE2b-256 checksum
How to use checksums
1729529e1bc2dd5e8481f741e4e8650fae4d7c1460e00426344ad5360450fdfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
72d1aee8e2881658c7b57000e51493a8653a5b489aa92bad118c40d2954de8d9
BLAKE2b-256 checksum
How to use checksums
0660ef80f9ed5d19b9252462149b9056ec00755fd3acfa230d0dfa0b2c722edf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
04324b9d4748e0911743317fdaf538581e317e1ea61280d34d603338d0e5726a
BLAKE2b-256 checksum
How to use checksums
689c534300f1be4265460848992511db793a936b8509bc2f79088d7f3c190d58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 201.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
23c512a5798308deed0a80d15d95b690ee0187d50a2a278763cffd23e27ddd66
BLAKE2b-256 checksum
How to use checksums
736dadd92705294a774787faf72ec535b686c07bd37174e362dd59a8389e9be2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7c3665982b1bf031b5032ac74187aae48edccbf3933bba7fdfd0d444a695e418
BLAKE2b-256 checksum
How to use checksums
9970079aa3861986e28eaec4568e905e869eaaa0b3aa53ac0e9b0718fb1db350
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2c90e47c7bbbba683724a25168b835e3b682178e60b8b7283c7939844d650d6c
BLAKE2b-256 checksum
How to use checksums
63d5a51d2fab651963e67838d397e08c578b07d7a2e9912ea34b414ff9d65a13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f9be43d52d02cd9259d92aa1b5b7987179d4c941ed94125b70b12c2b8f170072
BLAKE2b-256 checksum
How to use checksums
fc075405cacf0c1cbb23c6fa5ad6dcd2e2329713fc06ced77e21a46dcd76f14c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fe73f6a6fce0e608a98339f39de3475810f164e0ff643dcee4b085a96856ce15
BLAKE2b-256 checksum
How to use checksums
dd20de30f93bdf6844586596feb95667c0a40f4a8d2cebd4e06736ea29faa0f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 201.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
297f51ca2ec47bcc6bfc660c2f5dcf6e304cf4b844a928896f6f715f9d8de112
BLAKE2b-256 checksum
How to use checksums
ad5481c7688af125be42dcad7cab87e07148bd29439c5edd2ef9938140b45f7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c745535f3dd0e8ffa592f0f994d0a225b167450e7117f4905e7361866ddc9ff8
BLAKE2b-256 checksum
How to use checksums
0268ca5e58c3fe8ff22c020ba90813c5ef7d1da2df08aae7713fbadeb905995d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8547f6e372aed2b4d21ad564f76b4ac4c462db1311b3d76e304f0c18e4ea46b5
BLAKE2b-256 checksum
How to use checksums
65dc26d8b9c4accfa7d742774881608ff9403cbad6c747deee732decbb85f598
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
41083c8ba8e83485866b6c18b177fc18469c29ba5abcb250fcd849dfd296b1d7
BLAKE2b-256 checksum
How to use checksums
a46fc2f6d7e06a8629735df74807cf9c3034624693cfb1ed8405da99f3d4c2a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
80287a64ddc48368c133c9efd16fd1b98e5aa9eb5ded1328d39f2c9a059f9a9f
BLAKE2b-256 checksum
How to use checksums
c35d3424f28fc85cc6ffe96fe92aa077b1abad49b425d91135be1b01ce69ecf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 201.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
64d2230d4ade1f7280303a50e744f51fc8b3e1d110fa99d516a548af123cebfa
BLAKE2b-256 checksum
How to use checksums
ddc04ae0793471c53880cff3959ed718034437578f591a1ba971a791311ab52c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 311.0 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7793387f03817b6da9b3c792149828b448db48d74fa7473ea5f6f2c8843cb1cc
BLAKE2b-256 checksum
How to use checksums
1475c09b08bf953f8088a3d447e8ecf33fe470672676fd28f922e68a05a6e13e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 296.9 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0920cc7d49635d2ae4b27af0d12003f6a910ac6b8cda9fce6221085592d584f5
BLAKE2b-256 checksum
How to use checksums
0cdd7650c918fe32781d54ddfadb91e5aa6085839af0d892d76f9003b6f167e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_x86_64.whl
Size 238.0 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
db5d6dde766e4ef665fc7661c79bc221143a34d9be00597588770a9b5696a3b1
BLAKE2b-256 checksum
How to use checksums
cec5f42a310d0dc0df61b3ec10aa357b479eda0c15765f56a7193c62e44a4cb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl
Size 232.4 kB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e7915d160e3a7a6f794efb0752171edbc7d6aefc31e4ac74b2d0f5e1c6b6c6b
BLAKE2b-256 checksum
How to use checksums
4f3187fcdd4bc5f885f1f21c42c9c0a7451b7a44bb3f25065120d6d4671c7799
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL hmt_lzma_pyo3-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Size 201.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5407ac2f187a15e593364ba12572c3bea38201542e8e63fb70ef6762567a13c9
BLAKE2b-256 checksum
How to use checksums
aa2d2aec13a83dcd488bd6ef5cc42a0d12571e51a089c13069eecaf609a4c7e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release history Release notifications | RSS feed

This release

0.2.0 This release

31 release files

0.1.0

35 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page