A Python binding for SlateDB
Project description
WARNING
This is alpha software and is not yet ready for production use. Missing features:
- Only uses in-memory object storage
- No range query
- No checkpoints
- No builders
- ... and more
Please see SlateDB's Python Github issues to contribute.
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
Usage
Basic Operations
from slatedb import SlateDB
# Create or open a database
db = SlateDB("/path/to/your/database")
# Put a key-value pair
db.put(b"hello", b"world")
# Retrieve a value
value = db.get(b"hello") # Returns b"world"
# Delete a key-value pair
db.delete(b"hello")
# Always close when done
db.close()
Asynchronous API
SlateDB also provides async methods for use with asyncio:
import asyncio
from slatedb import SlateDB
async def main():
db = SlateDB("/path/to/your/database")
# Async operations
await db.put_async(b"hello", b"async world")
value = await db.get_async(b"hello")
await db.delete_async(b"hello")
# Don't forget to close
db.close()
# Run the async example
asyncio.run(main())
Error Handling
Most methods raise ValueError for errors like empty keys or database operation failures:
try:
db.put(b"", b"This will fail")
except ValueError as e:
print(f"Error: {e}")
Documentation
There's no Python documentation for SlateDB. Checkout slatedb.io for architecture and read the Python binding source code for API documentation.
License
SlateDB is licensed under the Apache License, Version 2.0.
Foundation
SlateDB is a member of the Commonhaus Foundation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slatedb-0.7.0.tar.gz.
File metadata
- Download URL: slatedb-0.7.0.tar.gz
- Upload date:
- Size: 270.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1187f3b3bcfd38a42c3b792f25a9fa687d2cd3328678494ffbd5d6b2b5d6c4e
|
|
| MD5 |
d6d9fdc1fb99f446a57e3582f200c794
|
|
| BLAKE2b-256 |
bc87744f58aca84deef3fbf087dce42d2867d9fac5f032bab61a6daee61249c6
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b4f314869604dd544800cff8e72e6f9e0d4571fed9d10a13f44bfd8b3e016e8
|
|
| MD5 |
65121e9996ea94338d40fad966713690
|
|
| BLAKE2b-256 |
8c528449d5ac133985f48e259af4b295a65255ff655415abffe7fb06a3af92ee
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6692ce1389e7bf619df9f17ac0d9034f80d554f70954cfd903d84c2208807923
|
|
| MD5 |
66cb48b1294fb8be63278cf5e1307c27
|
|
| BLAKE2b-256 |
7c3a6ec113fa593f1d784f96359d7ab887d476b36f67136be849d5f43077e857
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eae121f3232dd7b24b32302c4b362ad4c72e72908632ebeaa4a59505f6b2f36d
|
|
| MD5 |
237571dfbf67c6ac439e2792a584a755
|
|
| BLAKE2b-256 |
20bcce1af7f4abb43e9d3226756e6a58b565c7510462974a7da2a3a537c35b5d
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f683332172318f1f442af2777d53f76678c8f24461687a695c90c2f9bd43f5f
|
|
| MD5 |
c08f0549e66c5d0746ae273633d45c6d
|
|
| BLAKE2b-256 |
7f6f5c17ec2c1611a112ee2ef8b3fe09051272fc43bafef551c831b55919b64d
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a8d9a908ff5d3a025bc691ebac484824fe014651fa9b3aa71bc6678992a7667
|
|
| MD5 |
efa71ab11d6944db0de4aebd193a1071
|
|
| BLAKE2b-256 |
95d991731e384d9f4f3b686b95e0a24ec0190b42f112379308d97e37f5f7b51d
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f87c43cf7b72b8661d77b52e62164454c2bb1cacf7972f41701f198266b76d06
|
|
| MD5 |
a5f9dddc39cecdfd99457cf2d03dc51f
|
|
| BLAKE2b-256 |
ebcef86b4640ffa5c33d5979ec5cb7ca25992ef724bafe43bc3b3c5d531eda82
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f906615dd12382b972a0e1bb7a90f47d63d5e226dc021119f1b5582fe8665d0
|
|
| MD5 |
783fca978ae8e1d617b12fd1c5e568b9
|
|
| BLAKE2b-256 |
eff8211a7a9ad0ecff35136b0bad5c8528828575a7ec1d21d2c9ce161d0f3efc
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a6713c3a8881e080716b98f07e8e6368297db71154ba0e168147ec4e5bef64c
|
|
| MD5 |
7490d18f2b581f9cab6a951e596bb0df
|
|
| BLAKE2b-256 |
14be6217114faa6f0526cbbd022ede59425104d40dc7e6697859c069af0ff8cc
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
627a108e4016c8b80277bb9b613669db161a8575cfdc6b5dcbba46314f5cd78e
|
|
| MD5 |
7dcd9e5973c2e0b8f2077f983c351574
|
|
| BLAKE2b-256 |
aafbb702e934fd127458c7a831ea1cc586614d3614635efce9cbe785417751e1
|
File details
Details for the file slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
783f3afaef0cc6301281420ce4373dbfd6b0cb89f78e3995a7e3a0d8968c4d15
|
|
| MD5 |
7b52b4bd6cb73ba3ea74a525b0fec6db
|
|
| BLAKE2b-256 |
3be90ad45e841afeb42ad6313fad54233e434acfbdbb8a0d1363836f4607fd72
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1740a8f1682f2cab6d3835a1341e01ffbf60c20cd591c25885fc6e23e579030d
|
|
| MD5 |
fc55ad736592ba00b740930640116525
|
|
| BLAKE2b-256 |
1790765827bd7e9f471f1efcf516875469c44af7dcc64a82d0ea698089e90392
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
154cbc7eccdab9066e028751a294fc494334d13c5ed3f1888300650782b037d5
|
|
| MD5 |
6848d14e8bbc9d91c3053f337c6c197f
|
|
| BLAKE2b-256 |
3719c6378b7b60f7d1fa56295532f431c623c349c2daf27ba8fe7815c840610a
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73527afe7e2a58ba990c51c0ea5b804b599f91dca450d61e38a3daa82427ad9f
|
|
| MD5 |
4514b9d4f8619a022fd4df44085745a9
|
|
| BLAKE2b-256 |
d1c236215bc2ad16db8075224532cf2852947d687d15398ffc2381776a12e208
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e06d7410bb60688168bbb037cb6c837136dc9ec1297d52cc5cf6abafd83efd1
|
|
| MD5 |
3ecb500f9fcee2253a533ee8c8b5a060
|
|
| BLAKE2b-256 |
123f5041ce6bad2fc3c50504fc76876c27a7b8bc8b23ee4365218a02f837f45f
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
134c3df829d4ccd8c47b447d96b9916f09a39e96df4ccc06ca868bfaa120d50c
|
|
| MD5 |
779f06ed677cc4641ac15c51401f6da4
|
|
| BLAKE2b-256 |
0eebc973b6cab774f2813e21d4bf9ae977c4f2476d8ab44c03217a58be5a93b1
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db4cd74874e7db045da104ca762cdf7b3df19c02f0b54ac611d96e8dbc46e9d
|
|
| MD5 |
a69f42c008db98db93e90fabf83b4925
|
|
| BLAKE2b-256 |
5750ccdeb28ce72dc2041f8ecbb17dea8d1529c23d2b06e189673776052ae6d7
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0af43f92de4132bdf55b9ec2a076bc4295671f1b2914b1bc88bea94e7a5386af
|
|
| MD5 |
eb990a1f1c5b7b601a4e01a2fd1f7416
|
|
| BLAKE2b-256 |
0dd2cc7d774f0df62b73a831f2fdd0e925a94ef1cb31a58e73fb0e1cdf2e84fa
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fac60a9f8c449f8fa41a92ceb56c41df2ebbabf1e1be2fbebae0ab2cbc81c80c
|
|
| MD5 |
94f885a1000770c6ec6417e7ccd6d5c7
|
|
| BLAKE2b-256 |
90ef555f4f1aea6c10783fb62c611e29a9a39040de46452be1d95cf496718f55
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e7041515737e8b808b8f8ae331eca43f3e7f7c6f040dee10ead37c4ab014864
|
|
| MD5 |
33c5e12f8fe82dd8e3578c228c96dceb
|
|
| BLAKE2b-256 |
d2a6fccba7c5c70dd40a57353fe3e1d89fe7654fa5780ad4c366e1544b9c185c
|
File details
Details for the file slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bb169f97ea848a03e487782f62c37795e1a4199b5f10b0811d11b749a4eba8c
|
|
| MD5 |
f73a36698219dd3ede2a9ee592e0ce12
|
|
| BLAKE2b-256 |
e7ac22cda0e3d88014f2b3ea197c2764d2bdef04918514df76b2418c6a6d21de
|
File details
Details for the file slatedb-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4af731aae50e416e1f7abc7ad0e00415f6473ee926e3ddc45ccaf83bf9e7a5c
|
|
| MD5 |
63db8f773e6898934513aa6b1be0c125
|
|
| BLAKE2b-256 |
9597194767e96aca3e16c9325bd75da25d39d11416027c2a524cab8fc96dea32
|
File details
Details for the file slatedb-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cecb69caa62ca72d14e63b1511197bda25d2be05d7b888a1a9c05b0a9cc5717
|
|
| MD5 |
6752efdb47f8fcec8944b7ae2d4ae6ef
|
|
| BLAKE2b-256 |
9918b49cc9febf30e9e5029b476cb7d071c123e213e19762b91aae4a74462666
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cc1337877be39cd4ab47846a7da9daee57b8e3c7d1e172f51b61441f37e7d78
|
|
| MD5 |
3f88f4a90dd2dde183a8c670189fe114
|
|
| BLAKE2b-256 |
459b64b37cd53f0a11c239335b954424eecb3720e8f1518184594b74ab31a1f5
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ac5cbf09b7e0cff0e092e2e1a1e3e2322bd9b8a10ea089ecf67c605cf41f80b
|
|
| MD5 |
c85a461944608d246977c5d41f604312
|
|
| BLAKE2b-256 |
1b77dde16d805b731b3b34e6f7db5e834e5d40e56dd5f8ca5c8c600b0d07b58e
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acee512210b10f79e18bf66d7404a1ca1a3c1a5577f7c42af061d1b096989cf6
|
|
| MD5 |
c1b41ea588c03ae74b7772464a440c9f
|
|
| BLAKE2b-256 |
f56642a9c7c8810806b81f9760c784b2c57bc71ebc34a89e04efc3ca3b9575ab
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26a6251bbdc2f2ca5bd203eeae41f41927e592aa1e9cb53a32e8bad19ef2d8ed
|
|
| MD5 |
06b96971c9059f41d265b9c44a5c9977
|
|
| BLAKE2b-256 |
5f07740d0abb60b7b69fab04c4b3c164273cafbd03c4e66e51bf49a68ff8a809
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24e0f2e2e775be696fc4c41f3c20a43b540f3375e62aa0425f86d7ba6cf8f14b
|
|
| MD5 |
b6e769b688c62b5e9314908b66e1e12d
|
|
| BLAKE2b-256 |
25a8e858c4f6214c18caa4afe2282001092af7af051b6b8be70705f24c874ba9
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbdc366390953cb4254635702809a6bfddfeee04972c345f53476dce70799d6c
|
|
| MD5 |
f97ebe9cf75722bb50d3d0b7c8f325ab
|
|
| BLAKE2b-256 |
b0673b510ec8b3be143c05d334aca7154287a85001204baf8172b2c415bfb68e
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78388a5a741dbc4029d549e67328d45a80c1395f45790de1a36a5674fa0fab90
|
|
| MD5 |
1e07750d1a8458cad04d22ed358f4525
|
|
| BLAKE2b-256 |
b86b0a11de978b36c309570d0e66038ad5d1f35bf49860afb5234dfbba53db54
|
File details
Details for the file slatedb-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e6712aea549de7d8abd7feef80d71a64d8f165496ee6791b18ee7c18ebb2aad
|
|
| MD5 |
f76cb6a5013f22d8f087c250eaedfe21
|
|
| BLAKE2b-256 |
0e3ae0c76076fb8bafa4faeda23540b0af8478fbf773df7050474889bf38d173
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c6e7f3613b628c81100433953851d73cb21df0a5e4633bf154c64a07c2bab8c
|
|
| MD5 |
a62471f663c2403358eba820a5674c96
|
|
| BLAKE2b-256 |
431321872418564ac61973908b44352cf5437235855a88cb588161bf31484ae9
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e572300355020bd2d537107cae19c30277e243209f8215af12fc5521f6d6705b
|
|
| MD5 |
3b512fa8927ec3fe10eb68df3312cefe
|
|
| BLAKE2b-256 |
1ed0ce345ad928e2fd291bcf0d2a66a4edd3d728a9a7a27e1b235b6c53553582
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a069ced8bfbc1e931b5335522fc2e788ce46a10857ee2e5ad03c95145eaba5e5
|
|
| MD5 |
8d6f012287b86fa991a9b87c3b4afb53
|
|
| BLAKE2b-256 |
15f4face0333ce81f11df2c487b94a565c12e067169835dad6d564fb7fe021bc
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32914e96236f39661a2cee0df26dd3d0d7aa8f9d1e4d4f9a9d1b9990878588a6
|
|
| MD5 |
7496c8e526293ab566a3e7eb36fab605
|
|
| BLAKE2b-256 |
6f55686cbd86bbecf1661fb560e9ecae63bac04748dda01d5b0f99f2a8544fb7
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c44cf585e5b731a847ab13de13617b9890ccf2891a6cb5be37b92d0411458173
|
|
| MD5 |
2bcfc452fa7c31461ab6fba7737e2663
|
|
| BLAKE2b-256 |
d517c91aafe8e9dd0a5425b5de2eb6ecf03d55d96d5bb41463a6b4eda73cc550
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fba8127518144d23b0d71b79ceab635808a510f740417ef4f6de8569ac53c87
|
|
| MD5 |
0b57d4c1dd0ecd8fc7e82cb263e26c0b
|
|
| BLAKE2b-256 |
93a63720a7ffcd97fc24f919c2cc28b69925c56a7ce6b2a34c253641d6fa1e41
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da00879e62b1c66f3b380885d5f01a6d41730decc5e6498a36b8e48df231ffa7
|
|
| MD5 |
28ea4be995f4507d08be3115dc37c26c
|
|
| BLAKE2b-256 |
206c94a9be2056bb52dce2ca128e1adc6114b50446c4e5cb0ae344486ea6b3dd
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e86ffc299f0b93cee82752434034a420cde3c4db7652942bc2f0b1c597ce055b
|
|
| MD5 |
0aa72532b8489325b2bb49b87b2b228a
|
|
| BLAKE2b-256 |
5f58e5b618849af0835911ae3e467ad65219c4bed0af43a0668ab2e46a143203
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd84bf69b3c054c1bf79fd8b706dd92550c3dac1a22a36ed085379e790fe1754
|
|
| MD5 |
4e241095e071566e0b1dbfe686bf1892
|
|
| BLAKE2b-256 |
82bd83d941c2d79bd2f0576097f72bc73baed38845df6f0869ca9f441fe66f04
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f2b39b7a66fd638f49b3e6f4bbc8041b3b35d955c0ee128b9c4b36615d484d7
|
|
| MD5 |
204e4882130f1ad69c2748361ff93855
|
|
| BLAKE2b-256 |
26855534b100f967b3765c3875dcaf8947283d9ee80de88991a6fe2d83d044ec
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf671c776c0c5f234b3681723dd22227f32d5a47ccd43961db93e01cf9d82498
|
|
| MD5 |
ca479d70d339f1dd5e51a5c6234a7a10
|
|
| BLAKE2b-256 |
1942a39a84c023c8ec2ee726342fcac584f2a396c2c548148a2420114dc34626
|
File details
Details for the file slatedb-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4a92a0f032e9481899a95c5f9162420275294e133ca53657a034e09032689c2
|
|
| MD5 |
80d68a27e5d39c958366cc3da925c18b
|
|
| BLAKE2b-256 |
2e6ad607768e3f9570cb439f21fa70868810c7bca16ce485c86a5fcfdd89ca35
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7393a2644670a5e8baa94704f01d0f5be113bcf6f9cd9f9b2226a13469f90492
|
|
| MD5 |
b99a48bbb362c8500678797a07158bbe
|
|
| BLAKE2b-256 |
988211b57725a0a7e61d5c0c37ac863843b64f077ece62bf0d1aaecc2b5d0789
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
604f19dba27ad133791016ea7d0f0748f2417f71688006c786dbd4754de64575
|
|
| MD5 |
1582d9597c8897f0c54c2ce5c6bb688f
|
|
| BLAKE2b-256 |
bc70b936b3b76b1a25ffbdbf50519db4f4f67ada7b8f63ebeeebfc8f3e35c5d4
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39ade058dac4324c28c259522caeb256c6467153e951862a7155cc2789f113c1
|
|
| MD5 |
fdf1597f342c273bcb7e43fe2faf547d
|
|
| BLAKE2b-256 |
61ddf007a277ed37cab4db0217337751fc1e1d9d9ad3948afa1722855ff63d0c
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e13db629f27085e770240069e4d087223f086539212380b693a81c583bcb1a6
|
|
| MD5 |
a5aeee5f779bee4979d806fd393574b6
|
|
| BLAKE2b-256 |
4e0f2bb147fd245ad978590c7941456400be53422fd65de4f3b26fdc86f109bd
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8d6ee761fa49685c70a05abae8e90498a10d78fa78db6b3d497d6bb4f069c27
|
|
| MD5 |
6638192fe8754b45c6ddfdb1b55deca9
|
|
| BLAKE2b-256 |
4c3478799256f4caa80dd72fc9c05a46e68fe2ee2f4a973efddf5cfeef585bb9
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9191fc3d68b3bed966d281ba91612ba85e72a1b41ae58eb2efbc94ec960d6991
|
|
| MD5 |
128ca3e60b9eb780b922cd6642b2292a
|
|
| BLAKE2b-256 |
dcf39a0c1b1f899a3a99bf36dc1fd0c148b976180f0ca3add5ad38aac114c5a5
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c14df2e9908007f3d0e1f2c8ca8b435953e48231ecb5ee484b9b201fb817d169
|
|
| MD5 |
276f259ef6f9a3dd929439c411cf98e9
|
|
| BLAKE2b-256 |
40d177ada12f00042d8192c9412721cdd36275c904faa3c77131bb78ea095869
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5dd31a6500f270f950a6e2f910b8f5c6a013828fdbe7f3cf1bf462b0c4ca50b
|
|
| MD5 |
4d67ceea6880a5f6c89aa3a7c197ace4
|
|
| BLAKE2b-256 |
7e74a6d17d334228841a174619d37255b37fa0be89d2e4d570f4185cf78b50fb
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db0ff50d7cfcad21923f5a6654c0735f008a31d48f41148352b195e4455bf1e4
|
|
| MD5 |
65f6eaae9472596ab773753f299b0f69
|
|
| BLAKE2b-256 |
417065615246433b4d9f8ceaf12953d4b743e074aea1bac7caec9bed283cd864
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9212635af8672024cd5cde880bbcf24b8e651d98e7b90f1f41470fcaba36023e
|
|
| MD5 |
afe0cafded8c235cc96c96778ce85aa3
|
|
| BLAKE2b-256 |
475bbbdcad2d8da6dcce43c7cfbb641988bd16f706ff16b90890230ef4279215
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eee07b80b86b2e09e592a133791db73eb2c819379e7664f89475a206e7e3871c
|
|
| MD5 |
06333caee6f90f99ec7335bd79b5a1ce
|
|
| BLAKE2b-256 |
751a71615d9788412cfc22e8333713bd33a142923b64cc78be19525b30d69c06
|
File details
Details for the file slatedb-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38a15857fcc34030f7a0e30d83dc52fc4cfdab01503ff5a21210be8b085248ed
|
|
| MD5 |
ced8486ee3f76d0aafea72d5f5a03c3d
|
|
| BLAKE2b-256 |
e35dd6b6739639e1a31c3c7c86c146b91d7ebf113817117ab558877010aa7b56
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
630fdec1fad0bd25ac604e2ed2c3ed1cb0ed0e76fe9689af2f2f57ac1f7fe531
|
|
| MD5 |
8614a2e4af130468ecb9c97196aac38f
|
|
| BLAKE2b-256 |
6b02039c3f9eb4ecac3b365a96916c2c9e583f2e7b40e9a4f5680dc3112ee21e
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
652e1d19dd1ab051171e126c388b2b4ec754209a45f7a28c32749ade99945924
|
|
| MD5 |
424d487738b59c67e1025764014009e3
|
|
| BLAKE2b-256 |
6745f3412288fb47298e485aa3155000527403522ac816e4ced8467bb8d579e8
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa53ce1ecd98c8935442b49dd34547ab0573bc38556fcdea770f2d16498b411d
|
|
| MD5 |
7bea2b3449561861dabb2e95616caf18
|
|
| BLAKE2b-256 |
6041db36a2da592b3dad5758db2be6ed266ae2ec51aa9d8e69e8af7d05f8e9c4
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4737b4cf06ce440fe1dbe278addad06a0267f7aa90d281d2fd22c3cb122056b3
|
|
| MD5 |
155c619576e9587863e8cdbd1e92ffbd
|
|
| BLAKE2b-256 |
83e6c1ad8533a146c1b77fcabe9b7235be2244f3a16c2b0e0b5baa97f3200a00
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934007416670da829b7e4e4588d021bef2b0cee497aee115026c8510c71579ef
|
|
| MD5 |
402b40ee707e0afde1ae02cfbdfd0e4d
|
|
| BLAKE2b-256 |
426ebdc32ad6aa151af1a76ec40223d7ca0cbde4d969d92b26478a3413157ddd
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
903558e8f117be1727a7535c8a548c090babfa91aa0ed2c2d115b4c874f96c22
|
|
| MD5 |
71caccd6bc0e48d909f481f84088ff17
|
|
| BLAKE2b-256 |
25f4945ea5e7b555c57feaf0dd2710b9ad16c204bc5d3da4dd4021d8443c1a74
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52b0a1c8d8376df7e05a47207112f975a2d7fb6ebc1442f81ff0ba3462a34da3
|
|
| MD5 |
ddfed776c0712ab64930d7f125cf8d32
|
|
| BLAKE2b-256 |
1364eb6ffc5701c1515fc152f86adf7ef470cdbc0022816b247e5b103528a4ac
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac9eda34a859a4b25bc618fefe3fb0102393329209cc6055452291cb3ccedbd2
|
|
| MD5 |
eeb8cb6d6a9ad79d9c9eab4003f51405
|
|
| BLAKE2b-256 |
489c938ff4a046c44f77d80d642afa049f456aae7cfa8d0cf4b60ba154db2246
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b4999bd72a4c9e80599ac931cb4b8c87bc5a250c123bf76846b25b2b04e45c2
|
|
| MD5 |
b210ed63ac21f260038ef2bd354bd2eb
|
|
| BLAKE2b-256 |
2fc6434b98b3456edd67025dc38f4f9ce66c578f632c5693df624c475d3a51a7
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db2fbdbd8416f806272e37c645f5757c4d2b30c1d1a0b54b4dcfb98d2a39387d
|
|
| MD5 |
9ab1d5526c830b6f2b34c9cd6da69cc3
|
|
| BLAKE2b-256 |
a201d060a4afb19fdf0b7760b8d76af7ea06444c55892d1c7cf7aba251a50fe3
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84bed328244b6ee4c0690432246069713a8cabe181250f108bdf87d727a63903
|
|
| MD5 |
08a32f7ce8a38e8bfdbd93d9e21db42c
|
|
| BLAKE2b-256 |
fa4398c22161f9e75908eeaf6b06d82277ae324ba1a785f0c5af4a244016372f
|
File details
Details for the file slatedb-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f7a4d0858639f462615b74b1d42120e43db153a9a02e12f448b1d576c2a327
|
|
| MD5 |
bcabe9e838b7e5e3f244e1099b172d13
|
|
| BLAKE2b-256 |
2469740c554cb2692473d293971f234dcd0ffa5e1751bf506a8b61bc3d6cf99d
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 5.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7af80efe3cd7e2da9923b4316df34dd762e53d55358da1b86f0a22fb80646c1f
|
|
| MD5 |
212376ef09a7c412e6c07a5ba5aecd65
|
|
| BLAKE2b-256 |
7cf8cf20065ce04bc438c41cdc896ff55737f3ea8b6b4f21c15b90d37c5e4175
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaa72724b95f691c9ccbda65d3738a028372dc45a17fe7d8b9005a9faea3872f
|
|
| MD5 |
9e38ebc790b09e002e28f4522d2f21d9
|
|
| BLAKE2b-256 |
f3cddb6247336e0f04018f524f2aaeec157cc2da386225f83694c9c98ab67de1
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73b8e2945ca1f9e4b235672c3a1cbdaadfd126d6a78704dc04ba3d8787b0e975
|
|
| MD5 |
04e7fa8860a650e98bac5f6f2b24250e
|
|
| BLAKE2b-256 |
34484e4d9cef20fc15c8687c5d71bc8274e139ac514c1002a4e02f1d1db741f4
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 5.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7fe89cef848055c2f55b574ea6de7db29296f779beecffe285f4e19c89a49df
|
|
| MD5 |
44231ddc4e077d968c72ab5b35a18250
|
|
| BLAKE2b-256 |
c35a3b1556eaa63cc555b8c74c870191421c8706cb6942ded3913db450436dac
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f90e2a94b7c5812ee573f399d073ab66591aa5989a80a66b12963e09e09476e5
|
|
| MD5 |
1e9709d440975f7d58192942965b6373
|
|
| BLAKE2b-256 |
23cf5f7d3b69f4ced7cdd5446660723df35f03e7c8a3c8c55e11f1f52739a17a
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41e4e8968b87c35fcc37d8041974087da89ecf6ca8cc9d2219ad391faa4f50ed
|
|
| MD5 |
5c8e59abd0d8d185e93b50a3c34a279a
|
|
| BLAKE2b-256 |
2f0d11f81e756cfc7f2a64d1a6cb9dabc76b5ac167fe34c87bdd5b4e6f2d78af
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca7702975086512509c143e3c7a96dda3f63adda1d7d6b6c9527489e313d3856
|
|
| MD5 |
4f40c0e3c806a305a6ad9dfbe1e9d998
|
|
| BLAKE2b-256 |
7436f34552276dbaaa2cf592436bf292184892787dcbd73af6dbdf4dcf71f87f
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 5.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7626da22105b582252044cd71729639ac98e9048c8d3fe0f4c3ad4424f0707c
|
|
| MD5 |
c4edb167281b89bc8d7c5821882237cc
|
|
| BLAKE2b-256 |
fbffca0b3aebf1de9f051ba54a0af58cdfc9fd4c1c27d397fdad4d7b8f4249f8
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf559dbbbbe8412ce1eeb446b8ca294d861c03892664d8f2b9289fd10c04a527
|
|
| MD5 |
ea63a94de472b4675703bd9266350eac
|
|
| BLAKE2b-256 |
0c0e1357d373dadb061780b120361c20b87971253aae91dcf92efeb4b5b54796
|
File details
Details for the file slatedb-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: slatedb-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68e1a1d7621e4291e54e6956f9b1d339efc1eaaa6275fcd24abe48acd7b31af0
|
|
| MD5 |
29fa9953a362d77b0bfb431103807619
|
|
| BLAKE2b-256 |
c51a88e834bc2cb40de8cb252b5935b51c19ffb8558ed74455e8c716bf0adbf0
|