Skip to main content

SeekStorm Pure Python REST Client

Logo
Pure Python REST client, using httpx (sync and async), for the SeekStorm vector & lexical search server.

seekstorm_client_pure_py is open source licensed under the Apache License 2.0

SeekStorm REST client (Pure Python)

PyPI License

SeekStorm REST client (Python wrapper via PyO3/Maturin)

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

Install

pip install seekstorm-client-pure-py

Quick Start (Sync)

from seekstorm_client import (
  SeekStorm,
  CreateIndexRequest,
  SearchRequestObject,
)

BASE_URL = "http://127.0.0.1:80"
DEMO_API_KEY = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="

client = SeekStorm(base_url=BASE_URL, apikey_base64=DEMO_API_KEY)

schema = [
  {"field": "title", "field_type": "Text", "store": True, "index_lexical": True},
  {"field": "body", "field_type": "Text", "store": True, "index_lexical": True, "longest": True},
  {"field": "url", "field_type": "Text", "store": True, "index_lexical": False},
]

create_request = CreateIndexRequest(
  index_name="demo_index",
  schema=schema,
  similarity="Bm25f",
  tokenizer="UnicodeAlphanumeric",
  stemmer="None",
  document_compression="Snappy",
  ngram_indexing=0,
)

index_id = client.create_index(create_request).index_id

client.index_document(index_id, {"title": "title1", "body": "hello seekstorm", "url": "https://example.org"})
client.commit_index(index_id)

query = SearchRequestObject(query_string="+hello +seekstorm", offset=0, length=10)
result = client.query_index(index_id, query)

print(result.count_total)
client.delete_index(index_id)
client.close()

Quick Start (Async)

import asyncio

from seekstorm_client import AsyncSeekStorm, CreateIndexRequest, SearchRequestObject


async def main() -> None:
  client = AsyncSeekStorm(base_url="http://127.0.0.1:80", apikey_base64="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=")

  request = CreateIndexRequest(
    index_name="demo_async_index",
    schema=[
      {"field": "title", "field_type": "Text", "store": True, "index_lexical": True},
      {"field": "body", "field_type": "Text", "store": True, "index_lexical": True},
    ],
  )

  index_id = (await client.create_index(request)).index_id

  await client.index_document(index_id, {"title": "async", "body": "hello"})
  await client.commit_index(index_id)

  result = await client.query_index(index_id, SearchRequestObject(query_string="+hello"))
  print(result.count_total)

  await client.delete_index(index_id)
  await client.close()


asyncio.run(main())

Dataclasses

The client exposes typed dataclasses for common request/response objects.

Request dataclasses:

  • ApikeyQuotaObject
  • CreateIndexRequest
  • DeleteApikeyRequest
  • GetDocumentRequest
  • GetIteratorRequest
  • SearchRequestObject
  • UpdateDocumentRequest
  • UpdateDocumentsRequest

Response dataclasses:

  • LiveResponse
  • ApiKeyResponse
  • RemainingApiKeysResponse
  • ApikeyInfoResponse
  • CreateIndexResponse
  • RemainingIndicesResponse
  • IndexedDocumentCountResponse
  • IndexResponseObject
  • IteratorResultItem
  • IteratorResult
  • DocumentResponse
  • PdfResponse
  • SearchResultObject

Error type:

  • SeekStormApiError (contains status_code and body)

API Key Endpoints

The client supports API key lifecycle endpoints, including create_apikey.

REST routes:

  • POST /api/v1/apikey -> create_apikey(...)
  • GET /api/v1/apikey -> get_apikey_info(...)
  • DELETE /api/v1/apikey -> delete_apikey(...)

Sync example:

from seekstorm_client import SeekStorm, ApikeyQuotaObject

client = SeekStorm(base_url="http://127.0.0.1:80")
master_key = "/iWStCpyfpd/BVlHOFtwnMgrFrmof4jGq/OQDWXQzcM="

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

created = client.create_apikey(master_key, quota)
print(created.api_key_base64)

info = client.get_apikey_info(apikey_base64=created.api_key_base64)
print(len(info.indices))

