Spherical coordinate knowledge representation — fast semantic search, visualization, and analysis
Project description
SphereQL
Project high-dimensional embeddings onto a 3D sphere for fast semantic search, interactive visualization, and knowledge structure analysis. Built in Rust, exposed to Python via PyO3.
Install
pip install sphereql
For Qdrant vector database support:
pip install sphereql[qdrant]
Quick Start: Semantic Search
import sphereql
categories = ["science", "science", "cooking", "cooking"]
embeddings = [
[0.1, 0.9, 0.3, 0.0],
[0.2, 0.8, 0.4, 0.1],
[0.9, 0.1, 0.0, 0.5],
[0.8, 0.2, 0.1, 0.4],
]
pipeline = sphereql.Pipeline(categories, embeddings)
query = [0.15, 0.85, 0.35, 0.05]
results = pipeline.nearest(query, k=3)
for hit in results:
print(f"{hit.id} {hit.category} distance={hit.distance:.4f}")
Quick Start: Visualization
import sphereql
sphereql.visualize(categories, embeddings, title="My Embeddings")
# Opens an interactive 3D sphere in your browser
Quick Start: Vector DB Bridge
import sphereql
store = sphereql.InMemoryStore("my-collection", dimension=384)
store.upsert([
{"id": "doc-1", "vector": embedding_1, "metadata": {"category": "science"}},
{"id": "doc-2", "vector": embedding_2, "metadata": {"category": "cooking"}},
# ...
])
bridge = sphereql.VectorStoreBridge(store)
bridge.build_pipeline(category_key="category")
results = bridge.hybrid_search(query_vec, final_k=5, recall_k=20)
How It Works
SphereQL fits a projection to reduce embeddings to 3 dimensions, then maps them onto spherical coordinates (r, theta, phi). The radial component encodes magnitude/confidence, while angular position preserves semantic similarity. This enables angular-distance queries, cluster detection, concept paths, and interactive 3D visualization — all in projected space.
Four projection families are exposed: PcaProjection, KernelPcaProjection,
LaplacianEigenmap (connectivity-preserving spectral projection over a
k-NN similarity graph), and RandomProjection. The full auto-tuning and
meta-learning framework is available too — auto_tune, NearestNeighborMetaModel,
DistanceWeightedMetaModel, and FeedbackAggregator.
# Non-default projection via config dict
pipeline = sphereql.Pipeline(
categories, embeddings,
config={"projection_kind": "LaplacianEigenmap"},
)
# Auto-tune over the search space
tuned, report = sphereql.auto_tune(categories, embeddings, budget=16)
API Reference
Type stubs (python/sphereql/__init__.pyi) are auto-generated via
pyo3-stub-gen and ship with the wheel — IDEs, mypy, and pyright
pick them up automatically. Regenerate after binding changes with:
cd sphereql-python && cargo run --bin gen-stubs
License
MIT
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 sphereql-0.2.0a0.tar.gz.
File metadata
- Download URL: sphereql-0.2.0a0.tar.gz
- Upload date:
- Size: 980.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9892d6e413eec4f40e12656698a47dbc32bd79b01eaa2d1f11ee8692e14b263c
|
|
| MD5 |
5cec572e1474c7cdbb5c5680bdac9963
|
|
| BLAKE2b-256 |
1dfc6b0ceb810909da3c6941c4603c28d9af614561e10579c6b0acca97231023
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0.tar.gz:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0.tar.gz -
Subject digest:
9892d6e413eec4f40e12656698a47dbc32bd79b01eaa2d1f11ee8692e14b263c - Sigstore transparency entry: 1373459996
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44cc2938e3bbc464b7aa937dbcf592d2d2ed0542ab909f79d4a49e637f53326e
|
|
| MD5 |
232ac718fef3ee42ad63107bf59229e8
|
|
| BLAKE2b-256 |
34338d63248dca367f8fca22dfcb299ae782ea763a70544d780e0caa3ccf07e3
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp313-cp313-win_amd64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp313-cp313-win_amd64.whl -
Subject digest:
44cc2938e3bbc464b7aa937dbcf592d2d2ed0542ab909f79d4a49e637f53326e - Sigstore transparency entry: 1373460775
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
064db7743724eeb33e7b6b313bc30c07ce6df8489d3e4104902ba30646cd9a9c
|
|
| MD5 |
551c17985a45cb9e0dca6b3b0ca68b4b
|
|
| BLAKE2b-256 |
a9ada6b63dba9a19f41552383e904882e9fc814afdd05adfc4935033bed18522
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
064db7743724eeb33e7b6b313bc30c07ce6df8489d3e4104902ba30646cd9a9c - Sigstore transparency entry: 1373460365
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43f671496c2dbd1e6c9950ac5931089361706fcc1330fcb012eeb6832feb5c96
|
|
| MD5 |
393874768af8035d47310c6809791a6e
|
|
| BLAKE2b-256 |
3e0052be4cc3726eab4d2c860487be821d918077272cc80a619266e26e92622c
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
43f671496c2dbd1e6c9950ac5931089361706fcc1330fcb012eeb6832feb5c96 - Sigstore transparency entry: 1373462113
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08b113b235fa69aef725facd4ec8baac9b02849dcc058ce62d015bee003c79da
|
|
| MD5 |
a8517defbc9319e66fb6f06b6670ff8a
|
|
| BLAKE2b-256 |
f48194daa41ff5bdc7a3a5c414ce7111889a92bdb1a83d49944cc290b70cf3e4
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
08b113b235fa69aef725facd4ec8baac9b02849dcc058ce62d015bee003c79da - Sigstore transparency entry: 1373460116
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15697c5b4957b6d4d342e8713f88d2d5930771075087e0e221bfaa67669eadf5
|
|
| MD5 |
0ad1e6a10683c462794de41e45feaa13
|
|
| BLAKE2b-256 |
97d980714e48e09dfbaed18b7602c2ad95bfaf0e47ae0f81bff1b62a01a4a5da
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
15697c5b4957b6d4d342e8713f88d2d5930771075087e0e221bfaa67669eadf5 - Sigstore transparency entry: 1373460652
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22f89981a537d69e856b616b7bbe961ba82545c6208358e0dec181f1478a48c2
|
|
| MD5 |
61d6c9fbf09c8d3c1e9c688516db4db5
|
|
| BLAKE2b-256 |
92a9636d71ef3e881fe4e74c2ff2414068effeb9b6ef28ce38c71a76e023641a
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp312-cp312-win_amd64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp312-cp312-win_amd64.whl -
Subject digest:
22f89981a537d69e856b616b7bbe961ba82545c6208358e0dec181f1478a48c2 - Sigstore transparency entry: 1373460515
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09ee7991972472fbaeba69e1bfc74fbafce2e6fff24d474a30402fa63d28fa9a
|
|
| MD5 |
7e0c2776a9d8e7281206eb0123998be8
|
|
| BLAKE2b-256 |
92d0c78ea1054e5dae2f25b5072f6761ef33779975f8c8d62a39bd7c5bed194a
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
09ee7991972472fbaeba69e1bfc74fbafce2e6fff24d474a30402fa63d28fa9a - Sigstore transparency entry: 1373461424
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c73e8873ddc91a459c38d6669d9daf8c03715e3f088839995445d672d4cdba13
|
|
| MD5 |
3507ea2322215f158a0c0a584915f3fb
|
|
| BLAKE2b-256 |
805bb2727359f8a7049e4c3f5ef83a61dddb06dfa92878d03b289d32db309610
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c73e8873ddc91a459c38d6669d9daf8c03715e3f088839995445d672d4cdba13 - Sigstore transparency entry: 1373460231
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea0ea0b3c086b8ceaac137835a13f08a8e01399144c0eb16dbebddcdca9d9aef
|
|
| MD5 |
b47fb9b36e5549b2b071c1be692be8d8
|
|
| BLAKE2b-256 |
52b83acf6a99700e4110f1a9d872568ada3f36bded6049e97118a40295071c5d
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
ea0ea0b3c086b8ceaac137835a13f08a8e01399144c0eb16dbebddcdca9d9aef - Sigstore transparency entry: 1373461898
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfe56929fd7aa640874b538cdae04edf00fe5a9dd956853970ef642f514c0c79
|
|
| MD5 |
601565d22aef4bba59b3f07072bc0da6
|
|
| BLAKE2b-256 |
c8fd34c1698dfc802c085cd5c36fbe3f26775cb319fb96ca7c9fae2a856ee415
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
dfe56929fd7aa640874b538cdae04edf00fe5a9dd956853970ef642f514c0c79 - Sigstore transparency entry: 1373461673
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21ee134e0ecad018df95743acb5d052df9f750f8a3c173281e7c2538698531f8
|
|
| MD5 |
17e27466fa47cdb000847488342a59b0
|
|
| BLAKE2b-256 |
eed3ab6d03aa44d969c64b59d852dca71697698589c215077fbe279d43541df7
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp311-cp311-win_amd64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp311-cp311-win_amd64.whl -
Subject digest:
21ee134e0ecad018df95743acb5d052df9f750f8a3c173281e7c2538698531f8 - Sigstore transparency entry: 1373461089
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
076dc2ec673a3c68df454faad8434088e0588082e00fa5a0f32101f749b20e01
|
|
| MD5 |
ab821dd377c1c35d999f46c6371695cc
|
|
| BLAKE2b-256 |
56d84894678b8078fa7da2964b23b10378cea867d1467a5f50168e65603a925e
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
076dc2ec673a3c68df454faad8434088e0588082e00fa5a0f32101f749b20e01 - Sigstore transparency entry: 1373462225
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63a6c4226ce4ccaa183613fdc9103c6c9af38b20ae04e7e05ce060d13af239a2
|
|
| MD5 |
d3a83d5bcc8274b7f8ce50493392b817
|
|
| BLAKE2b-256 |
63cb13cfbd79d0ed118e02931e186aaad7c9ece1fb260145dda58479296288d7
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
63a6c4226ce4ccaa183613fdc9103c6c9af38b20ae04e7e05ce060d13af239a2 - Sigstore transparency entry: 1373461294
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbe69fc194614ac1561230b5369db843dbe5e438a449d2c2016215e957aa8694
|
|
| MD5 |
0da3f35e65c4511f2d48ad51aaa3fb3a
|
|
| BLAKE2b-256 |
4a8958d9796883d13834b7a2016fb09d94e684eb4b6554d4e64ccb56ec107fde
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
bbe69fc194614ac1561230b5369db843dbe5e438a449d2c2016215e957aa8694 - Sigstore transparency entry: 1373461198
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d78871d234d8135b936102947116848d3fce62d15a201dfe4bdb441358d8ae5
|
|
| MD5 |
bf402cbde2a10b17a363ee131c9096d8
|
|
| BLAKE2b-256 |
e2f9e1ee5b0d59689d7abb83180c0b8708b5d82ff7141c9cab33ab7117fc6a81
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
7d78871d234d8135b936102947116848d3fce62d15a201dfe4bdb441358d8ae5 - Sigstore transparency entry: 1373461557
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70afc492343b6ba9ff7782c2d256f8b48e951f44d40ba24f4be5eab16aef6430
|
|
| MD5 |
537cbbca07a3a51a445a3a13e1f85532
|
|
| BLAKE2b-256 |
70a91f6d80f561f3b53bcb1d596218780c4370be251ace4a3a6ee9ec556c7844
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp310-cp310-win_amd64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp310-cp310-win_amd64.whl -
Subject digest:
70afc492343b6ba9ff7782c2d256f8b48e951f44d40ba24f4be5eab16aef6430 - Sigstore transparency entry: 1373462005
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ad9a3da3c02aef9d31b6038f99aa5315aa757d7e704967e00f5d3f2bd7d363d
|
|
| MD5 |
5c8a99e75bac25a56775efeab811c838
|
|
| BLAKE2b-256 |
b2b91f8a8419da56c2b9af16b081eda68afc7676f8acd9f11bdb4ed635b15c9b
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6ad9a3da3c02aef9d31b6038f99aa5315aa757d7e704967e00f5d3f2bd7d363d - Sigstore transparency entry: 1373460979
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28f1bf40d5248ee32d7b3b83f993e1d06deee0b1b26de7f6b4596254ed905dc8
|
|
| MD5 |
4fc7dcb79aaa1bcf6b4c67c2a29532d3
|
|
| BLAKE2b-256 |
90e3a09aeeb1679c2faf2e75e579effc3bd0d086d9c7ff1d585737189823565d
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
28f1bf40d5248ee32d7b3b83f993e1d06deee0b1b26de7f6b4596254ed905dc8 - Sigstore transparency entry: 1373461800
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f6e92c582615f501bcf5f73d5b082030ef00b33a1e5aea0b77a041c92a168f0
|
|
| MD5 |
934ea448abf535bf0b726d42b60e0a76
|
|
| BLAKE2b-256 |
1293c2c5ad23b494706167497fc66adfe4385abf958d81b8f3bf4cd91f3a18a0
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
4f6e92c582615f501bcf5f73d5b082030ef00b33a1e5aea0b77a041c92a168f0 - Sigstore transparency entry: 1373462325
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sphereql-0.2.0a0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: sphereql-0.2.0a0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00b2fc3ba126f9815eb02b01c70d330f4534385b87a81bb3ee772b9a5de8ec97
|
|
| MD5 |
d980afa7c0cb812175f74423c979e579
|
|
| BLAKE2b-256 |
08c268192ae2783d7f6f0cd2f5640b2a39f84501b42832f32c0b09cc6b7ca4e1
|
Provenance
The following attestation bundles were made for sphereql-0.2.0a0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
python-publish.yml on bkahan/sphereQL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sphereql-0.2.0a0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
00b2fc3ba126f9815eb02b01c70d330f4534385b87a81bb3ee772b9a5de8ec97 - Sigstore transparency entry: 1373460878
- Sigstore integration time:
-
Permalink:
bkahan/sphereQL@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Branch / Tag:
refs/tags/v0.2.0-alpha - Owner: https://github.com/bkahan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@70a5fa8f29ecbb929faef8c8d446483373f832d2 -
Trigger Event:
release
-
Statement type: