Skip to main content

Installation

pip install safetensors

Usage

Numpy

from safetensors.numpy import save_file, load_file
import numpy as np

tensors = {
   "a": np.zeros((2, 2)),
   "b": np.zeros((2, 3), dtype=np.uint8)
}

save_file(tensors, "./model.safetensors")


# Now loading
loaded = load_file("./model.safetensors")

Torch

from safetensors.torch import save_file, load_file
import torch

tensors = {
   "a": torch.zeros((2, 2)),
   "b": torch.zeros((2, 3), dtype=torch.uint8)
}

save_file(tensors, "./model.safetensors")


# Now loading
loaded = load_file("./model.safetensors")

Developing

# inside ./safetensors/bindings/python
pip install .[dev]

Should be enough to install this library locally.

Testing

# inside ./safetensors/bindings/python
pip install .[dev]
pytest -sv tests/

Release files for safetensors 0.4.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 safetensors 0.4.0
File Size Uploaded
safetensors-0.4.0.tar.gz 58.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for safetensors 0.4.0
File
safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
safetensors-0.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.7+ x86-64 Details
safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
safetensors-0.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.7+ x86-64 Details
safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64 Details
safetensors-0.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.7+ x86-64 Details
safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp312-cp312-macosx_10_7_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp311-none-win_amd64.whl CPython 3.11 none Windows x86-64 Details
safetensors-0.4.0-cp311-none-win32.whl CPython 3.11 none Windows x86-32 Details
safetensors-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp311-cp311-macosx_10_7_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp310-none-win_amd64.whl CPython 3.10 none Windows x86-64 Details
safetensors-0.4.0-cp310-none-win32.whl CPython 3.10 none Windows x86-32 Details
safetensors-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp39-none-win_amd64.whl CPython 3.9 none Windows x86-64 Details
safetensors-0.4.0-cp39-none-win32.whl CPython 3.9 none Windows x86-32 Details
safetensors-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp38-none-win_amd64.whl CPython 3.8 none Windows x86-64 Details
safetensors-0.4.0-cp38-none-win32.whl CPython 3.8 none Windows x86-32 Details
safetensors-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.7+ x86-64 Details
safetensors-0.4.0-cp37-none-win_amd64.whl CPython 3.7 none Windows x86-64 Details
safetensors-0.4.0-cp37-none-win32.whl CPython 3.7 none Windows x86-32 Details
safetensors-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
safetensors-0.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
safetensors-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
safetensors-0.4.0-cp37-cp37m-macosx_11_0_arm64.whl CPython 3.7 CPython 3.7 pymalloc macOS 11.0+ ARM64 Details
safetensors-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.7+ x86-64 Details

Total release size:106.9 MB

Release files / safetensors-0.4.0.tar.gz

Download URL safetensors-0.4.0.tar.gz
Size 58.6 kB
Tags Source
SHA-256 checksum
How to use checksums
b985953c3cf11e942eac4317ef3db3da713e274109cf7cfb6076d877054f013e
BLAKE2b-256 checksum
How to use checksums
64ae978970755bfe0ce612fc32527d3ab2bf195f926f9d02eb63ba20823c16be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f0daa788273d683258fb1e4a5e16bef4486b2fca536451a2591bc0f4a6488895
BLAKE2b-256 checksum
How to use checksums
5a96e8e1c6a9299c5d9a490707c61e5a632bf408671f103b0527f5346f05f24d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
435fd136a42492b280cb55126f9ce9535b35dd49df2c5d572a5945455a439448
BLAKE2b-256 checksum
How to use checksums
183ae495d228a103040180ae22ed484e877841d5b14148620d381c341158bc71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
8f2ca939bbd8fb2f4dfa28e39a146dad03bc9325e9fc831b68f7b98f69a5a2f1
BLAKE2b-256 checksum
How to use checksums
d928d19c10aab5031c2458a36f9b30d8a7b052f3c84dd75bca38b641d54dd5de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
0f45230f20a206e5e4c7f7bbf9342178410c6f8b0af889843aa99045a76f7691
BLAKE2b-256 checksum
How to use checksums
c114d597f1593fabb6c808dd1b9851fe1d2fb9a760fda90ebd9bce2633f82605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
61a00f281391fae5ce91df70918bb61c12d2d514a493fd8056e12114be729911
BLAKE2b-256 checksum
How to use checksums
355bf9bf9a2f65e0e1e8d7a17ccab8daf15d385e8f4d8c040b820e3e20495815
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 426.0 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
67762d36ae088c73d4a3c96bfc4ea8d31233554f35b6cace3a18533238d462ea
BLAKE2b-256 checksum
How to use checksums
669f9fdfd56ba73d4fb8f56dc6285e1a1496fd932ff9e43b85b61ed07e04d500
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Size 440.7 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
002301c1afa32909f83745b0c124d002e7ae07e15671f3b43cbebd0ffc5e6037
BLAKE2b-256 checksum
How to use checksums
e35cf0971d0432be5def8877132ad80c7dc185d7ab9d1270b010434c8134cd8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
9ed55f4a20c78ff3e8477efb63c8303c2152cdfb3bfea4d025a80f54d38fd628
BLAKE2b-256 checksum
How to use checksums
2ebaac4bdbbc62ef25c464f72ab2b8789728c8021f9459d67cdea9290442c717
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
232029f0a9fa6fa1f737324eda98a700409811186888536a2333cbbf64e41741
BLAKE2b-256 checksum
How to use checksums
64ca1bc82bb10fb3b9ad8cf4e4993d9088e2923bcc33ba05c0719027c9198f17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
d8c4f5ed4ede384dea8c99bae76b0718a828dbf7b2c8ced1f44e3b9b1a124475
BLAKE2b-256 checksum
How to use checksums
96a8dd259834d0529aadf5c0a93de9651a3262e6fb0de9a30fd2f46e50600c34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
80cb8342f00f3c41b3b93b1a599b84723280d3ac90829bc62262efc03ab28793
BLAKE2b-256 checksum
How to use checksums
8cbaa89cbfa9f71c6ed495157669c6aeaad1657b51fe9eeabfcbd4d05e8617a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
40d7cf03493bfe75ef62e2c716314474b28d9ba5bf4909763e4b8dd14330c01a
BLAKE2b-256 checksum
How to use checksums
ea4869770b5714596e8c7397c9cf8f8f560776be6cb1f215a1a0ad46086e78d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 426.0 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6c42623ae7045615d9eaa6877b9df1db4e9cc71ecc14bcc721ea1e475dddd595
BLAKE2b-256 checksum
How to use checksums
8c60633e48209ed40e15c669990255bd8b996b330447c9adaf03d2dd45c3f884
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Size 440.7 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
9849ea60c7e840bfdd6030ad454d4a6ba837b3398c902f15a30460dd6961c28c
BLAKE2b-256 checksum
How to use checksums
62c2908280ac83c0e0e0f8a6b7e701003d2c8bb10ffa978e849421e65f3ec23b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
7a524382b5c55b5fbb168e0e9d3f502450c8cf3fb81b93e880018437c206a482
BLAKE2b-256 checksum
How to use checksums
180c03e538da5c6052d1305a6eee9e7f7582f8f0b680814422c6a7b5006d20fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
3f4d90c79a65ba2fe2ff0876f6140748f0a3ce6a21e27a35190f4f96321803f8
BLAKE2b-256 checksum
How to use checksums
577b71c7d3a1a32f13416cc3d0945feeda6ce5f49ff7176f3ff28e6c7c775926
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
ed50f239b0ce7ae85b078395593b4a351ede7e6f73af25f4873e3392336f64c9
BLAKE2b-256 checksum
How to use checksums
485d220960ac4d491737e2e2a32dd574f448599ed4cbac5b2cf5e19b86f43235
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
6c5556c2ec75f5a6134866eddd7341cb36062e6edaea343478a279591b63ddba
BLAKE2b-256 checksum
How to use checksums
ca4ce586cb7f9e860d357125df46306bf16a7b22d4e7e2208f97f5915897048b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
495dcaea8fbab70b927d2274e2547824462737acbf98ccd851a71124f779a5c6
BLAKE2b-256 checksum
How to use checksums
6078ee2716ff33d65b31fd8fe4c1c7ec1780aa7c5c32b8a20d5cb9e1c288890e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Size 425.8 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
72ddb741dd5fe42521db76a70e012f76995516a12e7e0ef26be03ea9be77802a
BLAKE2b-256 checksum
How to use checksums
549db5ea32cc26cab54643f3e10bf298fb5d7fea75d9de3d47b9a4aa621ca9a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Size 440.5 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
114decacc475a6a9e2f9102a00c171d113ddb5d35cb0bda0db2c0c82b2eaa9ce
BLAKE2b-256 checksum
How to use checksums
1f2824587fe2b3fdc360d70f1fc7a40c05b1c284fddb70a36b6814fb57746d91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
10b65cd3ad79f5d0daf281523b4146bc271a34bb7430d4e03212e0de8622dab8
BLAKE2b-256 checksum
How to use checksums
e55e2a7b82bae2df5a517387ffecd46c2156632f00f3f5d2682c17636b6a2406
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
79a983b09782dacf9a1adb19bb98f4a8f6c3144108939f572c047b5797e43cf5
BLAKE2b-256 checksum
How to use checksums
ca939d5129c110aa68880aed87b53c618d63119a0b39898282ec2418497434c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
dcaa40bc363edda145db75cd030f3b1822e5478d550c3500a42502ecef32c959
BLAKE2b-256 checksum
How to use checksums
541fcc963ce4fbd420ec682c827354e68fe3ac8fec7a1464e58d32de9ba850fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
bc1fa8d067733cb67f22926689ee808f08afacf7700d2ffb44efae90a0693eb1
BLAKE2b-256 checksum
How to use checksums
487b9c2274019166e974bb8b55d190898084ec4324e3530a2b432b2ef197a93a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
b561fbc044db7beff2ece0ec219a291809d45a38d30c6b38e7cc46482582f4ba
BLAKE2b-256 checksum
How to use checksums
ec53f374c2429de61442f882134eb0eb473bc75182ef32694df4e185800e6e05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Size 442.8 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
0620ab0d41e390ccb1c4ea8f63dc00cb5f0b96a5cdd3cd0d64c21765720c074a
BLAKE2b-256 checksum
How to use checksums
fb9ee466606b0d7d48bd9ec784b94e46c3279b50f04c7e6eda06eef696c04c2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f8d2416734e850d5392afffbcb2b8985ea29fb171f1cb197e2ae51b8e35d6438
BLAKE2b-256 checksum
How to use checksums
3a01c8ca57f463331b6ef7f5bd1f7fed0904f78f9898b20f13b5ae4c21df317b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
8e735b0f79090f6855b55e205e820b7b595502ffca0009a5c13eef3661ce465b
BLAKE2b-256 checksum
How to use checksums
c65868e9dc9c552b8a9f160649c0b8219bcfac2b04879e1493a6dab75e66cf66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
db7bb48ca9e90bb9526c71b388d38d8de160c0354f4c5126df23e8701a870dcb
BLAKE2b-256 checksum
How to use checksums
d7d3df131493c42106a2068a2fd764c057a116278b4fff532a737f9122f7fb9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fdc34027b545a69be3d4220c140b276129523e4e46db06ad1a0b60d6a4cf9214
BLAKE2b-256 checksum
How to use checksums
ea388a7d37b906ab497a0cb4d39a285711f794c00e85f50f343f08fdd95f1b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7b2d6101eccc43c7be0cb052f13ceda64288b3d8b344b988ed08d7133cbce2f3
BLAKE2b-256 checksum
How to use checksums
c5cdfda6c0e93572e98a79360297ec43b66c33af6fd436964276deaf3d7f5d26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2f27b8ef814c5fb43456caeb7f3cbb889b76115180aad1f42402839c14a47c5b
BLAKE2b-256 checksum
How to use checksums
7d3ce27b9daa56ea2d3b6f8438135a13f66e54f05a8056a3d3217a6e07db7cde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cf8fdca709b2470a35a59b1e6dffea75cbe1214b22612b5dd4c93947697aea8b
BLAKE2b-256 checksum
How to use checksums
b8147ce439f7ac0b774a6954d090aba3c48df9f51606375fd9f12e1ec75aace6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a78ffc0795d3595cd9e4d453502e35f764276c49e434b25556a15a337db4dafc
BLAKE2b-256 checksum
How to use checksums
1c9ffa87772acab3b06b72ac4cac8810b054eb26c52f0f0bfbda42e64f4d3457
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Size 425.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3910fb5bf747413b59f1a34e6d2a993b589fa7d919709518823c70efaaa350bd
BLAKE2b-256 checksum
How to use checksums
579b3b932f1097b4fe9b9204827edbc9685a0e2d422f39a021eafa27f87b3f9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp312-cp312-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp312-cp312-macosx_10_7_x86_64.whl
Size 438.2 kB
Tags CPython 3.12 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
1e2f9c69b41d03b4826ffb96b29e07444bb6b34a78a7bafd0b88d59e8ec75b8a
BLAKE2b-256 checksum
How to use checksums
f724a083b498a1068dbb964292eab54530deac1ae4403d1fada5a4adcaba446c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-none-win_amd64.whl

