Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

s3z — S3 ops, but fearlessly fast

S3 ops, but fearlessly fast.
Built in Rust. Streaming. Parallel. No bloat.


Python bindings for s3z — a lightweight, high-throughput S3 library built in Rust.

Install

uv add s3z        # recommended
pip install s3z
pipx install s3z  # isolated install

Quick start

from s3z import Config, S3Client, CredentialSource

config = Config("us-east-1", CredentialSource.Env)
client = S3Client(config)

# Upload
results = client.upload(["./data"], "my-bucket", "uploads/")
for r in results:
    print(f"{r.source} -> s3://{r.key} ({r.parts} parts)")

# Download
files = client.download("my-bucket", "uploads/", "./out")

# List
objects = client.list("my-bucket", "uploads/")

S3-compatible backends

from s3z import Config, S3Client, static_credentials

config = Config(
    "us-east-1",
    static_credentials("access-key", "secret-key"),
    endpoint="http://localhost:9000",  # MinIO, SeaweedFS, Garage, etc.
)
client = S3Client(config)

License

MIT

Release files for s3z 0.1.0rc1.dev20260427182738

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

Source distribution (sdist)

Source distribution for s3z 0.1.0rc1.dev20260427182738
File Size Uploaded
s3z-0.1.0rc1.dev20260427182738.tar.gz 57.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for s3z 0.1.0rc1.dev20260427182738
File
s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp313-cp313t-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details

Total release size: 63.5 MB

Release files / s3z-0.1.0rc1.dev20260427182738.tar.gz

