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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.8-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.6.8-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.8-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.6.8-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.6.8-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.6.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.8-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.6.8-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.6.8-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.8-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.6.8-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.8-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.6.8-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.6.8-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.6.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.8-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.6.8-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.6.8-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.8-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.6.8-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.8-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.8-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.6.8-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.6.8-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.6.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.8-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.8-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.8-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.6.8-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.8-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.6.8-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.6.8-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.6.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.8-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.6.8-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.8-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.8-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.6.8-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.8-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.6.8-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.6.8-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.6.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.8-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.6.8-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.8-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.6.8.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.6.8.tar.gz
Algorithm Hash digest
SHA256 644e69898ee5ad56bee3eeda8b23f114189fdc76cb64aa52211514decbf07539
MD5 fd43f7b9a1727e2fe555f66b8fa53c9e
BLAKE2b-256 39fb596dfab2d8f96b525ce9a980609dded13fac7062d050560e078e8bf96278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c3c00d6ace67400f0e0ec1df42a2cf0a6e239078a9021112ac0368bb54b7fb83
MD5 feb90f2a4f4c7d51409a131a5137725c
BLAKE2b-256 542735515c2f723587b644b97e277f44e85b3966085d9bd06874667fa008ed30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8f2ed5b1ff10e4a7f78e7c62f9a42e0b71bf6e0b28e04e7c4d464dd31deb84c4
MD5 8da48886e1cd45fda9f92c63e7ffef3b
BLAKE2b-256 700cc9e93123d9f5797d48d9a99e42ad84c2352ba49eefb1cb2e56890d7ca7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2066b29d7ec232fc62da8e7ca3888067165252c1fda8bc6f78e9a43e07d25ffd
MD5 30cf35ac101297ae568222ec0e115101
BLAKE2b-256 773288a58a60e4fb64cc3bdcddd121dfceb6e65a8cf7ae637b7d7a7bbfc872a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d694e333d3b58e28e19569e8e93835dde6281a263666c05f648b132ecc0a2830
MD5 62b20255e54af4997c913d2900ba9c03
BLAKE2b-256 698c7531751f4848cc9e30a800a29de7810de1e81cdeec468e6006599548c265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e0506341aa0a9d27abb0071e2534e67e5037b879190e0be0056672663c107e6
MD5 29fcba91ce16d3149e332a419bdd9109
BLAKE2b-256 622fb426d48fc6c1751898cda133327b3a120cc3a934deeb9d139fd0f4cd79a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a298f5dd9d957d7913314178f8089828af5590b16f7976aa92264998d7ee3068
MD5 b2f64bb3396a9ab30c25289833379cd5
BLAKE2b-256 7644b0bb3e7efb45562afc670ae8fa4ebdd4a62c5192db4e1ac50ee2dea04972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c0cb3e9d66afeb76f1df48bd0b614b7598095213277abdc6b7f0d29c81475f8
MD5 c2a9c6c62008a69b9855af05be89813e
BLAKE2b-256 bc0c94554a1ec5259816f026480de6d740fefd3c371f250ada22d6a34217ae44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bfe65eef2ecc39ec46e013244f57aa132043e96f4db85947dc632e801be1cbb
MD5 982b7c819f37964e3437445d166ad57f
BLAKE2b-256 19b242cde6515b998e4f49213cf0905cd169f14ecf649d0581ea2417d9b6f67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f743392d2c88d4cfc582e8b173e585350c4e10424b94acfd60512b3da8d77a8
MD5 f26084427e144b399cab86039cc85ad9
BLAKE2b-256 3e739d891898509222e82ba154e2bf94fabb68d90050ec2c08243faf816e0f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0595c354bdb30ec9c51fcd67ca4d095522e3e82bbd5f33a2118ae2495facaefa
MD5 73d50208fc904f3b507670f4e2d2fca8
BLAKE2b-256 ed6bc17ca9d685e6810ec4b638f8919703729d81fd65327e25bff9e6ca27884c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dec7797f60d39de3170107f76f5ab17c360937767cfa897658714d374e487dc
MD5 8caddf96b534019ce5b278eee9e09b0e
BLAKE2b-256 f30c7b9df2b0141ff023367731d334f294ebb28ac2de808118590cd750792375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 149184b0cc1dae50f90bcb83d64f5567813d234750ee08b314a3d3859fd29807
MD5 3974bcb7e42e4c78b117df6a4759e482
BLAKE2b-256 c86f5d75d21a65c1799bd8ebf663d3d6ca7a6e8aa8bb7d5a13f90547a2ff89c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feb650a415e50cb7173e115ad6281d0977814799ab82db876f6b8abc898d8941
MD5 73e2e2ac6cad9ee6a81e2d43e9ab1fe5
BLAKE2b-256 e827f5a81b1e3fa9f5931f493f438d8279ea7155c15c2fd3f06dc72a11387203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 285fa915f560debe27a7230479e4bb1be9a3c85db2b1b5e29a2478c6a3d0c91e
MD5 106f6acf174b224441a1f88eccf6b0ab
BLAKE2b-256 5b7063f2527e9f0275b11b7c383de24fff6587eba9f6e9b1f11926e0c0d176d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dacd906367889eaf4572669ac94542f42f5ce205c764f4510220226f22ebf683
MD5 acbfce21f0cd2148204497e6e29c3942
BLAKE2b-256 7a25559c290834725fd7ac3362cad267523bc251ae81876dfeccba587daa4bfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c294f750f7ea58baf328256a6a9bbd8e65e71a1eb8ce9cb7f1bce3305fbb8c1
MD5 49dbcd93b91955195ba37fc0ce1a04d7
BLAKE2b-256 4063d718655ac6f5484a93f720deda810ea3e583247f512e6a21dd8cd0c8157c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab0f7c486b8db9ff58cd5a6ef98e6da06c08db0ac58b7540cc985c556af7a997
MD5 a3223da6352512e964eb78869f43299f
BLAKE2b-256 e937c66acbee6974546cba91a0d4ef649f59ed442b27cebcb09d86fbe5742f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dde977e7bbbd6a9ac4ce81a16616f9d1440cc099c494571e95199754da72f569
MD5 e5214a49f32e70892d53138516ab7947
BLAKE2b-256 0d80ff8e7fc2937e212151572652be18b43ce7e65ff0829e38defb1496cfa1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e78f3f171f112ca8f64071749ec06b5a32bcf7d5b49d13edb625e624ab27c94
MD5 56eef562141169866bbf445c22eaf872
BLAKE2b-256 155c728c27196939f22573e1dc18a2419d03ddab20caa6609e561abd327d057e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ce352428a273d164cac4e674d8134414f3d41fc06d8dbe0878b78a28e991c3
MD5 64e10466f5fffb0e8302eba45fcbf5d7
BLAKE2b-256 8a2ea6195566a267a19742fb5fb06ffa0a9b1f5c8dddffdce3e87f71b45d1e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a46333ee17c6f2f80e5857e902c39f74ae6d54eaaead6d829bc371e7adf00907
MD5 a42a0e604907237f3bfa1f23e2b5e625
BLAKE2b-256 d106dbe90dfb98b338f07b818c0ea249bf14af7f5c1ef1ceed4f4a798b73b190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56c565dcd85aff82fd8cc8023eb036ea99b2f073026b9d5802e3fe4112602c08
MD5 487d9c279205555051cc5001cfe9b7f3
BLAKE2b-256 a380fae10270496a229e54ee13ea2ad337667e674147f5a21707411612f59137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3643bbc623fdbeaa4f7f99a5da72482446a978555267429c3e1b69b6095ad69
MD5 913d261cd328ed193cc80c5e154cef03
BLAKE2b-256 0a6be33d1444265b94a56874aee27ca63b2289c7fa14f74bcc56f765c575078e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85d58ac289452736d216d930bc51599f9fdc48c34869e2204e0404c2c78b6e68
MD5 b7b25a39c0c8dd6ea56f2a971097c7d1
BLAKE2b-256 cc5eff72b0c4345dbabe92af884b20f101ca4d2e96704473b41ccfc0be69a395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26f985aaf665ddac06d0ff095c3872758214168eff4700890174a5e0305773ad
MD5 a0e046b41d66b36e6eb7fdfdc78ca505
BLAKE2b-256 e22fde7c1a255fe8601f8961dec2b23a5252ff27ed2d277e6ffb0dd4d06eb03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daddac0b5e05176db0b257f206235baa0f7a94fc2c16547c8ba5f4dbbb38f463
MD5 3ed09f1c5d73bf38df9be01e9cc05f7b
BLAKE2b-256 d4a98a39c3b0ba4137d15d937adcc57b4880c6e335cf175922dedc09e5996deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9a354a9de573b9285f068099715150d736bd39909879b2c16d05a07033782b5
MD5 43bbcbaea786ae39da3d8480db885957
BLAKE2b-256 dc20054205d2b9ff6bd7bd0b3ac6cacf359ed9944407a3e4f987b30c98913e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd3d6f57c6174534a8ed52a19ce40f3e2ed086adade87365af50f06e57e9d3b4
MD5 0ff72879c28ce35d8c4cbdf495da37fe
BLAKE2b-256 d874eb0eae845254dd7a16f416389612bac06bfe6aa22de26d5d6b5f4663b513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1c62725320f7aabad8a91f8e319e88fd6c618504b7d813b082f42c0116cc05b
MD5 a80b4e7a0115579d68a9f262de54c5c0
BLAKE2b-256 45d1c9d8bfad30b64010d5e1b08483f3e4577446a7829e57132ed9461c5c00a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ef556375b3a61e720e036efa90f45d2f1993231dd19202b3c6a550918c8bb29
MD5 c3d5dea90add2cc701dcf44c535de096
BLAKE2b-256 24561774080f0b8d361a5bd33b243a29a637984f3b5df9a30cb6ba0942644d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f9d964648d3d0e26513bc85ad65b9e25b30b8a291a7b15e31919bf03ec74b42
MD5 c189d27d2f2fe475cf09ff45abfd58f2
BLAKE2b-256 dfa0bd97f2af195ca2d8adaddb19f3bc53504949fd041adc423783688fcdd1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23c7e8003597626afb07600e063acf3d982fd16264c3a0d47ae5e38118e62c26
MD5 876774624df07bbfc7eef5643905a5c4
BLAKE2b-256 7e993ec3b9e71732c3d0b43faa8dff2b28a748ab989621c8866a7867fca1db09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1495e1be6cc79eaec053dbedcf8b8e34a42dc161b57f8deb786bb8b6e039a1d8
MD5 1afc514d70c0fcc6ccdaceb04f9e7e1a
BLAKE2b-256 b7e54c5ce5c8c7a5bd4240b6966302e2f3db8cd2817bb3b18daee5ff82474a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e04855288c124e71e6f6ffccd416b19168b90c46de2220ffab6843e48f6f2d4
MD5 01a95724eae84c18c15d626a3f742b27
BLAKE2b-256 25cf5e8169945e9fe884bd70cbc062433b0a3673e8dd0fabd933348b8c632547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49e01cb17e1c27036825bbf06069797cd9ba1af0556302fc78a21abdacabe7b5
MD5 a2390d6874da69ecae3b41f7e7a78482
BLAKE2b-256 0f279839a0ba3115471caef86db38ca02ce9599eddc3b524282c425b790a71b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a240b0d0175a71d453a66a19bbc0bc6b7bea96fc5a2a1c2881d87cc6952e4632
MD5 4f6c69774e854479b7582b73222d1e0b
BLAKE2b-256 2ae0d2854167d45a14b91faacb419c7b1ac94a76330d871cfedcee873dc5e4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd890651787b0ae042fb2eb795659fee6a9b808ceccfbc311e3035b14df1da59
MD5 63d899015098ed388b15d472b6fb6eb8
BLAKE2b-256 a573f6b8ae3f37bb1252a678e530a4d57973f1e0b81bfc8c4f9afaf96f56c9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fa6a83344cc041ea22ba7424a33f584caf5414499b1baf65ea9aa236dc348a7
MD5 7f85623d9f3f20cca8956107873c9864
BLAKE2b-256 2f3dd54ddb84451c8fb749924b7e44b084ab9e7ae23e015d4f0689ea5a739467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2214905bfa43284abe7b1623ec30e14547074e7cdf0636ea2958137204a1f5a2
MD5 0ad16d69ff1ef456aca653adacc021a3
BLAKE2b-256 8152060a105052e84e643e0908c9ac470b1d37f24a238cf4aa5cc5ad2fe6cea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 577a326cc19c3ecb1dd3ffb30c02fbfc2dc06f301532535e3289494642df69ff
MD5 7bf42ee9a2272d9a80a154cadaf690ed
BLAKE2b-256 bd8078ac46ad1416eaa8d564dcbcce3867b05c8a98ee5260ad018547c7dd02b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a519e951baeae029bebb2e90697338cf706de63ee69c9ccc8c002b6a959dccd
MD5 f761a38e03557c9fefd8db5134a085a2
BLAKE2b-256 4320e0257f357d68b39e00424a0577ea94e62136285cd24ca791836a2b9c33a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a4acdb476b285741964a3569ae2ed594d50cbf827dedf98a50376a7ff45ae32
MD5 992f8b060b160c113a43b484577657a2
BLAKE2b-256 e4d0ae900a4efb6574c329e90ed024291e3d8aac3007115cc0487cf452e16dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2645ea4dc0032ec4ada5d24a1d31214f0a8579ec5bfb99a88f323b15d59e3878
MD5 d60203f182432a193e231450c1e12e10
BLAKE2b-256 a1bba68ac5f64e029c5c577397719277a0789886803116edada32e5269769bc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2f2952eca413a3c58d8efbe3f80d086361466e1a22262226de53ec62b70ca477
MD5 9ef45b791e112cbfedd36e66079a8e9e
BLAKE2b-256 1c4af6eb65be0f262c0840bb7b661c19ad474039453caccddfc413f5c5c438ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 820f0afa030df29abcca99faef6319d5e3db50863149c6afe717d7bb05a654e7
MD5 3a07df654c967dbd716c66e2bb6f42f3
BLAKE2b-256 76f9a825dcf8d5d34d379a1f4193d05006b2771952ae329e475d33cf25e9d611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 311d2c90df74fdd6d9412f0cfd4633551e30484017f919f2a535c4a8eed1de57
MD5 0aaa63c5325c7302be2ac94726fa2f2a
BLAKE2b-256 47e7a468a7e11fd0cb1d3f65169d106521aab9f89c52f9d91b15cf8646c0bc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 336a0d69fda974f1b11305d3c999caba3808405e8b835730ac23464f7f4a0c06
MD5 30bcc6cc737ee75fd963546a8da13993
BLAKE2b-256 d9ead564b62c147479e4f6c1e23dba28f831f0267e7731e804aff78c38a57321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81880fd62e8ddbcaf4f6fd35d3c94388a68a6e32e11531cfa077a16b9ab91a54
MD5 18270eb01a09d1eeda7d2d387c4b8028
BLAKE2b-256 2e07dba8bf93200c4e782f830c0cfd3828240e323eef29b92de6e256459943c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08cd1a2542a7ed94293f1b973603cf6e75f478947e0cd37a14f85da632d35f20
MD5 7a96837d3d87634d1de1b67c4915e7c6
BLAKE2b-256 3c2a7a1cc9c7f04d64d281829c83aa0977f5c2b666610ec5055fdda0e6542671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6e39a312f2f7c2623f2de0db983d746a8ddad7ad6e5a508b7eea8da7baad791
MD5 1785ec6106892043bd69fba525f75e68
BLAKE2b-256 3d995a334806c9b1e249da9c7d0ed569d5e9e7c1b17ecadbff7664179493b158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8622ead4ebdddf225230d28545884df69b795e8acffb0fcd1a540c742a517796
MD5 a14030f45690574f6730bf8d37a3aee0
BLAKE2b-256 c76ab9e37842eb333941534567afafe6dcae83ebda5ecf83e34182a004de46bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f29c705edecb8b202f99c8a8ac1b08c72213119d7fcbb56511401305be8737e
MD5 b0f3bb47a975478c111adcf5fae90ed1
BLAKE2b-256 b172794b604bc606da09e5c146124390c744d4649561e18f763e49ae1e2f3288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b79378ab683093ee98f7ff5960538dc59b84bd7175337162e46885ec63786da2
MD5 d409c034b64e5a8f8eab75e85c7763bd
BLAKE2b-256 fe35b321eb5fbf6fd2cfc614e1706b11829bb5de2ff3a1cc686f57efbf43d531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3d7f33dda3b7a7c3d08527e44d1b411a45815b3a2274278565c1b2af4cdf37a
MD5 4b300143207a38a27abab826be72294f
BLAKE2b-256 4c2d96864f0380db8c94baa1cbe56a831ecf7498eaec94ccd106b3efb016cf25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8248c045b568a27303aecfb404992b30a302e54a07d048068833907729e239f3
MD5 d4acc7e434aff858fb13eef1069dc06e
BLAKE2b-256 15eb6489561c327f183af738f9ffbe1d62faf0320dd8c7de0e3a816973b71f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85a22953fe743379f56ad8fd126d9be476b919baab0c2f101bb73c397d12e4de
MD5 4b2aee1c184fe2192a1523506ab192a5
BLAKE2b-256 3c91ff9703d713be9267356042ededbacf339f7dc6ac4da2e7d51c52551fd3af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f949a58ed183696c554ced1c2f567fee1348f38d0bd2c1969f1a8f147a7dbe61
MD5 9d45ccd8ea1f02890a8f4879bea9a143
BLAKE2b-256 88be3c8b56bce9106ad2ac170c2fedafdea500f4961aba150b8805f9811ec6fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.8-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.6.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 963b98413fd95a16f6e00e171f6b5a509d94e9b612e4d16c645633e89951ad66
MD5 7d767bb3521e659f52c7d7099fa8cd95
BLAKE2b-256 a18310751ce0b36d9b4496aa0eef5c53f699d5fdcaa2e857c80effae5e6be1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1ed46187f8b76cd83c3ee6664ea4fea98bc3462ef39ed1a7db303e6ae0e4bc2
MD5 1e330f2e483de31274768b9eeff976dd
BLAKE2b-256 05a63ecd10961a67c77c6abf341da834c1c80d3e5def7df03af5086449db5604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1e87ad7200e1f3922171abaa59c6f00ad8648b0cb8b01387868e741e84284b5
MD5 b8686647ce7c2fc16f17c53635dc0ed4
BLAKE2b-256 a86b7b988549dfaaf741eec337077142801b7b9994705c75de5cc2ff7c8da5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da976f54cce68b5b5a7a701bc04334878a95d33697c949cd2cb56754d6276193
MD5 3a400f75c53de56c8f028efa252ee0ae
BLAKE2b-256 369f76b9217c54c42aee09eeac28fb0ed1e1cdc24b0e54395e20ef7142d4158d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffeacfa531de38f28e30fe99ae83700adbfbe4504eac910932c5f5fba4aee23d
MD5 0cb6b45057d5bb2e37b4a63614f11326
BLAKE2b-256 902ad25dbb024d7ae3fc7a067acbb829f66247cd4d6252219a3109f6c7ffd236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73332db2943ee4c7b951a62d177b841eb7501f795ac817bda1443d9161cf4348
MD5 ebb64722dae5a9f02cf151075c950f03
BLAKE2b-256 639edc2f9bea4cd41f25da863dc59d148018026b0c4294dc507e7900ef0510e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea77788cf2f708e13858c16424190f8934a9b89a4b32b49dac4af8b516b2c4c9
MD5 9288b68ad301deddf679ea6fd1d40df8
BLAKE2b-256 13a7a31073788dcf1dd21a1a2bb8dc388244cc3d3b9ca3aa1f5cee6d0b5c99ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ad20f9e5590ceca7355f065fa1dea336fb01deff98e616a0eeb5a16f8274332
MD5 f633bd76291235d29dabe1ea65b8bcb1
BLAKE2b-256 93f55733a32ecd001c143efbcad3080c88a4e49bdcffdfb580627630f7935e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f44b919b6deae743609b643ce8b42703ca1f6cbb22e74c6a4fe973f2ce0ea14b
MD5 0475091895c3b620cb5ed4d7e0068db7
BLAKE2b-256 ab1703b5805f586329934ce6150954d5e84673f95d5fe008739510ad7ad672c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11cc07d19aa01137870b5eba1ead305e655bafd2c661db77811bc897dab72b45
MD5 bd0411e0953cecc7a70499c5f144848f
BLAKE2b-256 2c5bdda93d88d0258e345708a0961117bdf569a1bce768a5d82a0743ff9fc0e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdcb70205d2b533e8c6c765b99a85ad83962b76abf043bdbc6867b971bbe1c60
MD5 e8887ecbb14a3430d49dce4a4b69fb85
BLAKE2b-256 96c1ec45bc11b2d6599eb7f9b67d07f13ea0d6f4dd855309fe50e6ddb5d2f3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c367045510a220a6962769fc1de837a671c6297c3b0905611bbcb5285811130d
MD5 6480d570a8801ecc778caf03edaed352
BLAKE2b-256 d82c4bd17971aa3cf8315a3246d54d6b598241e9269a60013aa724a2df7fb910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.8-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2ae8b0dc2e20313bbb6713170b95daa71cc2c79caa98959b76b2cb020f7f366
MD5 12484cc94d3ee4ca6cc0c9516b2899c5
BLAKE2b-256 15cd7deb7edf0f205647db284aa43b10505ce01df03c709ebf793c67bdb88ccb

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