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 (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.6.tar.gz (415.8 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.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

seekstorm_client_py-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

seekstorm_client_py-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

seekstorm_client_py-0.1.6-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

seekstorm_client_py-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

seekstorm_client_py-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

seekstorm_client_py-0.1.6-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

seekstorm_client_py-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

seekstorm_client_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

seekstorm_client_py-0.1.6-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

seekstorm_client_py-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

seekstorm_client_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

seekstorm_client_py-0.1.6-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

seekstorm_client_py-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

seekstorm_client_py-0.1.6-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.6.tar.gz.

File metadata

  • Download URL: seekstorm_client_py-0.1.6.tar.gz
  • Upload date:
  • Size: 415.8 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.6.tar.gz
Algorithm Hash digest
SHA256 ddb488c8bd85bf3f69a10a30719376ad0ba43bd4a4acd3c9c85872e323bd4fd0
MD5 7d3faaee32a26efee02e33ff0cebb239
BLAKE2b-256 3187da43f413d54c775a04b8a2940a7791c7f073089ba8c17b07d3fefa09e1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6.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.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bcacd32d9bf71916cb6af1b0d64cf4046e831012d2451cb9b901fe16cf33b33
MD5 041c7a3e101c3e7909fe6022a9456c7d
BLAKE2b-256 030774758665b828449d4fb91917a8cb33293306bf5ec3bd1c8f79964edefa75

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69823f8216bd86a81d46adadcf9e1ca45ef426b9c0e5ed2fcb658187e4e608e1
MD5 0b1d299c4e7980e3d99cf10337a9265f
BLAKE2b-256 e1663e9c1ea76f5af194983ee016abdfee66debfc1364e9eb2ffcfb9e625e01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba2ace2e520ddd4adc0f81031da444271e69f9aa907e65f787c7d6adab43e135
MD5 5ea3e1fcff06e5423e5c342ff19a4e79
BLAKE2b-256 86c4cdb60cf85cde425dffb7cc7f301e49e568c13a6416fefed066f383f246ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80aaab4bc5a86e19f9251b9d587f6a5bf0970aa337811091561f187f087a13b2
MD5 ab5706e4362a3c7ca943ced947a53bde
BLAKE2b-256 07ab281a6eb8e06ca664a96c5555393ce16b54003a10f37a2171813399bd6e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 158448db59369231a951ce27f133cf1a57bbe4a71f83b797db3c2975823d2c3d
MD5 7091052ead8c2e3098ee4cc3036744cb
BLAKE2b-256 634be5e700ea392005eec19874306ef37db53b66da9344899daf739d61017f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f077cd67560538ea806eff6f7e456f2b985891a543352240856b8ab43b38fa0
MD5 9b5e179f294eae4b51d8679e75686594
BLAKE2b-256 25b887d29b68d7631d558f5b480c8a50bb522b19b29b1e3053cf8c04e3f532db

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afd81e70b3ac3e5de224a3ed862c38bcc43321c52cf0e4ee0222cfec95fcf158
MD5 5af90b39b25ee0243f45d79779e9ba2d
BLAKE2b-256 6164c1634eb0e310caf2dc10b25a01808d66b1bafbd7edef255af753c07d8cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25d1c66ffca61b2c56c7b5907a3ac93afe26f2de25fccbd026835f2a3c249bf1
MD5 5821e13ce68aaf19c61957e411175799
BLAKE2b-256 cb65bd0c3e6a1fe9fa9acad908474806412fce145c9a54c16f4cfc8e5f7f7e75

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b97bbc13786e52787604ca9adbef14e4ee0d95f9ab2769aed4caab1883fca1d5
MD5 ad30ef4de73d8858ce9bc42e2dc1718e
BLAKE2b-256 ed055d15b00e87981e02adf6fd57d6b09afd93de800dcf8c4ddab8860b240b88

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b888aa7ab13a71bd354cd915ac73f7aedd8131241d0fb1c077aeba1b51002bb
MD5 d6287486a2ff9ad653defc71a017cc4a
BLAKE2b-256 93853fd15ec14cfa9c3fb37086a42e270306992bec771feda3fa4ae71cc0b97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f99f83c7d48ee23bfecd120863326809b90f6d57bbcb727c5c1752ab24763b5c
MD5 ba1edb81bf745b455eb7b8948d364288
BLAKE2b-256 47445b01d4c9be67cd8389dbb18087b28818e00d390be594309dcec997e8662b

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8acb4f7be92863047694e1dc134e5b9019d016583cd16c7068ead4fc81688400
MD5 9b2c6bce28538b7cea117660a84f5bf7
BLAKE2b-256 80b2649e1eb31a9682b23ba5d72d00848c1c21c62af22868ba8f703ec5fd19e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 983e59d8f5bf4b3f7e9ed18f91493a3d8a03b2fd8e70f9287f1e6c240424e93b
MD5 4d4e252ce2a3edcc6040e4394c64943c
BLAKE2b-256 413a5041503bcf600e20f5403eca4983124e41418bad5e6d84201453677c7cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0da3091b62f8c7ee883ed66d7e037eb6189401f6586affd50489a8058aca808d
MD5 8668ddf63a96892b54c9d6bcbcfa010a
BLAKE2b-256 6aa4711650ffee7339445271100002697198cdfe798651fc3f27ab307b7d7ab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d63acc74d0c08924e0fa385506b3642dfca7ad270889e35520a71719385fc3ef
MD5 44aaeb310fee5611d979a12fd2c1bb7b
BLAKE2b-256 40d2d4f1ffd42cf587e4cb5d87d9814e59a42d2a5e898767ae37162464c4265c

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f7b3ef21939b319197a2027d78123e63c1e95a534a5f788d1d755afa91bf2c6
MD5 619b0ab761f02055754da93d02564dde
BLAKE2b-256 d47598d12b161d75d8f5fa7d8cf31803a9fb0a72a98d1f0108a303af218f7166

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d32105d56341897eacf184491d778b65b336c0ff4a9f89eb1519a289452e9355
MD5 2a7fd50cd21c0b85d8000d4141e59802
BLAKE2b-256 ee407d822020ee9d85cec1f680f4d8bc9fe3e4bebade386567eb12c65df6e646

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccd52546f32f4fc8d40f5264bfd9180da4f39ebaae1781fa571f6f16cf33179f
MD5 95537b5c48915f14899cad40f38923b3
BLAKE2b-256 bb2e894195e9ff95f7df79a70cbe9a7d37ef5071f4d849c5b4056f3f82169f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a8c0297f4c026835a067377038141c61803dd77bf673e541fc00d57a66e4676a
MD5 ad1fc17a4f4ef35af8dda79f8bf0a736
BLAKE2b-256 6361ba43c27ccb7fb594084832bf001b0b996534342127faf07242742f1ff6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b97a45377c48788ee7606b6cbd7dc3b5828e5c456b7c6fd02d49626b4c828fba
MD5 b01de4fd55cba1202f3c98bf9416137c
BLAKE2b-256 ccce511824e77dd1b9d641a1c58841e88a8719ad229526d484762b15f88feeee

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8af6a448d6dc23f982538005f9ed5d9a156fe15c30a61449e2c7c5611cbff77
MD5 c79c6a096295658c10841e4dffaad22b
BLAKE2b-256 830b9c7ab29268e341195db1342078f60c502a0b44e577ba47afa3cc6f30ab09

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a60f041b10f4729dd889fbc30c1bf282edb979787543167d766aa8c27ab74705
MD5 914d754bd1366abe4b573837e1234eb4
BLAKE2b-256 59a0f3a455db29bf26dea0f503473d215e0f138795406a5bf056553a22d8cbd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb4a0602f1502029e0d7c5012be5462536d1e60481fd0d09ab862b63a980f046
MD5 927978265f5d1768351d48eedd525376
BLAKE2b-256 3dd4b0f6b974914551205710feda5cbd2cd7c17fb18f506d0613837c2ecff129

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62fb52f8f18516da85841b207e9a49dce9edad866a1b48ed7784d88d750ec3da
MD5 45ff8d09697ba2132960b7b247ff1a9f
BLAKE2b-256 abe142c5eb6956ad3535fb6073f76cd26a3e378191aa39408bca8c50d9a6e202

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f6ed5b765bea1fb5140532b2c995ee78002a6c96c1f93d1c7550311fbf79783
MD5 92bf2ea68a53d807965ffbddaa79e1a1
BLAKE2b-256 6cd8895f1015c4efd0cfb96505f88cbe252072ae1dcf1fcd9d2764546bab907e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f440d945caad28dda7c790d1127af1ee1f78afa0a53f09b55bef63c9d0c8b77b
MD5 f4b378203446bba46fd9ce229cd4c7f5
BLAKE2b-256 f2d31d5470564c7150cbfca8754458939f40151e4a5f78dafa9013b7f2b79eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5693ffc3c614977dac72734f79135219b2fdbab5dff4ef2b5048c6591448d57e
MD5 3534b8f8aa6a6152f5649d50bd76bacc
BLAKE2b-256 f7794d9735fa77f7ad65de6baa232b5c3d3cebbc1af92e1d13cfa7679d38ec67

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b9b0fb7d30921b9fdc7e12fda55ae422a98980411f01779c61bd3c4b83c51ef
MD5 fb41441c1f1380cb7bef4affaccebd3a
BLAKE2b-256 756ba6709dda8e79e2952b54dd84781069c609208946afeab45d831371943d71

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e028a0130a7ccbed833a05ed7eb178b1c291df911b1baae50e7e6f83848b8ce7
MD5 fc0f61a42bd0876d0266a5191d5c9648
BLAKE2b-256 8b4d12f80ed0c9e9934508abbe5a4674fc0ac41cd7eabb059ac5a49064603d2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcc84da591d45f94ebeb87d5fbe38ac4aec66b05ddf831b3a60bad7bef9c78c1
MD5 3fd1d8b6e704558b10ec16ee8800f52c
BLAKE2b-256 b301c9936a3c2c35520ca931ccb7c97f6fe6e21e861c391060aa98d057a21a83

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fc4b6502e89afe53910195dd4a3b5527d7cbd21fe2432e5b9422a154f23ac7b
MD5 7525375f3305724ff075849dbca957d2
BLAKE2b-256 00e2ec249125334046490e579d7279fc609849f0324b8433db007bb35e9d889e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 163a36c49f65bfd439d4925fab2e52e85f914f46f8660e191ff25e813c6e9cbf
MD5 eaa3c0477b09fae6f93badd94b11c8d6
BLAKE2b-256 3e9770b08b20195a994ce654ee4d4e88741862de5976cacb1f7535f0a962a47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f75fb6f3be37f4e1dc7636c021f8de73d01c99cced85319305fe2356a0f6f4f0
MD5 5a7d00437237df42916ce0c52213b5f3
BLAKE2b-256 3760ddc708b78d4c34d840292d3d2d54e081e60627adaf0dd982788be1883f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_py-0.1.6-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