Download URL s3z-0.1.0rc1.dev20260427182738.tar.gz
Size 57.2 kB
Tags Source
SHA-256 checksum
How to use checksums
5df1c15a2b59da6e88053ac48fa9997ec61a926c6d8fd641660ef82438d2ca37
BLAKE2b-256 checksum
How to use checksums
431ecf0508311e7492de64db6e33e7f6433665c6c0638bf971e4179dc884cfac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
54d5f576317204c3cbf5788075c5954fd349cb3f8ce4114b8541d312da3da5f4
BLAKE2b-256 checksum
How to use checksums
171fbe195250db0ff65d9a7b2a221d45d2672b69ae53301714f69062ac5d31d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
6433392e47647515e659377098b198abd27774a14c8c2a31ae48f612a1af9dbf
BLAKE2b-256 checksum
How to use checksums
98f081010bb4f239b559c1c26b4b8af1aefd38427bb3b99b03ba1a7bfba91de0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
662b06a938c2886e0bdec287e8f1ea3ce530eb411a54fe1c91b185233c727710
BLAKE2b-256 checksum
How to use checksums
090a54ccdc256ce971565d601970f29a666c308b987539467f7615767550e428
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6c95d5a75a33fd4763cc458fcffa28a12295a3582762da0ef571d9695688b5a0
BLAKE2b-256 checksum
How to use checksums
a7bb319287a77a95322fab8633601be688ce715461dba0475b4499058c183d2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1b2a60a5d6c7a9f227b78340d6e69c36a1b13762b239f0b2e2071f4d340c4cf3
BLAKE2b-256 checksum
How to use checksums
3574b7d79f4e46e88b80be78023d7d9db119199ba1eeeba5907c6650361db41f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_11_0_arm64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c3d0ecc22e7cbb236ba937875cbb49ac43ff3e543300d935fbff96cb102efab8
BLAKE2b-256 checksum
How to use checksums
804d58389a4720e2f2821b4f3920cd5bc50970fd509485eb1019968d877d151b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_10_12_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp314-cp314-macosx_10_12_x86_64.whl
Size 3.1 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1ebfd499639f3c9e0ebdc4a3c37686f8a032f96d52cc051de3d809de27f86dbe
BLAKE2b-256 checksum
How to use checksums
8ef7b7196d0826841cbd64d277471cedb9fe4ed8f0ff8a79ff19368def00a879
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp313-cp313t-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp313-cp313t-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9a58d921dc484c55dbeb264b18465b287317d050f5c4b72713aa57c099421e8e
BLAKE2b-256 checksum
How to use checksums
3d5072ba4f366e6b9feead014b8496a1f4f93843d6a2708d056ea326bd86418e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e43e409a89457d682a821c99c5dee6ce2a58baed01e2b302e34dd481d12c318f
BLAKE2b-256 checksum
How to use checksums
8a1ee525fdfcd8ed008b5251a8d775417acd1b2289591fdbf0dd2117bad88e7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a4afdaba33b8e8956e1c9f0dd98e6c8dc4fc206afede145bca3a085eaa6a917e
BLAKE2b-256 checksum
How to use checksums
1533ef8da58e4525c7db037a0a36afd4afd1f9d61c9eb58fbced3d2981c422c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_11_0_arm64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f5882222d59622a81b4f1419c4cf846e78162f830dc750c4071faedf66bb7f4d
BLAKE2b-256 checksum
How to use checksums
99fe3dbcd817ae20f72b3dfa89cec9dc5e7f0e74d5b5251cc266cca669e2d3b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_10_12_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp313-cp313-macosx_10_12_x86_64.whl
Size 3.1 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4fa4eb43417876879ea02795611279ad193b0ec857b992ffcc6b165e76640d7b
BLAKE2b-256 checksum
How to use checksums
701b7786be0ae6adb7e43dbe859bce083275792d7a3e22a87da59b9d32ac2162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cee2191db00940df7ad433357ca63ad16c090448f9ad975df13eda97460acfb2
BLAKE2b-256 checksum
How to use checksums
1cdb4896de9825f64456a816ac98f0c1e6beb2eb492d2196a559e5ab4c374380
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1c67d15dc609cc9147dbf0ac65a07a91d056908329f5592c725b86fc4088c941
BLAKE2b-256 checksum
How to use checksums
d35f11f5379a7931a68c50cf1ed7d1df0abd7670133676b900c5b4cb07c8aab7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_11_0_arm64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f73f253061f43fc3ddf60e80d7ac42b82a3a58718526756384ee872af8ec5332
BLAKE2b-256 checksum
How to use checksums
2e84042e40847d69c033137db0fabeb64c54e84c59b0b9fbc973241c515ec1ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_10_12_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp312-cp312-macosx_10_12_x86_64.whl
Size 3.1 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b6fea54e346aab2fc5c8c46ff019b772f8f94e664d4c82f29b5fe9e80a64c068
BLAKE2b-256 checksum
How to use checksums
16e89dbedf84dbf8c232f0b5e4da40800d9dd6df5bd347d0062b56a280c57a1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
011441e4ac0a70599161ffbe81277508bdd569db3ef76d256040b14030ab1f3f
BLAKE2b-256 checksum
How to use checksums
f529fff1594421a486f7390ffdd5a48585405ce86027558cd54ef1a22e849ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7d573ac3dd63dc507bd5b201c034ac1387ef390d5cb3951caf813e21dece2aaf
BLAKE2b-256 checksum
How to use checksums
88e3748e132356aa69aa2e197176577457f126d84a3892d5cb4f8405d2949f0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_11_0_arm64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fd7107770e66b292b75b497a861f03cafe69700b6b3ff2ed8e6b4bb587f4fc61
BLAKE2b-256 checksum
How to use checksums
b598ce12a821e5022724b02e678113c99e352a8f0f8b44ba3d43295afc859e4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_10_12_x86_64.whl

Download URL s3z-0.1.0rc1.dev20260427182738-cp311-cp311-macosx_10_12_x86_64.whl
Size 3.1 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
723fcb86f71086daffc7541a461517726be104222606aebedef5f7cf8a3f4e99
BLAKE2b-256 checksum
How to use checksums
1e15fa2641fbe9aeea72c90562f9188250a11b095c05e265a2f3182ffa636403
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
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