Skip to main content

Python SDK for topk.io

Project description

TopK SDK

Full documentation is available on docs.topk.io.

TopK SDK provides a Python API for managing collections, querying data, and performing advanced search operations, including keyword and vector-based searches. It is designed for scalability and flexibility in building search applications.

Features

  • Create and manage collections with custom schemas.
  • Perform keyword and vector-based searches with scoring and ranking.
  • Upsert and delete documents in collections.
  • Support for schema validation and collection listing.
  • Pythonic API for seamless integration.

Installation

Install the SDK using pip:

pip install topk-sdk

Usage Examples

Create a client:

from topk_sdk import Client

client = Client(api_key="your_api_key", region="aws-us-east-1-thunderbird")

1. Create a Collection

Define a schema and create a collection.

from topk_sdk.schema import text, vector, vector_index, keyword_index

schema = {
    "title": text().required().index(keyword_index()),
    "embedding": vector(3).required().index(vector_index(metric="cosine")),
}

client.collections().create("books", schema=schema)

2. Upsert Documents

Add or update documents in a collection.

client.collection("books").upsert(
    [
        {"_id": "doc1", "title": "Hello World", "embedding": [1.0, 2.0, 3.0]},
        {"_id": "doc2", "title": "Rust Programming", "embedding": [4.0, 5.0, 6.0]},
    ]
)

3. Query for Keyword Search

Perform a keyword search with token matching and scoring.

from topk_sdk.query import match, fn, select

results = client.collection("books").query(
    select(
        text_score=fn.bm25_score(),
    ).filter(
        match("rust", field="title", weight=10.0)
    ).top_k(field("text_score"), k=3)
)

4. Query for Vector Search

Perform a nearest-neighbor search with vector distances.

results = client.collection("books").query(
    select(
        vector_distance=fn.vector_distance("embedding", [1.0, 2.0, 3.0]),
    ).top_k(field("vector_distance"), k=3)
)

5. Delete Documents

Remove documents from a collection.

client.collection("books").delete(["doc1"])

6. List and Delete Collections

Manage collections in your workspace.

# List collections
collections = client.collections().list()

# Delete a collection
client.collections().delete("books")

Testing

Run the test suite with pytest:

pytest

Project details


Download files

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

Source Distribution

topk_sdk-0.1.13.tar.gz (172.0 kB view details)

Uploaded Source

Built Distributions

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

topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.13-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.1.13-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.13-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.1.13-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.13-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.1.13-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.13-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file topk_sdk-0.1.13.tar.gz.

File metadata

  • Download URL: topk_sdk-0.1.13.tar.gz
  • Upload date:
  • Size: 172.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for topk_sdk-0.1.13.tar.gz
Algorithm Hash digest
SHA256 7310d47547e14d06c05c186d0c399baf13a6bfd9430257f67aee1a596d05a21f
MD5 e6fa1dfae700d2aa1d1ee5bb6a501161
BLAKE2b-256 77e249c3061cc061b70d6b723df8304e9092ac0eae1a35a530a8766a7b65b715

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4676bfcd3c5e3ea5825bd401d400b59977a27de499b17f132f096aca65530055
MD5 b1f1174fd700a0d7039b7c4fd7911699
BLAKE2b-256 7d6c4f753a834fc1f21695fbab21b7564921fe9bdfc3c3dfa82627d0fa54968c

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd2af7c6964fe86d9b36562fd1b1c49bf422980de71ee168ab767b63be541afd
MD5 dedfebabb0890dbfc65ad2e906f32f38
BLAKE2b-256 cc1db1f3e267dc50ad046177ac1730b0c8e650f1fe0fde8a482163df571f69fa

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fec4af611d7da1cc6d924f18aeeb07a427522ecedaffc3016c0a2817c8ad26f
MD5 a5569d37d0f24f62a76c0542592d2e66
BLAKE2b-256 36e4d6bc21afff4a9ca2c0a433757be6095161400ad3629ebae7f483ffe33a59

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf8b86bfdc67929f67a01e850916a1ac334b6333ec1001e3c9c36d73eec1b367
MD5 573e95f32e94694c5021e7e9af68f90c
BLAKE2b-256 29694adb2803005dc7617da2bef0b3eca8429e207fc6e73537d740cab2cdd444

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c40d410b855144c4a36ae2102c3763af325b37462c2e5f8eb1a8d92143c35cb0
MD5 c76801d8ef1fd8d8233d5eb22cb21886
BLAKE2b-256 0512262f599e2765d71a92182daa551e841546ecf78d26745a51eb2486af62a7

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba1226afd36ae463f915cc58b551d6fc09bde5abaed4a831b7380d5bd59e8d78
MD5 c70a080c51a5da3fdc4b93fc933d49c1
BLAKE2b-256 bc44bc43abbd9a02c56bedb1f6733442ad2a0506b4d073ffbb2997c795eeb4e8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8de03101d0aebc079197f00747fe0cca4bdefef41a12f95bb8c8d960eb219955
MD5 53641c048442e846242090e52cfc95b0
BLAKE2b-256 d68b1a1ecfe81785043f137619c5e12a01c3c82fda9ea910e65418df13575d5a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19efe36e5c32949cae1833e29ec1d9e4c47139962c286777ffcb10b72feca87e
MD5 282c26291c0447db1cb7d603ff38b845
BLAKE2b-256 4e2092022dc22aef2179aa3b9ebae2d0ce46b3069b7994c4ff42d37fb4eab200

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d247705506e9caa8efd8adb7e77c8abd441a45315b22f9c953e8917f993674e6
MD5 3bf3e64af12735220b58c420ed9dcac2
BLAKE2b-256 62b3b146d58d271bb6e4f2d82046bd404ad732c43d705a9aacd34ed7821ef31e

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 079f2c0ed9277dbc6126cc468dd0e57144881a5a5e8095948cc35ecea4913a23
MD5 394a47575e802be054e4fcff90496a51
BLAKE2b-256 06bea34b848d20855702697ae7a7254ac2cd7518c6672c99a8de5b345df5442f

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfe87e2d83600552cf1656b1b0c87559e7dc02376a1e38724e9112f572603b5d
MD5 84efdad258338be2cc53c139b725ebdf
BLAKE2b-256 6b3a2f89af4ad2a8641ada4f642f369ce00f5795a96d8d6f9af4dad56d482725

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f14d8fb05188d73c4510c531df620952fe8e0e99a3ee918e9eaf0e3a2c45f08a
MD5 98c639e4b1b5eced523158674a546adb
BLAKE2b-256 d38f8ae18b53e008025bef9f1bae6b347b00222982353cea9ba1dc3ad4988970

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbc9991807bba834e58f6ff25432a8cfa688b660c4751c6e66857b2957bd53ee
MD5 4143d659405dac49d965a4d8d07d10e1
BLAKE2b-256 ac9d8f0ca69c0f89b025d9f89663a6ada832d925e0c0e2459d967873b186a7c6

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1bee1992510bff310bee07145aa88ea616e00163862d105a94043827ced2fe
MD5 9f7e75e3342cdf13524c33c378e8dc86
BLAKE2b-256 812fb3014ae4379120960873f9d907d9634c129cf1244a16e36516679a462101

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19b3ca1c8cdeaf410dbc1e01236069233edd54b90c0a65d0d7f919b796cf6d95
MD5 ee8597e8e41683e8eb509b1d12fb91ee
BLAKE2b-256 44559de1c8a5dc58a232cd0adb3411a9e43b2c1ada486bd4891b340ab226e000

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c11cefba85d4974684a90e2998b3d5d89c864a566a9e38030aa6b9395bc2b0da
MD5 79d21baedc4795e7df12e966442cd491
BLAKE2b-256 d91c6ca66f37b33db1ba006f03d52f1762b04481bd31d5981d9c897396fb41e8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbe926b15e088c56316ac9f54a650caeed927506d0fadf2481219fcfffee6dc9
MD5 1bb4a2475d163278c1b9aef554b0bc88
BLAKE2b-256 3b550a3c04d9e6a0f762a4c62d4b0a9b61a1b2cfd4398398c38131514134de11

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1ea90c39190caba1109704866f7968089d5be6c586bafeb5a64645d36ab857e
MD5 d0dd36aa945de3b027a6314322a87747
BLAKE2b-256 c9b319c611c9807b18a728e8dc86a34597fbfdc86388396534f1b96ac7ddc94a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f02f76ef172008ab85640c13fd99539a5e1caab12f599bd06ea0513a5c3e155
MD5 8ae4f2f14247a05583771812b56efef6
BLAKE2b-256 b240745ee71b975936c39a8cc41c3c79d36c51a0adca26cfc10d72f225f05d33

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7be41662d32cdea69b746ad37195c6ede6a63093e0a182282666a8c8b042d99
MD5 429ce711c51e92da720c3c9bee8dbb60
BLAKE2b-256 5b1e27d8022cd67ff7ec0a918cf84184678e785b2badae744fceb2bb84382d45

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 007ab86521b9eb2c32dee39f1dc711dc3c6948619988ab3f12726e171b8b957f
MD5 7bc661d172ce7e084f9948bbbb4721b9
BLAKE2b-256 98cbaafe7b132b4265e918acad551fce2025245738e6563971f3a91386b06fe3

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b8fe57ad9455368a269baca19250643c4552c8b75beff22dce39cecbf813761
MD5 942cd7bf4de74ba74a72b4a2e5b66a0b
BLAKE2b-256 8b2f2f21c6d012c950044f7bbe04c6e14d3644e3cc6f03f1cccc55e478650ee4

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99983e5c96b452503dbe4a3090d0548df86b4f34b1c3017e636b3e1162c91e22
MD5 ad59def16c6181423d8f9829c70f7b9b
BLAKE2b-256 279ab97ae97b9f5baee4897d12c24d08123cf5a9b2ac4e527268984777074c62

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f38f5478bafb68b8a68f4a15b01f3b9b92b761863faf23000a7e6c67b6da258
MD5 9f76bea69a189de072443002089db437
BLAKE2b-256 61eadaa266adeb25b176faf8f6d9eaf05437231131400afd7e4605ee29b8cf49

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acb19fd01f971abdf2da7bbdb9ba722000a00ac21ac67c3ee797e2ca3b73b13a
MD5 3616006a1ed23bdc3d6976ad58b0b512
BLAKE2b-256 fad83e19740f3eade041618151ee0fbcf14d6a7db640b54a5f7819d0b1e0129c

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89056d15db77fc97adf2460b37a85ff3e9b70747f56228a1f1701b47c8f44a98
MD5 7594e499bd1985faedfaf11763a8e91c
BLAKE2b-256 b61edda0d1ad46a3734db7831cc6af53d64432307c0eb41a42873cd67da9d3e8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8002f398efa0e1c67af120793f0ce7413025e276381258d87cbc7f2ee268a5e2
MD5 729a36e196091c6168c06e652e14c94c
BLAKE2b-256 0ea915c56e0398d22d3ebd8f669ab908bcc131cab7420142761699027d111ae8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f3b5ff560322f0ab0b6bafedfcf28989a2bfb4db4341bb5f3d2d180ab3b8f0c
MD5 bf242b610ea423016c7be26fe4c2ff3a
BLAKE2b-256 0f0376915e9bf1bce841ce55e8d52851f94cc70ab91dd7960ff2e6a00e9ca666

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f7d8a03d66fd86ccf0935f7c66531d9d5028ce4dc3ee52c7bfdcea42e1cb7b7
MD5 82efd4539bbf83c64d2785d6c8e49961
BLAKE2b-256 43afd1b46406c0bd25804fee9bb0e099919ef2137f1ab627bc9304e9451cfd56

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7ad2f7c833222358c8580664a3b801810419cb3339d454678de5a68e0d386e3
MD5 6f9f4e137f24bf65a18819e9ff334299
BLAKE2b-256 484fd305a36e07921769cd653e39894098abb86ccf47be0f6edb909456d766c3

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09340ca49e8a725bc99d5bf8f758a7c1b203a604b557377a9313a01c137fe0fe
MD5 d75e89d3543aaf840b2ebcddb4b2611b
BLAKE2b-256 39424102372be4c57bc533fe5b39dd5c98d3c5efab3b0e329acfff8a256f0e64

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63592fe675cf019d7c2e5e987997e3f05419403307b6843a76eec5860d6c75a0
MD5 80993b2d76fbe665117fc782c7b94e68
BLAKE2b-256 c0f3cc7e00d1881b48a5a4f6fc81b70ab7d5cc439e7c4b62aa74630a5af74278

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b38dfa9238d59ad4437c9c27cc77e914b00fba00db30885d125ef3f3f8a980
MD5 26b80fed01d08f16a50169fc285149fa
BLAKE2b-256 f1e55df28c223208964cdf194d89f47f53e8784391318f9ff0be0eb44a1d0513

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05c4f4b887f3bfc4face49cdd48edaa9c3eca54a312b2f5a35000a8da17de75d
MD5 78416af1bce573f9c0a2a3cc52800371
BLAKE2b-256 81ac34a69e04b793356dcfe1108da91fc065ba31503e559bf8582dd775774a02

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2d5ffff6c4b23ab0a8fd233e6cc4e38bf6f021b80f15709472f2c99f2db5eff
MD5 985bac4335b83cb9e1e9f7d06a07192e
BLAKE2b-256 52bd2f6387a422479e8d2418d4cc947dad9ffe9de04e5aebee1274b1b3c6af49

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fea095ba4139f720c18c277712aa8cc7e71c606ba80db08b61094a3bf847347
MD5 274a2b8aee2bb811fa6363a53d9ad256
BLAKE2b-256 c7e3417e2af6c904eb134e44cc5be8a8d1023eaa27befa101278d9c4753de257

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b954235e90dc5c38b8ef32c13f5f42b9e4067116c39b0f7f8da2c84d753be2bb
MD5 f3100d841d6c9834c8162fc86736d6df
BLAKE2b-256 ca4baa75f68c493f82c80845f7ac3e58ac1354735ffe7f3070883fb9e13ed092

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c30734a967998b4097c71f25aa77e89bc5f21d8ae9b4f4fc46a40e981032c8a
MD5 c39e89c686e7d05a778b956e2e7cfd2b
BLAKE2b-256 d56295595d679f9a4b3c2b33913e5fecd10ab886716c0c03d916f2779a9407cf

See more details on using hashes here.

File details

Details for the file topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a36277ff31c6889bc86fd1bfba0ab5a091808f972dcfabbc70384f9bad66c3
MD5 81ba804e05dd3efca9afa50218e17f8c
BLAKE2b-256 7da5baa9ae8b3a4a69b9ac98daf173ff6fd2e42edaf825a86a46a39eee1e3ca8

See more details on using hashes here.

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