High-performance vector database library for Python with multiple index types and metadata support
Project description
GigaVector
A high-performance vector database library for Python. GigaVector provides efficient similarity search with support for multiple index types, metadata filtering, and persistent storage.
Features
Core Database:
- Multiple index types: KD-tree, HNSW, and IVFPQ
- Distance metrics: Euclidean and Cosine similarity
- Rich metadata support with key-value pairs
- Metadata filtering in search queries
- Persistent storage with snapshot and WAL (Write-Ahead Log)
- Batch operations for vector insertion and search
- Thread-safe operations
Advanced Features:
- GPU acceleration with CUDA support
- HTTP REST API server
- BM25 full-text search
- Hybrid search (vector + text fusion)
- Backup and restore with compression
- TTL (Time-to-Live) for automatic data expiration
Enterprise Features:
- Multi-tenancy with namespaces
- Sharding for horizontal scaling
- Replication for high availability
- Cluster management
- API key and JWT authentication
Installation
Install from PyPI:
pip install gigavector
The package includes the native libGigaVector shared library in wheel builds.
When installing from source, a local C toolchain (and libcurl development headers) may be required to build the native library.
Quick Start
from gigavector import Database, DistanceType, IndexType
# Create an in-memory database
with Database.open(None, dimension=128, index=IndexType.HNSW) as db:
# Add vectors with metadata
db.add_vector([0.1] * 128, metadata={"id": "vec1", "category": "A"})
db.add_vector([0.2] * 128, metadata={"id": "vec2", "category": "B"})
# Search for similar vectors
hits = db.search([0.1] * 128, k=5, distance=DistanceType.EUCLIDEAN)
for hit in hits:
print(f"Distance: {hit.distance}, Metadata: {hit.vector.metadata}")
API Reference
Database
The main class for vector database operations.
Database.open(path, dimension, index=IndexType.KDTREE)
Create or open a database instance.
Parameters:
path(str | None): File path for persistent storage. UseNonefor in-memory database.dimension(int): Vector dimension (must be consistent for all vectors).index(IndexType): Index type to use. Defaults toIndexType.KDTREE.
Returns: Database instance
Example:
# In-memory database
db = Database.open(None, dimension=128, index=IndexType.HNSW)
# Persistent database
db = Database.open("vectors.db", dimension=128, index=IndexType.KDTREE)
add_vector(vector, metadata=None)
Add a single vector to the database.
Parameters:
vector(Sequence[float]): Vector data as a sequence of floats. Length must match database dimension.metadata(dict[str, str] | None): Optional dictionary of key-value metadata pairs.
Raises:
ValueError: If vector dimension doesn't match database dimension.RuntimeError: If insertion fails.
Example:
# Vector without metadata
db.add_vector([1.0, 2.0, 3.0])
# Vector with single metadata entry
db.add_vector([1.0, 2.0, 3.0], metadata={"id": "123"})
# Vector with multiple metadata entries
db.add_vector([1.0, 2.0, 3.0], metadata={
"id": "123",
"category": "electronics",
"price": "99.99"
})
add_vectors(vectors)
Add multiple vectors to the database in batch. Vectors added via this method cannot include metadata.
Parameters:
vectors(Iterable[Sequence[float]]): Iterable of vectors. All vectors must have the same dimension.
Raises:
ValueError: If vectors have inconsistent dimensions.RuntimeError: If batch insertion fails.
Example:
vectors = [
[1.0, 2.0, 3.0],
[4.0, 5.0, 6.0],
[7.0, 8.0, 9.0]
]
db.add_vectors(vectors)
search(query, k, distance=DistanceType.EUCLIDEAN, filter_metadata=None)
Search for k nearest neighbors to a query vector.
Parameters:
query(Sequence[float]): Query vector. Length must match database dimension.k(int): Number of nearest neighbors to return.distance(DistanceType): Distance metric to use. Defaults toDistanceType.EUCLIDEAN.filter_metadata(tuple[str, str] | None): Optional metadata filter as (key, value) tuple. Only vectors matching the filter are considered.
Returns: list[SearchHit] - List of search results, ordered by distance (ascending).
Raises:
ValueError: If query dimension doesn't match database dimension.RuntimeError: If search fails.
Example:
# Basic search
hits = db.search([1.0, 2.0, 3.0], k=5, distance=DistanceType.EUCLIDEAN)
# Search with metadata filter
hits = db.search(
[1.0, 2.0, 3.0],
k=5,
distance=DistanceType.EUCLIDEAN,
filter_metadata=("category", "electronics")
)
search_batch(queries, k, distance=DistanceType.EUCLIDEAN)
Search for k nearest neighbors for multiple query vectors in batch.
Parameters:
queries(Iterable[Sequence[float]]): Iterable of query vectors.k(int): Number of nearest neighbors to return per query.distance(DistanceType): Distance metric to use. Defaults toDistanceType.EUCLIDEAN.
Returns: list[list[SearchHit]] - List of search result lists, one per query.
Raises:
ValueError: If any query dimension doesn't match database dimension.RuntimeError: If batch search fails.
Example:
queries = [
[1.0, 2.0, 3.0],
[4.0, 5.0, 6.0]
]
results = db.search_batch(queries, k=5)
for i, hits in enumerate(results):
print(f"Query {i}: {len(hits)} results")
save(path=None)
Persist the database to a binary snapshot file. If a file path was provided when opening the database, writes to that path. Otherwise, use the provided path.
Parameters:
path(str | None): Optional file path. If None and database was opened with a path, uses that path.
Raises:
RuntimeError: If save operation fails.
Example:
# Save to the path used when opening
db.save()
# Save to a different path
db.save("backup.db")
train_ivfpq(data)
Train the IVFPQ index with training vectors. Only applicable when using IndexType.IVFPQ.
Parameters:
data(Sequence[Sequence[float]]): Training vectors. All vectors must match the database dimension.
Raises:
ValueError: If training data is empty or dimensions don't match.RuntimeError: If training fails.
Example:
# Train with at least 256 vectors (recommended)
train_data = [[(i % 10) / 10.0 for _ in range(128)] for i in range(256)]
db.train_ivfpq(train_data)
close()
Close the database and release resources. Automatically called when using the context manager.
Example:
db = Database.open(None, dimension=128)
# ... use database ...
db.close()
IndexType
Enumeration of available index types.
IndexType.KDTREE: KD-tree index. Good for low to medium dimensional data.IndexType.HNSW: Hierarchical Navigable Small World graph. Good for high-dimensional data with fast approximate search.IndexType.IVFPQ: Inverted File with Product Quantization. Memory-efficient for large-scale datasets. Requires training before use.
DistanceType
Enumeration of distance metrics.
DistanceType.EUCLIDEAN: Euclidean (L2) distance.DistanceType.COSINE: Cosine similarity distance.
Vector
Data class representing a vector with metadata.
Attributes:
data(list[float]): Vector data.metadata(dict[str, str]): Dictionary of metadata key-value pairs.
SearchHit
Data class representing a search result.
Attributes:
distance(float): Distance from the query vector.vector(Vector): The matched vector with its metadata.
Usage Examples
Persistent Storage with WAL
from gigavector import Database, IndexType, DistanceType
# Create a persistent database
with Database.open("vectors.db", dimension=128, index=IndexType.KDTREE) as db:
db.add_vector([0.1] * 128, metadata={"id": "1", "tag": "A"})
db.add_vector([0.2] * 128, metadata={"id": "2", "tag": "B"})
db.save() # Create snapshot
# Reopen - WAL automatically replays any uncommitted changes
with Database.open("vectors.db", dimension=128, index=IndexType.KDTREE) as db:
hits = db.search([0.1] * 128, k=5)
# All vectors are restored, including metadata
IVFPQ Index with Training
from gigavector import Database, IndexType, DistanceType
import random
# Create IVFPQ database
db = Database.open(None, dimension=64, index=IndexType.IVFPQ)
# Generate training data (at least 256 vectors recommended)
train_data = [
[random.random() for _ in range(64)]
for _ in range(256)
]
db.train_ivfpq(train_data)
# Add vectors
with db:
for i in range(1000):
vec = [random.random() for _ in range(64)]
db.add_vector(vec, metadata={"id": str(i)})
# Search
query = [random.random() for _ in range(64)]
hits = db.search(query, k=10, distance=DistanceType.EUCLIDEAN)
Metadata Filtering
from gigavector import Database, IndexType, DistanceType
with Database.open(None, dimension=128, index=IndexType.HNSW) as db:
# Add vectors with different categories
db.add_vector([0.1] * 128, metadata={"category": "A", "price": "10"})
db.add_vector([0.2] * 128, metadata={"category": "B", "price": "20"})
db.add_vector([0.15] * 128, metadata={"category": "A", "price": "15"})
# Search only in category A
hits = db.search(
[0.1] * 128,
k=10,
distance=DistanceType.EUCLIDEAN,
filter_metadata=("category", "A")
)
# Returns only vectors with category="A"
Batch Operations
from gigavector import Database, IndexType, DistanceType
with Database.open(None, dimension=128, index=IndexType.KDTREE) as db:
# Batch insert vectors (without metadata)
vectors = [[i * 0.01] * 128 for i in range(1000)]
db.add_vectors(vectors)
# Batch search
queries = [[i * 0.01] * 128 for i in range(10)]
results = db.search_batch(queries, k=5)
for i, hits in enumerate(results):
print(f"Query {i}: {len(hits)} results")
Advanced Features
GPU Acceleration
from gigavector import gpu_available, gpu_device_count, gpu_get_device_info, GPUIndex, GPUConfig
# Check GPU availability
if gpu_available():
print(f"GPU devices: {gpu_device_count()}")
info = gpu_get_device_info(0)
print(f"Device 0: {info.name}, {info.total_memory // 1024**2} MB")
# Create GPU-accelerated index
config = GPUConfig(device_id=0, use_float16=True)
gpu_index = GPUIndex(dimension=128, config=config)
gpu_index.add_vectors(vectors)
results = gpu_index.search(query, k=10)
HTTP REST Server
from gigavector import Database, Server, ServerConfig, IndexType
# Create database and server
db = Database.open(None, dimension=128, index=IndexType.HNSW)
config = ServerConfig(port=8080, enable_cors=True)
with Server(db, config) as server:
server.start()
print("Server running on http://localhost:8080")
# Server handles REST API requests:
# GET /health - Health check
# POST /vectors - Add vector
# POST /search - Search vectors
# GET /stats - Server statistics
BM25 Full-Text Search
from gigavector import BM25Index, BM25Config
# Create BM25 index for text search
config = BM25Config(k1=1.2, b=0.75)
bm25 = BM25Index(config)
# Add documents
bm25.add_document(0, "Machine learning for vector databases")
bm25.add_document(1, "Neural networks and deep learning")
bm25.add_document(2, "Vector similarity search algorithms")
# Search
results = bm25.search("vector search", k=10)
for r in results:
print(f"Doc {r.doc_id}: score={r.score:.4f}")
bm25.close()
Hybrid Search (Vector + Text)
from gigavector import Database, BM25Index, HybridSearcher, HybridConfig, IndexType
db = Database.open(None, dimension=128, index=IndexType.HNSW)
bm25 = BM25Index()
# Add vectors and corresponding documents
for i, (vec, text) in enumerate(zip(vectors, documents)):
db.add_vector(vec, metadata={"id": str(i)})
bm25.add_document(i, text)
# Create hybrid searcher
config = HybridConfig(vector_weight=0.7, text_weight=0.3)
hybrid = HybridSearcher(db, bm25, config)
# Search with both vector and text
results = hybrid.search(query_vector, "search query", k=10)
for r in results:
print(f"Index {r.vector_index}: combined={r.combined_score:.4f}")
hybrid.close()
Namespaces (Multi-Tenancy)
from gigavector import NamespaceManager, NamespaceConfig
# Create namespace manager
ns_mgr = NamespaceManager("/path/to/data")
# Create isolated namespaces for different tenants
config = NamespaceConfig(name="tenant_a", dimension=128)
tenant_a = ns_mgr.create(config)
config = NamespaceConfig(name="tenant_b", dimension=128)
tenant_b = ns_mgr.create(config)
# Each namespace is isolated
tenant_a.add_vector([0.1] * 128)
tenant_b.add_vector([0.2] * 128)
print(f"Tenant A vectors: {tenant_a.count}")
print(f"Tenant B vectors: {tenant_b.count}")
ns_mgr.close()
TTL (Time-to-Live)
from gigavector import TTLManager, TTLConfig
# Create TTL manager for automatic expiration
config = TTLConfig(
default_ttl_seconds=3600, # 1 hour default
cleanup_interval_seconds=60
)
ttl = TTLManager(config)
# Set TTL for vectors
ttl.set_ttl(vector_index=0, ttl_seconds=1800) # 30 minutes
# Get stats
stats = ttl.get_stats()
print(f"Vectors with TTL: {stats.total_vectors_with_ttl}")
print(f"Expired: {stats.total_expired}")
ttl.close()
Authentication
from gigavector import AuthManager, AuthConfig, AuthType
# Create auth manager with API key authentication
config = AuthConfig(auth_type=AuthType.API_KEY)
auth = AuthManager(config)
# Generate API key
key, key_id = auth.generate_api_key("My Application")
print(f"API Key: {key}")
print(f"Key ID: {key_id}")
# Authenticate requests
result, identity = auth.authenticate(key)
if result == AuthResult.SUCCESS:
print(f"Authenticated: {identity.key_id}")
auth.close()
Backup and Restore
from gigavector import (
Database, backup_create, backup_restore, backup_verify,
BackupOptions, RestoreOptions, BackupCompression
)
# Create backup
options = BackupOptions(
compression=BackupCompression.ZSTD,
include_metadata=True
)
result = backup_create(db, "backup.gvb", options)
print(f"Backup created: {result.vectors_backed_up} vectors")
# Verify backup
if backup_verify("backup.gvb"):
print("Backup is valid")
# Restore to new database
restore_opts = RestoreOptions(verify_checksums=True)
restored_db = backup_restore("backup.gvb", "restored.db", restore_opts)
Requirements
- Python 3.9 or higher
- cffi >= 1.16
- CUDA toolkit (optional, for GPU acceleration)
License
Licensed under the DBaJ-NC-CFL License. See LICENCE.md for details.
Links
- GitHub Repository: https://github.com/jaywyawhare/GigaVector
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 gigavector-0.8.4.tar.gz.
File metadata
- Download URL: gigavector-0.8.4.tar.gz
- Upload date:
- Size: 2.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
723595958043ef7c57a15239c71cb0d89456357eaac9457b49aacde96f14d858
|
|
| MD5 |
714e60e639974ef0a89d019f84559bf9
|
|
| BLAKE2b-256 |
4e6e4f190c253716b8762561c83a6e693ac0bb2018e61a455c8c93a705177635
|
Provenance
The following attestation bundles were made for gigavector-0.8.4.tar.gz:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4.tar.gz -
Subject digest:
723595958043ef7c57a15239c71cb0d89456357eaac9457b49aacde96f14d858 - Sigstore transparency entry: 1361434306
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.4 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 |
850bc24014d4cf993ad013b04c0c3087e9828fdf68f832847292b225ab9dcdeb
|
|
| MD5 |
5cf2ee697b475ad13118d6c7fe29b1e3
|
|
| BLAKE2b-256 |
b0aec47aa10a903b157cd2cfbf69d511f64b91966ea271f294322ea8f8089471
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp313-cp313-win_amd64.whl -
Subject digest:
850bc24014d4cf993ad013b04c0c3087e9828fdf68f832847292b225ab9dcdeb - Sigstore transparency entry: 1361434607
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aec44917c0b775e7864177e91f7feece24d5b85d88e014dd02d0ea246f1f6211
|
|
| MD5 |
3c461a09306ae515e46f9446fbad33b4
|
|
| BLAKE2b-256 |
2862233b76777ae3fa6275bb0c134c326bc514b0a053d61a40abde1610bd855b
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
aec44917c0b775e7864177e91f7feece24d5b85d88e014dd02d0ea246f1f6211 - Sigstore transparency entry: 1361434455
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dba8a16287825756f74725c08e3570d95dc6fd6bb808580df51953bba72d6b7
|
|
| MD5 |
a2c8a0ddf73e83e4f00be0f8d4cd81c7
|
|
| BLAKE2b-256 |
861c1a82fc24811da255b3f5706965f695af74ac43b35085a7d165fe11be1ec9
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9dba8a16287825756f74725c08e3570d95dc6fd6bb808580df51953bba72d6b7 - Sigstore transparency entry: 1361434346
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 614.7 kB
- 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 |
76243aa6e9e9003ecb52cd4585001412a91eb2ec6d5c839882c6f30869db5c40
|
|
| MD5 |
50cccc103d3cf002575ab65a0f16f61e
|
|
| BLAKE2b-256 |
7da86dd7c661eebb3c25ce4a09ed66ebe02de6c6e35b1599d9a7352a2112b153
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
76243aa6e9e9003ecb52cd4585001412a91eb2ec6d5c839882c6f30869db5c40 - Sigstore transparency entry: 1361434570
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.4 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 |
1aff4229f6fcd9aac39742fb3aa3c842b37378075733f0c287918d08adf49d65
|
|
| MD5 |
d07563af6e4832f7ae9a05dcb88b42e1
|
|
| BLAKE2b-256 |
63bc9c182d735f61ebe5f1b1f530ab9505f4413465b9500f85ec2b8826d24094
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp312-cp312-win_amd64.whl -
Subject digest:
1aff4229f6fcd9aac39742fb3aa3c842b37378075733f0c287918d08adf49d65 - Sigstore transparency entry: 1361434624
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c6e952ab97140dd9836a689caaeeec31b4dc040f70d704b91556eebf4b56d67
|
|
| MD5 |
a6cc601f824fcccb10d6e7d6aefe85d1
|
|
| BLAKE2b-256 |
d72c12ff7c8059ff604f1abee495420394200fd643133f76bd9af8bbd3d2b135
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
0c6e952ab97140dd9836a689caaeeec31b4dc040f70d704b91556eebf4b56d67 - Sigstore transparency entry: 1361434499
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
878b8cd8dd176be43ea2b964eb389b591561d4c67b32f8860da85fd5b2122c08
|
|
| MD5 |
891619af4dbb4105b5e940b4404f1543
|
|
| BLAKE2b-256 |
5c1adc965e14b956ae77ad2befaf2fcd7a547189e9864aec8c4144d21208e2b5
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
878b8cd8dd176be43ea2b964eb389b591561d4c67b32f8860da85fd5b2122c08 - Sigstore transparency entry: 1361434665
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 614.7 kB
- 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 |
ddc75ab794841163409a05bdab15052450d39860c69ec66177a01398fc959618
|
|
| MD5 |
7d3185211af380ea25df60fca1f14536
|
|
| BLAKE2b-256 |
0d77e97669604ba417f15e65e3930302974f9b4824398d5f781630c83913a404
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
ddc75ab794841163409a05bdab15052450d39860c69ec66177a01398fc959618 - Sigstore transparency entry: 1361434546
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.4 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 |
05266d01f0856a4c3d6d19f0beac81c77b25e5505974f57c65366d67650a7321
|
|
| MD5 |
c0fbcdeb6c57e7d7e8033ccbd53c34df
|
|
| BLAKE2b-256 |
e62d69bd243d0bf884e1c0fc7e4ce1e45d0575b7202bc26b618cf979bad791ca
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp311-cp311-win_amd64.whl -
Subject digest:
05266d01f0856a4c3d6d19f0beac81c77b25e5505974f57c65366d67650a7321 - Sigstore transparency entry: 1361434327
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d38143493b8b89bdf086c4f3271b1597f9c1765590f299b52e46ad34c2870fd9
|
|
| MD5 |
fb53a1ecc590e59f275d5893a6bed02a
|
|
| BLAKE2b-256 |
c5d0ce91e2864e47574a5698681ff4cfac430bdd93a7393d45856181c548caf5
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
d38143493b8b89bdf086c4f3271b1597f9c1765590f299b52e46ad34c2870fd9 - Sigstore transparency entry: 1361434642
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48232e30e405f95597f44912ad5081c4c6dccd1b378ba3aa2bb6629908ab4273
|
|
| MD5 |
af57344fa0ef7959adfed1d3f96c5f6c
|
|
| BLAKE2b-256 |
1a9b031ae549e05b75359c2a7762be5ea678f78433f99dbbbbba0e51ea116db6
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
48232e30e405f95597f44912ad5081c4c6dccd1b378ba3aa2bb6629908ab4273 - Sigstore transparency entry: 1361434690
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 614.7 kB
- 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 |
2be02b121f31ef10dcc423e560a8e6f6d0da77f53c915ad5aff978008e77d04f
|
|
| MD5 |
101574d8bb0f1bd974510dca78606ff5
|
|
| BLAKE2b-256 |
c448873775c6a636c95a1e73c33ac8cc162ff601d0741de70298f16c4b3daeb2
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
2be02b121f31ef10dcc423e560a8e6f6d0da77f53c915ad5aff978008e77d04f - Sigstore transparency entry: 1361434522
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.4 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 |
56514c146571b8ee2ba06272691457c7d0c96bcd0cf33b4c69cc64da1f26934e
|
|
| MD5 |
d454b5d81006f9f0200d9a6f3ab9a8a5
|
|
| BLAKE2b-256 |
87db19dac27941e69c994de4946dd31f8c3561fe3912b5eb6ef251879d19cbf3
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp310-cp310-win_amd64.whl -
Subject digest:
56514c146571b8ee2ba06272691457c7d0c96bcd0cf33b4c69cc64da1f26934e - Sigstore transparency entry: 1361434592
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1705803edf7162acefa6a2144255788eacfd093a8d74e63bc879acd3e6853b9d
|
|
| MD5 |
59dadfe3b17bf0f247731dff4ccc87a6
|
|
| BLAKE2b-256 |
6cae47faf3cdea8c443a100b7dcff9cd3b551814b3e0312b93e5d323a77f4f0f
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
1705803edf7162acefa6a2144255788eacfd093a8d74e63bc879acd3e6853b9d - Sigstore transparency entry: 1361434476
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c2efe32a523cdd7d99a95f4fc164b0ca3f62500ee9e0771a4300bd57030a58
|
|
| MD5 |
2f53155fbf5a36c5732aef2ebb6e2800
|
|
| BLAKE2b-256 |
839f7914866df06e30482b3b9596fe8878c63123298ce960344bcc416c6ce30d
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
36c2efe32a523cdd7d99a95f4fc164b0ca3f62500ee9e0771a4300bd57030a58 - Sigstore transparency entry: 1361434382
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 614.7 kB
- 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 |
d1bc38ed12c1d32f526c57dbf92ec5d6fc4e275da057a2f5e7f85d4816563370
|
|
| MD5 |
c54b5a33c4d0322381ca38f5ab513e65
|
|
| BLAKE2b-256 |
f1a7d1b9d1e2ca286ea9199c6d99d3a4219e68e87eb1e9dea2ef75765bfcb28f
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
d1bc38ed12c1d32f526c57dbf92ec5d6fc4e275da057a2f5e7f85d4816563370 - Sigstore transparency entry: 1361434434
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66ce79a8cff40779093ad06040166f7a35d5c325bcaa1cafe0c2a099688f9b61
|
|
| MD5 |
1d74f9ee2e64a63380db1d19f4ec8d14
|
|
| BLAKE2b-256 |
4f983529e06801b763b4b3732e49b6641bb0a0c520ba72f0b9c299f00e845f4c
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp39-cp39-win_amd64.whl -
Subject digest:
66ce79a8cff40779093ad06040166f7a35d5c325bcaa1cafe0c2a099688f9b61 - Sigstore transparency entry: 1361434484
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea034b47dce64f390c7b4cd0543dd741853c19347c4c18447dd3e3d16fcef7c
|
|
| MD5 |
28f58156f72f1cf6221c0139611a9b73
|
|
| BLAKE2b-256 |
91b3777a117b6ae60f1fd457f2835c50fb6f9c9c49807e3ed430d09d0209799b
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
2ea034b47dce64f390c7b4cd0543dd741853c19347c4c18447dd3e3d16fcef7c - Sigstore transparency entry: 1361434717
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef68c8bcea59f3382f16b4321502776ceb8e0310639d2e3eb1ff5857b2e5a45c
|
|
| MD5 |
8f28bed96651fd43e7b01975f3f4708a
|
|
| BLAKE2b-256 |
8739c6d61fd00d4a99e8a524d34fe4a282bef5f314fe08fcb5739b78bab3a31e
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ef68c8bcea59f3382f16b4321502776ceb8e0310639d2e3eb1ff5857b2e5a45c - Sigstore transparency entry: 1361434369
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type:
File details
Details for the file gigavector-0.8.4-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: gigavector-0.8.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 614.7 kB
- Tags: CPython 3.9, 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 |
245c7a25d030204118a45b6332f94c8ee8d1eb40c01f5e2f224cead363d83a20
|
|
| MD5 |
8ea0ee9535b61f7cb79a27d273166f2a
|
|
| BLAKE2b-256 |
d3527359eaf59ba399c7806700f26ae2d711f559867279aed3050f25e406bd62
|
Provenance
The following attestation bundles were made for gigavector-0.8.4-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on jaywyawhare/GigaVector
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gigavector-0.8.4-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
245c7a25d030204118a45b6332f94c8ee8d1eb40c01f5e2f224cead363d83a20 - Sigstore transparency entry: 1361434408
- Sigstore integration time:
-
Permalink:
jaywyawhare/GigaVector@0077a066ec046bacfef61cf5729505a1a573391a -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/jaywyawhare
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0077a066ec046bacfef61cf5729505a1a573391a -
Trigger Event:
release
-
Statement type: