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)

PyPI 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.5.tar.gz (415.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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

seekstorm_client_py-0.1.5-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.5-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

seekstorm_client_py-0.1.5-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.5-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

seekstorm_client_py-0.1.5-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.5-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

seekstorm_client_py-0.1.5-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.5-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

seekstorm_client_py-0.1.5-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.5-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.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: seekstorm_client_py-0.1.5.tar.gz
  • Upload date:
  • Size: 415.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.5.tar.gz
Algorithm Hash digest
SHA256 1c672dcc14ddb4abd56326fcbff56edecca10530dd4559219f6f8ef9c67adddf
MD5 bb9da84ad8436ea8fa519342f58038db
BLAKE2b-256 5604f9cc8582b82740cd81d42fae9ade43dbda9f253b02087a1298551f6a921f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 284a4a7ab01065379934f836f560e5b3a7f8da88f588903fd0ffcdfe576e6a9f
MD5 0b8487787dce5f7ab6dcc10ae3e2e27e
BLAKE2b-256 361c1a75d8a4dd13a042ce407521d0d10828401b4981db099887e85b124aaecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e09b85490bcc8703011afc839601100ce633f26219f2521de4771a5be12863dd
MD5 b23be45e6993d5311ac5fde2e2be164d
BLAKE2b-256 283b6cdc1b6003a1eca6dabf7085214e8e89f45f67e9e13da4d2f6238e47be3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc6ccd4843527157e1fabd3c157ad394c07594dc1c957acebdd42d68dd239c49
MD5 0176ecaa3329ec2aefff78fddc246038
BLAKE2b-256 a8497d04fb2fc720d48ba8c8cb30ebbc6162cc56f4a227b16cc071ff2ef7a611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c92254ebc8bcb9e6937d449d34a983f9802c62bf29a17443656e1397734eb51
MD5 2758feff1c0ef58f3714a56d389f815c
BLAKE2b-256 24cb1229f1a0cd298be521be185c8e94d21128b6b07230ee96931aeed76184a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5518b6355bf39c6e08aa8d8bc87b59de464ffacb5eed2f0d545502fc044260d1
MD5 45746bf9c2088658be7d1e4159150a81
BLAKE2b-256 8e53ca981e46fa7d18ca41b8f5b59148bdf08e246eb1374163547c94e29dd7b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 032d516c82a7554618ff8f5e25f29deda9fce5ca1af3cc0ef66f19ca722b9770
MD5 bae185c968a8f09e629eaf0c42fbefc5
BLAKE2b-256 3401450ed8e7cd19f39d2840bda4280d89c9d230b279e27552e0aa7688f562a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96c3df2a49151c10eb9b04e84215caaeaf310984f0f89b8c54f1a025213179ef
MD5 68933cfdaca1c4f25a283634cbe2c6a5
BLAKE2b-256 ba11f5621791c714ab52a7b038e364700b11a0e7dd41f28de05b3fc2527dca93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f907bf845d4eabf409ed071bc9411fc9c6533fc1c791d504b551c096ecdabd70
MD5 17d49f523db93f16aaa2323b8985f5cf
BLAKE2b-256 8a44e7e8c6288b1bded275bc45a34fac0eac232fcaec715b235cce3e2948fb9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f5402007988d1fc5739843d5b77015bb022f40d407e34e63bc65741e684b63f
MD5 e3a5ec7a400aea4f63151a4f1148c828
BLAKE2b-256 fb1b36a1ddd7e24c57596c283ad2d01f560f4f4d20807c8ea4fd4637713eec4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1199bcd556b5b9192dd0baf1cd0d3ec8aae2dbaa9f15707729e51f095ae31b5a
MD5 d00e1d82f7b719420b45e6644e0b2f11
BLAKE2b-256 c67b4bb5e922933251b8dde51451bf9301ba1d14bd9f805b70cf971dd4a63c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f38c969cfc7b082da20a7def0e3f22694ad1943da575c1f57e3186f0b174c7c8
MD5 1a9abb294ef179f5de5b9ec7c9e8b821
BLAKE2b-256 340c4b50776d1beac39002c2ce346fe3d742f0112d6906f3ae1b4bf5ee94e9e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 317592e60f6a2fcb2c4e2d0357ee2c8dbaefc535ebb3795e1ffa58d517acbda8
MD5 6e3899e201dab35017496b4895352954
BLAKE2b-256 bfba8212dd23a3adc97002f59e8445825d1b391f3e8ff5d5815ff1c7aad90755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e162191a49ccac80ee57db4c2b1c1c2cbfc6d4117dfc136f9f0f550df4a3aea3
MD5 f5e38eea8ad2d0ce67454e4e71b723ce
BLAKE2b-256 7f26ade17eb333b308647d422aa92beeeb91826d3e4ae74fa522aa92f488fee5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a577147edce263db9764847f4dacc754888fe24ac89234239b4564815e357db3
MD5 561e5a8b9187cbe4c5e08580c38de8c7
BLAKE2b-256 e6eecb49fe82877bf6e2ca9f90e368ee77bdde9c9fb68a7e069f3c1f96696a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdb6f456dc3ae1079e372a88ad76629f632f3e9c6cc04bc86881b6a8b8d24cfe
MD5 a0cfe3b2698f64910720433ae4e753a4
BLAKE2b-256 49ff08b14f9b8e3a6e2911d4779085f046f3b3498d0cabccb3c488e3269e9d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c698e16857e20587881263326f0bf689f37583d781a32d5c2b1593be74219a9
MD5 1387665c68a28970ccbbd19de544dd7f
BLAKE2b-256 54bd5f6eb9b5cfb88056d058af9a465b23d2071d30e60c786ef31b1e99500097

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c280c92455644d4a3eb89ade3c91586ae9132de3245e12eb7c2e41e663d53fb
MD5 1f0a078b8c6ee16080194b3f989ede5d
BLAKE2b-256 6d1cafc7825119fc223c5f4c13dac2c7496c2cfc5a75c909dd9a139665d0802f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dffc4edbe63a38c8fec38e43f39af8e130183824e210006ad7527e5b8c878ee7
MD5 1ed6700c857a9e03844abc7ce9d5938b
BLAKE2b-256 20c0e5cf1adf8cd4c5e660ff13ac90d44fcf9b3abbac8a4d367f6ac5764a38d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df2454d8fc700e85c40464999157af1a49fc19964f21b3cb02ac979aa6600bb2
MD5 b5696f3e7af86ba0c487e1d3d7a420c4
BLAKE2b-256 ba60f60979897f1d1b06353d43da469eefea28c389aaba2faa1240f817a05ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 249c7b59f3476cc1d95e949f1f1f6bd5223501205d814a6e374d576ea4ecd263
MD5 459d464befaa43f93fe7abf4e736e37e
BLAKE2b-256 7cfe200984fdba6a441ba54622dfb1f654c21cb94395866b6b64e1aac58fb35d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcfcb202f8a76788546a13e95c43c9cf33a2b603681f1f796e35f019cbf2b355
MD5 bccf47ee6d2711cff42e4250d7c422bb
BLAKE2b-256 18c339d2159904a1128e1ac9cf2b84dfe2a840bb6ef6ef3479f1d57615d62dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ba3e0603013c3c3d4c3fc24047fdbaffc2c6c066f78b362d55bd9d9db6ebed8
MD5 f375e7a88dc0558c1c98e356b70d6320
BLAKE2b-256 457d67da022b421bf0cf46495509ee95a6c5563660682121a8dbbd79e396d8c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcb5bcf9a7179b4a2283ef0ac3330958c1fe85980758337b311eaaec0090b4a6
MD5 44e3a12085c3b928656595a7020d240b
BLAKE2b-256 ab21c05454968e9e3ec033aef2927802d8037646acc2055510968b5ad7555e49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5048e58adec257416ea9774771f84074b8700c16b0e87dfef1a200ad6b79a1eb
MD5 56cf61d3370bed1de98812d8a749ec7a
BLAKE2b-256 66f5b28273a6032ef4d9523951e9fe18c4e127b050816eb5f50f23ec549ecc0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba3d6af12fbb02e3e25c841f87a0cc29860dffca5f7f2b288fdfa73cbfc462c2
MD5 d2f61829aedad7f2397192c072b93f94
BLAKE2b-256 1e5125c15b4f875d8653cfb76f30e84857a577956dedc4dfaf7f5cc403f04ff2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d61c65ac4f372df9f5eedbf944aff997378a4e6d2f5bdb660b6e63d397e0f11
MD5 48b6043aee8c0d3af0b7998eb27d07c0
BLAKE2b-256 a4c8e14eeca734f9116d277f7ed6db3797937315c47f249dd098d97724444908

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aadd0de3d8f1eaa4717ccb2a7f067130c330b9baf45f7370d3294fa50f8ffe85
MD5 0c2d955d1fbdc66afa7a54cb2f7514d6
BLAKE2b-256 abce70bd3181f7a5960dff9d6191aece28c4745fe3d7d70824af03cbaf60c63c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd3fdccdeea2257a28b5d6498d252a1b351a9eb14ab919faaf4ee8e966fbbb7e
MD5 c14f432b83f507016854c07143a17e8f
BLAKE2b-256 10926bd5be3c355ed742fdff235d7e8eb4f75d9420486830eac08b8d5af63bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f7981693ab33c7d67b92638924c04950ce7b5eccbd997e4aa1c3306bf122adc
MD5 dbe84f8cbce72dc8057b17ffe9c5049a
BLAKE2b-256 299a4e8541e6e658284058d79b85ccad2668402653bf52b5ec470116429f050a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a2160e6ef737b3b33ac5c07b091f84ae9b010bfddad0fd593c7c2e233dadb82
MD5 f14a4c18950ec4f7168d22cb843a65ed
BLAKE2b-256 2aed9e2d2cc51784d219232cb656ac3705420548c85509ace35542e886465362

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e14b7477dd4fd5725c3035b4ff38f77ba4ca460a94536f514be59fd65803d5d6
MD5 6a13315d1681913d350feb9128bb3d66
BLAKE2b-256 4fd2d31d09c02529d5febb75b3759a1369f5a58253e94b19bfe39f30460ae968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2ab87f5e3272a121724374d83f9903e5763d003133da9b65be2c2c4ba924d56
MD5 b8ff2309bf439d9991160888d09c70a9
BLAKE2b-256 3652bde133edd6f7b2eba27071338d1d210937d33b013e80b93740532bd863bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for seekstorm_client_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f5eeacc36b6b78d003056487b5590a0c97df65c36c7d3a3d990706750c4ef8f
MD5 572299ecbdce72ac52feaebfda06470a
BLAKE2b-256 6d5730d4a278c280e5d68248d7d5ac935e34e11fbab63fbce2d8e93e0c082f9e

See more details on using hashes here.

Provenance

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