Download URL safetensors-0.4.0-cp311-none-win_amd64.whl
Size 277.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
74e2a448ffe19be188b457b130168190ee73b5a75e45ba96796320c1f5ae35d2
BLAKE2b-256 checksum
How to use checksums
da33f7437e23b0bb3f14014ab60de5948ca2b5187031e955e2db2fa872e35a3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-none-win32.whl

Download URL safetensors-0.4.0-cp311-none-win32.whl
Size 265.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2f99d90c91b7c76b40a862acd9085bc77f7974a27dee7cfcebe46149af5a99a1
BLAKE2b-256 checksum
How to use checksums
f41ca075f2478ee742fe56d03153c01c0247e2e58f0e937f16c4359cd913827d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
38032078ed9fea52d06584e441bccc73fb475c4581600c6d6166de2fe2deb3d1
BLAKE2b-256 checksum
How to use checksums
9192fd9e835d8381f79312a2b7c85b75bad5a2022e7fb07366b190f5a871f292
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a86565a5c112dd855909e20144947b4f53abb78c4de207f36ca71ee63ba5b90d
BLAKE2b-256 checksum
How to use checksums
5c23074cd7cc90d76746fb821f511c1dcaafdc56cec1f30f699fe386cb48b87c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
48b92059b1a4ad163024d4f526e0e73ebe2bb3ae70537e15e347820b4de5dc27
BLAKE2b-256 checksum
How to use checksums
215a9300f8db3714ba8831d2479d47c0bf34393903cd8a90ac4ac09d1d85cc9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
82e8fc4e3503cd738fd40718a430fe0e5ce6e7ff91a73d6ce628bbb89c41e8ce
BLAKE2b-256 checksum
How to use checksums
9d4ca87a81f2b7b59e45a637a994dfe4612d507fe1e8a3354c855e9b449a17db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
25cd407955bad5340ba17f9f8ac789a0d751601a311e2f7b2733f9384478c95e
BLAKE2b-256 checksum
How to use checksums
2fb5dad9c3a2b020b20a3e79a58017c5b24dcb103465ea721fe877688db32faa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a54c21654a47669b38e359e8f852af754b786c9da884bb61ad5e9af12bd71ccb
BLAKE2b-256 checksum
How to use checksums
c25244bea61bda2e2f5a6105ccab46dba6cae18341568135ce9abe13e7726d3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cbc4a4da01143472323c145f3c289e5f6fabde0ac0a3414dabf912a21692fff4
BLAKE2b-256 checksum
How to use checksums
9aa117a41782f1aeb9bbecf49f9f312a606b1614945b22a88208b1c319fcc613
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5daa05058f7dce85b5f9f60c4eab483ed7859d63978f08a76e52e78859ff20ca
BLAKE2b-256 checksum
How to use checksums
424da83050628b1f0b03c2a8824108678f4b22ac3fbd8ce4f29f017de685db42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Size 425.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e7916e814a90008de767b1c164a1d83803693c661ffe9af5a697b22e2752edb0
BLAKE2b-256 checksum
How to use checksums
914fbded5d0435a72f1bd39f5aaa81077d84fa39526a7c055cc8b8aa44fce681
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp311-cp311-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp311-cp311-macosx_10_7_x86_64.whl
Size 439.2 kB
Tags CPython 3.11 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
4fe9e3737b30de458225a23926219ca30b902ee779b6a3df96eaab2b6d625ec2
BLAKE2b-256 checksum
How to use checksums
223d32f819203115c314391268d69423eb4653e7478e8d5eaf87ae79ce434263
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-none-win_amd64.whl

