Skip to main content

Python SDK for topk.io

Project description

TopK

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

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

6. (Optional) Delete a Collection

To remove the entire collection:

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

Project details


Download files

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

Source Distribution

topk_sdk-0.7.4.tar.gz (124.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.7.4-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

topk_sdk-0.7.4-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.4-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

topk_sdk-0.7.4-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

topk_sdk-0.7.4-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4.tar.gz
Algorithm Hash digest
SHA256 d38f1d9bcc9e4f1d3a5708d8f65743c6c767cbdd23f15634fdb697259719cd1f
MD5 60b913d5dfe64dff0bc2b5a29406d628
BLAKE2b-256 019a2624fc901baa7a2204480202fe9825d8ae83c746dbfcd2886c0b66d9ba9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2c5673bd1144a29357e5c91d5c30783ded1f0dea20a170dcce6841b8aafc8078
MD5 d8fc48e0b20d79e56f1a977e981ed6f8
BLAKE2b-256 dbd22ed68afbbf2eb02249d19661c9b5d1245fb549f62668210f8823a8a357f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.1 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.7.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ea2ced14145b59ae460a9edb3726d3169fce730cd9e5ae9488e01128b443dc1c
MD5 e229f92f747b682e349d67c7bc5348b3
BLAKE2b-256 63e2c6ac295d138ab928a6629e682e407a4d21f40d73d12283b0539900267383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f0e72e8f45a29217887039fa8f0499fea963456041d0aa94f8756f9b08719d
MD5 7e810d32d2c3de1f9a63dcbe05289836
BLAKE2b-256 8eee5473d895040102239e809e17865d628d4908841b4f02647736967518ab40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57ccc61251d339c93af0eccb54b3ca335a599005e50905139df444e387a28b68
MD5 04c8e8fa603d6d076092a1049142f717
BLAKE2b-256 8f94e36477b228c2eb22343b952cf68a27357c5ff2b84fd604921683b709ce81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9973f08a1830282535c083f335443cee39bd9ce4dcc9698e9996a9411e9d9f4b
MD5 febf1d571ccb0920cd8d9158df6edb3e
BLAKE2b-256 91e87fa6fe88219153bafa6a91a4720731db50ff1105ce215e7dcbc1e9ba3236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 408f79cb8db690f623e573bf590ed0df82c5947a450a45dd7cceb8e4cbfc3954
MD5 56e31c9432600e09c2af6efc087badcf
BLAKE2b-256 c56248d947964a1a32b61d36275e90e1818921252eb4e03f6fc74551e3ddccef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e040820f37c9838ae5a87223d1c6418ae9b8312a63a3a2521228bb4f8631408
MD5 26e66195f36cd6d31be155183d89c23a
BLAKE2b-256 d7ea965fd6586be78e723bb2fbefdda63fc7dcbd658cb01bdcab789ba8f10d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e82b5193fb98a49d7b19b47d98f609d5f3f704484f3d338ad86684731e7f2f2b
MD5 245b4e2b11da1edea03b190a0aab5ad1
BLAKE2b-256 999ac8a3b2ac624899853624aaf972311057cf0e24d3c3a13898ea19ab8f866a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59e7548bab6e811beb127de0e6bd6f72252b11533532bdb2a791cc3e5af5dd91
MD5 830dd297de2e0d421d865df44c09c3e9
BLAKE2b-256 a922fa7484dd249d9a8e5362b335ffb420a84ec037ec3a3f395617a670c886fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 246281e36575edf27ecb89eeb49b603e866bf56eb2513a97b24cb1b37f3e4440
MD5 d435b995486e92d6f158ccf26120c883
BLAKE2b-256 36036c3ee60c0a1f258ec5f48aeb45c22ce0d6cf7f2a63ed93fed8667b1a7b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf37572bd88b578b6da59d34f8ebf6ccd981c69a65393479db667d871565bbb4
MD5 d9427f5e7b3b652efff2823bb5d7132d
BLAKE2b-256 cead7c89d50367de33d4b9e8545bb7330d4d2f43870b1e2b8ad544d609c86b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a89d614f646eee26d1f75d3fb0ed8d1224f7bedb8540d0aa83b764d8314802
MD5 6022b572b7db16b5472f46db31247ebf
BLAKE2b-256 cfa775c743076fe823c530de26e4f6d35ed8a95907fbc698c6c24ce6d5e6f45a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d89095e750ba387ac36d93117a5bac7cfd9a27a1981062f7ab19719c27acb8f
MD5 2fef502f8efd8378892b7157df09852d
BLAKE2b-256 a25ca7bf9ed74207cb4550fb4982c85fc9057ac62a1acf65deb91f5183ac5705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 918e4c993612830f5ec303b5bfa62a7a330a96784c85396b66b42ac3004c0ff9
MD5 87462b392292b182f4b6f58a079ac080
BLAKE2b-256 042910bd545dfc637ce95019a6cffa5c4d7937be33c1e6adc857eda80bbca65c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8da3b352cf4cf8d6b3f0dbfe422b9cc3ce383a64a11417aed5385f4637b0eac
MD5 28bf03b6def0f80f8af9a4988a4cd87a
BLAKE2b-256 efaa8ec545e8731bb99257c8411a2aafab64440abe7ab5d28211b620695356cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 762633e00e670ddb7dc531d1c0400ade9f399935afcba12a5e06174d4e73afcf
MD5 13aa937582c4b673bf13fe61ab9ddd17
BLAKE2b-256 c167a2c958c9dafa07a97cdc449d697af5b20cb59d0ac70f0991e5757846e060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92ec83a8000bb3247bcb8fd78d840f93995872dcf4b9cb0a52e38ccd2cb5a58f
MD5 01dc730f3c3d36814c295bb060c6f3e7
BLAKE2b-256 2c417e2953341475cb779fe79fb2f98787a7342e7af888b23b430e6bed332960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fd51fc41f706d7d309a2c471a8937b2d568aa922bd9b668197061015c4d574f
MD5 2cac45474312f1f91bf2c109203aa920
BLAKE2b-256 680cd182c4b61d52446edb6cfc9865b4c9c43e77319ef466b3ffd9dc0ef87014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58ce05f19bb6f3f017f120bb71dbc6f7c61e4ef7727ef11dfee80348f2091b7a
MD5 62582a7a3a1894c842a851b5e0ae1679
BLAKE2b-256 5d3b23fb632896068f55dd6aaa6db70abb5666fc0a2af7829b3e82b512e884c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c494e3d3cd92420c4e040023044e2bdb4a0bf2f0fc6c041687adcf9c2752957e
MD5 1595a4927320bb9b9bef966a5ae4db7a
BLAKE2b-256 d319e309d5c89866f87aea638a2451254167ac0776d6e84a10fc2993237e00ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9920fb0255655997ce7ab9996143dbc297bbd6d126929b4f0ace293b6a450427
MD5 ad14183ac4a8e5f54fb9ff41da0e9b3e
BLAKE2b-256 55dd0a35daaecacd5793af45c2039b115f49141b01b7f00f5fe764bf2c7f337f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fd0340d7b715002187f86bbbcb9872f1b6c20c6d21a1716567ebf348d470645
MD5 afaa5957ee15d6e9c86a0dd627faf33b
BLAKE2b-256 b918304bd286bcbc9c1ea92308305acc615cfbed8d88f6fc7848c93ea7c312bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 344b94fff5036c4262acf0a964b93e671220be48dced15231363b143fa424b5e
MD5 c26d52a78dae96b0a1defc8e45416a7d
BLAKE2b-256 d620a3f8638cc5100af123609ec6114a3d8e62aee35e8372933540148cf263e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bed6fdf36c72ab74144faf771d4e0f48d399fca73a92fe268c4c4df8ed0c806c
MD5 3c5f231c1f5dabe9cdec5eafcb59245d
BLAKE2b-256 6877e51f30cb621fae442bf2efe4e2bd4a16c9ec9b01ac4015fb7e9b41dce8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f27d62d9fcbb8c3512d58cfd128a6b93b81e2b18c2998726d3128915c6b4ff2c
MD5 4292a04a6bacf8fed9931087822d9ee9
BLAKE2b-256 7fe24238e0641b513ed9891e1f32ff146524c37d5c2a73cea0d0305a2586bc21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cccb3572312b0ee612aa07bd469b9b20c42629b7a7f9297cd986be4e4108d5b5
MD5 8d4cd3c4d276bdfe503286085fb28294
BLAKE2b-256 6ed8c30dafe4d42934fe0e7f7569b1ec7fe180460d4040b2440104850bf8a955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7375c44f9b8d411afdfdee61a468509c0db461b5131aadee88a31d520a9b10c
MD5 19b491c33e1b4330ff4478cbf4e53c3c
BLAKE2b-256 fda0e10f5158c060de5abd15821e9de11f50dfad5bff4f1eda04dd3faaf74ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fba6f4cf851eb19d1132c1f8c3c01c37271e75d525fb5b70199be79b5981240a
MD5 39af8cdfdd7768203b009e21360e677e
BLAKE2b-256 ac8c59826a716273a7ef24fb21a768b5da5e6f6b6daa161535c2a9a2070c4392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f49ab0c752592ab2f4b730c34c88a7a6c78350dba43fc4c6acda76f3301239dd
MD5 767c815dab044a63a8060489a0cc86af
BLAKE2b-256 7cbb6109bd7a7eb959d28b433a84f8dc108820770acf3c3db0d8fe2c9d25e7a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 38e658f9b9d0427ac223b7da2627de1e6296be243add914b8dbc0597b27fade6
MD5 9bdae581cb93d6ab970e4728bfc4023c
BLAKE2b-256 ff0bea3c612eaa743e7eb7553e8ae5f5742e391e956be564bb81b9d46cdf0a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9be3d7eb0bd43480403b3753c9a50b09a59e12da3dec6a119e50e1bd898f44bd
MD5 aa57a9e49a8b13208138757b380234b7
BLAKE2b-256 83d91da8a1cc66e1bbaa39ec76e7b4149a230a12bb8a1b82cff4d8d4e2b4abc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d18d451836663693796c7376ed05ee7889a6defd1a4733509d5531a49784f4c9
MD5 23f155075362efcaf2591b0fdbe5f1fc
BLAKE2b-256 bb5e8fa31c1b95b3513e2c5c7b4568989372901ce71ea41cc1305ae634b4eab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c622d6c0a50ba77bcd6b1aafc27f8d039d5ca8889dde5493cd09e7117748c5c
MD5 86252eed6a2ce550441055968a14e818
BLAKE2b-256 48212c4fc50b95540af326ff6b0e5840ff4b8328e098a03fd9bf381759a8bec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 339e52702970aac014ca3d5de15a5ae8650ac24f07eee0eb6519881bd4fd2dca
MD5 13279c5a92471d333375e7a667eb2dc0
BLAKE2b-256 e7fb1e12133531dd0700609ed75902791ffd6bb1a6796e2dac524e303ed9f1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef71b46c936c363bbace91dcaa5e8eba3f72cc6d0022ce69e08d3b70adf8d457
MD5 9fcf154ea3b1dea04473bf3e98e5cf55
BLAKE2b-256 cbca01a4398c7f0d3ed51097062a214b1b5bfa5eaeefbfe224958c15503f26a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c17f2e50fd00a92a18a36abeff848acc44c256b772a8015b47ce19f070227af3
MD5 cce9cfb82a6c86713ef738ba8b37f6bf
BLAKE2b-256 2528c24a2360ff0e142ac95b3245f693b5ea8f653e43359bafd010e072601094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ae75d4701a4dccfa176dc2ed56d4dfbc2435274a86c4f243773f524f0dc9c5d
MD5 0031ed1a39157ca117fc83427b024fa8
BLAKE2b-256 339329e5785728db2b73b102c9add9fd05d529b324faeeccb185b3f219d9a87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b3dfdb29d229f36932d6e20187d12b72cabbabeb154b376b25fe71ea787f724
MD5 4df338fd6a12c6905005c6b442bd8537
BLAKE2b-256 cd841313560e07a9c2981f55535701167fb33aa895ff7e893d569913b13a0ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ac3fe9b2eaaf768afda18ba00a7bd019981fab6f16afaa79458a0c99b5b2c13
MD5 cf91b1cc9900e0a8382eef25a2258858
BLAKE2b-256 545c6dac16b6ebf4c84a8eb802783ec407596fd45619df88f92e6f31b6b59d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c711dc3f34ccd6d0edc5a9113e71f6856fe64efd7c7d90ca940d44429d2272e7
MD5 f60ca7c5a9832380d2364a3d4563f448
BLAKE2b-256 2b27b6f9ef4abbcfb5fb360df5d0a081c5b8c8998c1ca1cfb25d6516eed1fe3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b649ff29798686a2a61bd33531f98819cf2282ba04f28a326491d6a294b9d9d4
MD5 673535ab11b95b3ebec655ea9ffe57d7
BLAKE2b-256 23bd41bdfed9aa75c59df81d2030543bddc559cc03c9165985c410e11c05d2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d965603d2c34e6546c39fa6bbfbf3a91f8a34add3479f192b07b3393838e42b
MD5 1d6a0446fa90c7a5fd5fe6aaad1b8ab8
BLAKE2b-256 c07616d0fc52d52aeea2aa70920d416033115f0c9f1aa248402f7801c164f879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20537d7a75bbcc90ba464a1daae8201acf44184ac78b7b15eeb71f102851933b
MD5 3166de7fd905fc7ea969ef7c62abf952
BLAKE2b-256 04595d36f1a3c82ff6eb5d8e56628a0af1da637bdf31b11635bbea201252f38c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fccc3695de08e4fae4887c004b0d4b64a970f6b30f5fe7bbbe65a104acdc2e40
MD5 e9b189f398fa5c00934c90470e7785f0
BLAKE2b-256 01a17c6377f00f4047ffb2ec55165a45ae58ed87752b1b6fd57d9adffb0e5633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e60e811c4ecf458288ab746ec2f0a7504c0be82af540c686169554b5bbd0dccc
MD5 8c2ad0eb4bb7db89fcfc23e6b5fe7ce8
BLAKE2b-256 b1649d15470ed1b8a851957fde1338e8800fafcf55f4841f9e123215e9f8bf2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da01a28418505aabee598ca0d6f4ab295f646d9cb2e0d1f04fbd5cc7b41b9141
MD5 cbbdb7c63b68c01ceb669a8b3a2ddb1f
BLAKE2b-256 d704ff2f338258dde90631b4c2087643791a733e26eee5fc71b67618a95a3e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e297b9b9a745d990d4f25a124848ff3dc9b9f29db82d813d714a7b7a69b90717
MD5 7e09f7bfc623f6abba17241e1818e861
BLAKE2b-256 b434a399e35738a2dd5f826256b00bd0d5d8eb19c0071f3649d41abda91f0f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3310ba7058e1889eb9f0fcac0c54d2e4027085868337b6f147d5e3c993162a3
MD5 59435e2849d450db9d25551f69af4511
BLAKE2b-256 1ea306489971f2944c5ec77d9dbaaab1e97ac8d41b5466d5f86477e0e4d45778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d2f793c679b29b989018bb14716ac76ae188c73e72fae1ff1169c09b790033e
MD5 793555404bf59bb5b3bf4e6968924c65
BLAKE2b-256 da0f7a803a2d4fbf83aa95f05cd08a6f48216e566ff6c9aca3054a73c631e6d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de0080ac8ee0bc3a4099393afb8ecee99c663bb931880187ec03fe64a768631e
MD5 de4974fcab7a08dbdb157c7271589d62
BLAKE2b-256 e987d108082aac01d049d289100e58d3c1b1193e6d51da51a10dd358c154662f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b88b87755b55802f7412cf9b536f5f89c95432339d334eaa999f68de4acbd29d
MD5 2e6298d22898f8b91c612dced909fdef
BLAKE2b-256 89fe37f81ed91417565995380079d05a5dae4a221608d6ceb6605c9916d347b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 651676af5df8b25cd77eed6dbafaa4125bd040f56b7ace2d3280c7e0bc2f7d62
MD5 8d2af6d236240b65555a5ba3b591ae44
BLAKE2b-256 d831ed36dbd8fe1baf90a68b33d597f7bb33be49550945153665366d32ca56f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 555f4f5621951cdb116c12a0a3914f38732ecd6d322d1159459b850db6ba5ad6
MD5 46dd520a2548d8a7d38441c3e3950118
BLAKE2b-256 5d87e1ceb39a485eaac28e1c3f9fef767c04a439c32b1acb58da26ccd07d33fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 473eadf5e12c880dd18eb19d27895068c0a1cbd151d4c38734d0bdf63d638382
MD5 799d0a375aa2a0ea1bbdb81f33a9d712
BLAKE2b-256 f5a46d958d1fb573493557a75a1cbf77d14bfb9b4fe17b244d27f552e2cef088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14401422b21beda2e0978b7f80ba22c36237e78dea6c87a0bc57b7b9208aea33
MD5 41ced746c04179f7fad7c202c65f375e
BLAKE2b-256 d07284e107869ab203ff6ccf433a6547ad6839c8d5ed80a04364c415f1812172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdff4dd9097dba98c541bffbe9318d5b4bc56edeca99c9c9ecb211150e5fdf19
MD5 70c9efa86404f8ee106e8c9022e9386d
BLAKE2b-256 dfbd1712d60bc70fe5b52837344ffde5423fd570917013f2fb751dbc3b0d7843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f486c899d944e3227bf0d7c1998c381852acc80873e786870eb9736ae677bef
MD5 04dd12b9ab54c91bd40630c6c8eca3d0
BLAKE2b-256 afeda23fda216a617d653a97d6c15c221971df5b3f55587e4815db6e99198f84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ecefd24b15bbad89fd98cf1f44e440977cc84556ef7d908e88394a9615776f2
MD5 9bdd7123c4ef0a72c83331bf0d25762c
BLAKE2b-256 6e89a4f768e54a0fd08e7180841d6b1f717c26c6dc788c8688b62ec166e65b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a78a34f3831ed57b9818e5fed65144646d770cb2a2d7ee8d929156758ed47723
MD5 353ad191bf8154ac249df7f2fed68cd8
BLAKE2b-256 1bc00d7a9eae913315d8a0892abc0b8a1db39a8dee78f4eb8d28bcc194a1328b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b80e02c6b1009194c330aed46acd268bdedc5fca1a4e1b84cd9197eafe2afa37
MD5 d3697aa6ed3615095490259466463a80
BLAKE2b-256 e6ca754ac4bf2d0412fd5eb9889159241618c194b59fd49b5d3dda3375d8eff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a5079841744c99de8d84b7d7bb753d3e4e1d5d08e7994595c260af2a9b68c6c
MD5 43c308b5b36711edd7bfd6a3036beed6
BLAKE2b-256 ea4b3d14c4b27546ae8931369bd25d0d40e8833d98362195c4d7bbe16f1b513d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7bd858a35d55d8247b785e26647054494a64af8c02509e102a71ed7c006a0c6
MD5 ae737aac0308a0b3586b8068312d4291
BLAKE2b-256 a19ee0c065cbded426a1abd04cdce947fa2208e7d000cba55c9c58e674813d08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c6d16d6ed45d222225a901fcd2428f6aaa32f292a7fdbb42b036d4dad1f962d
MD5 e6edb9653d6dc3a592a14922665103ea
BLAKE2b-256 e917e8409870dc2b9981cb6863a43246dab01146c31cd139f24316f4eb58edb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd0b9c2b3dd94b64858cf67536885eebfe881293f65af1bab635a604467ef937
MD5 fab38a878035443d04851a1488c33dbf
BLAKE2b-256 9353b916daae21331e492c69f5956ef6ca031ac081e645002811c4092982c11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1af0415cccb6f2738611512acd8f236bf96152b1ef7a548dc140c433741a2be
MD5 15804407d2f7140edda2b432dc3eb4b5
BLAKE2b-256 c740aabf69386316071264dd9b3fb12bc5b5b65e8d5b3607eace3e2108a51ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73c1288a4adf0a1818d04b86e1ef06dd1e12da81f17d8e4be2f3633f1eaca92d
MD5 bec27286afad8ae7bee130283d7471f4
BLAKE2b-256 71ea019496011ab5e53c46ffb2bd0acf8ac51c4d9e5b80ace86c895d210dc25e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c91467d0c2cabbd183ba2652d641c6b6d4c7803fef021e386d7e5e54b7712d6
MD5 c6899a93498b7467aa64bb26affab6d6
BLAKE2b-256 04257dfc381523a5499bff5db0d59cb6d748ff4de2e1f3a5096258fbd3832ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bba0cad435274299c2a4f2c214951ecdfde3631b32735f5d8cb8ce3e56e25013
MD5 cee15428189566bb33185eb1d67f1711
BLAKE2b-256 7d6b5b356085c8fb9ac2089648c4d3ffb9b491b8dc433d68bb5faba0c705649f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a493e90af8ce3db875680915f58b66ef9c5a7b3db473debccb3216142f578d54
MD5 dbef946616fcd6646e5ceadb8162a01c
BLAKE2b-256 69caa22fdb17356587e16d1684c7dfecacb7875cbdba29e0d17a0be38c527d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73f2899fefb7c98a79967a99a12b43710bd4c9ee1327e002ae5e8300b4ab393e
MD5 336d11eeea6bc8a387821922a890f7e6
BLAKE2b-256 36073f7414fc28c691a1be4ef8a200d06f449821af0c8c400016f0eca9f138ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 121856b8f92bbd9e7ea36b1f8a52f81da0a20eec5837c839533ba8f81c981ce0
MD5 a1eda7e94f435ec55ce968913846dc63
BLAKE2b-256 5e9f5b922084a7e7f7a9232b14d16fb0cd2c5c8bef682d2100344a51e7a40527

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9b342da514ca0be3cc382bab0cfa3d26dbadd21a95ff245eb1c321b08291fe3b
MD5 a5a13cfbc31e02620e2e94bc771a3899
BLAKE2b-256 c1b17005d516f23dc63c44e898f2d8a082b3cc240fbe28a2c53923720a3236aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 353df742ddb765bb2fc647260895729061f765ac6cf47b35aff0031afa2e1fe0
MD5 f72dd979fe22d42681b04b09775dc9ca
BLAKE2b-256 0dfba2640e2d30fe2a77af3568efe910cec12e09dcc1456cd6aef88f12294dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 662f7cf17d53bbfd64ab393ad4d6f30e29a2d9f418a20200f23e58b103f68bf0
MD5 bd67f952a71093d4a8235d8be32e0605
BLAKE2b-256 ebf0db51a0e4295a972f44c7c1da52ad6b0053b34bc850430022f65274f305e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f40e181a77ded793f9f31da8027336329d6df9f44a4883696458aaca42a5045
MD5 41df84a39d859b69565579838b4e5d6a
BLAKE2b-256 ecd78e85eac5b11fad9ead7565eaadcd3dc16edd0ac31e45ffdc2b65d902677d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dcb8102c1ebbcb4ec3dc1b7957659574d0590bcc4fd709a19cc52e2bb6632e6
MD5 7e5d2a1b1732236845423e905b8cf3a7
BLAKE2b-256 716fa8efda85cbf54f7098817b12fa720648e2293aa8ef63f0bb4961257c5e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be4bb97d1d3af2faefe3479b658d6d0668947e5801dd16c5556f9bab5d3dc274
MD5 352c57502b55726ea2d06e2b6117880e
BLAKE2b-256 d5f5cf742c9d756b3e912854f91154559dbbb0be8f8f2801dbd7bdde623de0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ac0aaa85d1163ec417aad35571cd11101ca6ac06b97b3de1a889ed92619a01f
MD5 f6fba96f747e19e27be2bd82b10252c8
BLAKE2b-256 c33e72242c927488dbb68aabc6e9355fbde9c1e3a2fb03b1ec0ca5163ad23fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21fa75564bc116fbf078c736ebdce493fd0f34d4b4b908538611f5263c4f0513
MD5 1a35270e6437016b7db849992b053ca1
BLAKE2b-256 add0043dcf94d2a83767f8ee93455f1bd8aead9e61d1a3afd31dd1350003e61d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f1c4c7cef63ed015518fd4875760a4adbc4b5f76aa79ac4cc67856f2d7a0162
MD5 e082c57fe89c708039d24c4ce0f5723d
BLAKE2b-256 6ad3ef17040e73b759f428c19a335beb050ad4791684975da3f6d33d8f109c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f5d5b5e876bf5398a1d381b92f0ec0773115c2154ea207d7a8b6e23b6d6d04e
MD5 1e2abc058a95b99ff446da3570a2ce2e
BLAKE2b-256 ccd61d6b0d0f40a9fc1ef71b8346f0a72512be35eea2a629f43ea34c849dc472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ec774e263879a2bad17d029b8417ddbc156e2371f337f3a2ceb86c81024a217
MD5 659f235dd50a9bf0cd1553218f010a78
BLAKE2b-256 f194d901b66b00e30655c6281306e86bafafb6a7aada2f08bce93cf170aaa9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 316b247fbd0333cc4f0d1963dae9ce172e40b12098bae9bb834e15aff2c7f5f1
MD5 aed7aec9fd47ed4ebd753dc4cdae2af4
BLAKE2b-256 0ce4d64809e2d61cf017e71854777a21f6ff3ec48a3da44ddb62e92f5c91cac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5a2c0e742ea839acbe528db68eaf53e1460a10e70b516c1bb097dd86a20cf36
MD5 d9481548b8b93b768ff4cea7f3672317
BLAKE2b-256 928db91643c415e0bc8b49e41c4f427a5cb2cc27c25a4d9ea6b7eea2e2cd32e4

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