Skip to main content

Python SDK for topk.io

Project description

TopK

TopK Python SDK

Full documentation is available at docs.topk.io.

The TopK SDK provides a Python API for managing collections, inserting and deleting documents, and running powerful search queries. With automatic embeddings via semantic_index(), you can perform semantic search without needing to manage vector embeddings manually.

TopK’s query language is designed to be simple yet expressive, allowing you to search using semantic similarity, keyword matching, and filters—all in a single query.

Features

  • Automatic embeddings—no need for external vector models.
  • Create and manage collections with custom schemas.
  • Perform hybrid search using semantic similarity, keyword search, and filters.
  • Upsert and delete documents within collections.
  • Automatic schema validation and easy collection management.
  • Intuitive Python API for seamless integration.

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

To authenticate with TopK, you'll need an API key:

  1. Go to the TopK Console.
  2. Create an account and generate your API key.

Keep your API key secure—you'll need it for authentication.

3. Create a Collection

Collections are the primary data structure in TopK. They store documents and enable queries.

Initialize the Client

from topk_sdk import Client

client = Client(api_key="YOUR_TOPK_API_KEY", region="aws-us-east-1-elastica")

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

client.collections().create(
  "books",
  schema={
    "title": text().required().index(semantic_index()),  # Semantic search enabled on title
  },
)

Note: Other fields can still be upserted even if they are not defined in the schema.

4. Add Documents

Now, add documents to the collection. Each document must have an _id field.

client.collection("books").upsert(
  [
    {"_id": "gatsby", "title": "The Great Gatsby"},
    {"_id": "1984", "title": "1984"},
    {"_id": "catcher", "title": "The Catcher in the Rye"}
  ],
)

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

results = client.collection("books").query(
  select(
    "title",
    title_similarity=fn.semantic_similarity("title", "classic American novel"), # Semantic search
  )
  .topk(field("title_similarity"), 10) # Return top 10 most relevant results
)

6. (Optional) Delete a Collection

To remove the entire collection:

