A cloud native embedded storage engine built on object storage.
Project description
Introduction
SlateDB is an embedded storage engine built as a log-structured merge-tree. Unlike traditional LSM-tree storage engines, SlateDB writes data to object storage (S3, GCS, ABS, MinIO, Tigris, and so on). Leveraging object storage allows SlateDB to provide bottomless storage capacity, high durability, and easy replication. The trade-off is that object storage has a higher latency and higher API cost than local disk.
To mitigate high write API costs (PUTs), SlateDB batches writes. Rather than writing every put() call to object storage, MemTables are flushed periodically to object storage as a string-sorted table (SST). The flush interval is configurable.
put() returns a Future that resolves when the data is durably persisted. Clients that prefer lower latency at the cost of durability can instead use put_with_options with await_durable set to false.
To mitigate read latency and read API costs (GETs), SlateDB will use standard LSM-tree caching techniques: in-memory block caches, compression, bloom filters, and local SST disk caches.
Checkout slatedb.io to learn more.
Installation
pip install slatedb
Requirements
- Python 3.10 or higher
Features
- Support for in-memory object store and object stores (S3, GCS, ABS, MinIO, memory)
- Sync and async APIs
- Range scans with iteration and
seek - Snapshots for consistent, read-only views
- Transactions with snapshot isolation (SI) and serializable snapshot isolation (SSI)
- Atomic batched writes
- Merge operator (user-defined Python callable)
- Per-operation time-to-live (TTL)
- Reader for read-only access with optional checkpoint pinning
- Admin APIs for manifests, checkpoints, clones, garbage collection, and sequence↔timestamp mapping
Usage
The example below demonstrates common features in a single script.
from __future__ import annotations
from slatedb import (
SlateDB,
SlateDBReader,
SlateDBAdmin,
WriteBatch,
)
# Optional: define a merge operator. This example concatenates values.
def concat(key: bytes, existing: bytes | None, value: bytes) -> bytes:
return (existing or b"") + value
# Open a database using the in-memory object store
db = SlateDB("/tmp/slatedb-demo", url="memory:///", merge_operator=concat)
# Basic CRUD
db.put(b"user:1", b"Alice")
assert db.get(b"user:1") == b"Alice"
# Per-op TTL and durability control
db.put_with_options(b"temp", b"ok", ttl=5_000, await_durable=False)
# Batched writes
wb = WriteBatch()
wb.put(b"batch:1", b"one")
wb.delete(b"temp")
db.write(wb)
# Transactions (SSI or SI). Operations buffer until commit.
txn = db.begin("ssi")
txn.put(b"user:2", b"Bob")
txn.merge(b"counter:visits", b"1") # uses the configured merge operator
txn.commit()
# Snapshots provide consistent, read-only views
snap = db.snapshot()
assert snap.get(b"user:2") == b"Bob"
# Range scans (prefix scan when end omitted). Iterator supports seek.
it = db.scan(b"user:")
first = next(it)
it.seek(b"user:2")
rest = list(it)
# Advanced scan options (read-ahead, caching, durability filter)
_ = list(db.scan_with_options(b"user:", cache_blocks=True, read_ahead_bytes=1 << 20))
# Flush
db.flush_with_options("wal")
# Get metrics
metrics = db.metrics()
# Create a durable checkpoint and read it with a read-only reader
ckpt = db.create_checkpoint(scope="durable")
reader = SlateDBReader("/tmp/slatedb-demo", url="memory:///", checkpoint_id=ckpt["id"])
_ = list(reader.scan(b"user:"))
reader.close()
# Admin: list checkpoints, read manifests, GC, and sequence/timestamp mapping
admin = SlateDBAdmin("/tmp/slatedb-demo", url="memory///")
_ = admin.list_checkpoints()
_ = admin.read_manifest()
admin.run_gc_once(manifest_min_age=0, wal_min_age=0, compacted_min_age=0)
db.close()
Contributing
SlateDB's Python bindings use uv to manage the development environment. You can install uv following the steps on its website. Once you've installed uv, run uv venv to create a virtual environment.
Installing dependencies
Run uv pip install to install all dependencies. If you only want test dependencies, you can run uv pip install -e .[test].
Running tests
Run uv run pytest to run all tests.
Building the project
SlateDB's Python bindings use Maturin to link the Rust codebase with the Python codebase.
- Install Maturin by running
uv tool install maturin. - Build the project with Maturin by running
uv run maturin develop.
License
SlateDB is licensed under the Apache License, Version 2.0.
Foundation
SlateDB is a member of the Commonhaus Foundation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slatedb-0.9.2.tar.gz.
File metadata
- Download URL: slatedb-0.9.2.tar.gz
- Upload date:
- Size: 469.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64946bcd2bbc8f08350ad3b8b1342f54347911358068faf07547a8307eeb8569
|
|
| MD5 |
46a67a123fffcabaee3c3601f37699bc
|
|
| BLAKE2b-256 |
1df024dd1bdcc7fc4641bf1cfcb5a38fd02d86af8ce0cf04959fdf7c380c11c4
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
701b955e3e56acad58017cc4d92730b3afc67609ed1539249eb69c65965f8226
|
|
| MD5 |
67e1f8bcba5bd5d3386803d86048d627
|
|
| BLAKE2b-256 |
3ed94450ab9fd56556d5bda2a8fb48d72c384d1d9faaed264509ec8b6f933be6
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
719480c235e3c40b277f8ce1dc6dc0b7c6de7ce1510e0d0edeb669751ffb1aa3
|
|
| MD5 |
03e8db1b01bc36afe3a3a42c678dcffe
|
|
| BLAKE2b-256 |
0f6e3a50468ae73b41b0e9fc0b615aa18af3a3eab5e986ab89d897d407fd4742
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67ccac68c68464f9c989f9efaa9568bb948aa1c7b0c808ea31df29e69b4d1f59
|
|
| MD5 |
b246d8d60837a9a6388bcb560944b996
|
|
| BLAKE2b-256 |
babfe4fb1b5545b332b196b0229d3fd8c403217ee69e3f4d07ab5d81309f3976
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73bc19d4edb1d77e193acf2cc8038938739f0e350967fa9bbc82ed8156914195
|
|
| MD5 |
13f423ab3dd86525082595fafe2bcfec
|
|
| BLAKE2b-256 |
c1de15bf7300b971145a2b806ea55c0772a62a81e2f3466b8158784271e28822
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86dd3228f1fc86b0dbe2733a4a563a9a89efc0641005d71f53635eed5e384b5f
|
|
| MD5 |
24c1df48da58d312e2aefad5cc5dcd82
|
|
| BLAKE2b-256 |
518f38ba01b5774b56409aa8829d4a295eea8320fc997cd5db743318a2983342
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a2e40b0ed98c12b37b7a566f3352d8d7a1e1bf953ad57ec72de8c2d78f4522d
|
|
| MD5 |
98852a5959bde280fedd50f27e94e413
|
|
| BLAKE2b-256 |
12339573f6a99e5487e5e72523b2e8c01eb7d357224a70f96f2ac41dd5ff81dc
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc8ae313d94ff6eb745bca9619c3851d0039a0af68bec372013f6b822543cdd4
|
|
| MD5 |
d08604e2a3f962d5d13bec648b34012c
|
|
| BLAKE2b-256 |
fb62bcd21729009803c5247c41d7c218f9c90870afd52eb06a24f1a1eb6a8a12
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b14d10c6ddf46ba72f50baa0497145dd3a1e61c12c792a8efbe04a739f41b96
|
|
| MD5 |
934aaf5ab45b963a551c9ec0334693a9
|
|
| BLAKE2b-256 |
ae6e3d758f017dbda3d7b01700fc09eb22ca0f0ad17694e0fba66b4977cddde4
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83a721f0258362439f8360f678b1699a570ce1c1d02965fbd8601721ee09eebb
|
|
| MD5 |
8d89c016820f41019fae330fd8a28b4e
|
|
| BLAKE2b-256 |
12b5bee718952393fd26108d2159c22d97b461cd7bf6ed7e3ff113c348af3ad7
|
File details
Details for the file slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50ebc7ad05b21229375fcbac9ca7cf592b20a1a77d4981632f07e5c174db7998
|
|
| MD5 |
51710c4d930f361035b831ac2cdd8f1e
|
|
| BLAKE2b-256 |
f4c8854f48b805af18674fd5a98545cae843504f0a7653f79ef7f31502d51b81
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c66e8f1e57d71532df5b99b24e044b1498404a3a37946799660856e88d545e0
|
|
| MD5 |
e4ac373bef3e733b8406bef9b26d8126
|
|
| BLAKE2b-256 |
16cbe817c92864595ded9c7923d59ccbea3610c4ffacac4e11275c2bdae964da
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d977b74cf21ab324289b2814371a8dd4f18192cdd23c49db11f3f940524706c
|
|
| MD5 |
3806eef721981dd303912bc9271629ad
|
|
| BLAKE2b-256 |
14cf225e48662496a89545f9a1b09b640c7224931bacdd79b463528f4adb5f36
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeab2035cb490ffe2926f6c0e3617cc92d5f7d5316912e36c466a45a9a42986b
|
|
| MD5 |
19e3ab26bd96183d14ab24cee7d8c706
|
|
| BLAKE2b-256 |
26efe430b5053d3ccbc4feb7fbeb85edeaf5ca7db6bc5f902f9ce8cf0a645ca8
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f855de75388e024a4b8e110cdda7a5ca4d9a5557ec807016916ca5850311e191
|
|
| MD5 |
97cac4bcbd9323d1a2c72d411567f15d
|
|
| BLAKE2b-256 |
7b9eab56cd4559ee882224c9741416bbd5e2495bf927c912931daa4eeeda5c32
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c38b958d6260e0f665aac5a8a4bd33edd55f11468ccc11cfdc5845c8c6b9eb20
|
|
| MD5 |
0d8b3800c3468cd0e15395eda63048fa
|
|
| BLAKE2b-256 |
021be806d6ed20f784498573b2df5505596a5e51ff0aa621d746427a02877b28
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb5ef7be1e425cea21c4bf5d40943d8287ce199a44a0d78a63b74c56c1edc6cb
|
|
| MD5 |
32ff5a79118de03f61c062075aef8cec
|
|
| BLAKE2b-256 |
c5fc2a341c1a359708241cd82f0fb1f47d4aa0ccf0f07dc492cf6d64d30337ed
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
907e8f2970c29bf2b06d1a631ee53f68f9cf65e0e821bd74ad2537041f0aa92e
|
|
| MD5 |
2bfcab6d063cae8124b8f43e9ca40601
|
|
| BLAKE2b-256 |
fffe51e8c51ec859bb54e438c8d349e9b84028dc001afcdeeb0342cacd7d3bc2
|
File details
Details for the file slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab5fb18f27334942f2f8acc96ed498fa277f5b07800c07ea2c3c78d071f8dd4c
|
|
| MD5 |
2133e1ecb75ccefad44601dc8b46cbb8
|
|
| BLAKE2b-256 |
0c570744c0779715bea94c7902004520525e6d51cf732c5afba7f816a8dabdb0
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13aaa0acd17a45348bee6e937497236d0596b9635276fc40a3287442d41b7d07
|
|
| MD5 |
b0936caf099b7cd74199e2d68579079a
|
|
| BLAKE2b-256 |
489eca67a881a0183d3981379c19dc9c1e6b1644e2721530f83549960543347f
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e03c54927e2fee2f56b18d522a3d065cdd7c01b1f3a2e022c983a4da6b527f1
|
|
| MD5 |
bd4daccb523045e2ac874ae01774f69f
|
|
| BLAKE2b-256 |
7b4a387cd827492f06a5ff0fb8ad915787f308c68fdf8fc92b069c956a634347
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb33a8561596c02b56828c43dbb5f99fe6c94c315efac599e76d1bda693d83af
|
|
| MD5 |
91f46ef278da9d3b3a1cfd807bcd5dd8
|
|
| BLAKE2b-256 |
bcbde4db3d195401401c5f13d7b6c006331620732502e84b773e4de601ea1c73
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf3281bffff476d337793713d78125fd417c96c018224d0dfc035b4f352dcbec
|
|
| MD5 |
05f6fe40109f320a47ecdb1c2c70330d
|
|
| BLAKE2b-256 |
536635b046cf5acd38873523b253a3eec3d22314363355fd5f42146b49b277b7
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96fc3240bb13a93d6435390ac53d472cc716a8a20e60ac11e4077388b75b723b
|
|
| MD5 |
2da774bb03bbb16fcd59b60ad5073e10
|
|
| BLAKE2b-256 |
464e8ed4b3150685e80dec39ff7ba09d16483d55996dfc8fabf695b0d8341f8d
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec7661eabfde763fc277bd126b2745e6ffa701d216a81b3592298d748dc902f9
|
|
| MD5 |
dec4d95d2b390827a0da987a1ca474c0
|
|
| BLAKE2b-256 |
507d16cb9dd4ee24b5c455a5bdfb8c43f70aff3ff66f6ab7117d86df08a9490f
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f861ac0370f0c6f2c5881817e0ed6bbdaf216a8361747eab50fbf83603a7f2fe
|
|
| MD5 |
213e632ffc8b15df35a125a084603ce5
|
|
| BLAKE2b-256 |
6bcb04539f81452f12c822dbf02f2a8654ae057ae3760a80b70faaae9bb0e66d
|
File details
Details for the file slatedb-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
addc0f6087c91da66f8866e77f2fc29c3e84bd49dfca9677673141d8adda85ee
|
|
| MD5 |
b09a6aa77feec75f15ec17b480932bb7
|
|
| BLAKE2b-256 |
4fb65c7044582770aa555ff2c56351a3299201762da12a13d70dbda0ca7b42d1
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01457b1a8906e43526e58012cdec079da1e7b863cdd33802a120e8798db4abda
|
|
| MD5 |
3f6ac279decd51308d5794424eae20e7
|
|
| BLAKE2b-256 |
1bf449cc4524fad42025fb642f50f452962dc0eb20f52f9fffc94eee9aec229e
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5dc66b1100ba3e972844457c42172681e3b4c11801cdec3b1bc95f618d97b99
|
|
| MD5 |
e79788d795f530d6d9fd10d53a83cc3c
|
|
| BLAKE2b-256 |
787244de3968673ee34ad343bdc1995e27bd99f97b1e46b51b1f8a15909ab91a
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbb03cd3330a84d2df7cf8e12e8229b4db1cdf3381f1e4993072f3736b2fe80f
|
|
| MD5 |
e0321846fab2af97b73cf3a4d8c6ce13
|
|
| BLAKE2b-256 |
ae11d2bb7fc9f85daa032a6d62f0586094c0483a256de7ab32a30879bf04dccd
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ecaacacfb7aef1f102a23081014940419371b217e59084668e7d12d50ee4689
|
|
| MD5 |
d7ac40b111a306db12a9af93018b2ca6
|
|
| BLAKE2b-256 |
251e3f9427f079d1b47b44e8527dbf4f5bad5240a2873aecd29f743bf8631b92
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cfe26d8453d82ac6a31b9714eaba3363ba7745fa670116d49cd6e73b8587f46
|
|
| MD5 |
8e1e01f6b45cd68754d5ec813857f0a7
|
|
| BLAKE2b-256 |
872ff7619bd250dc13929b542942a591148a171a2f4724017b1af1d0cc67239b
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9cb6cbd78306b0d72159ca0bfb335bfcf1d0fdd79bba52f29305ead23642dd
|
|
| MD5 |
e02125a85fe26cf42b8569f93ee95f77
|
|
| BLAKE2b-256 |
e3b36b63bba74508655460378050b6342c87a895ad00c32173442b99488f53a6
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c89fe74fc7bcc217e39d4bd4c28a3e0f175e06708f1dfec935de2b68959c4c13
|
|
| MD5 |
586d04829f8d2f334d374d5fa86a0a30
|
|
| BLAKE2b-256 |
40a2ca53e851cc6990561e87802469b1171724d9821fab8b4adfd99acab1807c
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5246a8caf8897d1b4436d8081efec493b789014532f82d39f47eee1a5ca31a6
|
|
| MD5 |
bad7ed596e531980665dc9772a76e8f9
|
|
| BLAKE2b-256 |
da91d57294d7325268ffe12508a024ee9bd073e202ec87b5186e3f0ee922bb34
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fcf74956bfdd0fcdb0b3d43a25f8fb657964adc31def2b51134e4fa37b43116
|
|
| MD5 |
6a6714d94eab0b84ae3f73e697c57453
|
|
| BLAKE2b-256 |
71d558dd4726cd5502ee0893a50a1f770d6e7e7f94450d6ca5890360820330c0
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92b59f6585847510ab2f2879629755b38db68253e15cb7c0c6f6afc266eebdb8
|
|
| MD5 |
a40c657960196cb6cb0497fc46004ea8
|
|
| BLAKE2b-256 |
d51d8bd2e551eaa8ab9fe0ecef1d144ef4899b9b67100e6ae9fcac538c6d2fda
|
File details
Details for the file slatedb-0.9.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ba4384acf2caa246fd3fe33d32872a2bbbc17e76a6ad3849f7dc03d72551d89
|
|
| MD5 |
d9a8e0d572236b5a677c6569aa6b03ce
|
|
| BLAKE2b-256 |
bfa8520a08dbfccd4336a82d26a6dda8fcf6222be4258d1f13046f649db656b2
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fbe47976be7e7527409b9f66141ae51ac157b2ad32a7d2e6c6a900ea84383e6
|
|
| MD5 |
844e51afed50dfdc0e73f4d5683c19e0
|
|
| BLAKE2b-256 |
c25caab38e14db09de513428c06b891e419835ce33d0e5f2768bc9a5418dcd3b
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d6df52da843e30c0002ddc41b3188642e855d86a095270f0da9861c3bc96623
|
|
| MD5 |
ac771a9dea64d80c83ab80c1831e2059
|
|
| BLAKE2b-256 |
3b43a0c21e140a38659582c8c3f85c90b6be075df34dc475319ee83d1524b8cb
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a32ecd3962f699dd2b0c093ed21821ff04503513c813611010b2258d15652e8e
|
|
| MD5 |
0a0ce3a4fa0ea275d2ea45662d09a660
|
|
| BLAKE2b-256 |
e7ba54b79c46407b2db0a5a7cda789c0ddbfa7f530b6198f0b780bff1eac0e82
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
624fe5b3a41e06a39d1a6818010e91ded8334a66e8d0f0d433952835b351f6a8
|
|
| MD5 |
627f7280ff0075dde63a581338ed5bac
|
|
| BLAKE2b-256 |
c98d9c367ee97552fa02f1af7f9067fb5e90b27573764961c885af7734b974dc
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc458e4c7693d4fbe60e0433975647bbec240e49272b473b120cf1d78111b2e
|
|
| MD5 |
4023e7b3f7e5d82e4c5f94ed34366d44
|
|
| BLAKE2b-256 |
f4baca9ab8960c2500b1872531472705fe1c55a3f08abeb4d8dba0e4f695dd89
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49165b16a7d6366edaf6da41e7be52e816898907904d8a8726bd3efbddc0641d
|
|
| MD5 |
b2058801696950780864dd2b72879f2d
|
|
| BLAKE2b-256 |
c03e81db6efb1091bb7fb96c9f63f7e58c3b9cb3aa98b849c4c7f86dac91bc51
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88fc4a3b0caa56cc4a307915512f8c637ae5e944b6be2969fb462827fc296afd
|
|
| MD5 |
148faaaf3c5bff249148cb0bb245ff3f
|
|
| BLAKE2b-256 |
0b070b1db08d20a12a6e08a8e9f645e7187b8bf3ff8057a7d561edee417da366
|
File details
Details for the file slatedb-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef0493babc4027c1f9caf04c455c142ae334fd928d2109e47f0c510bc4f72388
|
|
| MD5 |
eafcda61631a77eceef1fdb5b8d9103d
|
|
| BLAKE2b-256 |
e353fa5d3a8f6e08636f65109340619a0ba2b7cba4e817da1d56dfd5fe4cad1d
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
120cc0dd8a34b43468b9eaa8ad04bf403a0d69a89bcd0dd9b5df070634d87cd7
|
|
| MD5 |
f762f54a7ba7966d94f99321cde769ed
|
|
| BLAKE2b-256 |
6585f88af30f503ed24319b5fb040a6f35c13e0d9a073808cbef6f9f6af9f94f
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ca476891931cfc0d033479f1aad9a95bbcf9ed0645d2cf89a67a52c1819e410
|
|
| MD5 |
6ef493e99bb281fec1d54d653368414f
|
|
| BLAKE2b-256 |
a4c9cd12dd4ce96992a2779731f831b4eab4451a67cd814377bf0a9500b58553
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b258e1e6a49b1f0f7854999e341f9e3b35ac4d82fe9f4917a09d4b878848def
|
|
| MD5 |
848bca3e30dc183d71e34222883d1553
|
|
| BLAKE2b-256 |
cfca86a603bf753677895cba621dd8e2a7e3e3ca13252e4b647073d483b59b7b
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a477ccb2267dbe0e4ad94effc6307dd72ddd298262a84a72a90c35e53a2492d
|
|
| MD5 |
6fae6f04a75f74aaabee412a7f19ab5f
|
|
| BLAKE2b-256 |
78addf21911047e80b2c4151330fd6160522f12352171d8027088ab3365678d4
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2d8068c9ef3bf71f218dc538bd9234ca2e181c166fcee0a8e926eea8551e81f
|
|
| MD5 |
7c8d306366d4c44d0dfe2059da2dc26d
|
|
| BLAKE2b-256 |
603169ca1624e151a1cbb8e0d9705d2d7ba41309e4a4ea987eac301a8d4f59f3
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29c4989e7e7e9dcea9a755af32bfa1455588056c0840750cea1ca68a74458102
|
|
| MD5 |
e1b125631183992911f1208ad19f0615
|
|
| BLAKE2b-256 |
4f57110039e624b11adf94298a9363e0a4b535c7f3dc159e79a08648a58c282f
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edbed9061d650cbeed0f89233f26402478a337535091c8d6063f24c58c2933ce
|
|
| MD5 |
c3e665ca3f706f5649c29939a6ed9c4b
|
|
| BLAKE2b-256 |
108a191cc8682d329fcc0637e98d8de411943bab36f68f28f9ef952458889063
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3d3b91c4b9cd703ed41b766fee674ac6af0bb5cbb0dc82ba96f7f2c69d09347
|
|
| MD5 |
373825b2fb38733e797e16bead3f5f44
|
|
| BLAKE2b-256 |
afaf47398a9c5818b2b34ae5dcbde17889f5cb1cb3f7f82e8ade2607de662b05
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
846b7661fb22560a1ed75915c1713af5913297dfe496acea0ddc4abba99db529
|
|
| MD5 |
52c6761511cd1c7f8dd797fed5b628ea
|
|
| BLAKE2b-256 |
871e8b067644569e1fb924486191e6bdf4a918f8d07b4b75b11f266f17c28c5c
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e729a58b764d22bf78e5f98a959350e475871495b527d1731ad743cecd09675
|
|
| MD5 |
fea7caed1d56e70ff70a871473f0fedf
|
|
| BLAKE2b-256 |
0714ad724798eecc1ae9b7739d7e542e861a2428a43445e425352793a2319307
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f9d5007581c4bd3746bf43913c1b2beba5a632de44190ba388422feca4405e7
|
|
| MD5 |
fcdc1d56db24f5847acb19f10c27cc00
|
|
| BLAKE2b-256 |
ef3ec4f167c338bde15827b414b3db2bef77075be24afe07e35a4255de20ea99
|
File details
Details for the file slatedb-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab62da71598a0b920636f97a27bf4e518728dd695c01d65b8938fcf9f534ea62
|
|
| MD5 |
4c06936d5bc044092ce380e89395b5eb
|
|
| BLAKE2b-256 |
3465d96e29a214fc4ac19402098d62f10cfcea1263d910c9c8315eb3995fee82
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b72851c06a4be3c0823ccab444b069eafa1b19801487ad00776b46c638836e9
|
|
| MD5 |
3740afa6c35a27b94a0d3335445fa0d3
|
|
| BLAKE2b-256 |
e5a74340303b6b8c9889280669e5f8594cbcfd498dcf4651080109e5ccf67021
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f47679639f328cfff6fcd1042486f8f8f159e122e725a7be975df7eb9d4defc
|
|
| MD5 |
0aa89ab3047d8f8e8d36291f1cf66fd9
|
|
| BLAKE2b-256 |
2a8ea2c149ebcfd7af0304ef5fbabf3e9af14acb7edf6d9a3793066c10c51589
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15fe458ada01ef9e7adcacc00a2e45ea71ecb95c6aaa189b85b61169d48300d3
|
|
| MD5 |
f70e13e348072bcc430ddd6055cb0fc6
|
|
| BLAKE2b-256 |
e7c0ab4f91cd28a95cda7a9900f9c0c04c4d063402d673e6196d98cd107259d8
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
502e66414071642899930ce817ea49495ecdc0a27459c3f64df4c58c0d841571
|
|
| MD5 |
f8a4834e2ba30a7468679905b94e49ee
|
|
| BLAKE2b-256 |
8a96d498576250b820edfc779f5fec8aa4b8d0899f0afa111b4a0acf43c3ab7e
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f7e92c6f9e533796c5e96b61353843cbd061a5722a8a5648e9bb01e7cafcfd3
|
|
| MD5 |
d3acc366941bc743998bc7f97604b761
|
|
| BLAKE2b-256 |
f8c4e429cac9e8acf987370c87ff9ccee9973c9693bab740e93376afaf6e6161
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e36a56ecef6ac398aec5b4508ab0dff02f49739621efb4ad6e921e3a396232e
|
|
| MD5 |
620edf2d4e6785e47876f9f7f87df619
|
|
| BLAKE2b-256 |
b1d03e5941ea8c4867843cf110492ea8e325f3d2ffcee6c8a2b71c24e493109f
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97b3c427dc5d62392020d1f93caf344908dd272b9d62879b4aaf701d54d4a90b
|
|
| MD5 |
45f392d61d475baed49af226c92ec40b
|
|
| BLAKE2b-256 |
ffe232a788c26a3d5d40c99e33d0b639ccc28a5e7139acdbd5659a6ad8099acb
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb5e2c74bd2d4d8c1d8d91a99b1bcb9427c8116d39970b5aa7501fc6b28e1e4
|
|
| MD5 |
5aab4333e98fcb8ad3202f74b0ad2952
|
|
| BLAKE2b-256 |
3d755913ed4799f4063197b571fcb6e8eea9832bfd29b391d3de7376eb2f74f4
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41fa3ad4d2fc88252da63e412f8ae9107debf8e68d1ac10950797ead76fd3a7b
|
|
| MD5 |
5933b43487cfc8725f4504d90afc37b3
|
|
| BLAKE2b-256 |
1a8b38473dbfc3cc510abc239ef934264bc6383fe85133aec9947de7c78081d1
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc9e9db5f913a4ebf240723c97abdcd6b26d386e9daea03ec9ef1de661a21de3
|
|
| MD5 |
92c463c97206462d4ea0e6d11267b7e3
|
|
| BLAKE2b-256 |
6fd306488ddf88bf977a0cbe08ef87ca7a4e0c540714862ff8a596e29fe6c8af
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aabc82cdf23a90d96d596e3d8f2814cc7001f6a5579e2d8dc3773ccb9c1df9ff
|
|
| MD5 |
bc5bee00f690aa724e144de0d3e4dedb
|
|
| BLAKE2b-256 |
6384cded8839732853a9e3404de38bccf3f2a1e6b45470eb33507281d44e59b9
|
File details
Details for the file slatedb-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54de609530708dab424809f3c33ab2b883346ba4e5fe68247dacfdeba9efe795
|
|
| MD5 |
e1bd1a0d3f617762a51514fa7c970d6c
|
|
| BLAKE2b-256 |
b84dac30e5d776beb6e1ee97db39c3fad5fd666522d1a0fdaee3e17cdc5fd28e
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8f3bceafbcaeb1c2ff5b4a5083c30ad6a5e24474099f3b0f4254f560365cd58
|
|
| MD5 |
e24f0eb6095e26b160ad0c77d2a75616
|
|
| BLAKE2b-256 |
e9e164901438b4b77c7863dee2b1410db6ac1c074b9be9ec0a6e10b5283438a5
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a5e06512bf2e30dd7632ca1bfd59956a083ea3c85407da1e7a4e3b69be6c47e
|
|
| MD5 |
1991d3846444b4fc4ac714d794768471
|
|
| BLAKE2b-256 |
e2da7b8a15427711a6cc4abedf2d3d54b9c68f95a9cea3b1cafa21fd231cc382
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
094daa727c3c33e016b136c350bccbd7f1a7f4fb5d6c9cb5f06a96eeff2de093
|
|
| MD5 |
f8d1fa1a48c33474710f86180dee3453
|
|
| BLAKE2b-256 |
3976161328bb63d0fcbebe10740482ad15d3ac8a390ac62a4ac79dcbf535aa4a
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afe9db7a0563d760cd2f086839384a8a0f91baca5ba2d72fc2ee8f94c33f5c04
|
|
| MD5 |
b0987a82878be5cc92b0ea45e7d8426b
|
|
| BLAKE2b-256 |
552a28e5a612603f1d49b17cc1dfe6d75497099f80a6cf5aa4a596bd98270de9
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f946be01ae8f4aff493e7a8ca6060ee0437ceef518173c51ca6483dab63cd8f5
|
|
| MD5 |
e786172b31e9fb5a557525f93c1feb3a
|
|
| BLAKE2b-256 |
c138d6e8abba07b2450fd74f6ccfc0f87b23aa890e653f1517b6e96ecc9b9d51
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92d848af2fdff937c885d9a4f21cfe885a086cc2a18e1d02c136ff9fb9eb2d4f
|
|
| MD5 |
7555a44b8ba81fe880c9ff5e8d4b495b
|
|
| BLAKE2b-256 |
e4b9472ac846cc9c752aa3245581800d389a20d3454743975fab9695b437760c
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb92798c8f0f372e18a7bb878527850b6afa68076e4a3c9ef7e2c0bb753dd39
|
|
| MD5 |
fc4043d9a2e7d15090644a4ee40395be
|
|
| BLAKE2b-256 |
eb871ef871b084e34d37e0b49b65855d9a19630d4dfaeb0d8a0b7a49c2bb3d98
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63d19d8c4755ba4d3c30f105dc6d0e0a3e646011e8cedadd6eee8bd653ea79c2
|
|
| MD5 |
893c51465820ef3097dbabb314e5e0df
|
|
| BLAKE2b-256 |
40fa384a6b25d563ffb1bc1a29c530a8fecfedf00a101487f0316700ba686b50
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f42d78b4b966d985cc14c415f5c00fc455745ebb943fe7aed2c8cacc1e0eaf84
|
|
| MD5 |
6588198aa01fef08daf9586ec41379e3
|
|
| BLAKE2b-256 |
00485f65d5052ab6097166e6161cbf2bf63737b65255050225435379bbbcfdc4
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10e98215132899907b2d90f176c5cd71675706f083bfc79e737d9556b78c3822
|
|
| MD5 |
63e5e0a20da2906ecb56b3477ce40097
|
|
| BLAKE2b-256 |
8199ea71828d7f5eb65421527c0ed5d230bfe7221d1709184b0cd1335a7f29a9
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.9 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bfd75f56c4261a502e6a7d00075b766b0aeb44513282869f35732f159a52c85
|
|
| MD5 |
054e5786363f864a48fdc0588940a29c
|
|
| BLAKE2b-256 |
51dd97dfc55b7c27ad8eece9fc90b82c8dcb349b26c4fd57a665e7f41a747426
|
File details
Details for the file slatedb-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
823686b4b363c1376d4788162dcda2e2c6eb4272187863b44b9ab68e7093475a
|
|
| MD5 |
fcf32767072adb0b1e98c9aa9d21e84b
|
|
| BLAKE2b-256 |
a8c4785044db02ea1f47759b89ce7a428cdba5e5e2548d8d30baf94d0644c337
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd7c167b24785763d9955062f64a6bbfe4fa9e2f50df3629b92f26b8b01fadf0
|
|
| MD5 |
9276df753007a2c40c45c266f0626128
|
|
| BLAKE2b-256 |
2b6cb0e0eb01d41ca2c8ae17a8e7d19df6e7e899a82f866cc4dda71eb0f0aacc
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 7.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
377f9439fa7380354a096c128a20d7988c716e26f8674f2097019cb44f465b25
|
|
| MD5 |
74ca059d315a43c78a45a950f5f9045b
|
|
| BLAKE2b-256 |
0c5c2f585223640f7b0db95324b758f4e77d104f9c28485d319719a0983110d3
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aeee1211187f71f4699d01e3625b5118ad9d5c5d0973f465b4fadc956e33dfd
|
|
| MD5 |
eebc67eaa64eb0c46ed27b1a3dc47de3
|
|
| BLAKE2b-256 |
b48a06fa6cceb402b36130d005a3ad083f91eb773fb9528d31d67b04929c1e2e
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a3a1cb460e38cb8ac7354112dda2a9cf5f5b0a352056be55e60f01e9a0fbe54
|
|
| MD5 |
681f70f268dc991a9703c23312d6f689
|
|
| BLAKE2b-256 |
8b1e4440db737547b12710ecd478f8f35750853d0d6432e242d0699ec10d02cd
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e7975aee83ca0945bc9e5779be9e373975c7ca0270dea1682b502e670f11383
|
|
| MD5 |
3bfbcd520914dc7bddd38fdac728ef92
|
|
| BLAKE2b-256 |
076c3fc93170e7fedcc6a22028a45256166842e188c77f88edfcd389c9a29576
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 7.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11eed99237b20a1900c2f048110797bdace4f0f85fa307439b549f7d495f2d31
|
|
| MD5 |
aa23156d78157f015bcbe3a8023a99bc
|
|
| BLAKE2b-256 |
468445b7924382b5e6b4a1e215c8e2c5d8bac31ddb37ce58afcb8af26361bc67
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 8.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50aeb4982df3e2880cba9a5476dfd3a53cf591f191fa373ea0f85513e34f42ee
|
|
| MD5 |
16115cd0f84ebe2d9e376c02702f48e6
|
|
| BLAKE2b-256 |
8a00b24b4b01021c278f7bff17fb660de302629c04f37ccb0733b0f81ecf69b7
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03e177e5e6e9ab90807b5892d197c07c9335144e0b320cfe868330619cd5b7c8
|
|
| MD5 |
0c946e98726aa093ec076d653e4bf569
|
|
| BLAKE2b-256 |
6e458798aabdd99b03b1004ef516b4bacbed34c9be2de5db87c3d57773295b84
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 7.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb571f31215c5d1c2a67304f5290c51b780eb7d8644e7690f65339278700c6ff
|
|
| MD5 |
b261fcdb628a64babc609ae48f5a1ade
|
|
| BLAKE2b-256 |
400d204e6948d31d71917af2a449a29c3affbc9204afa7de91a93c395b64b0cb
|
File details
Details for the file slatedb-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
476145fb109058706051d98b285ad25d3aa3c63e3e5132fdc2e166993aa7a8b6
|
|
| MD5 |
897369983ee0a5d5d22790ccf688a77d
|
|
| BLAKE2b-256 |
f344a2a915bb4d72801f1f873a8afbbc5c7d02c0c62c12c3aa76d565e1705d84
|