Download URL safetensors-0.4.0-cp310-none-win_amd64.whl
Size 277.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7ffc736039f08a9ca1f09816a7481b8e4469c06e8f8a5ffa8cb67ddd79e6d77f
BLAKE2b-256 checksum
How to use checksums
35c0d5c1ef78fd9d52913b70574501562c38916927f1778a6baf4f0b80129463
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-none-win32.whl

Download URL safetensors-0.4.0-cp310-none-win32.whl
Size 265.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
67ab171eeaad6972d3971c53d29d53353c67f6743284c6d637b59fa3e54c8a94
BLAKE2b-256 checksum
How to use checksums
6b071ee48eddb471332f080272a80d1b3aefb3badd0d4f6699f76655e482526c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
0219cea445177f6ad1f9acd3a8d025440c8ff436d70a4a7c7ba9c36066aa9474
BLAKE2b-256 checksum
How to use checksums
682ad1bd06d39f4a35c924e2b6e41deb82bc521de583e6392aaa0cecca066b0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
4d512525a8e05a045ce6698066ba0c5378c174a83e0b3720a8c7799dc1bb06f3
BLAKE2b-256 checksum
How to use checksums
c09323009ff47ebb2e0e5f7f0e94c72a9e7d5d2296f94aa538f2e407601810af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5f9909512bcb6f712bdd04c296cdfb0d8ff73d258ffc5af884bb62ea02d221e0
BLAKE2b-256 checksum
How to use checksums
204e878b080dbda92666233ec6f316a53969edcb58eab1aa399a64d0521cf953
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3f667a4c12fb593f5f66ce966cb1b14a7148898b2b1a7f79e0761040ae1e3c51
BLAKE2b-256 checksum
How to use checksums
8d0ad11e7871d0ea6fa532c11acd8d9c01e162bcbe7f7a62aafea619a34f3266
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
59d2e10b7e0cd18bb73ed7c17c624a5957b003b81345e18159591771c26ee428
BLAKE2b-256 checksum
How to use checksums
b1fe210a192b8183665e2da205bd6ad8aa6ebad4adde8671b91b46321a0e36ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
491b3477e4d0d4599bb75d79da4b75af2e6ed9b1f6ec2b715991f0bc927bf09a
BLAKE2b-256 checksum
How to use checksums
7d2aeee1d40df0c96d7a12e6f2425f2283c78f0c8c89bc2a64c70932a346f712
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b6b60a58a8f7cc7aed3b5b73dce1f5259a53c83d9ba43a76a874e6ad868c1b4d
BLAKE2b-256 checksum
How to use checksums
55fda2373d05ec3c9bd05fcf9854bdde9eee3b3c6f39f83761f1930dc6c40c79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d33d29e846821f0e4f92614022949b09ccf063cb36fe2f9fe099cde1efbfbb87
BLAKE2b-256 checksum
How to use checksums
7b8f2d41a867760f6469fed59632ebc24d9cdfec0844f62166b4c5212f74b903
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Size 425.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bf6458959f310f551cbbeef2255527ade5f783f952738e73e4d0136198cc3bfe
BLAKE2b-256 checksum
How to use checksums
f5d1d00ec454c4fd0cd363245f4b475ebfe929e096f7fec086590ad173d82857
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl
Size 439.2 kB
Tags CPython 3.10 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
2289ae6dbe6d027ecee016b28ced13a2e21a0b3a3a757a23033a2d1c0b1bad55
BLAKE2b-256 checksum
How to use checksums
79dca72eb060f4f598314c5a96676d3790b51fff78e448253c7319a9441228a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-none-win_amd64.whl