client.collections().delete("books")

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.7.2.tar.gz (108.9 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.7.2-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.7.2-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.2-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.7.2-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.7.2-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.7.2-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.7.2-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.7.2-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.7.2-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.7.2-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.7.2-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.2-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.2-cp39-cp39-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.2.tar.gz
Algorithm Hash digest
SHA256 98f84af0213d9524ded6dde7056be407c06af04dcabe8bac28bb06462eb3f358
MD5 8e067f77c5377fb86becc282d785e1ba
BLAKE2b-256 a048cfc1dc046b250416be2255f36022fcfc42875345dcc68b4824b5071a8e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99947c8eef1aa9c1f46909d97442a2822e1d6e4f5960c96ac8da73b7860b10e5
MD5 24e764c6227fa63150bf289b079cb001
BLAKE2b-256 a1d555f3ef3cf608338dfe6946b2b9cf70a03109ec91525b501edceeba4b0e4d

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: topk_sdk-0.7.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f48a92c16c278631520cbd13dbf26448bb6cec9e5c8059c2b8d2286a400f1d5e
MD5 728213432f7ce25d53c43ce0b43e55f6
BLAKE2b-256 5333c5f70d409df62f46235e8d9039ae595eba0065be913fb95fb744eb5600b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ea63bd0d25ddd55703a736ebbee2073e10bc2ac75f8372ebafe23135db81c47
MD5 d72b6c29ec174cdf9506c8e2a2ca318d
BLAKE2b-256 342c2cc3a4940355d3b34b84c12db80bbae003781350a42ad478d64e9d47538a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b40a04ec289e2a484fc7089bfba9b988d9566d13e99c6fe0489fea035990373b
MD5 422f5661c775ca20483547dc8cf4ca8c
BLAKE2b-256 6101dc21a27966c51609a8a61ac5ccbbde307f59324b67a4c312b7ffbaa80bae

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1352838e41d9191baf8a6f2fc58fb84a62ec719264de7db086d97b4e7103395d
MD5 f336aa0374558bab748ef1dc533c3d93
BLAKE2b-256 7cd8c716ed48b6c3855470ed902a68012213888e4701ac469727876b6af35eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52c75945f527ae984a3f4fa3a56de86df60ee6f980a8216f0f4f7240bc143873
MD5 a50d546116090a2d6619258eab2f16f8
BLAKE2b-256 1d456bc14839f9176d8cc2b25c2f06ae8a67249d67a9be25e819b29db17f858f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0e9a075e4cfcf54e9e3f9bbc2a86aea4e74dc3a3948214b7678e38f5079d842
MD5 2bf7c0384318cb3afe0ff9e44d9b8446
BLAKE2b-256 b405dc6c36f81732fbabdacba7889dbd6d4f0caadcc9fee93ce5202604bafa20

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6312b3e4ccb4b93eaa75b95f80cf55429b28a0511fd28631492b58ff9ee06a8
MD5 d1caa70f4523e0ba9d7ad0bfdae0668a
BLAKE2b-256 7cfece78bf8c80d71b072a97d08a270d6d26ff000a57372a5f14ae8fbf94831c

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9708a66eb9b338bef0c9ed8914d790163a40259e9325fbdb43220eb792f25c8
MD5 e94437a128cd4654a6614a179087bc85
BLAKE2b-256 1b0e68df76db4d5c32c0ef589a98cbbe7a570dc7d2005740178bfd2924768469

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2858ff09d9f648526e0ff865c97b3d44584d873fde87ba2a178de15b159da7a
MD5 555de3d31b88e42ea909ce99f68bb1a5
BLAKE2b-256 3305406c41cafe7c57e78c83e068bb15b82f182fab90a8cee851c957fccda8cf

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 914f385f3c6f2c4e629ab74b6a90ba513db79f60fefd8c926278073b87e5d1f3
MD5 077fd42d5c0de65a3442fb1794eae452
BLAKE2b-256 e02d801c3d4b203b9cb6be3045e06f4fa1fe0cfeae5c8d3022579ee157c79d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a46a504616c4355dcf93684002862db1597e2b3e6ddb8829482e427cbaa2f35
MD5 addee71be764ad61d25e65a625d6d86d
BLAKE2b-256 0be003b6f7d8931f4b1aa76c6e9c45ee1b577e58575aff4d22c2b241d0d1ab23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c41680613d388b9c63492bf9b09fe9d1b3b2ef81f774e6c3ac1f1d9351fa686
MD5 3cd85ca942a96d21a9af53e21dc1e874
BLAKE2b-256 6bec181ae49fbcde02675cdf70c58fb3769e80be8c7d79a4ffffee95545acabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 967110f1b3d13034bb362a8b4ff648a828b839841c26fc763d000b65d09ea54f
MD5 1b6afcd34e814b9492afa6048bbd8df5
BLAKE2b-256 dc691764ff26b6fc52a9dbb8dbcc559116f9afd2c809c19abab520b2fff22158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d58c49a54b4a78da43e0e5c529396112dc308e28359d482c1c66cff8d5adb50a
MD5 6027d3446166eeb4cf673f94625bb0d3
BLAKE2b-256 49ff67d880b1126c28adfc5310901e6a6eadc15d24611951de92f8a900dc4d48

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: topk_sdk-0.7.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51c545ba47ca29c33176c0b31c432162e1fb0a4f7fc3dcc93562e22cea4f8dd4
MD5 d04c8b24a82dfd8f007a7ab35fefae4a
BLAKE2b-256 bd46ab9ef10ce42686e2c5cfa3b560e18ba8d1dfb00925c8176643e2a8977168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f18091e5d9a446eaacf01c91486a324933ac460e8d460b70c26df2293461283
MD5 4c52041f66476a568a3c55f790b18d44
BLAKE2b-256 58ae5759543cad56928dff93a9c00cc8c02dce6f1ee26f5255859714162b8cf8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b01528c938ba4f8ed436de182c51d86d175f18cafe1b446c4dc221c904904c61
MD5 9f6bd8be7b39a5375a0b84e822cb6fe7
BLAKE2b-256 a616e4900f45debb2c40d700102961d9b89f6817eb63d1f3fe36e82b1874f474

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a0d8e2fe9d2351d4281229ecca5884109bd1b73fd0efd026639f5e509e728f4
MD5 221f2ce5fd095901086d9677d21bb304
BLAKE2b-256 24d3e780754c73ca777f2d57d3eb9e79d86d6f1d56d7a222de53568f3ff13b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a59b9a133c5576397c3ae62e44d46725f2af329c625599c2859afa9e9c6320f
MD5 c48f6d322c44e6ab49cec2ea66561619
BLAKE2b-256 8ce4dc6d964e43594b27d14c5069de9e6324759ebc629810c7b5f0e8ea6c6bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b919700dde6c1bef236f4d6ccbd750170a69d26b1687b1b1130b317e4103ced5
MD5 c02a73256347d43556bac94628539819
BLAKE2b-256 2fddf004f0ea800ee6932257fc79acc5691b30449dfdb8c7709aab7a0afac933

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72c1e190dad5f47de40a5dcdddd958ec92fff17ce83fcd2b2239fc750cb0428f
MD5 7fdaf77a93da7fdeaea04f38e95ed66a
BLAKE2b-256 8c3132244846c6bb4def4667b33fef8fa6df7eb503f570203ad39928fc4d969e

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be515d0c79c2480df311192e656bcead1593ccb8656386eaadc40fee8f92dce9
MD5 0fa858ad78a11cbe396d7da002906516
BLAKE2b-256 13b32ace0cdb826738ffa03540b261a1595c143ac162218d435fa0b8cf8301a5

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6ae025613e219096909bb1ec2754b3cbb5b2da8982a989c44bf2ad422c4e322
MD5 2dfa6ea269dcb761eb40a1c43f47c0d6
BLAKE2b-256 08a1623aa90f279b5cdfc9563b133dc7a51d87ffc11f8e534a5d0198bf549aa4

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 255b2e8e0afab82a1fdcf92759adbf23ce76752312b2f6365e7ea3e81555fc3f
MD5 8e77c91e38a8b6d1f9aea2a3e634b11a
BLAKE2b-256 ce399410da0de60e2efe76cf772babb4d49486859f389cf9771ff893554a632c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1d353d77722ab0b18fdf7ab2c1d7ef311c161924bd00ff128a4f5fed55db1a1
MD5 c9bd76532d5a95e5ecb6932e27e21e04
BLAKE2b-256 b7d51440a76606ad1c73b64f8fdce047e2719796b9a7d8cda5b714cf235d5060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79e2d85d9e740d53786d72c7c46d9bf9dfbdb1745272fe37109a4073fe2b1c02
MD5 6b9cc26c27ecfa3ac75523193a27c3af
BLAKE2b-256 9629ea5af6531aceecd3cfe1f2a22432a0bdfe1bb185066362558feace71dacb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb142965e1fb31954b5b56527b62dca5abbb504a5bf21afff43ed6343b537a40
MD5 53f237b0069253688136dfe5d179a371
BLAKE2b-256 906ccc8356229028092bd473726129472180b86e8627c2a74aaffd32c373bef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6caa0f428694ea5a9acdd5a20f5aa23c95b6783f69fc96855f5e41715fb7ea19
MD5 f6583da52141e900d63425c4a8981997
BLAKE2b-256 2fa25b8f4f534703c0e4d0e8a0def9735637825afe1e707dccbaec35de6dc181

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: topk_sdk-0.7.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 95d03f69e9bf03f83fac510c2f4a3105a76d6b4abed8a6c9458dd93dd6d12656
MD5 fe98fe43d262c76b417e80b83f1ecc01
BLAKE2b-256 4acac99ab0e9ff0cb9092b6b2c44fdabd21318c4452b918843468efc99f1bbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 687d7ff61ed6c0530f5f451522d2628ed4208193e7b64183ece35d7d85b8f9b5
MD5 78374e1383acd04388b25dacab1132dc
BLAKE2b-256 24f2715996f437543b3b29c40966fc5734e12ed4b7e99171753eb3c4e6ab69e3

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 623fb771d4baf1bdd9afdcaf8a87e95fcab7b4c08990e9504caca17d9c1cd24a
MD5 66d2dad0cd790ebea762bee9451d1666
BLAKE2b-256 38f96caffd22ffeb575b39f7cdef1350ba808f839b70abdaf6f11c32ea6d4510

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 813b16946352d9788365b8600439bcaf654c16aa4dd62e9ac13e91f51c2d0d9d
MD5 e8cb9f3d0a9c649579ef04c1dabe5e75
BLAKE2b-256 2590fb4609bc5d07e1dee0ea201c2aa28ad337c3bf83b753ff041a33a9c1f0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb18db6f829c30ceda8a3c70921d9b1a80bfb7da66e0ade169c76874eefe6daf
MD5 ed4ce4fc8ed70e361b158234a7b02d0e
BLAKE2b-256 ff62d1a82da3ba30f0463e123e4ac546b18921a222eb18079a4bf0ce754c49fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22d545c85e7ec9d4b7b34c752b9b1c27103aa0986681877cf0e7ee6e451a50d
MD5 61bb0b7da0f4948dd0593b394e9dc41f
BLAKE2b-256 759b944a8fcc664595814d541553cbe872e3d03cc8e0e9d0b993f9f31a7fbd7c

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31bafbe92fca39edb62fcd7daeb2e45e801f140fb4ca7e77659f8e7e6db2ba91
MD5 ee9758a6baaafce41ad5eadcbd95174f
BLAKE2b-256 cfe7ccf50af30df2af927ce0bcbf4e8582dbe102ea2df0db4d4d73027a307354

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2baade939d93d12e015c591984055863847fd1423c06b4f25cbcb8633de7ffb
MD5 45057b9279f462497010b1096d3f2029
BLAKE2b-256 b10d8066d3533e6af33204c15400168b6794cfc74da29a759db8bf01b33efe8a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a363a0e90b30a61867adcd0b3f0e6862bc73107e9c4ded946ce5abab1e82804
MD5 7ead4a2302f456bff4d904424e77538d
BLAKE2b-256 f15674b83caf2e4ce2e67295c78f693acad5473e1e408de6b8aaa704977a4e80

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5c65008b4a7f865939cb3c4d01e0ee453ddb5b4f91ce2d49939b1d6b72bce8c
MD5 2c82b098f4c8827f6054130f50377232
BLAKE2b-256 84b84ee24e25bd210fe3b145deaa65fee2fd98097f9b4bda44ed31af319f2bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae2219e333bb1a9b4d0cacdde2d534b683dc1817fd61c659106e5d9038e2ae5
MD5 3d8cf1846aea03a684f35b4808b06e4f
BLAKE2b-256 b3b32cce85cccf4b5bd9b400623cf5dcbe66790cbb3d30c56325c28d08749022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fd0a20cd016341476f9c978d7b53d83a96cbc22f81d7090ef87228061ab60d4
MD5 afe16d14ac8b3ffe0f5744cc2c9f464a
BLAKE2b-256 c51c837585827ce8a08865d45a16f7b73c09d159888c71657f1a373d141d01af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3ce4f665a70a14ea3b4e0977cfbe10092993646e10e165fd93acd925a76eeb2
MD5 6929e07db057726c92a51ed35657e0c5
BLAKE2b-256 9681477479f42e496b46955115c2bfc37fe4c56621ccfa3d0caf4071e7818577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d38a42ea180e302b960f9fd386fb23249ed922a3802a285f7ae8444ee331e664
MD5 a557358e00f42e4a30300328707d4043
BLAKE2b-256 1354b572a4221b4089d9fdcfbf0f24c656d35bae621213594c7a926a2b1d3429

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: topk_sdk-0.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b3f6e142b9fee61a9ad1c4a38c166143fcabeaed52729a94072fc782d6d95bd9
MD5 f3147adaf0cb03d5d83d4d1940a1a96f
BLAKE2b-256 30594df28fcf06b225eca96ed63ceb6dc1b4e2e3c839c1cb2d0be6bca7272095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d391400207b7cb92938691111f4e0741077f78aabaad1ff264af82468c9f621e
MD5 0d7b592b5319912f191f8d786df5d823
BLAKE2b-256 de8814e08177b732557ca0bd0760e5643fbde75f76bda295d3e6ddded480c177

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 604fc18e106f9d34d3ab8b8ca077eff6dc991b096415a9fcf13e47e85801f6ea
MD5 7f2316ca18971021eb55c034357f1412
BLAKE2b-256 138e989778468c2a2cc96a793b1c0e3fe5dfd7a04ee9d11d72b7e79f67428f2a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 253b5e2dfa94bc9b9951052f3d341a78000fa092336363abd9a3c3062beb18bc
MD5 e9a767dfd81f0c9316f85ddfe4471ff8
BLAKE2b-256 1b39a0d5517831e9375ceca09e06114d38a1a307cad02ad01f6c34a26228494a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c1d63858e91708a356b01b3598a3582d33a18ca342b24502d83708ee6794548
MD5 a7a71b5e3c80aa1a1c8bf6444dbcfa75
BLAKE2b-256 9ca2884ca8e833eef16f27618f66f61a6ecb80844b2de36937379610e2e0bf00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcdbfd368edf2af9d876a469905a5490b83a72de91b156b24e30305572c6033e
MD5 875bf5668f00cbe3d2383251b3270dd7
BLAKE2b-256 e09bd87758056a5ab32944b59c9659775f7e5595af05dbbc425c84d92f0f86f7

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd2fb672f8797d20a5b1b2d9fd0021bab5ab88cf5064efe37887b6c4d165f29f
MD5 e5cde82085464b8a16e1d3868bba0506
BLAKE2b-256 6bc84c6cc5a7d546dab77b3223c8a25cb58002ce5f174abeca8346feac5e22bb

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e2347ddbbd34817697240ddcf76f5a1be3e4d8bb079ac9adc42fea46d487797
MD5 66a565b7efe2dedf3250f71df85468ad
BLAKE2b-256 22695dfa34f2fef8aaa0aa7f37513abbc0e8e7dcc6011d1fdb9251da3b4bf98c

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d87ea9f564bbac08bd6ad92e54ba3c8893da5db4f474dbd884d262a6add803a
MD5 4755fa5b9ff66e33ebdfd3e1843adf61
BLAKE2b-256 81c9b11a42058ca25c62f0d9fc86112ee182d970aedf75325cd5b9215f545b4f

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2581c23b48e73bc85547c0e1bf5bdd93a5d07a661aac807ecb26d07d1fe91637
MD5 1243bfd29ce1400cbf6d39fd36d3a0c0
BLAKE2b-256 d94a501fdbd9a9afe3a70b254200af8a88d97d815e79549cb36990a0129edd10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 361d97b28768a2b715e99f8dddb88dc0e7f824849cd4ea73fbc7ab20718ae6f2
MD5 9b67c37cebff8cb27a30094642439d46
BLAKE2b-256 e2b41af3f23b84a3db5a4e07baabf49006c2513c3fa1c61b20831659ac03c45b

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f601dae8eefe66440aba975f7763932531efb6025a9bd61296d919cc0da3025b
MD5 21f935c376c3af4f0e311faa7029ed80
BLAKE2b-256 a704d2f537aea05edb70e45cfacf581c2210a215ac2f6bfbcfe88fe1d2c3c8e1

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e053257af21e32337e7f51cfd4e797b51fa2818bfc21a996570c0026c78961d8
MD5 19394285d4f996b66f96a55c60a4b13e
BLAKE2b-256 449729a48394b4f701a3a8304051f1c72030980b564a8951295d6e71c1c9abcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3023f5ab681f3b6f11a7cb330eedb8d8d0282179c4aec7711f89fc532f58d1d
MD5 9957bf86e765873306da748e11d6cc7b
BLAKE2b-256 191215bfe2c82749d6042fcc7deae5ce4a6236df8233fefae04cc93b5190d331

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: topk_sdk-0.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 23e375c75b3933653bb3dc89778cb6345a3f6535ad5a5cecd47ee3662131f3e6
MD5 faf6a56709b77d1820fdd1c13c58ac03
BLAKE2b-256 0821d79f00cbff707870b65fe0aba8522ae305f4afaec0230e70f6d8cda69143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c575e4ff189c7fbe51db2e603a3dfc70626abe713cdb4bc28b5424f7a8f50dcd
MD5 6463991373a31392029d9b3d51c97444
BLAKE2b-256 4eb88ab891fcde1edcdf95608f5a4bf074bf91fd6d6f4fa00031f210a0a5f069

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2aa8c88988fdfe75f2e6fb0ea99a127df4426bdf7d0f4db8590ca7d49bdd5ca9
MD5 17f8963889069551eb54ba3b10de9dff
BLAKE2b-256 6943fd3d8aa0862e0f131c0ca7a3a9c0937d249d895e82137d0a8a6a8736353b

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbc896bee3da3749bd54aecf900f2729c5ff13f1c563650a03c1cf1c9617a98d
MD5 481969095e567fbbdfc832c3ce9ccc1a
BLAKE2b-256 e80da13f07baa228efcaad6d6539ce0893dd62e35e19b852b15ba4432aaf626b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22846e8e0eb201622a1e8d3490f4ec10819a43876a6afc434b460302f27e3fbc
MD5 396620e7f1a71b7044d1dfad28104d14
BLAKE2b-256 bebfac9871943e2f5aa9ddcc8a6ac128e0300ae65cae4ca478ea37ac85065958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a175a6c1bac6c537b9c14bfbb3c8c1752ad98346fdaad89faad1196fda30a7eb
MD5 93858dada0b1ed282a6be9a377582436
BLAKE2b-256 3aa0530f2958dad93911eb28b2e8c2b80fe9fe06bea1c10b4ee629ad05cbd39e

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45bb9e2ba800aec6984e2360138f081afc00d2e512304fb7dae2455bd668a4a5
MD5 299c25e7650c4b16f891030fd5a375ec
BLAKE2b-256 75867e3cfbbb4c75625829128d5300c6b52769ec39f3b930a23b4cff6fe1d707

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c078f5284cd48ad190f97c9ac4b995d56bce777120fbdf21495a77d71090c1be
MD5 095b6037f13e19d5bdf085d9d6e6a422
BLAKE2b-256 3501e54c6d43cefe0a1ab0c45acaac70055c1f1a1ded1b2667331877d60a82a3

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d656505b6577975fffd3e56f387a4918b62ebadc877f6e320411e20419b66ec
MD5 46a7b9cf3a9f0c0755911f9c27b0ded7
BLAKE2b-256 ac0ebd8e9645f11a45aac85682407928ef6bbe5cbfe048c438350f12062e8285

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05e02ac0411b2849f6867e1093f737d98c6d2798bdc67fa743203c87032a8fc7
MD5 0a934fd6511efe3595e48e715db10a85
BLAKE2b-256 694f634797c4e43a98da110e83b25474fc16df7e83eb6e10ed448e126ff50b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c0916837b87f1cdbd75d47dd57eda7e964988a0a4e7ca3b3c4d48e123eff8cb
MD5 40a0ef7465737c5d9e231288457263f4
BLAKE2b-256 4197a103957eceb2b4cbb8d8059e85253f540f51488515b7b831139d79b197f3

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 954dbd2959624e8eee8050f718f17ae58adf18864072010f92a73828d74ec63e
MD5 977349ec60cd45303e05a6c42bb5d48d
BLAKE2b-256 6013ddf56c5777fda36dbe3a5f968eea53f84f95e1800babbf30df3e7149b48b

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca4d4dee3353b8f21c45b268b8f3b8576262b62e76afd78922f960e4d01ec53a
MD5 61b193401017c7e15ca81941e33c27a0
BLAKE2b-256 ce60569e4404748bef0fa2c586d71a9b15c44d0a62e03f85ed9bfa4063390f73

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