Skip to main content

High-performance embedded vector database

Project description

PolarisDB Python Bindings

PolarisDB is a high-performance, embedded vector database written in Rust. This package provides Python bindings for efficient local vector search and storage.

Features

  • 🚀 Fast: Built on Rust with SIMD optimizations.
  • 💾 Embedded: Runs locally without a separate server process.
  • 📦 Simple: Easy-to-use Python API for managing collections and indexes.
  • 🔍 Search: Supports Euclidean, Cosine, and Dot Product distance metrics.
  • 🛡️ Durable: WAL-based persistence for data safety (Collection API).

Installation

pip install polarisdb

Quick Start

In-Memory Index (Brute Force)

Perfect for small datasets or exact search requirements.

import numpy as np
from polarisdb import Index

# Create an index with Cosine similarity and 128 dimensions
index = Index("cosine", 128)

# Insert vectors (ID, Vector)
# Vectors can be lists or numpy arrays
v1 = np.random.rand(128).astype(np.float32)
index.insert(1, v1)

v2 = np.random.rand(128).astype(np.float32)
index.insert(2, v2)

# Search for nearest neighbors
query = np.random.rand(128).astype(np.float32)
results = index.search(query, k=5)

for id, distance in results:
    print(f"Found ID: {id}, Distance: {distance}")

Persistent Collection

Store vectors on disk with crash recovery.

from polarisdb import Collection

# Open or create a collection at the specified path
collection = Collection.open_or_create("./my_collection", 128, "euclidean")

# Insert vectors
v1 = [1.0] * 128
collection.insert(1, v1)

# Persist changes to disk (WAL checkpoint)
collection.flush()

# Search
results = collection.search(v1, k=1)
print(results)

API Reference

Index(metric: str, dimension: int)

Creates an in-memory brute-force index.

  • metric: "cosine", "euclidean", or "dot".
  • dimension: Dimension of vectors (e.g., 128, 768).

Collection.open_or_create(path: str, dimension: int, metric: str)

Opens an existing collection or creates a new one.

  • path: Directory path for storage.
  • dimension: Vector dimension.
  • metric: Distance metric.

License

MIT

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

polarisdb-0.1.1.tar.gz (53.3 kB view details)

Uploaded Source

Built Distributions

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

polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (469.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (555.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (468.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (469.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (471.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polarisdb-0.1.1-cp38-abi3-win_amd64.whl (292.3 kB view details)

Uploaded CPython 3.8+Windows x86-64

polarisdb-0.1.1-cp38-abi3-win32.whl (283.0 kB view details)

Uploaded CPython 3.8+Windows x86

polarisdb-0.1.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446.8 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

polarisdb-0.1.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (472.0 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

polarisdb-0.1.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.4 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

polarisdb-0.1.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (436.0 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARMv7l

polarisdb-0.1.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.4 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

polarisdb-0.1.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl (471.0 kB view details)

Uploaded CPython 3.8+manylinux: glibc 2.5+ i686

polarisdb-0.1.1-cp38-abi3-macosx_11_0_arm64.whl (385.3 kB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

polarisdb-0.1.1-cp38-abi3-macosx_10_12_x86_64.whl (400.1 kB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file polarisdb-0.1.1.tar.gz.

File metadata

  • Download URL: polarisdb-0.1.1.tar.gz
  • Upload date:
  • Size: 53.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for polarisdb-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3651956cc8366122e93253f56865f0c8cd3dcd94c04b74641c02dc22180926e3
MD5 19c532da8a0ccd079ab584a15a768dc1
BLAKE2b-256 2414496cdf16e4a7cc9c6d34c509051aaa42168487f4ea1bf21d6307f52011fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1.tar.gz:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ea2222a43b0a68269b89376e85ebef307515459018348c4da00410fd12d773a
MD5 6a6e3f5b6725047f41a2276f3d757b8f
BLAKE2b-256 d5d60a1d09cf6068d56c70c8b9dd79dda841dca4231692d91fa527217b61fe88

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52d990f4da90350dbbd6b989860cfcabacc50e7a0ada9bd761bd108026f9fe99
MD5 a4676eb11c831015de2000dacd8c4d48
BLAKE2b-256 d67015b2048e8f7e54c7c29e66051bd8f2760f39d46e5d97ae30e88743fabe14

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a20a8f68db79b68e8a98ae0246083d315a76d8728ae3b5521d13fdc057de6c52
MD5 b211be7b2f31310377aa1e2bd7b59274
BLAKE2b-256 16c2979d4ffca90a8b5af072167c5f5b98716b12facd0463ee31c57c61f9e4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b64a09463fc68ab250d1de93e3f9a9470dfeb4011d63d798ab03a2a4683a4797
MD5 17138029c47581ec16a008f7d543d3ae
BLAKE2b-256 b36eba133a053c3642a2fbfee7026631889eb9ed2bb5166ec4c392856db3d544

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c75f815a4eb2164c6db966050e6e628cd9bf126ab325a77161608bcad48d60b2
MD5 b8de2aa701704238a66accd2c4ddce0d
BLAKE2b-256 8eb064af21edd6c77c6103de310eb9ea1f21e9688c18611740cb61a8915f217d

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8220ce849027f005436fe138403fced2087215b6b048a056578e406881e47bb0
MD5 7574cea02943826d65a46a57619f63e4
BLAKE2b-256 0ac0ecb4a469912d571b7dfe725829eee816717dccfcd5c962473ac857420003

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9d9de87f85b91907b73fa6826bb6227de560b3d81c9718d5f908b67069b118a
MD5 2c1c526aa7ab5367a73f22e4e4cbc714
BLAKE2b-256 6e0ddcc96ae238d24df2e7aa88b645e7263713c2174d2850311b1521097e4da4

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65a2262a96ba08d1228df86194a1ebc3773089a5f88da2d76906b415eae3d151
MD5 25397d10e9e209990ef36538c0f0ddf4
BLAKE2b-256 4fa98c2dae31176cd4f6bae313c0c08ee2ff529dc19eb5c17507201a2e54a50f

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4099d72b8c6f6bf81f877f3a6c79451a7838574f51efd78b85851c39d8177623
MD5 d66dd9fa7fb1d4f43fc176e0077aa451
BLAKE2b-256 a20800ed9c1039fd0d3181e965a7583de934e2ef3b3205f70776d6b1abd85fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5836d5a57443ffe631e4f9f3902ba88e607232988df907f08b214dac3a10920d
MD5 19b2dcd8e9332b7fd897fc8f0de1563d
BLAKE2b-256 f64b717e64a8f6c10f9c2d02901e3069c50009ea4a342e1faa8775aab7641afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41929f92354a1b7bd883599106f41202edb42d1c27cce58af72115b46a3ea675
MD5 8a6674977a8b14a3e9e17066212e4eef
BLAKE2b-256 6e4fa2ccf198c2a39db7d8c9d10732859477111d25510793e8860cfc7eb93461

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daae04c38ad2b2e83255c5f13b705b314612bc24209aba8319d41fd88e0ac443
MD5 81af5cc8b54a2dec3d123a9fb434cdeb
BLAKE2b-256 9daac21a599ba97256870bbda15a90e1fae9fbda8ed239defc20175411e4e9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21804283b3f75930338d489d131ed5fb2580c49d6003a0b05b5c09f639d05548
MD5 2cb2cde9b87abbc75d53e83ca1e71196
BLAKE2b-256 d36d6c1bce07216296d458c5d67d7d3939c9cd2a84cf8b175e1c3f2656633dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe7b4791d2ff2f0efd058a20796ea0fa80540a507e7948f785ab2a8cf0dba4ef
MD5 a3b0017ee90eab6d0424c00aee6aad36
BLAKE2b-256 9bfb33cd9119c5f001484efc7e3d74d355cf69fc35f029de75f17b28fb076169

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94dc71dad42d98c334ccc413cd24d59b5ec231b75bcc21ee3680908eb4431b25
MD5 d413adf1471b46bee04f244af8efc957
BLAKE2b-256 f38904406461a3b97f42af897083ff02cd1c730200bad28eb656c6e561a85ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be26e2ba516777b485fa870ab0793185cbaf623d6de691aec721231cb4475954
MD5 b1331c8490e66c27ac68b84a90a12530
BLAKE2b-256 cae64bfaad1418a4b6325ca9bacce2cfa4da23387f0f1330f24a43c18a591294

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: polarisdb-0.1.1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 292.3 kB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 79d50a1b0682b0d111348d47d9ab1b67e61539bf052bb5eb04f5b1d4be1830ae
MD5 6d4234ac6021681f78d573a0f7646f3a
BLAKE2b-256 1b13ec08143cab3abe2304227e2345421a2986b4f6d9d6a55bf0a5de28621727

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-win_amd64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-win32.whl.

File metadata

  • Download URL: polarisdb-0.1.1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 283.0 kB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 de9d2fc4436290ced7f49a5636a9b0123c4456b24141dcf6245cb9c10c7c9c6a
MD5 b9b50071df8837f901d2472cdeffc0dc
BLAKE2b-256 40ab1a392a18efce0dd7810b6809e25297063078615edd630f0e54512c98a465

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-win32.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2981843264f321716f28095707dfd617251f949776c43033a14f5aba2d003555
MD5 17227d2c271137a9b1de945146df2cc9
BLAKE2b-256 9238cac42a6a8a069122ae9987d3a4565b42b19f5422d3e658c8e8acfa17063f

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c051584f3a70c5359c43c03d615679e439d12e42dc16448b6d68fb1c115987b
MD5 27aec10d04e1ba2c175ec0e0b0fb2507
BLAKE2b-256 a6f2e7998947cce2efe2939650fdc25987ecff4d42d6dcfcad7a4ba1f7c8f0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8935dbee4f81a94429d729ddc2359676e144083678847b61aa82abf6438a81b0
MD5 51312ce036001017575c825e41d4cf45
BLAKE2b-256 ef9ba2e357510f79098dd7e63300608eec25daa8edc060e5fbfd0aee6d0129dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0d7f507a2a457452291723bb84070072371e041093116f19b5fcb646cd77954
MD5 a2868c172ee1df056df6a9d5aa5dc0b4
BLAKE2b-256 5fef578238d88a143af5e89e17f111e1daddd444e44bf80d90d8dd0021bd922b

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6db5a3ffe7ed4aa34a2c6f1a56d58e86d8fdda35a7fddbcad988b4fd8626a67
MD5 444f9dd5e045e6a5aac6f6df78db3c04
BLAKE2b-256 2bab8f7cbd40adefec536837223000ee0b761cf49f4dd17a1c919f822682554d

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdc17a028e39e954cb3602ebe4ee53507130d9d2d3c025dc19f1cae06fe9ca02
MD5 53a233651a96be8dc20dcae41f1e106f
BLAKE2b-256 e4e704b0d75fc2d804f61fca5964e7320c8a249c1a684e0926a26126ce77d55f

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e641d912af86f8bde185359680864aa4fa390ac8d035dd6a04615b183007464
MD5 886619f19b260e05983bdf9a0fc32fd0
BLAKE2b-256 4ff221c061ea3dd39f09d24889f30b22b987b700bebbf504b06848c4651fc33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-macosx_11_0_arm64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polarisdb-0.1.1-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polarisdb-0.1.1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57ab4e87c801aac15aa69e8e75b43082003c6cb8c341eca56273b2c7dde247fb
MD5 256b84af1ff7d836cd8cd2ff96192cab
BLAKE2b-256 27fc828240fe6ec4f358eee59ab68998e90d5f066768555f35650e514466de6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for polarisdb-0.1.1-cp38-abi3-macosx_10_12_x86_64.whl:

Publisher: release-python.yml on hugoev/PolarisDB

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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