Download URL safetensors-0.4.0-cp39-none-win_amd64.whl
Size 277.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
79dd46fb1f19282fd12f544471efb97823ede927cedbf9cf35550d92b349fdd2
BLAKE2b-256 checksum
How to use checksums
a749d43e967d427e78086980ec85af1afe0320becfc33b26903d3d0ce10b0ee5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-none-win32.whl

Download URL safetensors-0.4.0-cp39-none-win32.whl
Size 266.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
cef7bb5d9feae7146c3c3c7b3aef7d2c8b39ba7f5ff4252d368eb69462a47076
BLAKE2b-256 checksum
How to use checksums
fe1cd5f7d3b3dbec402c6fc7cadda9849f087fd980d23d9a941c55426faf631a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c42bdea183dbaa99e2f0e6120dc524df79cf4289a6f90f30a534444ef20f49fa
BLAKE2b-256 checksum
How to use checksums
f763fd2047d6b07b5e04beb6307afe9a987cd392f8d5ec238f82d5be7e750248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
cd02b495ba0814619f40bda46771bb06dbbf1d42524b66fa03b2a736c77e4515
BLAKE2b-256 checksum
How to use checksums
17cfe01615864c878f6292068f8bf295d97b7fc9f0d5b7af7be479e19ac81547
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f5f75fa97ccf32a3c7af476c6a0e851023197d3c078f6de3612008fff94735f9
BLAKE2b-256 checksum
How to use checksums
8b50e72b8adba500c8d09f768953196378eac2a119717cc90b2b6b14e044ad44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
469360b9451db10bfed3881378d5a71b347ecb1ab4f42367d77b8164a13af70b
BLAKE2b-256 checksum
How to use checksums
d2da036441b14fea7cf53f5f41386f05e54f1b0e8003631742e99dbc94f36610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c8f194f45ab6aa767993c24f0aeb950af169dbc5d611b94c9021a1d13b8a1a34
BLAKE2b-256 checksum
How to use checksums
d091b04cae96fe6581792b7b7d8be019885d74584df36e879b8b15d6cbfb2400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
00a9b157be660fb7ba88fa2eedd05ec93793a5b61e43e783e10cb0b995372802
BLAKE2b-256 checksum
How to use checksums
b0d3658b231345485d5e10100106269bc2f193722a1bd6af6f032b45aa02227c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6b563a14c43614815a6b524d2e4edeaace50b717f7e7487bb227dd5b68350f5a
BLAKE2b-256 checksum
How to use checksums
befc8a1bc494855190fae02446ae22b34b6d4e4422714c64d34045e303c4f834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
acf0180283c2efae72f1d8c0a4a7974662091df01be3aa43b5237b1e52ed0a01
BLAKE2b-256 checksum
How to use checksums
ced04e1631cef45ce76da0245b1f45d4db7628c617726e53abc79c8e2e3cb406
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Size 425.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2b9b94133ed2ae9dda0e95dcace7b7556eba023ffa4c4ae6df8f99377f571d6a
BLAKE2b-256 checksum
How to use checksums
8b4691ae7e92277604f8a3457b59d1238ddaffc59e7c2804ac4cb9fd670d58e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl
Size 439.7 kB
Tags CPython 3.9 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
806379f37e1abd5d302288c4b2f4186dd7ea7143d4c7811f90a8077f0ae8967b
BLAKE2b-256 checksum
How to use checksums
e3d23279544d8f089a32570cf86a14364c2d9e16cda441795a7cae9031ade746
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-none-win_amd64.whl

