Skip to main content

A cloud native embedded storage engine built on object storage.

Project description

SlateDB

PyPI ReadTheDocs Python Versions GitHub License slatedb.io Discord

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.

  1. Install Maturin by running uv tool install maturin.
  2. 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


Download files

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

Source Distribution

slatedb-0.9.0.tar.gz (458.8 kB view details)

Uploaded Source

Built Distributions

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

slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

slatedb-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

slatedb-0.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

slatedb-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slatedb-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

slatedb-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

slatedb-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

slatedb-0.9.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

slatedb-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

slatedb-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slatedb-0.9.0-cp313-cp313-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

slatedb-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slatedb-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

slatedb-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

slatedb-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

slatedb-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

slatedb-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slatedb-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

slatedb-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slatedb-0.9.0-cp312-cp312-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

slatedb-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slatedb-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

slatedb-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

slatedb-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

slatedb-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

slatedb-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slatedb-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

slatedb-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slatedb-0.9.0-cp311-cp311-musllinux_1_2_i686.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

slatedb-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slatedb-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

slatedb-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

slatedb-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

slatedb-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

slatedb-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slatedb-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

slatedb-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slatedb-0.9.0-cp310-cp310-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

slatedb-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

slatedb-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slatedb-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

slatedb-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

slatedb-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

