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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

slatedb-0.11.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

slatedb-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

slatedb-0.11.0-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.0-cp314-cp314t-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-cp314-cp314-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

slatedb-0.11.0-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.0-cp314-cp314-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

slatedb-0.11.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.13Windows x86-64

slatedb-0.11.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

slatedb-0.11.0-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12Windows x86-64

slatedb-0.11.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

slatedb-0.11.0-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11Windows x86-64

slatedb-0.11.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

slatedb-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

slatedb-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (8.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

slatedb-0.11.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

slatedb-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

slatedb-0.11.0-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.0-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.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for slatedb-0.11.0.tar.gz
Algorithm Hash digest
SHA256 012aa3500b86635c367c570c31ace365fdf18f1728e0ab7b1f86cb53630f0cad
MD5 44532d3d47bf7992f0e60e77c688b0a4
BLAKE2b-256 435ee6d435393160671176a54c7a0a554ed1ed6723896af5b8fd65d2f089dc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f096fd0a6bab21000f02277006123ba85fce7f3f1fc5eaa1d19e9a7f44b76a23
MD5 e415d7eaf1920ce931885c3d6a6ba45c
BLAKE2b-256 adcb09c9c3236f91872828224854f642e3a557f0f4557d68a449b95dbcc333b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 963fe917bdbb36d376c2bf66e33afb8fdbeca9c624a9aa59f1448bf80432bfb9
MD5 dd603e13c4729fbf4237fd5504d711d1
BLAKE2b-256 650a71b26ca1ff93769e3b99e0a8aa61113c33579f0574c4507b3d670f0273d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6946243ad8c9802ea6be80485655751899306a46546bb72a2d0d754a1c909a2d
MD5 7bdc08c1c29677555ea3ed8839b53087
BLAKE2b-256 28ebb0d8a87657213e2c45ca49c48cd1ad16b69325e6dd466a84b5aa0a3042f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97b7c6621f766675a8ac3899bacc2d945cd301ed539fd6f3ac2936d0de754315
MD5 6453ba0d74fc5c348f01f94266f898da
BLAKE2b-256 bc756c1d888c074a098f9f17618e77b1b02b919c88023aad30acc1ac11285a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af521cd2afc90458bbbde23f4cbfced6cfd9e5337a40f110de6227443fc0e342
MD5 c209c598bb1e2542ce42bb07e233e4a6
BLAKE2b-256 1c936835744dbe84e01b0817e061da2c951b9bb0bd485f8af399ffe8d9ade5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc40565c0e774057b78ef67c8ac6015ba57a1a1be98e8aa62c1dd6f0916678f7
MD5 aa7e866e6580673bdb1283cb18b5b137
BLAKE2b-256 f90fcabc8cadef147b23a2c8fbc22edb393db01651a087a0693d375969ec7924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a86e924c78c97e8201199eb4ac7a7d665181ad76cb1ed95ca1401ac6c371ac4
MD5 51ad7b26f862f34c73baa6750c3317b3
BLAKE2b-256 54ff84dceb534789ebe7821bf1fcf1ff3d7d0ec1e79077abbf627433e4a8a6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f93bd98038a596e2ed06c92141c6fbf8c61e161315bc51e851d9c3177b0a5f5
MD5 b2a88f582064950e3b5f492e0124a520
BLAKE2b-256 b580b0680f326668a27fd149f955806d73773af0bd4af1ff0e228f7c849e052c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6113f4e2c60650d6f7a5aeceb519f59c970a9e6e0d25307f10a1d26c778bf0bb
MD5 30f9d44688de6085895f2c65c7b7637e
BLAKE2b-256 8a5beea7933b2eca595189d2663d05919caa071f713e1b892b81f3e5daabc688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faba6cbabcdcf17253d6fbcffa4bf22d898ad8621534db2b64879fea8e618260
MD5 8ac940e144eff4843bb2107bf59838fd
BLAKE2b-256 4524462f5e8373b35fc7264b7b9475216e3ddc857e70f503eab1bd1b479b1289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6745a877da88e6e85844c23d68665510f502b1c8c571d1d6cada324cfc2f933
MD5 43e1a7e8cd189f4f975e1ab2a6864bb4
BLAKE2b-256 85186e365a4d446cd6faa6578f2cea8f08e2d0394eab765563cc997286d331a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4275447e6662cb5f0b1d99dea96184c9f1759ba4adec5c44cdcfd4326e5de73
MD5 57d865947d3ddade05b7e00edcf18aae
BLAKE2b-256 49ea3b224a42803c944871567bdeaad2a32bc9ba286639afd2c2bf28eb7dd536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f2e6938cd680b1e35ced0f2093431842a242b754da989c8e862717b2130bb9f
MD5 3b40b6343d343baa9f139a866dfa0b6b
BLAKE2b-256 3295cc9266568656095f6ad7ccc87e49788668d21d3ca2f9bc12acd292ea66d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c21bedb9efa39d05af4e0b074cee55fed95984f00dc21cde00d1610a986c28d5
MD5 06a2edd64eb4fe860f7a88ec31b4079e
BLAKE2b-256 a750795eacfa57851bc2a067a96e332f0d8c0cf5d6aaf4163613863831db009a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d53974872108ad1b7200a034fd77c61bc7708200795938c8fef169cd05c5a993
MD5 98d0e60cf1e7fadd5f65d1ff2a06d513
BLAKE2b-256 2300c14906a2c26969fcbedb507209fe25f4ce599ab4ea474f058e3f45a830e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c21c698111ad4180d4182cccd295f9d8d159ad8ffa8da7f78d1dc6f76ab9344
MD5 de07206ca9dfa8c8486b86d350144b75
BLAKE2b-256 699d379402ecb93c5eb27e16fc1887c161d16e58ada555a1f67ba63aa099173b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 724be5e58b3b6a8e95a4e3c695dcd25ddb33d28a3d49d8ace5e62de97a9d18ff
MD5 e783fbd001f3344d2378ff59683dd83f
BLAKE2b-256 c7996a6a27d5633fa36619edb16913d714d59cf6d115f34093993f1934517a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86c797aaa1c0a424672a2ef0888f90d5722bc1fcd3192a793d824ce9a4529d28
MD5 27784f843e0f55bf3ee517344b4d3d6a
BLAKE2b-256 1807c8f08f46244d90e332af78b6726a75312f265f524d24c154672ca9fe4a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fdb2d42d0b00323296adfc595af0a7611c4938fdddf3de97b97fb4f91e07086
MD5 b59926f2519036344e7ca9bc73887627
BLAKE2b-256 c1230b8a8fdfdc32b81953c63248d1df7577e8d3cd2f8ff4bbf6b621394c692a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14f3eed2107d7d232b6767592c178c97846937941d0cc328cecf4ccb1dc05537
MD5 8d0fc17530e6f53b0a03a10f6eec2a2a
BLAKE2b-256 0f20ae7b63abbd8f10cbc1fe0b5bc25d5243acff165728f50ec45cba07d67726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 971182ee501ec4c8ffaeda51b91b824118fa1488af980893f0381d9741813b43
MD5 1cabe8c4b1539928b8e9d2d7c9be7859
BLAKE2b-256 e5c6eee7fc9fa065538f4c0511698b99b3b3c5569677621b80f96ef05fadc0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d31639fb96b9ecbe5809f3a7a832fbe88d5061b08fb747ccb4c7a93ed9d1b422
MD5 205372dbb400b87b569d6d4174171b58
BLAKE2b-256 4d72dd37872dded684a88879381e027023e4288e0fd3214466fa6d1aa6dedcf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 201eb564008f31e87f6f28d867fece6917566896f9bfe1526ca35a971d816852
MD5 a941539041e871c215db27db547d9c0f
BLAKE2b-256 f5ac11ce2dd3263d963b133d1c81a8a02b28cc4f348207e3ae3b7e60caf9bd29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 872862c4e1c5d0dcc734c6a48b99b68537236dbbfb83e17c45d04ed9502a6295
MD5 b960510987d3b3b0d565835db008689e
BLAKE2b-256 150ff0ee4154c9516c17ccbed1542f53221cf2e695bcf1f125b88ef64b7b0d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bfa29e39c826ad4bc8906022571a990c0215ab0f763a32cb49e15742eead5ec
MD5 75c7206653bb6d80001a93cd8821ce2e
BLAKE2b-256 88f20929f5e14a0292d42f8dc50748484fb4fa77a68614e45049a8342beae09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e4917de6287e7690d8479032bffeeaaf0de43fd64c144cc1aaa7db1de9df450
MD5 576f842889fdc9e2b9bc0e3f07bc8bef
BLAKE2b-256 03a49e32db79217b6f6e5446bffa4214288529da83afd2558b32beb64db606a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5dcbb0f0c42a2009265f41edee0bfeb528e73e7b04267c11922a558b114b6379
MD5 d1228d1cba3275f0cf55ab32601b8d70
BLAKE2b-256 0bbd83253dccaa057c8069f31cf86c919399fb200104ce2b79039220d358079d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: slatedb-0.11.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e0172c8b6e7bc6f1871c35f5ec268e39ca647f8a24de1acd1cf1a1dfd92f544e
MD5 12d16833fe1d65b40ec01ee9556585e4
BLAKE2b-256 f4a163b6d6bba9f376c0f16b8ea7a13090aad2fb02942221d19f3d8081feaf37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97e952f4f0ae3da56cd0f777856371cd12df74758ab15fe6065c4dfbbe8448b0
MD5 3bdcee0c0fade4ec0a8c2e837810075c
BLAKE2b-256 338f497a537ce4e5ea89cf4551e9a4a6cee88cf9796c755d4d82c3621bce3aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04e5e0003f839dc55af76721364cb41dc802acbd5a2de57641a1824931a84bac
MD5 3bdfc7165080d6e73381ac0c573aebfe
BLAKE2b-256 29bdf3662e4addb51881664ffa776c2bd883a657355551b338838c91e153946b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba831040d6d8912b76e0928f3b7a413e30a8dab12f37871f6109d4fa5066fefd
MD5 eb09fd956ffb70d7687950239ee1f5c3
BLAKE2b-256 c036e4ef3c91221a0635969f67400979cb189ecaaeae91f72630b964bfc7061d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c648f81a77f1bb258b7ef9a15f3e92754a43dea1210f207b4490ec55feea31dd
MD5 b4c3d548ca39bbff1420b7bb2cee12a7
BLAKE2b-256 5db947734fa9675a2f7af75bed141d6124039355cc6792a311183167ab592ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f215829230fc53000b0f77d9f369dc830aea9a9e13dc359132857664a578b69e
MD5 18e3b331139379bc48f6eeedf8181e31
BLAKE2b-256 734ade0cbfed313b8d0dd6849a1b1692edf8f4d8dd2c0588d8de32121755b434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e13977195222966de242c90a214cc618e5ae31b9d3edbd1d5741b1189ccea454
MD5 001da88bb0d7b464b4869137712de18b
BLAKE2b-256 24897370dde0af975c7e6d87235c837b9e3f91a4db5c4484dd786c07d49fcb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 273b92b6612d9c8949655a9d0f05589f5d690d40bd2e955b8cb81d5e05f4e146
MD5 cec71a0ece568dfd2e6736c4cb38173d
BLAKE2b-256 9a649c581ca106cb01d95a59c541d764d6a32669c903409d4478d5e94e8f03e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0691d483669fe28380f91d50544afdef94fa36e3f3d207a972ad3630f382318b
MD5 22a9b44f8d0bcb91df883abfaa561192
BLAKE2b-256 7b2ebfc9892c9ea933801454d33166477fbbff10ced0ac5702d27f7bed4748f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54c45097bde1ea654ee150cf9e890b4bb79f7eac6478cc47c61ce3d5386341bd
MD5 5ebcf5e0aa404492cf0c5c2e4b7d5dac
BLAKE2b-256 f812f259c85097d5b90232570be9fed1820481d03bdaf60612ab39c3a045ba58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27a087fb9bc03051bc74dcad1fd6f151fca644b302140b36b723945db31a9afd
MD5 914ef298738b9635d3d5ff38b6a18881
BLAKE2b-256 ab4d2905e14b0010f62aae5c22b73e1772bc95f544f52ed6ec0466e054e1a691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0a592a6c7505c7d91ed103b6f2eefd98ca6c1d317408c976bba8d5dc4b498eb
MD5 c71f2b60fbd0a0a3534b646769136ac4
BLAKE2b-256 9faaace2134c56ee22306e869618e2f6d792289bab8be395acb7858f262db562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c756b6cc924b39e22bd85f10a54c8b83e90ade725bfc5d4943e07b23323b903
MD5 3def1e96b36c1cc08e10e104fd854ded
BLAKE2b-256 bbd1e22572dc31b42e89dc3820a04a3ede8b5b66fd4992b07d2b128aad74b9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe30c0afad353d71d19ebb1e8bcc6deaa38293bed2cb3f8c00ee7fe575791a44
MD5 69cb813b4e586639cce020e02e5362d0
BLAKE2b-256 ee606488cd87fc0fc608352d340d49414e32c7b3082b31eb7e12b896c0f0e7c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae7fe715e157d4ee3ea3026e2009cd93fc83125cd40aa1111d76bcae48022174
MD5 13765b19b3b69bddc7db6dec072b2d69
BLAKE2b-256 8b74c99da518e169f57f2081917b0b61fe944867934967e3e37e03350190c370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3db1d06301e03eb033c38b23981c485c069ceb8ca2c45cdb6efe50a05030f033
MD5 5a510fa38fb396baf2080369d850ab57
BLAKE2b-256 199ea1d143e01dd3459709e479689362ea6dca36cda0502311ee1c662d9d2dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dea96f6f7f2be576cc355edef87cab08740e0db21b91205fb722dd32cf595016
MD5 9acfc0829c933806da2261542b1196f5
BLAKE2b-256 b65cc6d6533025562d15a7c1c1914aa279c781174ac5bf74bb69f5acf99868dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cecb07692cfe198228c24d684429df3418095da815a5ff00ece67cd4188dcd4
MD5 cf8555beb045feb57c4d2d4ff9b38d07
BLAKE2b-256 8afc291010ba6e490418d7703f6679acafc99fb67fc8770299bfa102de529786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 810913a51c538febd2d831bd58bcc86c6effc442699a976912eb2ad33b94a043
MD5 1f6e2cae3ea8a69fd86bcc48b5cda934
BLAKE2b-256 82a120d06c45d68c8afa7afe3dd2656f37c7a5bde0806b4d0f9698a5110ddae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb952c3f9127acd2bf90bb1b4a2c1cafad5fcc2a742355e01a15a880810f96d5
MD5 023e596626067b00b85987a0feaa9ea0
BLAKE2b-256 361bbffe0770000f31854769a6cd190c584b5c769fdc6cc31aa9b908e410d4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 903c0ced94240d0649e0503125c3ba2b91a355a89b9d7b842547f85d005c5e12
MD5 3d99bb760d9dd55cba4224942f533492
BLAKE2b-256 985107cf8478bcdd32db39aad9e6438b53fb62771beb8222406903b7a8f733ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b747786b343450a1562951fde90a31e61a025fbc28a865851a807e635bf4d872
MD5 3244e9019b427bea27fb9b870211748b
BLAKE2b-256 4509cc14fc4fa07616d44987f6b9133cd146f803de2081f4218225dc164f7c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cc94becaa5215047b10b27ef1edb175644d667d77e950fd98f8f9e1aa43a2d9
MD5 a5c45518ab015a87f4dc4d76b92ba753
BLAKE2b-256 655562e4eb460e30d3f5bda05d94c2461a26e82b7ffe23364e342ac8b3ce4109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40749eaafa6810c20a933130fea39380d7f6b32c9db6201a24ee81c2dff019d7
MD5 350e5294c4a2019bab0a4028f3a42671
BLAKE2b-256 562475ee736fa15c02adff086e6427c06b334e2c0696fa79764f652acb0ebbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11b4ce49ef69367800481bb6b2ea9c560ab4f672f7e11270e636a49919f94c8e
MD5 309d3f0545888b7d2cfc1bd4370a4bd3
BLAKE2b-256 cad16e9ac3e135696208e62c5c7d37852ca293cccb72595fac91ccd55383218e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa5b6b414aecf4345b5692de927acb9b92510b09dc4f964e578d45ccf30083c7
MD5 5aec16f726103c90697ba26682dd6d8e
BLAKE2b-256 4e482c19ad59f40607932bc1e48c7d1010e9ccd4241830bd3510a0b39686960d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47a2659731536a5054ce39671578da44c3de9db13daaeb299060eb3defcca599
MD5 2f9c296736d8282805c324bafc2c5b75
BLAKE2b-256 b85c043e9d31436f184f823ed0b77bccd44cbc32154b7d2fc9474e818ddb2ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f62e97158ed943b97f2ce547b648695bf2c22367aed6157cbe149773897db3c4
MD5 191f3a41eaeaba64286ee430259ef3a6
BLAKE2b-256 202ec62108be3953a32a78df7370d37d8f55d6cf983f18773c4e53d04a7453de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56c9cf295ddff51e20bf76c8f6ce8dd7c20c4b2b0533a64701175c7a7e8a0c2b
MD5 3ed108a9809f976b7177b0dcb9bc6d55
BLAKE2b-256 81e57a2e14e02127f7a34a88b153573b5c366b1e5148b6e8f0e5828681b2fc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1da9a8aeed2247868616488351b317c1662bdbe79a1b3ccb3e05c74f10d94b4
MD5 6ea0d70fb5c716220cdc40339253fc2e
BLAKE2b-256 c932c10c6d0f95d8e869591d4d40645d95a964ad5c44dbc601da5466e61f64d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11ccbfb801c099993dacf08470e14805c04524a412bb5355ab61e8e0459b9622
MD5 b658e94cd8d75e0831ab5e297cabc6eb
BLAKE2b-256 9e90894f8ff5f2ae459fd18a66587d8e8936e6ecbf8bb0e6cc6d55eb77d46173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9615c187943b33effebdf9f722eefb80749b0b64a977ad64534a5e2085be6486
MD5 8ca797338f6ca6d88de8f8416d22a9d7
BLAKE2b-256 e767570a6537b31f7dcba4740e4d1633c5c48130d5551cc71239c30d2e0e1230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2817e338741c83bbf5607c13e4426581e4038e2eeeb73868341011c971190f2
MD5 e5565f5cf9642d9d437d86d64d6f6862
BLAKE2b-256 c806507cb0ffc6c23653028cab51163bb710353eac571582cad79e6a57bded57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72d4b4cea38c9385ec107a113abf448a20c61daceacf7d4f4feea7b4f3297710
MD5 36b2217c0a78a06904c8d4d987ef750c
BLAKE2b-256 5e339181aa28139d10dccc0872c4bbbd7e3932b6e2d9dd98399520110033bfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcb9d62c771084469f4b354663780803529d04292b7a84a85cef3834b86e4a86
MD5 d8906830ec42052a9301d6a2808000c8
BLAKE2b-256 75669ab30f4e7452069044147ae29b1e08d8d12336541937a5cceb1441e80c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14761d675b8c2ad7eb42fdc39ae10fa0cb8dfcbf2199a58dc380d9778ef772da
MD5 2dda15c73b3b845eb25ff68eab4cb404
BLAKE2b-256 8ff1b914bcf1768677d40a09d20b2669fd6a0a715f549efbad4e97522395d16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 302cad71321a857c09dca06ccc81afc0ed173e28de4545cb7106dd352d1591c2
MD5 b4728dc0a0d9cf4738583401003ef621
BLAKE2b-256 5db72061ac283b5f4215241d07f00ffb42fc3f3790126ddca935bb0052d8307f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338ef0811dc13c7ecafdd5e8b3d8f1215f284fc574b3421891852f4b5616a9fe
MD5 1985defe57abbb79eb8d7fd0a6291129
BLAKE2b-256 72bd6c66f3cb67b171f8c704e5966c92563c997fcfcf93d8a59f3139a1e9c0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 968571751daf5e173a2b23a382cf9748fcb843c2e67702175780eb8412f6e379
MD5 e77ae4950c4781a967008ea3a89f7616
BLAKE2b-256 c0e9156f07f81cac3c4fbc792073df5c490d369c92876661cc18196c37fe85da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2231cd4291c0d1a31bf8187ef68ab4e0350400e9921010fd0281fe657fd94595
MD5 719fd49a8343a29b0251fc901e368b93
BLAKE2b-256 161c73f3210b9c891653819c1748a393da265a2108d99cccc5dcb87fbb2a3217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7913b9f9f453f44dbce70cc7c77196dc747995dc080e2beb92813ce2bb8db57c
MD5 4c03095bc4500af9dc46ee416111d9de
BLAKE2b-256 a9b4f2541f39f9c714bc61323a1718e4370fcd699a1d5c4ff157c875d2e0f528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10882409877cb55b04ca685a0568ebe03deda8caa32a08efa0fc0abb10ed23ff
MD5 2855dcfe8c6836b66adb6c6e68d6ff3d
BLAKE2b-256 d1674a5110852b5ca382daad4c52c6737b3fda1958e682ad30c486e838cc89c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92164f2f73103c18bd56289c86af27e3bb26ab786d59b5c0ba820174d5ece0e2
MD5 6a9e051555d94ddd37ce1a666de978d4
BLAKE2b-256 7ea8f189818f8935f4cf7d7e6b6a5f76a42360fdf39f85c952449e1dc585e391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 949b411bdc59be75ec3e900177a70aaa2011f092005e014535d308cb3b92d9ca
MD5 d751fa0da71741facc7d24bc808b0d8c
BLAKE2b-256 70295c732eba358b47745c247c4f9d832d8e10ad4339d2edba972fed49f0f2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec585493e826cbb2da8b44ba9cf7be18c1b936cd61587dcc5e9094b8ce9a237c
MD5 cfb91420552fb22ee3b57b68c870029d
BLAKE2b-256 5bf74b2399dffd97be7c9e421a32c7a89789f663e806b14c6877344f67e5d2fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3c9b5fde549245cd45124707006f9d200925308b85b0df82e5f20f1056ae056
MD5 44446d56b7ff797a08132400cd78b3b7
BLAKE2b-256 ce2413477667d94cae55c9297eea93962043020e510835171bdd80ba4c2843a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31c3fe5632478f42f1c8fe44c3058fbf4e33e22d65ff8961eee4163cf1c356fe
MD5 d56032150d9f0a2d4d9ffc428625f65c
BLAKE2b-256 73d2d52f4cc8b11f5efc559e3db96089e9e9b6fa4a8588a7104c9b8949597b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23b422ced6cccd04e963abc577a99485f9a7101d9d95f55951bbd94c0ac63463
MD5 3e70b91e3eabf50ea5c602724a67e1a7
BLAKE2b-256 2b0b517ce5bff516ce55125b54a788a4b720f1c0dd2aadfcc594170e7ee395ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3219678496248803065d3a9ef134aedb9a3e6f5050c98a5aefb79030542fc07e
MD5 998ca69bdf372acde8b3c3472f3fcc80
BLAKE2b-256 b6fa0d515f63dcb14470001226d592a7f2bf8cea1c0c0494f8a5a747563caa19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e137261fda4beb01c1a87a8c14f5d3e60cf13a69b1b3c954abf0ddc432605802
MD5 02b303ad82fc43550ece7bacd2294141
BLAKE2b-256 73a9bcec09e40fdad417654897296d18ab28b02c03f25d9d05bca5f9358d52c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0f27d3285b66df4bf4eb66d71122023fa27d35d04b6a26156ae896715039b96
MD5 307277a34acb4f73d7dd1b9cb30f3c7e
BLAKE2b-256 c232c7dd21f000d7f8db600058e72e34b5df101e4d8e13ef1789c258e0641ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf4a2f60400c8b029339682f1dac0bb073b63464e72452ad305d61a6b9ea8806
MD5 bffc2e483d1dd0b702b7b2d00bd766da
BLAKE2b-256 704fab00f5330b305b3559e92f734fa761af696d9001a0c06a778b6ad4fea162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 355a569572befcbbdf34113daf82ff792f9ab026d2cd3d539a4ca8a8218f23f1
MD5 dcd57f735aa1b0db568f5bef6a907f2a
BLAKE2b-256 1d96738a223bbb1014036d16edf91cf3e8fdf9ccc40f34836bd65d8680c51c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 312c5f0d37ab77d557001f682b33e85fba75aa8e044c7901460062ec79c203ad
MD5 42aab51f4bf526cc702f115f00ae7ced
BLAKE2b-256 5e085b5fd122d2af128fa92aca7cc66e229d959ddcf9937e3cdbe117b4358c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e1fca3011f72e787e7dc0b6ccc297eb6318dbee54c16999942a10e806fb11fa
MD5 a0a2e637f45602e751eb5bde990b301a
BLAKE2b-256 fdb682a712cb901ec0102482109091a55e1d01bf1779871417424bbc2ff8f593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da5dd4c5a8b2b306ed61fcf5c6e559f6f4f0f2cf14d2a6366afd8f3d2de49fcb
MD5 7da8acb6e76db485019d5ecf7b55ee6e
BLAKE2b-256 04656b698b30b5ae48b0975346e1ea510b21e169f505f31d8fae5612c1f2ca21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 305fd131ca3b8010a3ad16b9658b69886b06c5f824d630a796d5f460f8f879df
MD5 7861daf4663d81e9747dbe81ad2e0f34
BLAKE2b-256 ad896dee7bd16152cf15f9ffb83167fdac594faf3cabc4def657a6240d4e8fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c47ef71a59aa68390776262e16e2830c2aa40d266da811691cef82b351fb03e0
MD5 de4940134f21bb2630e4fc0a185b40d7
BLAKE2b-256 e3e48a0290226a7769aaa19434fbaada7c08d52cb9bb3717631454706298da9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8df539fc8c641907d1be6bae73a3a33f35ad28359b223b2ad6a87f06f18c49fa
MD5 056b6d999ce1728d6b72096c9b87a92e
BLAKE2b-256 c773e75d78fa17570e84b4634bc6b5376ef367b5941773486bd94a2dd9064383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89c94d2b29ef5f5b00090611cf6047b97b58a1f7193259100d0eb48a88278cc0
MD5 495dedbc95eac95b1907097b523875db
BLAKE2b-256 985310663b0dac864b12714199f9fcdc08dfd4f7b56bd321c71c1eca1232492c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9512d81c32eb2831d32e78fa1a0cc6840940cfc648dcf2e26e0c6d1054cee96
MD5 416e521bcf286e2ef5b45a5ea304800b
BLAKE2b-256 c06f1e6097dc2cabfb5d4b5d90767f009df0bc1905f69ef40da31ea2de1bfc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d4835e6d06fa0f5a8612351b65cb9961afa8a5527b192c617f140b221d0e651
MD5 05da3e4cc641411a31e2f46e71ca627a
BLAKE2b-256 905b4230a2cd9a6d9ad6125aa15078f3a52f46ad0abf7b54283f574903352ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56a8a5898c9d2c885ed61a0fd9c5306280c2190a46c9c070e19b185928add03c
MD5 ef55de890b40003518555cfbc787ef18
BLAKE2b-256 2c3772f721447ded4e740a2e80dc912106525f29ae3532da0f69e97f1781b200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36d1a50db44dcba75e4617c8c0052ad8d04f3ea9c5f7231e2dd9e7ec57b98a90
MD5 5e30292e76f90507c8bfc5bc48100355
BLAKE2b-256 426ffdc55f14f6c2eba49174e1d20d1913ff66627a0e2f1a7c2aaab13fa06f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41aee5990d827c8a3d35b782de411144045d23fe9bf24ce8155f864ce2c3517a
MD5 d1a8a1f440295a57556c92b053822354
BLAKE2b-256 df0b3d4e4b6ea84180764f6d729feee7ad1888e785b65942ef7f31f380f8031a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fc691e3e7566c16223c95e8015daa166d635b80eaa72db7b8ea62a20eb83b3f
MD5 c764bd0994589d525049ba963ef40d8f
BLAKE2b-256 482669a66cd7dff9cd512a4f46173e3b30dadcc9290e461003e4c1d49f1de300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for slatedb-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be6af11758979d39871c9f40562c04f48fc5af67ca3b92037cc3326e72cf927e
MD5 1cb8dbf23092d83e58f773d854923223
BLAKE2b-256 5d5c728624bb5538cc5cb1865cfcaf2ae280767ec7ae0e07ca98b0b4330bc3d0

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