Download URL safetensors-0.4.0-cp38-none-win_amd64.whl
Size 277.4 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a738970a367f39249e2abb900d9441a8a86d7ff50083e5eaa6e7760a9f216014
BLAKE2b-256 checksum
How to use checksums
982de6b6eb5398852efef711539adb5f2495e0c3771c11ab04060162f063f875
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-none-win32.whl

Download URL safetensors-0.4.0-cp38-none-win32.whl
Size 266.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
c4a0a47c8640167792d8261ee21b26430bbc39130a7edaad7f4c0bc05669d00e
BLAKE2b-256 checksum
How to use checksums
870e372ca20cf33db487180abeae89c34feb3907ca458bef03fddad41cf52dec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
27a24ca8822c469ee452db4c13418ba983315a0d863c018a9af15f2305eac38c
BLAKE2b-256 checksum
How to use checksums
3c23674868a6f5935f4b6218d58c25fac17dcc2f61f45049e343db2e4ecc9fc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
8a6abfe67692f81b8bdb99c837f28351c17e624ebf136970c850ee989c720446
BLAKE2b-256 checksum
How to use checksums
c80e0eddc8916aaa3f7111eddddba95fd829d76f28906f6dc886bb092dfd0d38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6686ce01b8602d55a7d9903c90d4a6e6f90aeb6ddced7cf4605892d0ba94bcb8
BLAKE2b-256 checksum
How to use checksums
7dcb878e746f52e3c55312c34d89a3a80f1b2db59f5293457a75cbc99c82a27a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.6 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3ebf6bcece5d5d1bd6416472f94604d2c834ca752ac60ed42dba7157e595a990
BLAKE2b-256 checksum
How to use checksums
201d0c6c26b2c8c9f315515cb1592947136c5c774966dc4c93e1abe7eb29c8d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b69554c143336256260eceff1d3c0969172a641b54d4668489a711b05f92a2c0
BLAKE2b-256 checksum
How to use checksums
a32f272ad57fe813f641368294fe33347a185ca9934d64473826d9148a77065f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
87b328ee1591adac332543e1f5fc2c2d7f149b745ebb0d58d7850818ff9cee27
BLAKE2b-256 checksum
How to use checksums
7b4f43877fedb1d2b68852d1cc1c7d48d2d91b2ca067f50af45adb95d788fe50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4936096a57c62e84e200f92620a536be067fc5effe46ecc7f230ebb496ecd579
BLAKE2b-256 checksum
How to use checksums
6fb1261cc4845dc72b30950d247f0b70641e364609f5b5369c923aa06265cef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9b8fd6cc2f3bda444a048b541c843c7b7fefc89c4120d7898ea7d5b026e93891
BLAKE2b-256 checksum
How to use checksums
e58dfa4831eed685ff2295f3e869f1dba9249f44333ddd1031cd489728eae68e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Size 426.1 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
73e7696dcf3f72f99545eb1abe6106ad65ff1f62381d6ce4b34be3272552897a
BLAKE2b-256 checksum
How to use checksums
964dae9dc97272d0e7531f925fcd5548b0aa9a37225f2ae4b62c5aee0de9b5e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl
Size 439.9 kB
Tags CPython 3.8 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
9e583fa68e5a07cc859c4e13c1ebff12029904aa2e27185cf04a1f57fe9a81c4
BLAKE2b-256 checksum
How to use checksums
0514e1ade05a0b6c18084d46c73c9feb559f3ba60d1a7cb6599ff086f11a8036
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-none-win_amd64.whl