remaining = client.delete_apikey(created.api_key_base64, master_key)
print(remaining.remaining_api_keys)

client.close()

Method Signatures

Sync client: SeekStorm

SeekStorm(base_url: str, apikey_base64: str | None = None, timeout: float = 30.0)

All endpoint methods accept an optional base_url: str | None = None parameter to override the client default host for that single request.

API key endpoints:

  • live() -> LiveResponse
  • create_apikey(master_apikey: str, api_key_quota_object: ApikeyQuotaObject) -> ApiKeyResponse
  • delete_apikey(apikey_base64: str, master_apikey_base64: str) -> RemainingApiKeysResponse
  • get_apikey_info(apikey_base64: str | None = None) -> ApikeyInfoResponse

Index endpoints:

  • create_index(request: CreateIndexRequest, apikey_base64: str | None = None) -> CreateIndexResponse
  • delete_index(index_id: int, apikey_base64: str | None = None) -> RemainingIndicesResponse
  • clear_index(index_id: int, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • commit_index(index_id: int, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • get_index_info(index_id: int, apikey_base64: str | None = None) -> IndexResponseObject

Document endpoints:

  • index_document(index_id: int, document: dict, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • index_documents(index_id: int, documents: Sequence[dict], apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • index_pdf(index_id: int, file_path: str | Path, file_date: int, document: bytes, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • get_pdf(index_id: int, doc_id: int, apikey_base64: str | None = None) -> PdfResponse
  • get_document(index_id: int, doc_id: int, request: GetDocumentRequest, apikey_base64: str | None = None) -> DocumentResponse
  • update_document(index_id: int, request: UpdateDocumentRequest, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • update_documents(index_id: int, request: UpdateDocumentsRequest, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • delete_document_by_docid(index_id: int, doc_id: int, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • delete_documents_by_docid(index_id: int, doc_id_vec: Sequence[int], apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • delete_documents_by_query(index_id: int, query: SearchRequestObject, apikey_base64: str | None = None) -> IndexedDocumentCountResponse
  • document_iterator(index_id: int, request: GetIteratorRequest, apikey_base64: str | None = None) -> IteratorResult
  • query_index(index_id: int, request: SearchRequestObject, apikey_base64: str | None = None) -> SearchResultObject

Async client: AsyncSeekStorm

AsyncSeekStorm exposes the same endpoint methods as SeekStorm, but all methods are async and must be awaited.

Tests

Make sure the SeekStorm server is running before running tests.

Optional environment variables:

  • SEEKSTORM_BASE_URL (default: http://127.0.0.1:80)
  • SEEKSTORM_API_KEY (default: demo key)
  • SEEKSTORM_MASTER_API_KEY (default in tests is set to the known local dev master key)

Run sync tests:

python -m unittest -v test_client.py

Run async tests:

python -m unittest -v test_async_client.py

Run both suites in one command:

python -m unittest -v test_client.py test_async_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_pure_py-0.1.1.tar.gz (390.6 kB view details)

Uploaded Source

Built Distribution

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

seekstorm_client_pure_py-0.1.1-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file seekstorm_client_pure_py-0.1.1.tar.gz.

File metadata

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

File hashes

Hashes for seekstorm_client_pure_py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9a9b8bacf0800d5b5ce8bb9df8f05d43ca9e593c6ab7e49a9c22bcabc078e3f3
MD5 d4dc5e4920eed79adc8b9453873c0f19
BLAKE2b-256 f2f8297dc1d34a2349912bac7e080fdb8008a2309e378fea1ea076939e594508

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_pure_py-0.1.1.tar.gz:

Publisher: release.yml on SeekStorm/seekstorm_client_pure_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_pure_py-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for seekstorm_client_pure_py-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 834f682c345e525c66f89b59357da0c1f4811b25fb22fecbfe98d84fca0665e0
MD5 3e33bee2b79f10d8be2cfe4f093e716e
BLAKE2b-256 f6abd7163fcb29fc6b9985247e90411e025b8e8f40dd3e9f1aae966de66970a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for seekstorm_client_pure_py-0.1.1-py3-none-any.whl:

Publisher: release.yml on SeekStorm/seekstorm_client_pure_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