slatedb-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (8.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

slatedb-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

slatedb-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file slatedb-0.9.0.tar.gz.

File metadata

  • Download URL: slatedb-0.9.0.tar.gz
  • Upload date:
  • Size: 458.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for slatedb-0.9.0.tar.gz
Algorithm Hash digest
SHA256 9bc50f0682a4b6360ad65193a6add375ff663b3ef20c055e8915e2e1cdddff94
MD5 3976f45b882762b20a26d6a1f5e3bcfc
BLAKE2b-256 03b81984c2be359b028ada5c2808dc5dc23b2a23ed2bcf7f0100d7947229933f

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec60e4eea67297f32ce0ed037f85a43d7f119ff4f49c86852490911c9cc5aef
MD5 e83d9f0fa81addfcf2a0a0903bd99ed2
BLAKE2b-256 68e12a8c92bcb12c38bcc9d9b721b5517814731d6c1f186da118121da2ff3232

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f09cfaf49660e6990584f0c0cb193af6e85260816d6a9cc238e3d79f8ad92674
MD5 7b15ccb99c17458d3125234dbef9529d
BLAKE2b-256 908364ecb8fc5423661e3fb4d590d232b6c2648805ef309a89c25e56c477b150

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 317ca67c37e9922a934c45fcac324cf10ec3245c34358a4a8550a0600dad2b31
MD5 808c8361464134324595e4a604cd9987
BLAKE2b-256 cf8fa80f40c977bf922473c409af2318b8a686905fca0c08242369a3a9e59d7b

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1da7b37f2260bf31b0b9efad0567a462357e598bfec532327ac1ea564850ef39
MD5 7edd005834b747d8e5ae082196cdc2b3
BLAKE2b-256 e3222a75fa33452c17b77d0bc69e0c08efc3e9e4bf978384ee91bd47b331a366

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63255d06bdaae9c27995bb8cf354aacc3bc39edca8aefae222f28aa6d390b5c0
MD5 68011afd89f6f2e86f80f5ab2c10ee24
BLAKE2b-256 b64383fc34ea3a1fbeffd63fa6d49f88ab174a91a53ced82de94e3c04a137ba5

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86344b0f3054843cc0b926246bb18aa08c848f809b519c703a778367d883d35a
MD5 abae5fbdad45e080cb9d4738332d9f1b
BLAKE2b-256 325225da1b1d7e00471ad223a326e131c57c5521d5ba08b6f1de5f60b09cc77e

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1c85bb3d5f29d82d4c964eabbb649a1598e7dcbfe94c2559a46307d94758bb2
MD5 95e766f7423b9c7e3efb0fa735de3a14
BLAKE2b-256 880dd69fdb3cca84f9bfba99b089fbe337e8d35e84f22e474c7e1f7187c5eb8d

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c38b0cdcc22d83afc51f8623d95a470de511f7960c611942e9c9a27a080f1b6
MD5 95e37843cdebd06383f93b12e589b82f
BLAKE2b-256 7b5612542b6cad1958d51659bf3e73ebae5785a64c35fdcd4f0cbf65465c16cc

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2726d66323ba962aa5be4034804344929c5a05ff5de2deb5aefe0cc0a951c18
MD5 2275300939d3102ea57b9d08c5527169
BLAKE2b-256 e201f99ce24cebc49c31d9edf9a367022c39f13f8e0cc281b801a1975acfd59e

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32b69c1958c7480e06393f79e59e397c41a07c077067fc70b2be620449bd5310
MD5 b3bfe80bdff4d9d59c5ad46c8e80f751
BLAKE2b-256 d08a326c011d8bb6f825ab94c411e9945839a0219745d2ca0dd0bcbd778bd90c

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8b7e8ab89249fc5b25bb008b0723614d04c8d810da755b941892e4849f1f881
MD5 959eb9896cea988532d2157126743514
BLAKE2b-256 e840de6933882c39e7b80a4ea8178458aa835572b0631832d1a9c28b551995fa

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40dd7db2cf701aa079058dc57b0337f6e6858bbdc4401a45dc44015c8e1cd260
MD5 f28124ae55375adbc7cd93008c0716f3
BLAKE2b-256 5bc8e1fe48d0e3b1f10dfec5000f1ea2acd58f3ab19c1412a32a9eabd2bc353d

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5db11452a5189027140b5593387c69bbf4d0961504e78fba803565819276292
MD5 65906e98d1ff32f6dffb1c58d61a155c
BLAKE2b-256 31d0999a095b9e5f7c0119cac4eacd799f19c0dd0eff93e48290fac5d3d7f69d

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3071e3a4c89cdf9fa8c70c65b9f96faf6ff33ef378878ee38f65b0df07007fe1
MD5 66b1272b767b3e7b91be936daf7024e2
BLAKE2b-256 7c6ab4e720b6050895be57a3eb998b19e243d3d4605f22951a3eef1b1c2705d7

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d52276d864c71c8d5f891e64bdff16535fa7f653079c44a167fcf429f31228c7
MD5 7737d655584981859740ee3d5b48a464
BLAKE2b-256 8fb7530ac6516877afbf7e2c054252e550f6736959408cb2eb421b8895b05ad5

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d5e967b379c09051cead333481004b8e2c2322b5d96be59685c524197c20ae0
MD5 52d17ba7bf9c2f10edf3696f431a17ab
BLAKE2b-256 ab5934fd098cf0135f9f2ca5cc65a51e33d75b2fea3e8e3cd294cd084c6d7ecf

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6784f2576d6a6085b9e157a55a3c147068005d2edb0692c4b310d58fd7adb0ec
MD5 570323a25addd4e3d9a9c3aa7361ac40
BLAKE2b-256 1806963dd87d76e0d4dec91268933122f2b4c7359e31066fee99cc6ce645606d

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b56738c0bf903fe15e77d3cbf8270bd524d6c4b1f38f40ac734968053845ae7b
MD5 d412c125438f162b3bd3d17d5e2c2d52
BLAKE2b-256 94f3c9cee719827fbcfe5686aaa087e8043259e3e8417c446316f76db82f4e9f

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4b3680f79f36e370806c59eba2aeaa08763bfaf22ffbc302e9676debcdac25e
MD5 c05db1ebf503f084b3e7fc29e5216904
BLAKE2b-256 fb5765dea1bb724b2d5df231f7c9479b1dbd695342e8d9f7647f430c11c406dc

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc41f34592ab1c121786791958a57aa777f7292fea239daada16fe71f1c27072
MD5 55df58c9dc51cdd4a34a0281568a82a6
BLAKE2b-256 35ef9464e1014373b39eca09640af2b2fbed7571c3c95f087ab63f03b27cf7c2

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 596af133e5654b5e7131631ebdc6e36d21ecde44b0cd1a7761a511bba510fd33
MD5 17bbbf6f7c9839f78380b4dd2a6d7cfc
BLAKE2b-256 9f842157823145e00a5ed7512819b362488bb46e57124673fe3cf3acbf96e305

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6383c719b8f6ffb4ecd3fbdc19886a8233096ff0f563a4a8f1c57fd153d5d32
MD5 284345cd3fb1ebcc6b37bee3250e5224
BLAKE2b-256 d5ed76d5b885a4f474eb2421230480c7eba19e7c674592f027df3087dd61ecea

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00ae71c4c2b7090b047e932520ecc3d7e9902cbbfccd3a013ec170a6aea6ba76
MD5 bf3812a852d381b948d3ee305e180c4b
BLAKE2b-256 45f3b5fafa7f7334644354b0be34af60f419f1efef9e25743370c2f475963c82

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7089298d1e564b24f168eb0f551b3ff546248a4ebefb90363c8da9415a116ed2
MD5 2a69f53815befdf1f50d16c276a99b22
BLAKE2b-256 1bfee5cb7ab39eb386b94273baf044a28bbeae87bc9dce1061e3d26116dee12e

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e7109c8851b58c2b26ec800fe35073b18fc154316e07186aa2416055e0f8f41
MD5 b5ffcd44fb123d7b57b2f01ebebc6286
BLAKE2b-256 0d64e0d2ff27d221d6c1bbac2f429d701aa3dec7d48fac659c624ac871fb404b

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74320a9f5613861bea01248d61933ed4c443efa0df74c51e6bb2597b2bd9a268
MD5 ab68cd91e2794c0055cf312f8e0626d8
BLAKE2b-256 2382a01359105fbf1a82e178d5648a6df1434bb95a03c14cf2fdf57d570b0cef

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 618238a3b5a82e930bd3df58cc1a955536fee705b5eb726df4fd3e548acd8065
MD5 ab18a1ed9985da2563fb5f326b6b6098
BLAKE2b-256 89df34247e88d77fd6e158602e0a96c4f735b1c0baccf0175a8a7873e5121fff

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6ecb188dbbb0a8ccef95919d91def9c4102fa6bb79d721a4e12b9b883c60581
MD5 17cbc5be5151c332c61b5028d486cfbe
BLAKE2b-256 64def7d7284e7176db723d973b224f89208121da153a811726b38d3b5800d84e

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b4c511c61948b1bf16ce070c82ee6e164f082aebb591a2f3078abd9c30e2754
MD5 575ca70cef48e05bdaa4177172a8d71a
BLAKE2b-256 40aa3e2c32d7153e5cabfff155c039bcf96b811a30fe0b9851c810c886c9653b

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 888d4db8b48f6df7e205b51cc071fd2d5d89c46d16ba71cab4c84f0039bd61f8
MD5 fb6f5dde934591f9ac41aad431b551b9
BLAKE2b-256 bea5f621d90bd1275aebbc87988092bd7204b320f9a56b0fa6891d492f2e4216

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e431a14d7b40154c44e10a35eed786bd7220788c365ef49bf6dd28d6f21aba4d
MD5 ad31a75968c820da035c3992324adc35
BLAKE2b-256 991f96fdb41a24109375fd05af525d6ee367c28a8ecbbbdf2e44115ca54a1ea1

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a490d8b99a5c11f511458043e7dd954bf4c7ada26b253079e11b51f0a15b068d
MD5 cb09f45075770e0c7815d3c7147ce8c0
BLAKE2b-256 565c5eaf27d1e611adb6cd477c30cb10a9f9d1e417b16b0960ecb4f99751cfd8

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f1d302bc2f995fe84392657b754a83f1e22a746648efe40a35a402c364eb0fa
MD5 a74324c73c0d9e3a6131ce80f255ca94
BLAKE2b-256 56023e3889eb9390108fd34aee922b248095e029bee5f432f3ce294af7c9d81a

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ab4005616546801b681f73542d9525b0b801bb155eb23b3fd5b34751312f046
MD5 2e7f5926c9dc7263c06df2e1f653a121
BLAKE2b-256 1d0bc91e689c4c335bf35bf39f8475a1eba5b45ceff6a4eaf9d372c1edd79e17

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a3a172d919c1f2ed5b812558ac16b099647c9f7b5d59a4b8c8600c9c3f13960
MD5 7989dc09a2b74e026025dc8564c6003b
BLAKE2b-256 96880336d2d6f3462c7cff53ef969b476419e48ce53a3369c0bca0e4bf918787

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98f5119d6af63b899401b1c1d00dc48113f783d3a392d56354cca0f4db1052a1
MD5 ddf994ced8ecb2411362b8740496ec92
BLAKE2b-256 058f2226e631087f1d568a7405cf057e4aa8e32a7e48d3ce7e5245fe62c80c8f

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e41294da66d53d95feded845ea622c11783dcee35445065919e20c4bad05d42
MD5 e32142ff1822a2c17424140ac745ad05
BLAKE2b-256 458550d9e4016e1050e98f5421b95b6c470c3088eae810c78e0ff35f284e0cb3

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8b5fa7dd6828bad8a5d13db874fad7b300cfa84fe38edd3167a24b95a945c29
MD5 3f009e5a5c248d8400368c909f0cce59
BLAKE2b-256 56afa15431d7bba145f8a62dfa409e10497c3b2d97ceba3b38ef879d2d69704a

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf406011480f0b3ffba7774d4e8f062dc34282b278d84dae6d3113785bed2571
MD5 a6ca4bf352d808bcf5f5760b48147bbc
BLAKE2b-256 39b1921e71e8f02b1367a520c0e5f2a006d9f2f3247f31b616dde910838eaeac

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778f0c556ade099b609d4ad88d43c7556346487e0fc6783ff94d4329c77e4084
MD5 c0014f704204c2e9720b7a40c07b1130
BLAKE2b-256 d1ea459aff500850121ac4c8b18b044cf935bf11e51aeb431b588c17080dcf38

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ef7bda1b02c408dadd55289f376bdcaf4408673234af74753331e704813d00a
MD5 02ec8b9691ec031c58da0e2ad849fe80
BLAKE2b-256 fc50284c6061a2a8c4fd8732c94cde279bb12689201eb365a2107f99eb985215

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e6c6952ab7685990452bed8c0d80a0018ce0088580f16393653a41b9b6cfecd
MD5 fde496d73b8fe385bd5858590723630d
BLAKE2b-256 b8928cdfbb2769e2e8b3848ddd8e33b55fa7aa37cde5794eff5d3591e3802464

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c501247048aef5216aba1aca86b7c37563462e2753d36068e03d538a50927e86
MD5 e2df0e1fb5421264d901361e46b42e8e
BLAKE2b-256 685615fb06bac9375602ec92988c774777021a77db559e10d20419a6858cda5b

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c77391b81be582e93ba5a2b3619c4fcb79711a0abf8b6aa6722025290675835
MD5 e7dc030c37e5d053d6ea987979f6f707
BLAKE2b-256 c7998a63cdf7c5bb8251dbb2ef9d9ecd6e69753b99f77b3b229cd4fa91f88d99

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e479384e3258dbf50f7c12c11f90fcdaf6cc7ed8e08acf73258156b5238a826
MD5 f8c2e958c36c6422a0c8158b074ddb85
BLAKE2b-256 4fa373098f951d74c17a9b06333a28cff8ba68354aa00c66cbe2ebe29d71f445

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89faa9ec4ad8a22ea652b36d41d79800340c1207c1994d83aeb49ad2a8c9a085
MD5 993035f4e1f7cacf9efd7f0806668699
BLAKE2b-256 9fac6270944a46618581589073f995e353682797dd12c4b72fe4d81d9f33cf93

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 183fb8e2960a58074dd2fa9a780d73c3f27bfbcb243963522b89a1e9a16b961f
MD5 348fe136d43460199030ae381a3155da
BLAKE2b-256 42d9e40553a26f28b3352ed0c1d70cab3d9a38d1abacad6c5611667d6da6b917

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d53fadab25a7e193cd457afca04e7b784b1fdac5368bbccbd54f5fa0439de183
MD5 bc392c70c537b72f0f764b304a7b19ce
BLAKE2b-256 16e1dbb933219937f499148ff35997b95462fec65e84a7530445553096f6279f

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 293e0b94431d21587674158ff1d3604db9e525229e1ea85ebd36dc46f96c58da
MD5 d813de3744ae1f32696d4b993680ab75
BLAKE2b-256 8b436ff953f92cc594c3b337bb50ca765f2071b26871597f812217bffc7ca4bc

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 974edd3a7b093c67b970ea5899b3de76c4761ab88f33a905c1c3feac8c61b7ff
MD5 5d195e400253a16d160e3cc8b94a4e5b
BLAKE2b-256 0cc1f7dea38f58dd28e4879807691372c5a4e5e3c46d3a58b1d6aba888d086ae

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d95dbff59ded8c8a55edb9c452d8acec23c68ec9f132547658139ad2dd1072b7
MD5 4901ec2e42b0ce1c3436e0efed9da562
BLAKE2b-256 ea86f6dd99748a4e75f786c145e6a9f8b833035731fe6a0213bcd627cbd9f39e

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d99f475c3e762e507e49a08239f113012313f64c05b7523e45f01447511d817c
MD5 f9b293ed704fa56fa2968809a0a68061
BLAKE2b-256 715d7dffacdf0b7d5695a9cd7e9081301052d0e70a1b2eb4c74987c812fc3a5a

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d36b9395d9c6b8b3b95fc66ec8f94349e9eb24ea761ea82de3a471f2d636352a
MD5 812c566cbf0ce43342890c18a089cc02
BLAKE2b-256 6a1e6322ee8f923fcc7741bb1bd75e84f86a601be5ad8235079957daaaf105df

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f792d4c5ae49b4d491b6e4dccf596d32a33614f37e13d9558f78d3abe309ba8
MD5 0b3cdc54ab12b561dd60a0e95c4e7313
BLAKE2b-256 5ea249a3f4ec2614421dd44ce45f238437810c927fdd6279e68793d9cd902436

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d9444a7e2f21154786ce9f62d0258e5854983b0558b5ac3da1e1e7ccf8f35a2
MD5 f038dcab8e9180b65eb97f4a5ac21472
BLAKE2b-256 566d11e6ec5bb2ded536341615da94d6c8c079b4063f391530979a63fc543ee5

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16440c54be8015936a38d3884064ade636a28771b5cb1490bb281ca4a2baf381
MD5 ec9c27adc134539db9787e4ef4c527d3
BLAKE2b-256 4da6c7f3fa0c7dadcc18b196c4377c2d6174b95ba2ad64c5b23af234778d0032

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df7e05b680c9e4c334786ee5cb3c228b052978255d098f8c9bf11539bc94c726
MD5 89a3acded4d955b48bd3f45fd88db47f
BLAKE2b-256 b806bbd1446f35fc0edd22e14e2689ee6c9d4135b5626cab2cfd05a0d8a89453

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c1ef23a0df12f7229f6085c17131ce9acfd7a01d6b7f5e3f8cb6c1dda352896
MD5 5a95ac9b5ea4ea9bbeaa46f141b4cd47
BLAKE2b-256 ed47599694abcc527ad71641dda6a93e3f64f1bb2449aeb49b069cb41ff59d63

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b434d473fc7286ff7c16f2ea89cce12c810460f163433271e5461e22171890fb
MD5 bbbda0d8bf82cff117e8d5ff818c9ba5
BLAKE2b-256 95134df7949238f335f6c5c631fefff1ca0d9b0696f37e7d88d541c421d3d613

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6a69e7a30ccb88585ee64233f29ff25ca4a58ce4e692c71990f56a5a84561d0
MD5 8ba543a8447a891920cae22701664b9f
BLAKE2b-256 c82c5281639f7ab248f57fb87883a76b0f77b76ad29b98e1a92a76157a1b6cad

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db834a8b58a9fe938bd8d5a9f1be01859313ba08bcff69bbbd60e4ea4a4ed84a
MD5 3b4aac6504b9cb860601a2b714cc2935
BLAKE2b-256 42c87eb4d4cb42eff35a76563b506e44dcd0c01a8087519a63d362f98a0057f9

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 444d2589799a039721c327f6b9e84ff6d906f3a95774c0bcb37b2f2e46e1d19b
MD5 029a35967982b2e17cd123a6a5b00fc3
BLAKE2b-256 6ad111cd5ce01f5a3b3ec7cda1e50d352ec28361b67b7ee3a2189c19098c3116

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d33823d7d914211f11bbcb69f0b71a23b354147d5e1c7c4a8d0eae570c21c93c
MD5 9b581802b37773b6a398ac2931ba7c32
BLAKE2b-256 a51166127fbe6f7d40a5970f26485571f14d4fd401d62ad1bb7d417fe220b4ae

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc0b227fb7331e6023f5ed646790f9e6bba3d25c755023599e297da5e7625c9f
MD5 7a32e2e55ea2692f5996585da7b50ca6
BLAKE2b-256 08f770de2977b6bec025d365f44307ed4c934e7aa9c4d3ee96cbbff5b61b5f7c

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e6f80bf6d9d343dfed0d7fe16482d00f09c19d5244992281d21a81c7e113eaf
MD5 abf1539e60d362b01ddc11ffa582d5fc
BLAKE2b-256 c249284f91f518b6736915c3d292e89a866092b56fc1af0a48ce50c0e2fdbd0d

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 873730b42a7372f40d9d8d430b2908365d6cd7ce1709d8d32802ff40c4be41f7
MD5 67af2f24f9fbba23ef879624c7d90702
BLAKE2b-256 b9bfe6904e55e18e56221bed8d8ca68cde8b933ca62266ae9469336bcf1c9579

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0127862a42c4a8141651aa40983ac78b29fa9aa2a7e4b4a9415d1fad70c8fee
MD5 654ab4a70adb272658ea040a901b3602
BLAKE2b-256 602b01ee547adf8513412015a3a47c9945c315686705a9843ca3b9956cdf36b3

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71b34daddd9b53f7147b793422d6aff42c84ef1a67225ff544dacc83dee7770b
MD5 4c807e187066719905ea3899c0c0d00d
BLAKE2b-256 f7c57711e1ccea72f46f9ffe61676b6f0f4e8dda86fc8eac4ed4241575893054

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e5ea406870abe871f39b89ebf1d864af6e4661f8c886d97c1249eb9d5df7317
MD5 65075bd7a3ef5df67ae65428e91c470d
BLAKE2b-256 eff67340a117aaa90572f6d38a7129f7a85cb3ecb3a691b9e2c35c2f4e5f21a9

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a5819117f3027985833405165baf956ff250c18a9b6bd98aef6c681dbb9656f
MD5 3e7507dca778a69cc2134655c8a801b4
BLAKE2b-256 9850bfc403df9ee209961f1a4586754f117d23164d3043a08af4f93795488994

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 956d2460671e65cc3c408030330ceb9eaaa5412177118cff7b891b92664d1610
MD5 fb6116ae52e11dbd0a0037e2dc42fe8e
BLAKE2b-256 93671919ab95a9f74ca9337c9c24a3632ad602fd581f6350832aeda251376e99

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceb38b64edc039f4521ed543001fcde3de7a1d43f8f5466b0d78841c787a428f
MD5 101fd1664428c4d193530e92ed7a3206
BLAKE2b-256 e2f8cd4f639311d1291169e6f369c70ecf9bacab422e2ab86082483052b64095

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 506b01c9dca029a0589ea24ec311a57a1c0a5f8c169f80a52fda3b89d5a5fd6e
MD5 edd80ed209990e9fcd0deff1241337c9
BLAKE2b-256 9ae2b7a98d4927fa4224ffcc141f47d7c1ad04abac62fa2161b6e02b6e616448

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53349cbb8f3ae0466aebb0d74712ceabf4d58b5b1d81c570ad5c67296f1fd704
MD5 b46a5a5cffb890479d7467cc34e9fcd3
BLAKE2b-256 5e7c5ffb6a69e2ba5f506f9e8828297ade0668258c69bfef0070b28dc6e71905

See more details on using hashes here.

File details

Details for the file slatedb-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c24c5810bce5b204733f3dea12478e2a93de67ac266d41864bbfe075b23a8f9
MD5 2d7f430111be8abc9876641ad794fef3
BLAKE2b-256 4442a75486f2d272fb7e1137e741f4c9c0c3b0c33118d362ccf9c8c46da28c8b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page