Download URL safetensors-0.4.0-cp37-none-win_amd64.whl
Size 277.3 kB
Tags CPython 3.7 Windows x86-64
SHA-256 checksum
How to use checksums
1db87155454c168aef118d5657a403aee48a4cb08d8851a981157f07351ea317
BLAKE2b-256 checksum
How to use checksums
92ccd655b0a1d77dd3e69d1a4f354a868e5b96729cd80ee4912a6ea6fb9e2e64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-none-win32.whl

Download URL safetensors-0.4.0-cp37-none-win32.whl
Size 266.0 kB
Tags CPython 3.7 Windows x86-32
SHA-256 checksum
How to use checksums
c68132727dd86fb641102e494d445f705efe402f4d5e24b278183a15499ab400
BLAKE2b-256 checksum
How to use checksums
b957b064da47167bf747ab220f6f008eb9fd333aceeef5bac8278d59154072d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL safetensors-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
44f84373e42183bd56a13a1f2d8acb1db7fedaeffbd83e79cec861477eee1af4
BLAKE2b-256 checksum
How to use checksums
918de1fb71c507c9932b0d0f21a349c62a0011e67c9178c4489d664c0ea6889e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL safetensors-0.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
964ef166a286ce3b023d0d0bd0e21d440a1c8028981c8abdb136bc7872ba9b3d
BLAKE2b-256 checksum
How to use checksums
f592e2ea08e3de3c14cd67cc6e6c9ba4a0f4c61029580350681ce6f435465a67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7abe0e157a49a75aeeccfbc4f3dac38d8f98512d3cdb35c200f8e628dc5773cf
BLAKE2b-256 checksum
How to use checksums
7fb9eaa33791dedb2a92a15b6ee36c854f1e9b80caad831fa845e20863a6fee6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2077801800b4b13301d8d6290c7fb5bd60737320001717153ebc4371776643b5
BLAKE2b-256 checksum
How to use checksums
68b56ff81c4be5623bfe98362ec0153d514d79d8534c2a0966064f1c3cc2cb89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
bd63d83a92f1437a8b0431779320376030ae43ace980bea5686d515de0784100
BLAKE2b-256 checksum
How to use checksums
6b3ef4f050e98c900397fa5a55b5c81abcc1ff0ee8b621bec471951a7d710b51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
003077ec85261d00061058fa12e3c1d2055366b02ce8f2938929359ffbaff2b8
BLAKE2b-256 checksum
How to use checksums
cf0b3d39fdad9cfa1eb180ab11b9ee7f09ac89a1dd5df6de757894e140f88498
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3b6c1316ffde6cb4bf22c7445bc9fd224b4d1b9dd7320695f5611c89e802e4b6
BLAKE2b-256 checksum
How to use checksums
b5865b991144252e532b034edc523c547d31b0404fb427383d3b69cfbb6252fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL safetensors-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3bfed574f6b1e7e7fe1f17213278875ef6c6e8b1582ab6eda93947db1178cae6
BLAKE2b-256 checksum
How to use checksums
90df744d4c54b810bd6961178a29a4349e4e6b9bb762d978317c94a2a4c83494
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-macosx_11_0_arm64.whl

Download URL safetensors-0.4.0-cp37-cp37m-macosx_11_0_arm64.whl
Size 425.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4b2aa57b5a4d576f3d1dd6e56980026340f156f8a13c13016bfac4e25295b53f
BLAKE2b-256 checksum
How to use checksums
98d4bd6eeb6e5e0b78807093bb5c5b0890878c053966b1be94a9b3e6e6ea98bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release files / safetensors-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl

Download URL safetensors-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl
Size 440.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
e853e189ba7d47eaf561094586692ba2bbdd258c096f1755805cac098de0e6ab
BLAKE2b-256 checksum
How to use checksums
98d5016397daae1dbf8db6a5e013fbcae9f5b322c4ff5b0a4fe0a51b8ea8a332
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.13

Release history Release notifications | RSS feed

0.7.0

23 release files

0.5.3

15 release files

0.4.1

98 release files

This release

0.4.0 This release

98 release files

0.3.3

58 release files

0.3.1

40 release files

0.2.8

40 release files

0.2.7

39 release files

0.2.6

39 release files

0.2.5

35 release files

0.2.3

19 release files

0.2.2

19 release files

0.2.1

31 release files

0.2.0

31 release files

0.0.1

31 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