Skip to main content

statembed-py

Fast, lightweight static text embeddings.

Python bindings for the statembed Rust crate, built with PyO3.

statembed-py loads a static embedding model (a model.safetensors file) and produces mean-pooled, optionally L2-normalized embeddings from token IDs. It does not tokenize text itself — pair it with a tokenizer library such as tokenizers.

Installation

# with uv
uv add statembed-py
# with pip
pip install statembed-py

Building from source

Requires Rust and maturin:

pip install maturin
maturin develop --release

Usage

from functools import lru_cache
from tokenizers import Tokenizer
from statembed_py import StaticEmbedding

@lru_cache(maxsize=1)
def get_embedding_model() -> StaticEmbedding:
    return StaticEmbedding(model_dir="./my-model")  # must contain model.safetensors

@lru_cache(maxsize=1)
def get_tokenizer() -> Tokenizer:
    return Tokenizer.from_file("./my-model/tokenizer.json")

def embed(text: str) -> list[float]:
    tokens = get_tokenizer().encode(text).ids
    embedding = get_embedding_model().embed_tokens(tokens)
    return embedding

API

StaticEmbedding(model_dir, normalize=True)

Loads a model from a local directory containing model.safetensors. The tensor is loaded lazily on the first embed_tokens call.

  • model_dir: str — path to the model directory.
  • normalize: bool — if True (default), output embeddings are L2-normalized.

embed_tokens(tokens: Sequence[int]) -> list[float]

Mean-pools the embedding rows for the given token IDs into a single fixed-length vector, applying normalization if enabled.

Type stubs (statembed_py.pyi) are bundled for editor and type-checker support.

Development

  • maturin develop — build and install the extension into the active virtualenv.
  • cargo run --bin stub_gen — regenerate statembed_py.pyi after changing the PyO3 bindings.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

statembed_py-0.1.0.tar.gz (42.5 kB view details)

Uploaded Source

Built Distributions

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

statembed_py-0.1.0-cp314-cp314-win_arm64.whl (226.9 kB view details)

Uploaded CPython 3.14Windows ARM64

statembed_py-0.1.0-cp314-cp314-win_amd64.whl (233.2 kB view details)

Uploaded CPython 3.14Windows x86-64

