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.14.tar.gz (172.1 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.14-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.14-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14-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.14-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-cp313-cp313t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.1.14-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.14-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.1.14-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.14-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.1.14-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.14-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.1.14-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.14-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.1.14-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.14-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.1.14-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.14-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.1.14-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.14-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.14.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.1.14.tar.gz
Algorithm Hash digest
SHA256 3b88b56020695ba744b55577f54157c04b51939b6414faf1c8e08a4466c918f4
MD5 f547520bde72aedee85d583c3f349bfa
BLAKE2b-256 b6d288ce1e9dbfc723f40a502426224ca2ed650716722938414388862ded276f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81adee0812913a98cd512dc39b56458725d0961cde7b051390ff06f5cac88f09
MD5 c433b1b96a5aa544b4222c1861f9c3e6
BLAKE2b-256 367b298b57d44b16e63e263bdf96a4d067eed4ea39467ca4fa7d6f03e799c4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c22522922a220a5d77460981b75e1d9d3df290a8eed3ff351fd4252c61543e3
MD5 d55c214160370f4d3c9c48056e8524db
BLAKE2b-256 1fa1c58578d5d40604da7f8bd3fe6b17c1cddb3aec7c40e6fe2824a396983f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdf3164bd52b15a2daed937d1de0dda30f713e4aae137bf5b034201e1e253389
MD5 3178c6e670f5d6ff1a93e03f4a8c2180
BLAKE2b-256 bcce96bdee98aa6fff1db5e512858283fc6a54ff5a1c864669bdb10ed44e2554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02dc973140b64be842041a958ee4c2f7c5e5438f186989a612fd56d9aa4e0067
MD5 19835be93a91e852ec0e95ef7479060a
BLAKE2b-256 8ac0b3f1787905c7897764f1a16034275ba7ac17d9510d497756b125d0206f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9ddb68a393968bd95ca6e4e981a6e4d4246a43746544e6c2bfb61208d699f75
MD5 859f99243c4bc49c7c3112903daaa8ab
BLAKE2b-256 bade44c935bbf8550db46621613388f17bebb5a68df0ddd521368cbf2994b306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5aaa68ed1e0d83764fb5530300da2504ce4abe6c55d41b0bb81580bc26cf241b
MD5 8c63e13308bfa82632b2641acefb2ad3
BLAKE2b-256 898d2a8449cd5eca40b8d128e4564d7fccfaa41d372a74b8ea2c7773c36216e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b879f5c5d2f3a152cc014d2e799525ef3384f7aa1d82c3c07ef24a422a07caa
MD5 ec5d7f7d9de2c272c9b6433f43ff09dd
BLAKE2b-256 a7c446d13ac9feec7fe49fdc2d23777a04df8c0179cd3819d1c3dc62e04e9a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc404312955b5b2695520b7792dc04834258dbb62b04b692156856418c2bf98
MD5 fac88a2e41d357b49570267aa4ee8033
BLAKE2b-256 dab690c87d1029a171fb400ca4c6bda8d27380a47dd7867c5532fb43f5f34896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41bcda44d2efa89149bc99fc1f16fd55a98d216f04a8fc7cf22aaa933ff55e52
MD5 39b786deac203224fb4d7c0cc80b3360
BLAKE2b-256 71f6ad04ef02b85a650d4d8fa2a222f03e898de9857f41ea341e7ecb7c66da56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fd62a0f4a7aff913595048a59029a3c1d7e7b49a2d9144f3bf39cbee144b0ed
MD5 299d527085aefed4bb5f993ecd7d7ae2
BLAKE2b-256 53aa6e0ef8995a3c86a14b651957177a9fb9e58306a2494efb1c3a98ac279311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d33ea96b197997d3fe6cd248881892ff987375390f1c555e4d4c8eda214d0f93
MD5 d18c58decef341eb8999ce601fcdc326
BLAKE2b-256 3b8aea6f962b1978140b3439f1acad6f85ecb0036da01b0bea8aafe6ddfea308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e94e59b5d8c6149117e67bdc503297cfe20ed46962ef2e58bf51f0142890b1c
MD5 70d00f51789ca500f375316e7286351b
BLAKE2b-256 4a1d14fa13fb9b7073ea442375c573dde8b9a2daaa6412869c3f66ccdedd2953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 526f30294f038eb5c9137942638f5c504c0192dba205c9dbceffb65538a47854
MD5 0226a374a4e777ec46ab0c266db4dac4
BLAKE2b-256 ff249c9c0e836dbf989d423adacb4e24b9e61fcfcf4419b8d63bc493d7e2b1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae59622589deb21eb5ea020fd1b4da8d0dab48b5ff5a129b09dd0155851bbf3a
MD5 035d80a3eac0a0da8c5a901fbbd05ea0
BLAKE2b-256 495bacef543ad6d2dbc1e450f94bbbd93a54e0bf78a3b3d68c96d15992c811bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa72da2084cd354549d5b028407de15ab6326fc28611da0494c2e781d05e6660
MD5 79ace5f7af574a7e553459ac2a341d46
BLAKE2b-256 a6fab034657dd2daa577187c499ad1cb6f5415af2d9b79e2daa366648e73988f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75f7aa3604f9d016ccb3d69d9d175efcfd7ffca08adc8eb279ad9bef0ea87c02
MD5 bc5671172d8574b12fe356a9166739c0
BLAKE2b-256 0d3802687cdff091758bb906dca3905e632a97792ec3f68217f8d98093113c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e510b77089bb343231573dfebd54bec6e78464224a0942b3ffbc47398169721d
MD5 cc8329984b98523d16786c8509c844a3
BLAKE2b-256 99faef1af54d9e20aec6bb3e712969196f9cfe94fc18dbd24e2a3c4837658a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdd00fe117f50cc36fbca83abdb150c64607dac753baddfe48f71beda32c5d7b
MD5 35f82d34b2cfa64c4ddf3c0fefe3e075
BLAKE2b-256 4269442f324154a9f08f40fb45c34374af7c9ef55a7b037c846c2fc3673e37d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a7061c5c12e93183942447ee931e30fb6fe7ed516412a2e2c2a25ec60fa2e5
MD5 f98ab18722653be7e682b060d4f0919f
BLAKE2b-256 7b848d3afbf524f2bebe231ffcf8824d2254cdef023ccb49158ab7d181cef136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58765c5d053082490cda16286f742792000675dc9979843d45837729e8f7990f
MD5 593aa8398244b19a652ac3004836d0db
BLAKE2b-256 9fcd394f77389de2b26cdf26fb64c690e7b5fc25de8091c945c92d997c227944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e669390cff040c1f6660875cca3d3f8c4d8f9f28084303235d4198e2d5cd5ad5
MD5 1864d9921e391404726f05ed2223e0b1
BLAKE2b-256 7079e6167bc3c2f7b600b7ec6cf6159d6b0f2e01bdee0a2f4ac7eb5afc0b2d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9ae798654c7f1b396fc219dcf1663d2d5d99e0b69564fbaa49935dbaaba5511
MD5 5cfe075f1a76920c60afd3d9006b6072
BLAKE2b-256 50a2dfd68f819d4a36a29f103cb08fa36bdaca379e21dd7ca4228f08a816bb3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 65d984908e17a747b2c057cdb70784a9e81e1d7dc08633a8b82ebbd34f8661de
MD5 adcf45d744da5e9542a4df413911c196
BLAKE2b-256 0d3708d3635ce49bb78825bda5011bc5ecec498b9439b62f9721148baafb6fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23becf893f9b0c591cb6587db82385eee82c3f2ac9d49145fc5555aa63658e88
MD5 c0fb5678d225e4185f589353f16dfc31
BLAKE2b-256 dbd99ec5d7ceea3651b171eb148ac515de29ad429600d4416babc5e355540c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 480a019010bae33f125a70e5ce8a34852a26b411dce243da64d604ac4c008521
MD5 b5992a8ed53ec5419418c967c57b3773
BLAKE2b-256 bfb945a868759d4a90f8fbcb3cb5772020242c32643c1b195c9fe19cb2fc4458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc24aa2cd1fabbc6d9de572caa61a9966fd4853a5abd4f1f5d22b931615dd2f6
MD5 def3993feb927132c740f106dd895de6
BLAKE2b-256 4225144c2f8d16dd6ccbc1ecdbe6606aca4ef90a1592f2627789d76f0a5972b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13fcc69fe38de44b54e414a589213444da9d0681f9ded92ba13ef0d4e41020af
MD5 bb4f269bf10d01c77bafa5d411f3e6bf
BLAKE2b-256 1022ef827ee2c3eb7b2729a64c5f534adb2a20413e3ddbe7b9ae22c5ef44a08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80707cf48522c830c894144d7d5ec43d6292e34ce0366c92b43d2df074103a76
MD5 c48dd9743300a1b645e9b1c62f640b68
BLAKE2b-256 150cb8e3b30d32d462cbead11ab98a3c1148fea832a0525d7ef475fdb3b5a21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 295af68f7d461677706bef3697de89d8e00e61fff974fdcb27db55d446319592
MD5 df20d2e2690e652a189214b33022aff3
BLAKE2b-256 5c7db3cdb1c7a26c6d8060fb6b24f0a341472d8486698a5479251b70e9147428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f217f57158233a307c50db265672ef532eb5002f0c342e9c7f52d3f9670dd5d3
MD5 a4168b48a6211dcaaeeb9fc687ab2b49
BLAKE2b-256 0c5d8418cc9a8e3b865a920286f4bff1c33c46a97968b5a8e09d2a7d45225fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd228462bfd0001b65ff221a93255d2a0a71059eda4e09f473ea6e6c0c8fc7a2
MD5 131b9d8423e89ed3b3f6e2be810e2434
BLAKE2b-256 d85c85b90b933d8a608cf9457311cd133627c8c903583bd1ec4695bbbf2d123c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0eb306e69f80d522a16cad5068b348ae0becce7ae2c3523e0d805b87cb275227
MD5 d40a005a832475f4acc2dcd4798b6c26
BLAKE2b-256 d253dcf5f2b02897353764432ee49a3b712ee085c044f662eb04d49b5d814637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16a3f3dec6949af6294baec2f709f797892c357a6f45901587bad8f2d78f266d
MD5 a084bbcd2c92174403de4607be97c170
BLAKE2b-256 e84bcfc732b13d86a093a1e0da9ced07994f9f8254cfb4f5b1fb16bd1e2c7f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 750e125a551e1834115810a2fafa87d7e35e5d6176a5b3c2e6b804c905535984
MD5 656769b69dd671deb0e2725aeb0ce22c
BLAKE2b-256 324a25837ed84b13342e7489d8f8b1f53814697ed78869067b4de97c213e0246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7910a57145186567b97c099db826660fdd01fe3514f43ce7841f8f8f3773598b
MD5 7e396d86eaa75fc816898b8ed8f3786e
BLAKE2b-256 e4c687cef300e0b83f176a41602a2f40302d81a628e8c54dd57cc074a1b6d4b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c46d621a382ee1e5541fa806307a5123d84010641ca0a300125130dae2b8e68
MD5 f93d365584645ea51eb939d12d3f0347
BLAKE2b-256 7dc3f186fe5ece5afdacab3a469cdd89823f09df7a97f942128395fd15cde604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 102f8019d1b257afd1a40f569cb9bb608afdc6bce7fb02638f4416d05f34cbf6
MD5 87921b886b7c846debc1400acdf7ba0c
BLAKE2b-256 bc0d8e615ad992d19c8882fe304f3764ad37d4494c48e4ecb27a6a2dc87aa7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37ea94740089ee4479523073a4f98be0e0c8dcd1ce81f9678fab1c486462d050
MD5 06a528f5ffd2763832711547dcd7b7b9
BLAKE2b-256 0277d04f2eafeb1a8e000294ddd5529e39983257b07a98f37c0096da9b74161c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a07f46f7747511c8ff6f78957ca852c313fddbd906c95cc7d7ac83626e183bd3
MD5 1f1fa37215bca891039be150246a2321
BLAKE2b-256 914372bbbea9f9d0959dd8970904ffee526128cafce1fc49a37d86c89f817975

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