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.8.0.tar.gz (154.3 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.8.0-cp314-cp314-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.14Windows x86-64

topk_sdk-0.8.0-cp314-cp314-win32.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86

topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

topk_sdk-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

topk_sdk-0.8.0-cp313-cp313-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.8.0-cp313-cp313-win32.whl (3.0 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.8.0-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.8.0-cp312-cp312-win32.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.8.0-cp311-cp311-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.8.0-cp311-cp311-win32.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.8.0-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.8.0-cp310-cp310-win32.whl (3.0 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.8.0-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.8.0-cp39-cp39-win32.whl (3.0 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_armv7l.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.8.0.tar.gz
Algorithm Hash digest
SHA256 d092bb3669ef9feefa805392110b2d0b7c230a911f8feb3c175123711a8d1716
MD5 3f0dccb48c70667ce9be5fa85936b80d
BLAKE2b-256 3716b1d1ca9fedf35bc8c6d6e0c3eaa6b5a4c037c82181e2698d63950ecbe334

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa7988d5ebd242e0ebd15764bd218d0402c93570342ce1455236bf0231a22629
MD5 137679e29d386b770009c03bba758e46
BLAKE2b-256 530491263d33b24d62e1debccae7eb1e430090ed154207a360dd42247a3fb38b

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: topk_sdk-0.8.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3046796d75ac84a8aa0267244c0be54515cf67cfdf445609bbe10277d95f2d26
MD5 ea1b4fbf939a13c6bb6ee4eac032240b
BLAKE2b-256 71e9284576997c1084a70eaa728b86b7dafdc58a4f6539e1128e87212ab3aee9

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237523f77d3b57be8480bb2fbb5826029c6d4683739a2dbfd3bc1ab6172e6510
MD5 eda5c302fbbdf5111c19259ab89967c6
BLAKE2b-256 0c427cbd12730836e54314b1f88297c2446a74accc8331979dae638a3fa0ab17

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fda3efdd2131ca19ed9cd962f3dc363c8e288e6c51e4f36f3c3c080aab68f825
MD5 cbcac8f53db0f4639382933893467022
BLAKE2b-256 ab51079095d3f1462dcb316e2262b3c17a02c7a4b52fdd860d6ca6902483c4c6

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 674699d85d11bbb2d07311be4927f2983795dcc2a4ff13e3d3bf4ea8076b9253
MD5 f190ff7565be638c2ec4ea5abb566db6
BLAKE2b-256 f9c026dba08141902f60faf809267bdca2b1b043cfbf3cc6b6c9049a19476b36

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a724b41a77f4e60179278af6f14f1ea666c04b708159c0af164b4de6d23185b6
MD5 f4c63a954661029f5a1ecf5e106e1115
BLAKE2b-256 b37d66e4d59635369757fba3815afcafe770932d288b6f8cf1fde197100a267d

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0855c34838764aedb4ed0bbdba6a10f96e0b43f523dba538d6a4fbaa7338f98f
MD5 de8b30946955b76c199cc5a1944cabeb
BLAKE2b-256 e8ab8d18db9ef468b10989022728c9c13e405cf4934b17a6d15a65ffc63e7b03

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2d97717b2db55340b622a5da3dc830d5a941953d7e27c08a9b7ba3fb0af0e28
MD5 606cf086e1d5e2065e5e749519a0d9fe
BLAKE2b-256 3ea16590a3c06e83793c4ba6a95f3825132d815ae0a030a3332f024052e0a322

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8655671298f2af1c362c9a0118a539c197c0c9035ab503d862203276ccbec028
MD5 94fd4964eb479f6065510eac357e1df3
BLAKE2b-256 2f419307a42bd8d613151d3e5e45f6658101dd66fc5b4859ff8abb93a89f70fc

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc74957a258590bcb749d150918c8a43e4060fb07ef5f63d727d6db77f07d62f
MD5 ad4275cfc37cb65a6f687d6ce6cc72b5
BLAKE2b-256 9a8275e011fa489fa4b4a177e2e63700dce2de8a532f07c0b3e4a29683102bbf

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ee107123600029627b007d75c179978f6d2b9d587424055caf3d61e50d0d46e
MD5 2cb7de11e83af274be4424fb6c606853
BLAKE2b-256 4d2e6daa558c6a509655a1d9ffc6943b04e6f7bf938884c44329e88ec2a395c5

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7698053f199720564275ae375f70dc3f9d7834fdc1a9bbb374b8734d97c46f2
MD5 361a7039a67a366f6329441a57f6943b
BLAKE2b-256 f3eee5b9c6e043fd4c089988723878314810ff1167cfe1ccaa134aca4fe11753

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 314da2944e55e6173f8177cc3e7534fb388ab75bbf884b9281bfc4edd6500833
MD5 1f8eddd20d2320e8dbcd2ee8957f910c
BLAKE2b-256 384db743eb5395fc15b175dc980e06ff2ebcd960774b3d79826038e45305d896

See more details on using hashes here.

File details

Details for the file topk_sdk-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb4321e1750932f5055a15720cf1d0c1a292c896616d0225952e8905ad21d878
MD5 23e1621600294e523c1591abc8ebfb08
BLAKE2b-256 8975c039e7463c6fb02bee193ad6f72c88f00a0592aa95176c55bad5906e9d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b77563177c249b9571021a069c56f13260edb47b8035bc60d3e1906b95589a4f
MD5 f7ff60725835d669bc380cd270fa9b6e
BLAKE2b-256 b387d795e5f750f6efec53ff4e7e21700887c2a54803555f34d46ac99dbe1b9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 3.0 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.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a405d9d134e314477cfdc433514cdb3413c15fd9cb594355c2b89f9fb2288d6a
MD5 2ea9056f2624186996929a7683fe1917
BLAKE2b-256 3096732d4455f736d45dbc645c5a62db338ce48519e7862636ff03f8f10902f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b74431b2c3cb45869b8977653acdcb4f6f55575cf4bcb09889833a6abd76982
MD5 95bd94fc06ee5965982939916856fdf0
BLAKE2b-256 2dd5c6ae5a26ee2dde97897ef73bc623e81428f08232cdbbb2e236189288da38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 298aa5b0de63e5c9375f8b29bcd854c0abb10cd6cd18369acef90a1d78e89d14
MD5 583aed8538bd942bb487072d017c61e5
BLAKE2b-256 b86956b01dbc7b45a9aafd8d67a19f67c234560f8da3588337606e9e70e92bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a73946e3a58f844d499648624c71b9c881cc869fd6b02fb911f88d58529fb8e
MD5 74fcbdfe8f9c18e52348b3736743a512
BLAKE2b-256 3c4a0745cd10d907ca2c5d0a9645e9a89485d6a4ff6655714bb81e7953bb7337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ab824a7378ccda1243515e78d946ad3ccddc913d07f6a2608978116f128264c
MD5 82cec00e3c4e0289b732dc76fb0cd4a8
BLAKE2b-256 636730a3911cbba3e665881c400d6fbce2d209debc0622c2037065af85e6e948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3df760fb6bab5ce741e98207a65322e1c672549167b23c9e808e96153d77aeda
MD5 a81abdade2a3e0da2a04f86cc35ff6ee
BLAKE2b-256 57b25671d275a73868d20dc48fdbb4d42134f0d3e136ab5fe9af17643aae1624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0f1717f95964572d5af45d0584f0a0a9c95fc7116fa2f4fb3ae08233ab41dab
MD5 4cf9078eeb54926e39156d12f4b8f2a5
BLAKE2b-256 ca8662b30c6a669ce8dc2141667a9cd162fc7685d2834403bfbe27e1643822da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 762554532f600716912b88674f7e99f664d123be82ff7ca0d1e716533bb47362
MD5 01633fc8113b6336891b7997d5b601b7
BLAKE2b-256 b1af8121c79450990fdedcd24bf4d777b1deb6a16a8271fbe137f26c76786b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b207606205d2a3e1abb55f34d4a77d448c346ca32ba70b363925ac78eb478d8
MD5 80db2160b6f38642db74dcf29107bcf9
BLAKE2b-256 7b276c8b18c79cbce1ee47aaa053dfc8961f33d5e57a1ba80e14516f07dfa0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45e173842b6cecd21a49384e3f5ee07f9d975f6a92a2d80179ef0caa5e5d0a49
MD5 945829960f064094257345a3b1cf011b
BLAKE2b-256 183499ce1d4d1e7d28442ed42aa1f2105f013a064036010a89aac080ac75449b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 699a50d52a8581aa5825f4b9e374b0e1a5e5c354f652d85ac26d8e8a844fee98
MD5 a0e23c34cb82d06d6b792726cbf90547
BLAKE2b-256 a999f90c0b5f8e056d5fb8c31ee92695c91ce933c219aae00cfdc9976ead589e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cb3443e5723d6c30aa9d5100b6e70a2c206bb8ffb5347d7d56754f084a6488c
MD5 6c82cd23d60547622675349636a53515
BLAKE2b-256 38bec9ea34b683af497ad489713e2b8067cb79aff7e47cd68911968fb0f81a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9ea89d19200c13477acb2f2cd6ad48237629fe6b35dc5041929ed2f4833ead3
MD5 9484b34db710a081c4ae7fffb46f4105
BLAKE2b-256 5e6dbe04fb0d709fee6a8d4a1029df6b639745ca2ef2cbb5f35e11f657d32f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9143e4e122bbc002c4b1dff94acdee5c666b0baf63bfb200c8032a0e054c0ed3
MD5 01cbdf2ab938e1bd8c1d6e7a4705e14f
BLAKE2b-256 803627d2b57ef98e8b5df984785d9be5ed5d8f878205f0af3fd7f174b02cfbc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.0 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.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 559aeb81e3e519d0323525e78a0829b581918c67a4f447f24247c207aea280f2
MD5 2c24c6fbd1f98bb006bea34b68dd37aa
BLAKE2b-256 1cb71b7b22db971b484417fd93b72bc4f702214b770a29d362c9869188996cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44c7ca8a3bc616481f9bb48904b2a957da2e53ac7a2a158d9d8b879fe57edeb3
MD5 0d160f210a86c39df6f3558b77a82c95
BLAKE2b-256 9ebeec74153d54437baf022df081f0ee83cc4c11b37b8cb946cd66546fda73d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0118713d554f3a24717a40064e6e169bb18152195896a4deafc12ca202d5fc3
MD5 d3dd2b25c74cc304266fb4a25ea81f63
BLAKE2b-256 09be49c51e7b60f6f0b6d2bcd7b4be811c2bc1b250cc57e08344184b31bc0235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c48cdbb5b5c954ebc7052d73d360cd3e8de6c46fa2e4fa59117b96036d1b95df
MD5 418c0bcab0d2af4315161de80bfdd942
BLAKE2b-256 61257c426b35218052da813ef8527aaf6cbae3995049ad3717600cd5bfb4bcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df7cd62c074f79a0f9c82e78486ede6e510e067d8a2004dd345393dc5d6a3336
MD5 80ee07b34e88aab7e8a4f5301e7ab223
BLAKE2b-256 4bf47e201da5291ecec97a96adf2448335817754e08e417d344b139fd5d08071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe87569cbcf10aea10507ec53624572a095a2121ad69c27f1a5a0e552ee51afc
MD5 751cf243063e35e5816e8c48beb47242
BLAKE2b-256 d739640db7cab444ebd98dd7208cb58343a191f2b5b2c9858af103e80d203ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c00ef68ff63b3c15e9901ad6ad9c0c7ece42872e3520e97ea1122b053670b3e7
MD5 15d41612ea13a5578a6f8574625a937f
BLAKE2b-256 a31e6364182f7c61082e7714789fcf0ac8e2e655096708ae813191bfc544f550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c606d4f702ab9cd63a284d3f7eb41018d30ece6c23e7cc5a2e0734eda51ffd7f
MD5 6b702fb5667b4cbf3d53e03256b768f5
BLAKE2b-256 38ab2a114b875c3df5db3ce52cbb231788093c0ada57c963fa73c6fb9b166312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f5b3b11a6ab8b5dc4d3e38831ccabe492b25ff5b18dae9c9d8c96cf875fe873
MD5 d71393c9dd1c1f00e9771c5b3e4eaccd
BLAKE2b-256 969f1f911b30d9aa1e4f2694785a257c5a339b14fbbe5be1d08727b42663dd59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ea89491a77cefa482dcffcb29262d0a7e4907fbc83932d04b8703f70de15164
MD5 73cdde76b49f92c96920d15f4469881c
BLAKE2b-256 eec7b8cb4ae1567c374fa6644345b39c941127d8c8c323c4b684bee9ccb8742d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51c3b9eb8a099be05b3bbcb21002e029b1d23adc15c0a6d7b9bad870ae82321f
MD5 8eba35a931147368a4afbf63e132e3fa
BLAKE2b-256 f79dc56edd62a420a1d415989ce8d359e1e74a26a94a0a046d170eca39234e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d43eca703ab4f955ce1266aba0cafa66250fd4290aca86155dd9225cfa7ab11
MD5 0904328b2efa3508595e5d1848acc2b0
BLAKE2b-256 1e52d625c102cccfa77ce4d8d148327dcd9b9d60e1eb187aa6a776be09415de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0744d9b6f8b95e56a5bcfe585e4c0f957341632c4a62caa7d706664e51f2008c
MD5 baaa85e94492a280b332baa80574af8d
BLAKE2b-256 00906fc0234953915efe7acfb488a09860189f2bd593ea793c70e2745f7e7b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7105688051c23797d419789cdd1dfa6dc014758f69cef8a8de22615dad24d04c
MD5 b182190bf23f5ad9d43a8f6e1784c453
BLAKE2b-256 bfb3160687e390b0ee092d4cabf39ab4fcdff030986767724dd1752766ebd14b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.0 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.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66c21efe1be7b08d9189f164362cdce494116934dfc7e39390ee211616ed4bf8
MD5 3449d6657ec79cbe5e3f69da4d285c52
BLAKE2b-256 c243d0c6e92d6da7c15fe8d2311052b1fea31e2a5a3656b729d84b545ae94285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e4e22e799ed30548195903f2632a843d32b6b0f8beccbb981a7577adbb52a2
MD5 170b05d1581886500393d4554c18be34
BLAKE2b-256 5f60df14162993a310e15749c170fba95b99fab56d9dacdde9e6e205dbfdf2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b07e7e46d68fd71c4fc187a88f6a824e9cb156c788c4bce85b4061a1530b002
MD5 79b54011685dc21e1a3ee93bf709e7bb
BLAKE2b-256 16db809d5ad00c5864867dbd8a757d1a3fe0e3854c459e4d63ebcd7dafa467c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3d3bad38ae8fe531ef647ec7c6a6c92b4ec8206f824cccfa52b6b8add5d7d09
MD5 6e71b4b81f86eb91045d2ac076177050
BLAKE2b-256 061cc6238cd8b3f28fd08da2694de46488e49735d0c2e5a52dcac923f6904315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ceb94cb61d999834b019df0422c8c157720054b4d643155f07e5c6839141eaaa
MD5 efbf36e3deb55e239486e872eeb55a85
BLAKE2b-256 500f9dbc548ccbf587e03fb7ab1cf03e500d63522b32ba0a7423332434c61655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 694f4e4badcc376985c3728130caf6a942b6a38d732b3cbbf9455a8f6f87bdc6
MD5 ac21158706f0f26162fa04131f939fe6
BLAKE2b-256 7c040f4d4ff1bdd738987927810cef16075b49833ef5cd818d4432ecc6768c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a7b727b620960d546be40260dcc0a5ee2da03005fac76175083372ef0b5197b
MD5 bfd5e14425a44f4157cca9e02e8b7693
BLAKE2b-256 2b79fd5b3a4d63f96b8831f9a3c9997d464367f0e116a1866a542fecb3070aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25bcadbc87b2d2a3366a04c2b2fd594980e4cfda766f0b38589ab369a7734fa5
MD5 240f1779b1ef9641c099de64c9b70f20
BLAKE2b-256 29e8729efaaa0768edf771a0b0605ed2ec75c7bb08e653565f8a36b0530c5f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3739c6760244fe7a637550c185eda9c49b5c2d278dab9c9445d6b33180c6cb0
MD5 f353899e089068dd9c54f5b9755c26c2
BLAKE2b-256 9f55ada5dd6f488ba22440b0b42fc7c5892a1ffa0b1915d3980cc927805ee961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24d73c2e3a1d824e60df098c9add34ded9a94b923f661e77d50dbb709ae6d7fc
MD5 7d902406c499e24996063602cb105baf
BLAKE2b-256 2ddfe4fe8c9375718b40793e121639780a5516c66bd1739394dc846d220b58b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3dd9d4ae2b1303b93c974907fa08e996c8e16cd5fd340cf6f764390219c4e73
MD5 5564462039ce8ebac4c0265b9aa0f96a
BLAKE2b-256 0c80f122e921d369c1889c36746a11160f2fa9627c6ef97669531d4beae14e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4fbc5eed2ace95f2b9adf8b260d5cf12a3c763cea38a0d70a0b14e570a53aff
MD5 ed92dd5aca918edc13c81fe0f2c267ce
BLAKE2b-256 7a8aed9221235aae608afcac5115b9430d82a3258a58df42fbd74f7a9cd4c2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbab2f88e4ad9b2936844f3a6f5dce7407ac445cdc8bb8bff3956c7f3a65738a
MD5 9150ba1610cd8594d47ae2e59dc38406
BLAKE2b-256 79e884d2d922396e2a4992abebbdd94eacf5b54b9d6b275e41e0c2c823b856f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5dbc648c085050a30df33dcab66ce2d0cc218a94b74fdcb3ce88a40be7e6a2f9
MD5 967cdfd4d5ccdc943cfac977ad1c5945
BLAKE2b-256 b76b88c2b72e3d86e8f9214b53caa8232f59f1c59f147744961c066b806fe888

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.0 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.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 45b6677d980ee758281b1edd7fd63f2839c49f038cdf7c0339d9d260ef0c6a4a
MD5 d8bc543c38ba1a3897a361dbe745d84f
BLAKE2b-256 4bdf1e90e0b4a78a04b4fd6b3a9af025630644c436ae901e9d5b0b75aedd4e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22d2cbdc43168ccc5b092f1e32ed4b468f8530050dad4622845db390a03ad904
MD5 21a862aef553ba6ebae645b5c34f64ee
BLAKE2b-256 5fc62815175196f62f5d284303a10d0852bc6ee8c9abe3b7b3875b4e315c2a65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6be563078f985572192b054e8c7bb2828675ee25c50916d334bce09dfa101d3
MD5 d1c854647533367949ae2dade679969a
BLAKE2b-256 228761b557a4d72cda1369b96a77ade95a476dc100f21d5c766640ae5ae32147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47db22105c7ede7ffa2c9d1dd0085b807944131a1ee5928d7f716ae7fe063c98
MD5 6c8cdf5122167810fb7cbb60ea12cdb8
BLAKE2b-256 39a8917c594bb89f2acd009191ef22a2d7b40ac0a43eada4f56fdc64d682c5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8430d526b4c45c5f64057960a87c876bd73123538cae2a1cd15260107e5c1c2d
MD5 d3b3741c15f9c95da4300d63117ca559
BLAKE2b-256 ee458f8ce04d71958dbf1c422d458cf76878eee6ac4e24cea2b2ca929a9bbb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 276415e598d18a76a41763f3514133cef3323a0031cfcb4c9b1b796279180f0b
MD5 512023989b93553ee575e5f57967d4e1
BLAKE2b-256 0b81d625c7e6bfb5a850dad1a4bd98cd7893e2a2a6a82c8ca66224563a768c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57b000faa693939109572d4b2a66ec63a131f13f44b6472448890dc0179f0137
MD5 d2c410257d422deedd134dabd35aae8a
BLAKE2b-256 5abede0d8158ff8cac96deb04d5ba8356e5c2c0f9917460d5be1bd37ed8ded36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbdcfe14254914d4fd73b155fc7f45418902f8b4ab394519d78167ae0fcd4e3d
MD5 764a52a226b0b71f1bd41c7fa3649d24
BLAKE2b-256 b97e0d76e921b888473adc3ee0a749acb3af3f835af9f74b971c0a9ed95462eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 378fd60f7b72e9e072787995644d7ea7e3a7ac0dcad45617baf05d6e4a47d9b6
MD5 541782007ec9fd62ae161b4e272041db
BLAKE2b-256 f744d6cfafd713e1ee28e62fb244b3c188c87fa755bf84c8f318555ef0fcf453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f616e4162a484d06ed734f1674c0e4ed4789d0ffacaa4bbcd527579c11013723
MD5 ef957fe77b2005e9b4708cf3f357a931
BLAKE2b-256 0118e0fc888865a8e44584c7d6de71f812445b01b8bf7e150925e83f52c73478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5023a9747327ad7b803dd9d9d1046220da4e470ad8494cb7dfba865a9bd34e2a
MD5 9aea5a3f511a0d57b7bc2c0e4844152f
BLAKE2b-256 2c047d9077504a75efcdf1089c84b7947268c6fe18ef32ba7d5024b82bfbd228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adee1d949b68a1a3e14d3bed8c28fae90be2e15eb144693e77bcfc5ccff6b97f
MD5 35530770d702b0ff9a0cdb8d2b365acd
BLAKE2b-256 43994d18e09916f3202134d301484739b74359dbc46cf91d7fd6bd7107c979d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7aa3c932957438796955dc3a47953f8fbb6a20d4602925fcb42d5f08f66f211
MD5 e4c1c79cbf79a53933f7a41fb46e8c02
BLAKE2b-256 0127b158b38e680bedb2e9b05f0e1a436380c21781aadf0da868c6e5a3d62b88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 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.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 95c720f5a9217b9e417e5b151509a14c4970754680d75d344d599062f2bcbdf6
MD5 b8df303fe07bafc8676531e665af834e
BLAKE2b-256 9ccb7a3f62a647ed7b09a9fce494f31008d8a656e83f0b1763cc8d6e18902671

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.8.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.0 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.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 959170271a0a65cb8719d945d4b040c1ad1b43b7d90537eeb8f1e07f19460b49
MD5 c33831d5e14f783b680aa5f2b49da21d
BLAKE2b-256 fd220b7f0dc3e67c4aea5f1267aeb9172dcdf246e1c008d4fe7dfbbab9cf8562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2981b3ce6e2a48c0c5a08bc454e464d38f1385edc84f902a4309b57c02c8fc1d
MD5 3c67d85f3cc77914cea797c1505fffb6
BLAKE2b-256 86ef32ff10fc20c6f7053cca5d327e336839a8812e4cbeb813d22517c1958147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b20f067fe6e810d91df59c8a1e2750183dfba2c5e2372485578619c61449c9e
MD5 47a1d552edbe7350a6bbc0dcbe76c4d2
BLAKE2b-256 b3af615353c4b6b6f746f916c1021997e9f0f6cc82becdc238339c41614e5fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 344bf47233845cd3e3e35dc57d97d17d13c7a2fcc57dc1d19ce838ca6d1a5f3c
MD5 29dba34d0594b687b836912d1b420fc8
BLAKE2b-256 2c4042fa64e43564e1c7343d2bcacfe4b6ff1385b4b9723de82e1f5b1065e86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1583b9d0c7b3b14565e426c02f7331510abf6010b9940cd3ed0172438da6b747
MD5 2835423f8471c628e07eff660056e099
BLAKE2b-256 1141fc6414c7d5f3267f5a743d01906ea079038d818b2d6ecd8d9fd0dd2b27b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d2e1c65a2ba34325890a40f1ee66880521cbb9d922ccd9fa5055ae10f6b0c32
MD5 3c0f8c4d64ddccc5b03db6667681f6cf
BLAKE2b-256 362359a8724fdf6d49619a1c4041dba606f3a9aa4283caf3dbc7b275b9b5f77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad905e53e5f19763dc256282061b04e79d331492faa1faefc325efba604a6458
MD5 1635791ede637282d073391744b6e46e
BLAKE2b-256 9c96768d803f84a0dc98d92290f6030ecd0f9d28bca4409c6eaf84e6ad2e9ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76f664e496afa0a218c4866bd33b09967b2fcd85f9687086c8f1cfa8ceba1d7c
MD5 9fe5912ec0244c3223ee50dd0018f7db
BLAKE2b-256 2463b1c992433234cbdf19ed4ab2c71bd56ab496f421b46bf21f23f43512237c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5381642fd49c03f0bb8ff1e3724c6594d4614d771147266e6819faa6cb4be742
MD5 ca756e962ba7bc0419a370b58fe4cc24
BLAKE2b-256 c459c75ffa5b725f5c266582beefbc7f96ebb83692fd9098f39e21dd3a07290f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a2f6ba7f19b3f4f09f53eabbc5df60a957d688d3a7a949223149b676c18b545
MD5 cc1b7f9fbc718eaecdc6112c32538290
BLAKE2b-256 0ff887bf71859bc39798794bcb8020be223e6f6601c0757b3bac1bc88b8079b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6eabb30230fcd5b600c26e4113164744881520d27130a6ccbf934e1fb4f5198
MD5 97691a046ce4cd00d53f26db71268bb3
BLAKE2b-256 a5a54f3ba309066ca31f723bcae69c8c2ec79045e3224630ae5a5be14b30f209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83766e042b0b7661a539c56456d391a28eda354fb9fa8f10333d7e7920481264
MD5 a17baee5db2e862ce88e991a860a813e
BLAKE2b-256 c9a02417299449e516e5f54a6051cc3030a7b2528c4b2f67fa3f829f7d78b40e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f99e82bf604819a95577ecf340b65c0a95c2c429b7e42d7020929c5011e30f9
MD5 61b570031986a84b65f423f29c5a83f5
BLAKE2b-256 6597c97263c35e2977f003850f04724c3735561f67e2834fa9a34ef751eea196

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