statembed_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (333.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

statembed_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (340.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

statembed_py-0.1.0-cp313-cp313-win_arm64.whl (226.3 kB view details)

Uploaded CPython 3.13Windows ARM64

statembed_py-0.1.0-cp313-cp313-win_amd64.whl (232.4 kB view details)

Uploaded CPython 3.13Windows x86-64

statembed_py-0.1.0-cp313-cp313-win32.whl (224.3 kB view details)

Uploaded CPython 3.13Windows x86

statembed_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (579.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

statembed_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (612.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

statembed_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (548.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

statembed_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

statembed_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

statembed_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (397.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

statembed_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (332.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

statembed_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (338.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

statembed_py-0.1.0-cp312-cp312-win_arm64.whl (226.9 kB view details)

Uploaded CPython 3.12Windows ARM64

statembed_py-0.1.0-cp312-cp312-win_amd64.whl (233.2 kB view details)

Uploaded CPython 3.12Windows x86-64

statembed_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (580.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

statembed_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (613.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

statembed_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (548.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

statembed_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

statembed_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

statembed_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (397.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

statembed_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (333.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

statembed_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (339.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

statembed_py-0.1.0-cp311-cp311-win_amd64.whl (235.9 kB view details)

Uploaded CPython 3.11Windows x86-64

statembed_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (584.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

statembed_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (617.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

statembed_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (551.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

statembed_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

statembed_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

statembed_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (402.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

statembed_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

statembed_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (340.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

statembed_py-0.1.0-cp310-cp310-win_amd64.whl (235.4 kB view details)

Uploaded CPython 3.10Windows x86-64

statembed_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (584.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

statembed_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (618.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

statembed_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (552.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

statembed_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

statembed_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

statembed_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (403.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file statembed_py-0.1.0.tar.gz.

File metadata

  • Download URL: statembed_py-0.1.0.tar.gz
  • Upload date:
  • Size: 42.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 28e32436401de9a9a1ff3f655fa505f95ee5308daf681022e83325b97319750e
MD5 17456d0349cd8c4fa13cb8617e8590e0
BLAKE2b-256 ed297ea5ffb139135cfbaab6e45e81c8ea5846308f7e5f9c61360a2f9218e843

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ead9529b4a7930b567d516404746556b35f880599a3df98961307830b6d87825
MD5 29a8d84427d7b2e1127f04aed8e35487
BLAKE2b-256 c0d6d6a55dbf3a85e0cff6dc9584e614494d7fcbbf53cec0acde6d62d4c0ca07

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 233.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d06c1c557280ca9778be6abaf9c81a69cf01f3883c70ea19cf6909271f3b0488
MD5 f7febb210f31883ee76ab1be3c23056a
BLAKE2b-256 f0bf3575cdd85f48c741d714247379edae6bb0c4f6b0a0b32d1af65bd9b87270

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 333.8 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 522e68b4be0c546c79e3962d8f6116ea08b79a753333d8a709b39de66bc04ab4
MD5 cff51b9de86072a2a28a6551c67340cb
BLAKE2b-256 cdaa144389800a66c7e5507fb97a9e76316731cb433d549f2f271345f0775dae

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 340.3 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c7f5292b15312a2295304ce9c6398fe1c10433ce69d16af1f51e71e5117f2c7
MD5 aa470282732d463417dfb38603cc583e
BLAKE2b-256 7fe75f8a2e073eadcdbe37871c308e34efc4455624802a120c6dc0cf096122d9

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 226.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b3082e59176de7043461347e08acd7bef785d1f808e48a7b51547f2fd938a432
MD5 193bc7190d27216c2cf0b26bf8207d00
BLAKE2b-256 1fda2b954d506c52ad813c7c65dbfbabd9c9f803d0ef70733f933b26ad241559

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 232.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6116fa2fdb77f0d8416cac276abcf019c69b8f7bc940267150e6b39b07abde3
MD5 fec1438ee5f8026cae13a428eb254f53
BLAKE2b-256 7bd344089ce13b6ab30e52607757f8e8ef61fb0846ee6825cca103eeac5ec535

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 224.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ddfd671f2b206db4875eaf8e1ba5636e974f90cc3b9148937691907634dfcb85
MD5 7ffd531771c27ce1f70e94f40aa91a22
BLAKE2b-256 0efd8df5264ee0e00676b9cfdda6a5742042677083e486fd8e36753e92a5162c

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 579.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6444ddb598f3e868c504a24ece2dad6a129446e27388e74f4e5362b0785ebd8c
MD5 8d0d8f15b5442f14c052d58822b82b70
BLAKE2b-256 3a3ea36b0b17972e3cf2eaebf3c1707b2095dd85972ea1108e175da9fda0c637

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 612.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72d0405ed45e6b7f6c984bca2419fae86b25252a1566751873c6c79118ff4d74
MD5 123e44b40af9674ba05f804740c9e50c
BLAKE2b-256 7af0468cd54da15d781333c64e95b27a8a2ced4f82ae1567107cd01bbbfb5e16

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 548.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91465d34ad6969357cbf8871545543dff5334f233d9865164a8f86d36e5e18fc
MD5 71aac4dae15d0799d7fb3af9f556855e
BLAKE2b-256 5f79fdc4d5e0bb50e097e5d81b7e9be6f9f8c71a5aba401dfe57a4dedc698724

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 393.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 256797a5d4c34eabd0bacc38aeb830a392f11cc60fc140c0093007745dab1735
MD5 711ce92e92b143aca1e7e79df0857c95
BLAKE2b-256 b7fc34d296d2d132d20031fcc29345c3d971fa5ee443067578a556d6242d4040

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 370.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bc954942cc19d4813c45cff88146453ca8d18590cd01c9aa6b9a060efc598b1
MD5 08ba85008e4195807cf190394a0eaf30
BLAKE2b-256 63a1ee5deb769caafd0afa6b4d5df6d40d3e06946e2154db4e474a274b415dae

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 397.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb936ed100337bc44a86a60465c1a3516dc8edf43ee08cab0b1fa6304c758272
MD5 11adba12cadac513b4ddc5e205b7e7a0
BLAKE2b-256 1b72a8eab06fc110ee19d032e858c400469669b7b8de171bed4d23ade19ab9ec

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 332.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8bc3a474c333376d9718f050a73f1970981caf0cf36bcf9c8fa70ae1fd8d3c
MD5 477351cfadabc7f51115ed1f9d8260d2
BLAKE2b-256 a065544a977f66b044a3ab79d5b2fc965ec729afc1b326f80d8ed79f1a09a0ba

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 338.5 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3eb327a644d106aa3bfa701be2e62e70031701a56786037f8beffb08a1ae93b
MD5 35fdd7c8bba2ebeab1659dffa51f6be3
BLAKE2b-256 e9d2b21177ef44365404278526e5e8d785d9b3c14eded4e837ed412a6abb1f38

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 226.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ee210979193f9b0817b17b78525450fcd09b2c1f64170f7ba976cb1fcfd72632
MD5 1708bdbf06e443ed6dce6d870be14ca0
BLAKE2b-256 847da56388681e0aacaa82dc3379d60a56a0989ab72f8e3507324889429f8d1d

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 233.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 444e2040d981232af27f1cc48aaef7a06136460109d5a3b948836fe1c8807bc0
MD5 8875b7b946b0eb96a313c58ddab36cb0
BLAKE2b-256 b937c7a35e899c96321e30f587ba9bd9724c483ca8975823b89c177ba4d53e95

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 580.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa07a9b5382ef06c04064a85b2809b1f7630e7d788895170a337db335fc55358
MD5 9812a1be66f60b056ca52389ab38202e
BLAKE2b-256 df3e6fdf06b5d1930d5d8cd16ea0c035b39fcf4f2c9e5aa986128d4a951f6e70

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 613.7 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a8203d8dcddf6b27f9941f17548bdebf57d5089f7ed2ef1d5056e9547849b4d
MD5 fbf7bf9ff08f18dc0ebeee694f055165
BLAKE2b-256 03bf0c83e497f44ec16f71828fdc3d79f45657ad0fdedcb2620e1fbcb6553e2b

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 548.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1d920fcbb8c84b2d2fec6dc34ae01a721199ce152bfe6588ca7df5697604e08
MD5 b0bf8689999e7e7a5f074fdba8cd4e0d
BLAKE2b-256 c0e1ecfef98428259175dea8e98b3c3c3dd1c47ac8331a39cca3360e656ec2df

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 394.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95f4b7d17e10543755fc05fcd270ae600a055e877ead7e9d4a41a389f833e046
MD5 fac1def831257afa6e8c2ab200d1e4d1
BLAKE2b-256 7c713ea101b4a41656a8516120cde959c08f79d99e07e46b0d4c47849a75cd33

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 370.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a2c2a8d61c5bccc95edea5cde4d7743d233f831ab87a223dce560407f4dab4d
MD5 e8f5f2d26a0bfbf12818bba7888dbc3b
BLAKE2b-256 a0d2207b4e86f8eaf1a34924b524ec3bed3b45a25862e79120497f17cee7ec0f

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 397.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cc078687148acce7332451e544793c0c30051492c99c8bf4419f3c3a9ac493c
MD5 4bf410d14c8f0a391fa262a4c23274b4
BLAKE2b-256 0b8b84df8266874723b8762d59a326fe51f672871ab8ad11d0b5b2d06f083fe6

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 333.0 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 723439ff85c87b763f09fb5978825384c6e9158cd516dab4d067b84753390c62
MD5 e970c3a03b94d886c81b55eab45e383e
BLAKE2b-256 c02da99ce8e1b325ebf8e9d22089726f55ab9345ececa788018ec473e5251ab3

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 339.7 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a8643c9dbe19d2ecc02176b8dfe9708e6179e229ef4a59034dc214b8b0b3e35
MD5 21adfcde6a1daba1fdef4a78e3bed318
BLAKE2b-256 0fdefad80022ecacb53a08bc8d22034c8a8160effc7fa97b21bffc8ac6a47b0e

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 235.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 674c0cf5fb78c29c4544577ee741dcba859b0b1815cdd87676a86e082a1df21a
MD5 ae652e5aecce6982743b28dd9d57b093
BLAKE2b-256 2a789e2579ed90d6da4046c73db44c1024b878f27414880e2d24017344bf8bf3

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 584.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 582b39c0f8ac5aef90efe4555856be5f9334646afd18012fee440f4b4f003534
MD5 a30fdc6010aa543cbe0b5bebda4bb270
BLAKE2b-256 bbbd67b248f65e0bfab2203de416fe74b32e5003b6e4bd22d8f552ffb13bc8f3

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.3 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e775e3a39445b8cb6512bca2b9a66b9fee811e351d4713920ffcc5ea10a2c4f2
MD5 e7f9c58d141780ba736adb036cb2895c
BLAKE2b-256 f91ccad5699d239672015bfc5049a57c9b9b79f7884ae9059df5397af556eb71

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 551.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dde76e3e9bdf147dfabef5a111c7cfed31de6d36eadc658160eb3f14670bd66
MD5 32cec958e50e9783ed9e97e11b00a5f4
BLAKE2b-256 7902bed8a5ceb1614bce3432f207f3eeb10211ac8453edc3edb5893408101102

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 396.6 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 056e0daf5b1946fefb2e1ec32356537373ddddc3bf7414e0979f4b783d506b2f
MD5 8046a2fa40981896b1d7635cf4ef7dcf
BLAKE2b-256 f3bcc7f3ed49e1f37ed5f7e8f2441a44299c8cefe01b34679d2a8ec35b1f7e48

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 373.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86f92425b8f2e70bc6017b5d54e1b9b5902d817aca07473f368902a82f8c59c1
MD5 4da1a2c5aca289f44512d94aa4f9e3ca
BLAKE2b-256 9280e20a1813de0a771fec3b57d2a5014140bff7dcf112046497cd4137bc53d5

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1783f197ba09dd1bf387e0db99167495e976ecaf595d89c18041974b3311dfc0
MD5 cb955f6e6771f20b2b62334907aabe21
BLAKE2b-256 5ab69387698e02742037cd971abef97ccff381a994378cf2fa6ccd8c63e3c20a

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 339.6 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9cc83553e4f55d0c071724ad5697693d96f67a8703958386c46a770b4997d75
MD5 6400c7a2a292033e098bbecf4f1ff0bc
BLAKE2b-256 21974067de8ccc71bd874672830eee802ab6f1e17da29aaca5f4d8efa15b2e79

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 340.8 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78aa603aca96cb7d04ca07228405a9a8aa43def18c0cc13d7863104b3001889c
MD5 f739502fc182270d0c362d385fdfe606
BLAKE2b-256 bfc8ca44b1b5a58938161c1922fb9fc0e78a622313ecc324d9069f5997643649

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 235.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 277ca1c71176d8b627ab9619e7c2627d7315c5a3d6cdd9536dc9d4d73c21a5c4
MD5 c3f6440e926c3a12a1e1b7b323d79c62
BLAKE2b-256 399c5d4366b77e1d9a03a89bedde7c1f5ac6593daae97a34812e9c080dc1eda4

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 584.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b25ebd6d879f197f458d11da0aa243f2281a6363e92db03ff548f26eea7b13dd
MD5 6ab542743b86da270012363903ab3dbf
BLAKE2b-256 27262a98b69f61b09c23dff7d87a8f202c34d925bf1967430e60264e63846c9b

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 618.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ab6c1d9304eb9f58a6d8fc7ea1ba8c1bb7240a7103965a152229909a4a74584
MD5 b7cf41632bf67adb548479151951feb1
BLAKE2b-256 be173fc1d441ed3302d920a2d85d27af5eb7735d7fb55ad127dc8bffa8b18993

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 552.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b83d28f45edf9353180d1239f1c2573f651738a0a242d1cbfe8196188f048022
MD5 ed48eb8f3d36186c1c0609e519b00fa0
BLAKE2b-256 b9452de76e195a6aa7177a16ecc79ae4c402870af9d785f80072379dc7812187

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 396.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14be7d81c34ec71faad67fc642629c7742a5e39e9a18abd4c140dcf5642f93c0
MD5 8cb1e4801563218ed8636a98ff5c60ff
BLAKE2b-256 4e2918ca5cde5d5acc18a1637dca782349e93fa3f0105a74bf5221cff1e4d505

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 374.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09c81b15c280d8cc39d87575f90e4be91f160668cfdfe93b19e80646da286006
MD5 e26891e1f681b4b4613ebd401942a401
BLAKE2b-256 3676b4cc7b555ef97b37c3fc17ed4ed5bc8a5f6c5103e806dd423f6d9aac7796

See more details on using hashes here.

File details

Details for the file statembed_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: statembed_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 403.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","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}

File hashes

Hashes for statembed_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2aef80785d64ba9d78990f608f3c1b08ed3a6fc45315158e3c81bbb4dcb0b3b8
MD5 33c3c62fa704cc023e8362b11823516f
BLAKE2b-256 86901b3d2b11c0c2af64bcf260ffd94e7ba554794011f6078f4aaa10a41a759b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.0 This release

42 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