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.11.1.tar.gz (608.9 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.11.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (9.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (9.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (9.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (9.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

slatedb-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp314-cp314-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.14Windows x86-64

slatedb-0.11.1-cp314-cp314-win32.whl (7.0 MB view details)

Uploaded CPython 3.14Windows x86

slatedb-0.11.1-cp314-cp314-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp314-cp314-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

slatedb-0.11.1-cp314-cp314-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp314-cp314-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

slatedb-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

slatedb-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp314-cp314-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slatedb-0.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp313-cp313t-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

slatedb-0.11.1-cp313-cp313t-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp313-cp313-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.13Windows x86-64

slatedb-0.11.1-cp313-cp313-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp313-cp313-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

slatedb-0.11.1-cp313-cp313-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp313-cp313-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

slatedb-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

slatedb-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp313-cp313-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slatedb-0.11.1-cp312-cp312-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86-64

slatedb-0.11.1-cp312-cp312-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp312-cp312-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

slatedb-0.11.1-cp312-cp312-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp312-cp312-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

slatedb-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

slatedb-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp312-cp312-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slatedb-0.11.1-cp311-cp311-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.11Windows x86-64

slatedb-0.11.1-cp311-cp311-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp311-cp311-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

slatedb-0.11.1-cp311-cp311-musllinux_1_2_armv7l.whl (9.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp311-cp311-musllinux_1_2_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

slatedb-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

slatedb-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

slatedb-0.11.1-cp311-cp311-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

slatedb-0.11.1-cp310-cp310-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.10Windows x86-64

slatedb-0.11.1-cp310-cp310-musllinux_1_2_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

slatedb-0.11.1-cp310-cp310-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

slatedb-0.11.1-cp310-cp310-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

slatedb-0.11.1-cp310-cp310-musllinux_1_2_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slatedb-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

slatedb-0.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

slatedb-0.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

slatedb-0.11.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

slatedb-0.11.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (8.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

slatedb-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for slatedb-0.11.1.tar.gz
Algorithm Hash digest
SHA256 97115b410282828a4061e95797687d89b56874145a68a89fa71b13a714efb84f
MD5 8981f4e5ea852f507c3a3529852bb7d0
BLAKE2b-256 63a21a2c5d6c079fe588df15592a398f7bf14c79d7f35b6f8a554d4b0c590c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be822e4420fe2e379001da16c37286b8ebb49b173d6afe62576694fc9f18669c
MD5 0ecbdb7747eb37fff41c61fb3706c385
BLAKE2b-256 a8231f440447bab3c967652d58543a17a4d5291ea1c96f7d312e147ff9f8f064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be7b3f72a59d8db6535aba20ae97e48db42bc90c96da865b37510fd6bbb0e7fe
MD5 5231490f2acd72d6ccba7bfcc7edf7d8
BLAKE2b-256 e012500823f3ec179ba680a746dbc9ebca2a90f90ab09e18faeacf16503f10fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83ff8d9fd0d6522fd79071f3d5bca7e52da7c33aaf7e70525b570978bd1ac0f7
MD5 4a7da28db86f9d6cb7ca2443d1b05629
BLAKE2b-256 bc7ca2acc1e06ac1cf513ee64afd56c2374e829cc304ff07d53769330eea004b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 623627a2de59fcc260a2f84158a275f1776d78f2a7244c005ac5c143387d5da9
MD5 1df9623d40f56f8ebc969ade91d74049
BLAKE2b-256 672abcc83c67f4117b6dc2ebb675f58561af98b91d8c647bd768fb92469c8dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cc8e2bbc4594e81de3cf7d00757d6a08dea84b90b0770987e6fee4352cd2984
MD5 130df454ebf26f15052443a7e37d09e2
BLAKE2b-256 a85a86eeeb326d0695ba237e664f6383633844aba3a30530196118d85c6285b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c286c5b84ee66ea9bebe533b9d98363e5112b6902df71575f0d7b13445f77b1
MD5 c443f539284ceb7e8343b96c1d69faa9
BLAKE2b-256 1cb839bd1de819dc2f29e81ce843649b314b47bdc44c869fa0b556ea6ef21153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e1ed990d917246c29229a46b82a5b8343a269c3b08488262df28eb85f6bbb3f
MD5 8719a229386518866ab7628e683290e4
BLAKE2b-256 689f626872083a040cf3b49e3486fe85289bd227293e751db10912d784b92e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fe130979accc319759f2f174e26da1f4eecc25975ca19edf593d1fb13cc974d
MD5 bce70bbb08f3b187a5bb758838fbcb24
BLAKE2b-256 99463e44dc527e35d3352ffb77f5886e8a2c3e179e3a6ab4a3691e6b9ca9721a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 194e2cabdc6de7bfdc0390c54cc774dc459cbd0c9451539e6cd80844ca7e442d
MD5 4d8eeaddddf92f11737e66f9d68513a0
BLAKE2b-256 4c2d27af97c92f06bac2184c442c58acf6347d7771e21fff86ea169ab1198ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8577243852542bb9d3e0eb6c38f3895fa5d8abf6a14ce6fe5f5c4f9e0cf5623c
MD5 e84b3582d7e8ce2096cbd78f9007335a
BLAKE2b-256 c7093230bd554de5acdb03e9c5695d8f307a2cd89e013f7503c2576c7bd85e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fb9a669d862810c4163c1c8045d0c73f0fae17c68039787fccaf64ea05551dc
MD5 5f1cef657a004768ca07e424cd74d5df
BLAKE2b-256 e547bfd0b3f09109b79a666d4b64843bb0170c3990b0f85f01fc72434034ecb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8badf72a4b065a64f438a39ca0839aa7a68b18e5240966fe93becb7952f77f6
MD5 97e22d22f84decd9000a598b3b5595d2
BLAKE2b-256 4f4e807281c2f1e4d0dadc09ec5841f5ebbd6fda9014b62961e3c87ed1e87d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44ed0f1eb5f7be2bf637777c341a431bbce730b387027f43b72feda4685fecca
MD5 be6d454220091b1cf52c7583252a56ec
BLAKE2b-256 fb01574bd788344d2e7c29bc7457fbf20eee2846cb01afe28d877892eb63bff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fde4332728c5c005f43906bf5c7ed3e9bfb92526e3a39dd99014a24ad9be8a6
MD5 e606dda13315a36d192aeb762666bc41
BLAKE2b-256 b9814ce5d070f35993f89d1a5fafe667f06e9754dd099f9b408ef125f96f0636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4137e2e501531db1bfa5dcba9a07bd0400f8deab8f4c9cceecb380726ac94ed5
MD5 3c52b29fda59929a5860e3e94411665e
BLAKE2b-256 1d3eedb165d25ddb06bdbd5c47f45889b9bf6e1f31f61591a619544b9b5c5524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ebc19a5d01eeab07488dec958d2388066c42d7fdf6ae4576c3e6e529fdd1bac
MD5 12edec654195f6ba8f5edb7a4fe6bbae
BLAKE2b-256 37a2c8866125e7c59a487932e70bb05fc25ec30b8289bd1ad877315d5d772a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f432c1f593902b14e6548fe5672772e19fb7b024905aca1224759adb76c7150
MD5 5eeddf6cf496f190784ab2618a3e1c80
BLAKE2b-256 9b310bf1407d5b7cf21eb44142b5d90400a88ac1cff21b6a5fdf01b69f339072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39ef0ffdcde1cf4001ac2c4aca39d96bde4f2ebb635f0fa262b868872e3b486b
MD5 878389a517c7c6e428742bcf3dd1f504
BLAKE2b-256 237859c2be280de11d9f2512a02b3e3057ca7362f8a64c0dfcba786ea0c7c406

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 525c7212af4d6e71acc294dbc34025e57ca49ef8360eaa94103ffed515c85ffb
MD5 0cd55c60eb0926c836c5ed2b5407b543
BLAKE2b-256 c3554bcb4ad39205f2075e89f6436faf7d84e37b6c7c0bbb4f97254c089b46b0

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d1b453a48b709bce4e0f0ee212da79ae27de771406006a3dff6f79c71229497
MD5 21d0b350ec3422eefc1b7ef8fad7d616
BLAKE2b-256 f0f81de0ef751e551f49b2a01e3cea6c869c4c87ec1fe425a44bf94feb0a2973

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0f52b5229d8e8b0ab72031e562c70b8cc16486ca2d828c6df2313d7060d497d
MD5 99e53523af0300f5c58d4b6a8691f2ee
BLAKE2b-256 89b634e88c97150f84f6f1ced29ddef02104706509c132500b0b556d24024bac

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f130385fc4cb156bb115216b4733c1d8d0092d80bae79ce2fcc2c2a082a9d86d
MD5 8e6648a913a658adf499a0c6dc325135
BLAKE2b-256 795a928707c7a6584eed1fcb303ea7bd86bdc9b53195e394cd929544f79d0b3d

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8582bfc84449ee61c037782661d88cf22f4c1bf9e898fc257ff222a55e8b0b8
MD5 e562585a64b75de650f2b4b84d8a18d0
BLAKE2b-256 84b03f4a09994abb11208bfbe07b857ce719b5df3043af7a3586232a6120028d

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c282d0c248664c526c1d04fcbd19c79005fa75bca072b51abc42a85cd9ccabe
MD5 e64577a911ecbf868e0ac67c32af3cb4
BLAKE2b-256 87300f6281423f9ef72b67f662c3eb0e886fb6a79f3cdd8d37a14a41004e8dd9

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18860091f4f32e5368c8cfaa16e98282794bb4b2a3bc9205b6d2fc2ed9c06b3c
MD5 271887b148a7d4223686780d9d585648
BLAKE2b-256 6427a2b56896cb2c8cde3542b48d09f96f53838f6de3df6c03ae9b5decd1472b

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e3a3361bb4ec53ad688f7870b9df479cefb7e48c593c3a8520807eec24445a7
MD5 9464b4a860ad19f7d111b8c9d4f1dd6e
BLAKE2b-256 ebb1312501b62d5ed0b3fb1ae9180ccff17d7e6dacb84bda5225587bc71eb6fd

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bd10fd6ceef5658d3f20d402d8afec980999b36daf39698a0a0e4597742ede74
MD5 c945e85cb6c73e2ca13d361e54d955d6
BLAKE2b-256 574c1d7a0f5d9a653451ace5de60ca152190b93c06d49d2728785285dd3bae76

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: slatedb-0.11.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3e251d98f8839ee577cd0de7784d725a45f0682026b655c0a6079ca735aad105
MD5 9dca0d51563f7549dd9a1a2c87bc06a2
BLAKE2b-256 82dc33a7b1a6ae442e1b875604a062f2a09bb5ad335629f6165c187afecf9ab1

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09fb95ac8833cab9528590af5d79f8b556dfe5786818e5be64756f3f70c69b7e
MD5 614c866ca7f4db3f0f594aa9dabe8e7d
BLAKE2b-256 b9f80e3f5609388f33711327d58022d1750f7ab6e20836936ade49185fc0ee4d

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1aeff6a621c5487dc0cdcccbaf9c2ca54c65021ec0d15239882fab8d4f35ae88
MD5 59f3d63f9fe1a71f2ac9a6420e39f107
BLAKE2b-256 7f742961f1ea26fc34efd85c5a1898353df3f9d32fe13d73388d4f29cc9d7807

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da901b8904907c15e11a106c6d55d7ca437e668500238832454b29e98f530d09
MD5 1411660041df46063e997a3d7f763104
BLAKE2b-256 2b84e98ead7f2c75fa03f40dba30e6a04ed137bc81e843b840abfa28cf7664ef

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5150c140e724396ee30beecf8e11b86ae75c09d64f5600e103bc13b41059b93a
MD5 606afa1edcbdab95413ef7ae97f94f17
BLAKE2b-256 b083bc457584cc4a9afe51ff31fc90b97f37fdc0a71dfac3db5c4be5919e9f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fd3d414d24e335692447c2006bc8d05608935bbf922faac09787b91acb170ec
MD5 78ebb139df89044951118e4372a1fa7b
BLAKE2b-256 75d71e6f342271f3122f4cbfe80e5a4f0f47df006c9e424ce9286189974b80aa

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efaf8024f4815a6af6cdf4cca73c4aef28c8370d7cdd5238224c0f69dcbb95f0
MD5 61fee7823a027df928b700b79b4cb2b4
BLAKE2b-256 6972dbf382b1dc91865104d7d84dce6d5de9e2da793c5ca97475a276e4fe67e8

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a41997bce3c1e2e6a06d3d8f9a485995737dd0cd4219f7836d5ce91f77d6c151
MD5 6e40dbc44738e89ef5306c45fc3482b6
BLAKE2b-256 00ebdbaaab2c504f6256a380afee4fadc5ca809cd50b5e810e6fd955a51d675b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbad5ced7c656fc5c7a62ea786a70317ff1faa62786e4296a6634132963bdacb
MD5 f8121ec54278e9d637e5c2805f212305
BLAKE2b-256 dd01e65e4e7cfd46e57bec0091d1a287afabb82c852a01f6231115d483bed595

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92f63e0df9556f42344440b63467a196a3341c2cae374f5f7d767d2a13ede393
MD5 87ebea23082ab1c498baa218ff8f7c98
BLAKE2b-256 e73f9e1df1173710d73a6f3e7ee419888ca1ae8127408f83a2a8fdc55535ae53

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2b4e5a5de96fee2160c309b79deedfc7778af889c0035ca3c7237647416f369
MD5 5fd255527bb79f9efd02948b49a531d8
BLAKE2b-256 88378583f9955f304baccaee988c243329839c2d278516faf0305124b826c700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e288d8ae235c9e34b38ed7f6a0fc942703e1b2207704b5945c44439f97b9eb16
MD5 ed761df4f9bcef426037e49e37829c23
BLAKE2b-256 756619d9207ee1643dabcdb680e8649c815299a8b7b0ddbc0f28b12f8e0d8fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a764395548f02d74afdc801a0b16589f048f5569c3c85edaae3e7f7f1b4cde06
MD5 2834d086252cf0aa26df87f513a16ddb
BLAKE2b-256 400a6b5831454b2ba26224d0b84aeaffdf7696873e6000304e4ef6749c7afd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d7544b274b406ce1bbe60ce53250546a74087ade050313775ce3148264c78af
MD5 a49685267c0e368d0b34d55f00fc5167
BLAKE2b-256 02de606f50b20a482a3a2fb2586a3e3239757f2fdbae622d3a64ed76ffebed47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a351befe257e0192f339bf7a099eda629e9e82202f42fdc60c99f59d36011fc8
MD5 d6f04cd2bb7f97d076bc6c8b512a1cd6
BLAKE2b-256 576744c2c6fe3dee64f76b40a481e0ecad607d73e2470c950ae539514409266a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63b63abb83f681b45a20052c97eb02fb87d7a6302b5039ef73967bc444589b79
MD5 3a8a16d6c4854f630fe8612638e37afb
BLAKE2b-256 18061531402038aff2c2fd8f62e49f9555ab37f8c56034d70430c6196252c870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 722c090203ecd4447016df481b57ba3711934469373e375338096698ab7f32f9
MD5 cf816bfe1f7e2c500398519134bbc555
BLAKE2b-256 5ee8ca6f8d0cfce6c7a656255378985ead7c1d32434b749702c349a63a4fa37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 120dcdd9d4dff1e80203a006150175e2714907001451d7094754dc1e5848707b
MD5 6ef247831f3c2d26a64573e4e695b7b6
BLAKE2b-256 509a2b0ca2711d7ff41cf834602590bbfe5e164a58e21bb6e6d8ff5748191a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 577fc979deedccd84c335eb875cb1b1379ad60e757a9a522382df63504a5f921
MD5 9ea02f04ffeba8ce60f53c6dac142aa0
BLAKE2b-256 c423d33420c2aa04b90104941d3a57e1ea9a73504f1ab34aeb376bf76ff29b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441f32373d9a61f0bf4c14320a7fecb30358164e261ee7ea786424758e36d505
MD5 8345d74d398cfb31b8abcdf892e4dd65
BLAKE2b-256 c0fc10da9270e6b601b4a55f544f5fa18951ffc5c7c81198d38d17f9644ec7e1

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 518939cb4766ae6ca1217390d8da392710f4b5a9118f32b37a3a8f53ce09de4f
MD5 1310ab69e7c4eca7c9d03e21c39f7b8d
BLAKE2b-256 5c22b1b6f42b8640b5b4848c09f62d08b5ac2d7eed882174731de7267af3ba1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d23ba69e6ec2bf13973f5f2bdffe2fc5f347eac358d17f4b28c2bfc60c0c331
MD5 535b6cace3ab12f76807d741f6b2ce68
BLAKE2b-256 269b0a21c722aba7b69cfa14b8c6ab0e0ff4fafe10964636471178510693f499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b2ca45e7482db876137f999a9d8b644557872675d55b66fff6f2b809a828ae4
MD5 7740f32ac440f34f7d53900c9848f2d9
BLAKE2b-256 5b3b5dab8e7824325b4534f3f1801c5554a9a058cffe841f51900d99e3830128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0937cc2c34dcf52d8de1d05e0e9b79532f57ce4665289a2c3ee61842eaddaaa
MD5 c21063e161f6e61ff19a852015745052
BLAKE2b-256 36fb2e1f8ba285e6f3727a36774217abf1be9009b690dac4c5e7a983f07dbb0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c47295f20c479d742107a624fe0ed168e19a566d4df3d8e80a521179148f4796
MD5 25b2ebaf3055e82f893c7e26c64de2c5
BLAKE2b-256 0381e10adf0b2149a43b3a4cee12aee25f176bff7565c6b5a83cad49c88b47c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02428b3133d204c85f08971f016f5c8fdaef7e1305026350b7dd60223abe9f2a
MD5 4293e29a9e1bfe6a24dec1efa4f798a5
BLAKE2b-256 0d5d6dc932f902a4325fd3bd5240ad22c2e50ffc338cef5234fd8603f2cad6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58b076c7da759e072ca1c570139155799d1b180afc1c13d461fe68a0b0372755
MD5 ba0578469f8dfb1645598f8c45af4b41
BLAKE2b-256 859627d5a24e790a07888ce1421bc22aba32adea14e08da7332a157bbef6df0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe56dc3b3c14a5f1afe6a97c73618de4d052d49adade533eca876306bed04cb9
MD5 b0df6b14ddbbf605d754e2a5494eb906
BLAKE2b-256 20b45fbbc682feda5b1368e5036e4fd9bf71d0119909ce50e0a2e1edd85823db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53098c044c3bda4884fc5ba17a065014bd3c32583e2ffac5629405613de510ee
MD5 1bb1e99a5f11a7a4ac250cecbce00791
BLAKE2b-256 5387738b1f475bdfee54ce140ad11e7aa8e7727b7cb20f14802f0e0952725b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 772012078092f0a8c427fc298caf7b995726bdeb2a4e225e2e46d91dfe72ff5d
MD5 518df2c98e8de29b4ced7470de43c95f
BLAKE2b-256 7f6c50e266cf630024e12470a546ade618d94ccbf8bdafb1857f50bbe82482ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7000f21258ce275f04dfca0e8892d6436b60ff1e8e994dc1967e613f21c2bd5
MD5 f42feec50302387c85c5b5a2fda3ffa1
BLAKE2b-256 4887d186d3459e4cad96ae504cb30cf981068cf40ee58b4c705cbd491e2cebc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29c814ab27e09a3162e95f084beda1bcd86c445ac0b92a76ce46e38fd9a056cd
MD5 3849073a463a8569c05da2bb68ffa902
BLAKE2b-256 fb4eff205d2269d97245aca9d8b3d8955ef33a901f7083f73e69003a658a732a

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b20bf2f5a2b1f6515fed92229e81d5e2588d78ef761ef9d498a2c5a35707ec6f
MD5 297cb7c56b0196ba4741392ded549b79
BLAKE2b-256 865a6f38e086b7f3be2554866ea4a0fb460ca10c2665b26ed837b4e2aec9f6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7fcd247b3b183cf182418c024790a85f4efdceef0a9b78ba50f8315e7ca936f
MD5 d3ef7a8c71f28c5db58dbca9a19d7734
BLAKE2b-256 9d699e5c820aedf8ea898cb6e741d7a0e8575702316e7712a42e430cf5b81131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a5be032c032297911566cbc12744eb579b3b3b7bc5c2f87c0f40fa440772de6
MD5 5b77f5b8f9fbabb287267307b162122e
BLAKE2b-256 dafa02ad66a4d9c682039eebd94c2b95021cf9af8ccb8f0b8ae19d4f2b1c2ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d11c621e08c4352f44a9e0932dd91178bbf36fc2950d1ecb4252385660d4f1d
MD5 477565114796873aae57cb31fa5e493a
BLAKE2b-256 57917632b702f2c1db3fbfbe1fca4e01fd0e712a4ecaaa92bb17212209eb79cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae4c11f6b90f339deec73216c0979fbdebc32341cf1e694590b4be74e7c994f0
MD5 6cb6762a34ce5a08f343237b7022f52b
BLAKE2b-256 f0985c39fea8056b78183d1ae9a79d549bb2270e8e65db6fede91bdfd8f9d9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10939c5d641ec3133627407d8d55fa78da553dd206ea98eb6d6f513d32c3390b
MD5 205b53a3e4ca4fc7522dc22d78fc501b
BLAKE2b-256 3f3fc211aaca132b06c91b2913d4b28f54469119c4523068214bef7bc1894f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24d0424893ae76512c08878bcaf4b3464b4baacd71bf505416caf4b0ac92ffb7
MD5 db2e512f578109ad7cd9f2749b416360
BLAKE2b-256 c4a6fe6b97d8d7f11bb7c650d7abe55cb10b9f2a46ce89cf6850e432d05832f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 409515d022d0412b8bd41026c76e05de182b6f4fe2050e8b33b8168a80260a8b
MD5 c5417437cdd17ed92f1821ee9d2a7ad9
BLAKE2b-256 7d646341b29e3605c4c483b66b9083aeaeed8675a587d1c6033c137243baa125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f5b4422e41ca6feb48360f39d416f154c2b0e5a7094b4c507fec1ba1f78afee
MD5 8d213043ce1832411f949fbf02b19937
BLAKE2b-256 d92881944c9e170ce45df5fe941c89c6c81d339a8f42fd8c41bd8bd0e5a3a5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29c5c54a9c77f2ce70776b3efaeada054e4d77b1117d3b44bc3f92fec1500f53
MD5 f799015f6b808f08300bdcca14181edc
BLAKE2b-256 070b56b8959e3fde2f0e94b6149e0ab5ccbab6f4aca97f5264bfaa901235e7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63814710f4f85149de3861d15949fd7aa6d21a9f0c3b96c12c122b724fc328ba
MD5 d745f58345d4b4b6c42bc8185f4ea4d7
BLAKE2b-256 049de710609ecc306908e4a153ef462b89281ce22379dc43e0c38841591f51f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b6c6fb31292a464169fa13d6ea6724d112a8560109f3dd5e9823a89b95df204
MD5 5486023827d216703b7418e7da749423
BLAKE2b-256 9a07f7508c53c27d9465d2c3cb2aa3b7ee61d3703ccbe61fc212af3098366d87

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4d01a80d4cff8ec9584485a35d532b1cc3db7c7588874a927c3519fd7723817
MD5 34123737a05c78aeeea8ea90aea4bb36
BLAKE2b-256 40ad51a5cb9cec5c9f42961660c5da7598b4f3e9b702b871f279634a6a938893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 089c258779334b7045ebb3d40b61524a485a172055b85bdfb7f415df61204f2d
MD5 7b68aa27917ea4d37a85734fa1950e5a
BLAKE2b-256 bc3ae402cbb073f1a20c4e98432f0a2601d3e76efb44d85d17687c885c4d0f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe457764ae0314f110d018d24ca3efb36140279ba7b18008dbd5563d67a8e936
MD5 bc61622ca44667bf904dfe358ea8440b
BLAKE2b-256 73d3987722fc35718aa2f87ed83090b54f4831e62f2bd349c5213240f029a985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e47913c70bf06ac5d449513f468893aeeaf9a479eeb6a2514ef3f77e24d6824
MD5 f102652a65051e02f913fc201048afce
BLAKE2b-256 e2ddb23c3fda4d5e91c6a2fbf8633f0c3217098d2cf8a0197000318de9f5e4b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c075ea7c813e6df1f07bef7f70ba34da759f6b163687188d62c63b5c3627bcd
MD5 0970c659660f68f43c6615948afe68fc
BLAKE2b-256 16cab4e79f2f7ffa5c906f38ec47329cf01344692788baeb3ffe88f03d03f4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34f19460e4054b82c1495232c43107807f846a5dabaea2290bf9cf053db21253
MD5 d39d54f4d0919089e5447a788f289d04
BLAKE2b-256 278ccd8a5d2404522bdc39672ed764b2d94c8e43df298df8ae05cf225630106f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63aee4a9d052a01e85a1989665aeb39758df047bd9c5c0d46a21465401730c44
MD5 7a4b5e18866c1c44bcf75af9854b1015
BLAKE2b-256 7c327a26543ba761db96c42caaa4e7d1f5cea64783226e565ba6a18302e5fd76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c144f17481988770905aea6b801d5e10e1fe68be8e95f79fe6090dad4118798d
MD5 dce9ec7e272f49deb1a53b6fba3ce67b
BLAKE2b-256 31e3d4f51b11c91803b415d8600df202b3bc532ca1b5a39959536d8a25655992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8df4e8514a008ba3572445a93154331b94daa072fc97435b8b50b06ca2afd6d
MD5 6932bc58be8e22b1341c758a50404ca4
BLAKE2b-256 bc3aedeed5ad111ea7245bcf498f61e51fb8f4f1b2c9f92575996235309b5508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df4582253c1d294e0e38197b324fa71260c4941278ebfa9678e6ca21e3e13a4f
MD5 934ff82edc4706b57a95cab517ecc64d
BLAKE2b-256 2c63b3b7eb9684ba1ea9d5ca5889607a3adcbbabda782110496ea92c84d11776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a887c26c07219a13ac534ac13a301be3966f13a67e6b946b06e4ca9551426a
MD5 1c371162eb73631b6473b3d225be4b09
BLAKE2b-256 6abee0bf1e03aeb021565118d9cd4a6ced52567f0f1ab44672ac187a474715b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d9e6e8a8ae09ae8ca048b7f99b96dce3d3e5564aa7cda45e49ef55a87d688a
MD5 733dc078e98e9e10b41fb035b948ef70
BLAKE2b-256 4b64822d22a5057de847e8b2fc180b653540a2b177d28c5282eca69fac576299

See more details on using hashes here.

File details

Details for the file slatedb-0.11.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 873ed414b7ef9a6d96988d465ff55c7a02f2fc906049e10b31b87aa5dc697736
MD5 dcda4d6666a9cdfc21cfb6f2bc012537
BLAKE2b-256 6b4392d54c4122c9dd8af212b54468a6f365c42ac631357ee90aba61d837b0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 660e07c21f9487fdec988486a8eaa863cc931e351cf1e1c61dc4766113677454
MD5 e1f971f7b8cc0539dc569285bf02947e
BLAKE2b-256 7cc6221cb2d235157b3ca8b250430d247b7b2d11043960e0073b96e8e6a57cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3f3d917e3bfeec98d4c8ea65fb681f4060705ea373a84ab7d9dfa10ce4023b4
MD5 3d308b1aebbde05243e009558ea0969e
BLAKE2b-256 11b126c8b9aef959c3bf7d64992d1769dd922bd8d7a02d1f89aee52442a029ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f3a9fe197b83d0ff81642db76973786f7777c85281e8606c474e71b59a98495
MD5 69c9de6682dd584244c7f128ce2aa9d7
BLAKE2b-256 41484d7e7161faed7650e6398ec11b6e5a8e1c9485be814e78ebee02a194a701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a7d5dc49b41e57360e1b7bdab24365259fb648767ff46bb82341b983734464c
MD5 08044b1bb107f3b5e61fd39e839e595f
BLAKE2b-256 d8b6595d2e339abdd9524e746cbe15c834404e10e249d8d42359377192177afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21b29b7a2bd07819608f9b3abaa1cb8000c2aac9faf2c865d12afd47758ef8ef
MD5 be49835b7322ed22d4113604e445af65
BLAKE2b-256 8af6379f36760a14da2737af609c83f74a2287ccd29d6e1edb063ac9f5f48470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84d7ea10eba3b2e764149519a57deb7272ddba2e8b2b05240fbc6923d050a438
MD5 9fa4ecfe1a1d9aed40a1b34a16982820
BLAKE2b-256 0104d0cf698066858ac320f6feca4a92326dbf40426f9c705acd988e0a811868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c62f3601355477f711db74562ac0d116a1d8bf2b820f86242fa5b3c7238fb6dc
MD5 94082142310560365315ea1bb3f408d7
BLAKE2b-256 ab716390fd230f1dd05de9a020ee9b1f5cab55921e5210276b49b9f139cccfad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 848e3e12ebd442ad265d809cfd9199ab53994649aec8d8c712ffcb837cba09c3
MD5 0d276cc3fdb0263c9153ffb678a2cc49
BLAKE2b-256 501ccecd71f1b88ca38dcbf8759904195481b1f4fb2070eaf209aa82eb2bfd27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2782cb43e14257ff40b9e0f5dfbca284cb47a33229b4db3346649f187761b96
MD5 5c17782bf7d0b843ca07bd8d3c01cf92
BLAKE2b-256 b43c5629eec5c385f06f7ca888e6336bc393540b74c353f3c3db5b24819546b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce34292215effb46d556cfede497d54113893a148de385fbac08a93b3548d7a1
MD5 8537e3bbed8ea7f4ddf7b42565c6edbd
BLAKE2b-256 a0ca6d378b7b86936a4c7462bb62ec9f75d7ab92d2c564de752f80c9e3497535

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