Skip to main content

Logo
Python client for the SeekStorm vector & lexical search server.

The Python client is based on the Rust client via PyO3 and Maturin and supports the following platforms: linux_x86_64, linux_aarch64, windows, macos_x86_64, macos_aarch64.

seekstorm_client_py is open source licensed under the Apache License 2.0

SeekStorm REST client (Python wrapper via PyO3/Maturin)

PyPI License

SeekStorm REST client (Pure Python)

PyPI GitHub Stars License

SeekStorm REST client (C#)

NuGet version GitHub Stars License

SeekStorm REST client (Rust)

Crates.io Downloads Documentation License Roadmap

SeekStorm multi-tenancy search server

Crates.io Downloads Docker REST API Documentation License Roadmap

SeekStorm in-process search library

Crates.io Downloads Documentation License Roadmap

Website | Benchmark | Demo | Repository for SeekStorm Python client | Repository for SeekStorm library, server, Rust client | Roadmap | Blog | X

Usage of the Python client

Install seekstorm-client-py

pip install seekstorm-client-py
import json

from seekstorm_client_py import (
    PySeekStormClient as SeekStormClient,
    ApikeyQuotaObject,
    CreateIndexRequest,
    GetDocumentRequest,
    SearchRequestObject,
)

BASE_URL = "http://127.0.0.1:80"
DEMO_API_KEY = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
MASTER_API_KEY = "/iWStCpyfpd/BVlHOFtwnMgrFrmof4jGq/OQDWXQzcM="

client = SeekStormClient()

# Server live check

result = client.live(BASE_URL)

# Create API key

quota = ApikeyQuotaObject()
quota.indices_max = 10
quota.indices_size_max = 100_000_000_000
quota.documents_max = 100_000_000
quota.operations_max = 1_000_000_000
quota.rate_limit = None
quota.demo = True

result = client.create_apikey(BASE_URL, MASTER_API_KEY, quota)

# Create index

schema_json = """
[{"field":"title","field_type":"Text","store":false,"index_lexical":false},
{"field":"body","field_type":"Text","store":true,"index_lexical":true,"longest":true},
{"field":"url","field_type":"Text","store":false,"index_lexical":false}]
"""

create_request = CreateIndexRequest()
create_request.index_name = "test_index"
create_request.similarity = "Bm25f"
create_request.tokenizer = "UnicodeAlphanumeric"
create_request.stemmer = "None"
create_request.document_compression = "Snappy"
create_request.schema = schema_json
create_request.ngram_indexing = 0

index_id = client.create_index(BASE_URL, DEMO_API_KEY, create_request)

# Index document

client.index_document(BASE_URL, DEMO_API_KEY, index_id, json.dumps({"title": "title2", "body": "body2 test", "url": "url2"}))

# Commit index

client.commit_index(BASE_URL, DEMO_API_KEY, index_id)

# Search index

request = SearchRequestObject("+body2 +test")
request.offset = 0
request.length = 10
request.enable_empty_query = False
request.realtime = False

result_object = client.query_index(BASE_URL, DEMO_API_KEY, index_id, request)

Build seekstorm_client_py

pip install uv
python -m venv .venv
source .venv/bin/activate  # On Windows use: .venv\Scripts\activate
uv tool install maturin
maturin develop

Test

Make sure you start the SeekStorm server before running these tests!

python -m unittest -v test_client.py

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seekstorm_client_py-0.1.7.tar.gz (419.5 kB view details)

Uploaded Source

Built Distributions

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

seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

seekstorm_client_py-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

seekstorm_client_py-0.1.7-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seekstorm_client_py-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

seekstorm_client_py-0.1.7-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seekstorm_client_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

seekstorm_client_py-0.1.7-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seekstorm_client_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seekstorm_client_py-0.1.7-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file seekstorm_client_py-0.1.7.tar.gz.

File metadata

  • Download URL: seekstorm_client_py-0.1.7.tar.gz
  • Upload date:
  • Size: 419.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for seekstorm_client_py-0.1.7.tar.gz
Algorithm Hash digest
SHA256 40305040e5c21d1b4f7ecebf13b24123c917c3e6ac0ffea155a59f9030737131
MD5 44c448d057b76103a3ca6227e2e6e9b8
BLAKE2b-256 eec95cc8d3789fae39a595e5254cb0396bbdc129f33c4c6b4bd19d24ee199648

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7.tar.gz:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039e3a4540f19db7a6cd8465ee0c62d8837aa11f1292f778f3747442b0b2c33b
MD5 764ac939a0cc920bef13f438b346ecaf
BLAKE2b-256 40518c1d7f1d6979672c4d4da74577143c261551db1ea8f7f0d81fb592f3cb97

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc94375cafbed7ae7c7c974df5051c0d1002dd536a564ff7ea1309ac605565cc
MD5 d64fcb426efbafa9ee5f722a9b4c6077
BLAKE2b-256 3b2441874d62a489165a1568e83898f2e2c4dd516040e0d092c844ed86c5ef6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 233e5ef83477e91f43f3684c9cc2536031d406fcc72350a9de57fee17ed32f0e
MD5 fa0bc262abd9fdd466dd65f5e143411c
BLAKE2b-256 21b71d00d13f5caab04ffa705418fe8de217c7a9b5b8910e671f082088e4c807

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e162b96d2548099f2db5ab07492c242442d66804a6a7fac559c6b31b619c9bc1
MD5 7bdd1ee11bfb1bd85c67d04aa4f5a011
BLAKE2b-256 d753d959cd8a7b40123734a36d53d1db86beb59bc9c5effa6384273613f46a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a93978d28918416b72ed1455a2761a13040424bfc7d6a944396bce22851ed0f
MD5 60c3111982144bc2ad825a315b406eb7
BLAKE2b-256 cb132cf5f69b8d5225f3372e9cb0f6f53b9f4cf393d884440eab814ec510b9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4d5d550d7eeb86278b6df37beb0f0f1d782bbf3f783d23464be1216e0a980b6
MD5 df544e561bc2c6179ceda2bcc7724c6b
BLAKE2b-256 36b5148a8b7026f5f8fe1aa3867b7caa9db04b26e290b52bdf02deb45bcabdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 267934fb1012e1bf97aec17eb40428187ee5ba64b8bddeb963e41f3468551acf
MD5 0706e18ffecd874d423bcf70d0a22b45
BLAKE2b-256 4ed5b83528f812dcf8be4c29164d0a4d78b5c5347296a9b98fb36cc2a97c3b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 874a477d78594b86f4c55823ff09d0c70cdcf41ecd3eb78899e31ad9ef931802
MD5 16f7dc31741f5719276b6cba593d488a
BLAKE2b-256 8f8ef202877e818297bb94cca7e26de4e67a920e978eabd0bdad4afe7645b574

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4cf440530a358db26b55e33bd96f5320a24265f0a7bc7cd890ea716240ccf976
MD5 e6ffdd986b107b0af74e9de5d8bafa93
BLAKE2b-256 3b7e67021b6a6909bbd864142c4ebef3074d5f5b6393352addb4247118d97fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314-win_amd64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0996a76de4e8211bdcec20470a0bb0d38e8bf04ccaf26fbf82bbb71fce211508
MD5 befa7222c3201519e38aba79be78fc3f
BLAKE2b-256 46981afe410bbaba56b1888579fa13e320b6d5a344b39096912dd4bbb9434d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1d129b3d49d1f7a5ced954e3a626c927eb5fe0216849267d073cd10c7cf682
MD5 032b9bd7e1be2221c845883c6b7083ac
BLAKE2b-256 c0ade92be4db4d966e757a1991bd0cfa30251f862690cee495090e25052dc544

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17009a3a2e087ae65a1938c58f755fb0309efee77dc25c76bbf1e3bf36654bf5
MD5 22305303bc870ec0f07f45310295ed91
BLAKE2b-256 3459cdd60eec6dc4fe2f4badbc4a3bce9075271fb008866a09051987f7768395

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 592c75826309bd570df7fc8c6de5a29b56c77c9b52961ba04a01101253e224b0
MD5 1b6c94fa5ab2b1cf172f0dca9bc4de4e
BLAKE2b-256 57a9b353916e6c139919fb37996bb413d12734ed4c342088a5d2e98441b9c7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e41c0e515b81f55075e48bd7eb9477c1dcfbf0e3c03d45069ac55c92082a582d
MD5 5e374a0afc464cd4c544dac87d66c33f
BLAKE2b-256 59e376f815bbf0d64152b01cf2cfb09e1f77b3bde6dff30bbf1f642a12cba309

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp313-cp313-win_amd64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed49b1388c7bf5c548dc6a9096733728e2538dec72d425ef0db11c5aab00df8e
MD5 97a24dccae3fac34597fcf700b4f4815
BLAKE2b-256 b143aa98e4035839853d4337a103446a6c341840ce7f6b04f31979ab613a90f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5d2d3fc92520d9a7174129f2d9aa5224e01b72c0f9c4b38848d5f28947d818a
MD5 7253571d91ac851e57dbbf461667197c
BLAKE2b-256 bddec51f82ace6b138481636a08fe6b59b7dacd1cd836222a9730443639f8881

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45f7aa49f658b9a6cbc891f41dfd189bd4afd23533030514afef7b81b7557a43
MD5 bb9f246a739657fe380ce2e518d664eb
BLAKE2b-256 df9cdd03e03daf6695c28a53911e781508e17352589cce725493cb04d6e62688

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80fe43cd269f96c1771ae18b16dee1fdca9211184829587a1c42255fe6f9495a
MD5 babe0e030829fbb8198b0e434e2196a8
BLAKE2b-256 75af4930b9fc1bf6faf1f97394530c19bc38c8c7549299c9ba9036c2c8b71668

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0dbd37ee819764e3767dff0fcad7cd24851aa0f80e76b6581c3570887153d78d
MD5 8c456df50cd16fc1a1fd6c1cc39f1d33
BLAKE2b-256 7916509075e812fb895b3d0b3ecbb2f4a7d39fb08206065e8640d625724389c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp312-cp312-win_amd64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e95d027b03c841fa7c90e8a252b564f84bc9738ccf7c9e732e2a00996cd6d77c
MD5 cd597b95e3bf7e9b64cbbdf319217a18
BLAKE2b-256 1d45fd76fb1f44bf4a93ecb09fc59ba9ad40704e8dc5c857458e1b8b1c5d8ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3acaaa2e8944a459a5efa494a67615453b2fd5fe331f2b07e7703514cafe0bf1
MD5 22beb053fe457d3c2d5587f8cd44e90d
BLAKE2b-256 eb234a5355a7347763f987c7c2fb53278e188bbb35cae82b3977bc74a5e72d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25dae2a12ed251b3166a98f13e654c86c8919793171679a1c281cd53417961e2
MD5 3a98cf8a6551032f5075186ba3dff0fe
BLAKE2b-256 e414771a652e1a0ff01e231cb3d38f4372ea4c88df384ac6c08b214364fe46b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87f3e1ef585dc4b2d32421cf19f798f2605823062e4bee9c501858fe7d759db0
MD5 83e0b7d78634b6c97a6374d6d85b13d4
BLAKE2b-256 2a00ad76180b8aa03bfb7bd50d97db623897cb397e96e08324d8546e3ab7b44c

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e794a72e93920bac598d587a1f68bc51c4a09b0087dd41a81a6aa1bf457a2247
MD5 30f894c889930826bf2b687dadcc7754
BLAKE2b-256 4d349828f6ddbb514597ca313d5411085bf0794ef8ec093c13e02599e5d6f8b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp311-cp311-win_amd64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7cfc4ba1df5b4fe8e63caefacd0a668894fe5502779e557b8e4e0b1311a6c79
MD5 9bc3faf577adf6b05f9d652d1075ca65
BLAKE2b-256 9e92ef8f1989a72f49c19125d12de09370cfb8b2b074273df1fb6347f3cc5fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e988f6d87efb5c35b8619014fd72bcd617b977a2cc7a3889e16e6a268804c7b
MD5 4e26fc924fe035d710ccbc333e71697f
BLAKE2b-256 54c5a1ed75383c104ee3fe39760d018a3545a6b7fa87f575254afff522bea7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcb6c2b221b36e7c45238b8e9f3e3862f273209cd0329b0579e7c313b7a0cb6
MD5 d4c550b041ceb902b34a8723026398ef
BLAKE2b-256 78568316c8396d76d13fb27e45b30baf576526702dd036caacc735eda05e8aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33dc3be080d3e63be85de3993c008ee60a4920454b0c7b4603681765f511e2cf
MD5 51bb207ee742b3992e387fd9bd6bcd9e
BLAKE2b-256 e3d0ae0f0113c077490ff716054b11b3e60fccd7d95e8b4551b5c3ad3d7482f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4bb0d5aaa9a810834b61e59ef9e44a86a23caff2fd36b1b6849895c981f34691
MD5 06c98d3a464339c12119ca44f4d2abf3
BLAKE2b-256 e304348ac6d2560e303509cea6dcf9aae254ed3c4c3feaddfc6cffdb3dd59c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp310-cp310-win_amd64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0ec90653425d277105dbf1232b1e88bdf9aa576aa9063dbcc397b74e09251ee
MD5 6eb4faefe96f8fcccb420d5ee81ee8ea
BLAKE2b-256 96d4775ae54ca6c4eced47b26f823e0cccaa42e4519b96ed046b1e468014a190

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e7055417db65cd85f38af2b67be33a56d3a0fd2571155a5dda710f2efa8b814
MD5 eb3cd00ac6023dcdcdb5e700292ede95
BLAKE2b-256 328d0e3602ad98cee06a72ec6e9ff5d21553e3a8888786a0c199e4e8eeadfc03

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de301502bf6d5c04be151c92a898d85e4212df04c56b1619eb9c68759be7033c
MD5 b74875b7b818238e810cf7c72786f469
BLAKE2b-256 580b14178f56675e0228ab72e84de28be0ced47883f962b0dc52357bc738e0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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

File details

Details for the file seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcd518218b7904ca00eca740e30758b7c89069060fca63a8a31c594f944f2124
MD5 258399637ea5db088bbf11fdba7a46c0
BLAKE2b-256 51095ae7a6948d334f60e03bdca12343f431267173694b1be50d58d5800eb7f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_py

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