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.7.tar.gz (587.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.7.7-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

topk_sdk-0.7.7-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.7-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

topk_sdk-0.7.7-cp314-cp314-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

topk_sdk-0.7.7-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.7.7-cp313-cp313-win32.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.7.7-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.7.7-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.7.7-cp312-cp312-win32.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.7.7-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.7.7-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.7.7-cp311-cp311-win32.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.7-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.7-cp311-cp311-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp311-cp311-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.7-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.7.7-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.7.7-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.7.7-cp310-cp310-win32.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.7-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.7-cp310-cp310-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp310-cp310-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.7-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.7.7-cp310-cp310-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.7.7-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.7.7-cp39-cp39-win32.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.7-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.7-cp39-cp39-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.7.7-cp39-cp39-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.7-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.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.7-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.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.7-cp39-cp39-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.7-cp39-cp39-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.7.7.tar.gz
Algorithm Hash digest
SHA256 73b2398b1c040fe42d8ee095bde44f4f8b6f8f7d62e34622760c93124f38260c
MD5 bcfc56ecc3be9513d0716df42307af2f
BLAKE2b-256 73e25bb03ccbaf41cb91ef4cb71ee0793bf79831955159ec706c11299e400749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 23920ea52a50213831c707104790779ca84fac7d0d0ed2077d2e4534f87514cd
MD5 7d48acfbcb27171a044ae6dacb35870f
BLAKE2b-256 f61c196958c6f99341daddfe56be4b67a9aef83e605de1fdcbe23928c8c60c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 baa0f40ceacba6fcff0d3f32a2c1bb557c362d083a13b06a58bc3967ad6e6855
MD5 2950328cec67cb29e59c6344156cc796
BLAKE2b-256 cc32fe0b2d852a13ab0311bcafa3e2ec7880c2b976894e0b92db5da9cc6f52c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 810d9d5310eb8030b7c4101cc36f1a3fefb5006c5c09a696f64e87d7c0655d2a
MD5 2ff555dcfb0fcb8bbe5f17691699d4f5
BLAKE2b-256 1c8cc9adf1cc122df97296359640d6f81d89c3711426fd065fcf1f7623f9fb76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e94bd7db9c06612f9a984fece574d9df8bc65acd7a8f2791a9e57395a1426d02
MD5 971194c8bdd33698de2944c0d7093441
BLAKE2b-256 84168994df6fbd3d60866951b99e4a30015af1c972720a553e60cf9c58941a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96d82d2aa7d6d039879a8742c0365a84d43645d7b3d5f2bc255dcbb606df14a0
MD5 8619c389614d26c29e1982717e9baeae
BLAKE2b-256 e21d906c6dc06aaed7912ad6f9e0a8df2af615eeeeea8e1a70132e31ff8a4de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8967a65720c4740e56b38d5e2c98191879606911146d2d51a7bca9fbfb82abaa
MD5 9ba9f748327596473d31d95016708367
BLAKE2b-256 1fdd4a515a0c33f0adc66ab3e768be28199ba7e8ae801c6eab860fb4bc9e1a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b547325c50ab96e080f58b11693c5d5cd70fc000a71646083b59b1647eb10477
MD5 fb090a7e74dc210a39cb2003b5aa84bf
BLAKE2b-256 f3b7ecc949c6367eb7557a0c76bb7e1d02c313ef6aaa018011f13a2f818046b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e4a55c59eead7a7f988a9d0841d8b2508d65b37dae042df53d6f40567aee613
MD5 ef546c4dc4284524c9c2ad3a254bdfae
BLAKE2b-256 eb293f99f7b8db9d93c42587f3015e94c4ea381b800e06cfa0d04dab626c88d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f777499353e1ab39d0b1e744ebdcc9bcfa7929ba3c30831761907fd5f402804c
MD5 520ad2d5e97f0008ffe91351efa13dcf
BLAKE2b-256 4b80c1ca6a8082abf55d6eef78ff2f65b2091405768e4cbe9cdd3a04db879aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06f85b555267be61920760c04b1579dca548b35de4ef1d16b1a647a7bf0e62d0
MD5 d083f890970842107d7cbc0cfafd82e2
BLAKE2b-256 9ff81e27e384c74094010d9128dff88cc92f867daa9ee102264d0ed1fc5fc83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68c53416d9ea107028d354f5c9e1145833524d303843baa66865376b28ecaa7a
MD5 f38b75ef27c493cae78b8d300a814bf9
BLAKE2b-256 c68fa40f24f6967e8611355856f7fd304c4808c1cabc866e470a1f4d132093b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06733fff2e1634b1b018a43d03525ddf336dd54226abbebf326894cf92adf112
MD5 5fa5a85d51b85cb99e8554c5e7532dfa
BLAKE2b-256 ce55ec96f500dec2641524a5b30b920f7c5c8cdfe722fdb4cbac5ac92cfb1471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de4aff8f2fb3ba1dd7ed687755127e51f429bd1e2f7ddc339d93828ae8c6210
MD5 62361a6c5cb9109bdfa5603d091eb562
BLAKE2b-256 6cd83052ba7e610bcac9bed77a0bbb37a302b900c2e8846a0d9ea0c11b5ec46f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a4803d54a22bc789a4e282685fa3c92a02c6148138bfce34ab85060b93819e3
MD5 5b253e82542cc88dded51bd08883ffdc
BLAKE2b-256 21374e7d18783608b45d32d4031c157ac9025bc04a3a0432468c67c0781ff481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b6b5f3bcc0def2dcd26208369dcda513dd88ad7d4ced0acc7b4068930e4d3fc2
MD5 9bdce9ddf17720155f45d6e6b46e471b
BLAKE2b-256 107176067e4eed4a01351bcd6341fb54894f34e099108cfd439352e6747ab27d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3ea690269270f000f712a2216ca7d1013ffdb9cd3c4ec551dbb1fab9b5072cd2
MD5 24a8e000530a3121084bed85a6f858a5
BLAKE2b-256 279974fd2565af3ed0d1b80915a743b10ebf0b8915b4f563154b84dea8f92854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4af02e39c98abee674cfee609d5bcd777a9f19b7df2935e24b71edfdec55e034
MD5 39bae7b3904f829311e09aeb5055d2b3
BLAKE2b-256 e965faa81334733edfff1e7255a4bf1c9508c6ea693d7ab566f37334f56ba46a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f35b0e6844384f02fec6e44641138c08773903f5750113c30d2af442def2ca1b
MD5 fbd34ba6f55d1c091e1a9794080b1c63
BLAKE2b-256 2fa213e85bdf3d1a1451d8085d79cbfaea08693a8d3daf194816b1b489738889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85dc54c6ea1f1d7f80c05c180b8571a7ea74819670c07a5ab930cd8e98c47233
MD5 61670dcca68f387f915cbe91f24c44c2
BLAKE2b-256 06f5004f1256e5640ae833a57f7a84e52bc43a88cf3605d0954221e65389037a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f53cc4e89bc33735812749c1d6ed560ed4c1e879e324c8a6183cb1b7f4467f0a
MD5 eefa3de1397e510c336e982cda77ed40
BLAKE2b-256 5ef544096c11b1a9264d7ee3ab0b8835ada53e61d4f910b04fe65762815e1b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 887780b729ccb7f16bb19b0efc3edc3620f63ca016bc9bb79e4e28ccc7b4c9c7
MD5 3643626aec92691c6a0bf466cadf7472
BLAKE2b-256 cfa68bffefd4de08f699d5ed7dc7029c453a4eb413db1fc08cea48df4dc6284c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7844b461377f5a20f85bcb008cfe16a4dedfc080ffeb851861f23422e0b81ae8
MD5 43e3bb1e8874b8049ba80e0d832923ca
BLAKE2b-256 019b18f515afcf68d2760a6cfc4b6a6a2720f5627b8b034de17728c6b44767eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a455f139241c902712e911faafcd269a85b5e23aa701400be1e2d6079af651a1
MD5 75ad267234bb33ba681d079f7c15538e
BLAKE2b-256 19594d34a4a8c2bfb3b5bc5a7607119d7b125396577914a812d16e65acee2471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62f77d26c9043ff99e1037bfa11e10c78b2feb610c730f099c30ffec62130eb9
MD5 5e81c7c0afdfc2bd88a89bca12ec77d7
BLAKE2b-256 ff5152d1f5b48923d2464de76310fe9b3b4b2e92ba44fb16238eabf7159beb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 264dfe6d8265d2d65f8449a0cc0340bc25fbde5a06a96631454dc784821c1d03
MD5 811c2e00e76eb6d77d83bc9358f76296
BLAKE2b-256 3ad9ca9e7a94ded110fc589a592df0e0d8a73a11c7600375ed4f36b6b4f72443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30d06fc367bc01e296741b7ae188f7dc2775e6e640e8a9e524c3c73b58530fb6
MD5 3d189da8d09fe2f4b42a8830a303ed5b
BLAKE2b-256 349b69307b06524e6a7e59b20d1cd0f7863f468efe8b7e74b1e45aecc6908c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8536f3e19b9a81e94d4bf797d9d9a72c91faa12f9185726ea163473a40c1bf47
MD5 d2e6f34f8f3d8f08506726ae871d2bb2
BLAKE2b-256 12d1821e8a58af13cb2074c0aa30f6ef8e09d8d600a2849458c0eb2c52012ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d96f8fbda26546096c004e99ea930e485f4f72299e1fca108400affd16e9f62a
MD5 94e0dc1efae01e4492ff386165cc3365
BLAKE2b-256 63883940858ca79f9b8875752f9e0cdbf8ea8e9cc646e62f8096c18fd90b2901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e3e062c0be3f50928ba3172fb2c8ce36f18f94e428f469eed558fda99a47fc2d
MD5 16fe380d34e0a97c403722c55d115233
BLAKE2b-256 aecf3ec1de1669adebbc710113a0b1364a465cd1bb6830b7db57712066894502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d55a069256f960114339bb133a280179f52b3fa03ff69c415caf04c57f990b9c
MD5 49a5c412d54f28219db3653202d855c5
BLAKE2b-256 c6e1e0b1c27cf1eb04ce0f47ddf07ab85890945ab9bc9780500758041803912e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7dbdf3549b8e7c31a17baf30d0abb1d32057fe2b9d44e6ba2db3b833327d0f8
MD5 88623332d6d8bf750df636c724e07bdb
BLAKE2b-256 f5f621820f70a012172c50390a0b074f53e22b23df887af4b783784823eda437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f69731a1c945473fb688239286526442d5fbf536796b66be9c8c2ae0cb0bc62
MD5 0878a83a3ca64ea7c893795fdc412766
BLAKE2b-256 3efdbb26acc40c06806d20a2159a6897dcae1a1d2b99d0b408a637ea3d633069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bead05c1a33ff42c058bad091f1e7392d56ea6a0c304dad76bb2fc127348e1eb
MD5 d07fd93b11b6ae9b4c772a5d9a9cf350
BLAKE2b-256 3595f3dffee077a40e029dbe9e859cface1d6bce079ea0f39579ff195e48cc4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f11c445ee715937a9a712f1f640823ae86d43eb9d98d443a1db0634fa31a589d
MD5 4341cc16de1d2ea05130338271bb310d
BLAKE2b-256 9a536918da9caa7b7e9177d3d799185aab023c6f18eef83bd590d28aec9bf2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b3501db586c0ddd2f40b3b7760c76ca9f9d670d5701d2d50802ee6d65e2d92
MD5 91f273a268f1d874490705bf8bee15b3
BLAKE2b-256 9a4ba6e2c7d51793acb1fe0fc010401103e62afef5fa80a6d3781718de6a8b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01b1150f8227a5c2c9fa94bc9c0b246dcda9046bd4d9f74a3a99a68036f50c9e
MD5 deb4f87b9441320455034617a1cce26f
BLAKE2b-256 eae017dfc1053a0c04c4e0d9ca3d2efa887359da834aaa12d64b6315a2cf340d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30f821a7b70bc25c7e4568d4374d013c71d21770d95907baaf4ed92c086813d5
MD5 4cf4d2650403a94e6fc2569969d9e55b
BLAKE2b-256 338f5d355cf67a387ebb8c5d35d755ca4f30382ff68ee403d16badedff3e170c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16a84e74cc867580f448745f78df1fce139e2e08c15862b017321a338fd961fa
MD5 3cc6e9fa7f269de12f0704481f21fb67
BLAKE2b-256 082243d81d636bed0aaddaddf16de8705c392dc47e59b8616d5f83c14a676596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7741efc1353c51d948ef342471a67992ba0b27f406062ad6d4b54c99ee0e0758
MD5 55f2c10030a0404befdacb930c74ba3c
BLAKE2b-256 1d646ae8b3b0761ed92a9f74bf00f52171195261b615d65021d495174e9512f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31517791c583600f720fe5e1dea0fd47daef0081607a6afa55cc8a0384a71678
MD5 a4322165fcc69dc48cae06d8bcd43f39
BLAKE2b-256 21369c2c98939877b08257582f2ba882361a5a09472ce972d1afe2dd9cf0c1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 733be42e2f0d1ed995e15118847edeafac0850103513e8c656cc6c15e4fe3555
MD5 8973c26dfef8168b584a60be3ff39d7a
BLAKE2b-256 8820c6cb8b76824fdd7ddb7ca064a75a4fc48231761672b9a9fdea549905ee74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b4b78787d24a7fd4dab4580d7c18ee4da827134a5de650be327fa21fcec648e
MD5 0dc04a06b4287c0099fd9e898cb62cf2
BLAKE2b-256 b74a3aa6a6b70f26f65bcc3f518f099b64bd2709984fc1854cdfb1e22da8d808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d22f8615b0d7a1bfafae541dd6f96e9c7d5a40b10e4b86605cd77315b053717
MD5 f14982ac7ee73c1bf32836db35b63979
BLAKE2b-256 84fb684226c335471e3f0d28f3a3cd3672a5fa7b87a693cb9372bb935e6a8f9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 85aefe8fa9ba5ce69a3675159c567f400f5ea7e078ed2f73ed4e86c3b7fc2138
MD5 c5c8beeab09ca0169f24c84fe47b0bbc
BLAKE2b-256 8cac3837180692c3e5eb67f197c7dba5ef3ab65ee2babd2645f48a232134ae34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5b6e6ef9fcf21ac3dc0baeace3c4757de0a871167c8813084a6da52b8ae9a44
MD5 b8c889a571242b563a0ee1ea566e7c09
BLAKE2b-256 a704d905e461806664e9465565b38dfa8178b4a9c69d0a4fea8bf84327d61d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b54721134b50da82bedc8c9e9284685de86cac616820f582b278a84d8cfb46b5
MD5 c95c363a44986e5fe0337ca5e330f72a
BLAKE2b-256 cde5841f1c73596ebdeda0c648a03e0d3d03564f7b9c776789a770ffd7fd831b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8094be64a570d6b4842376051f432c2c7fdb076d26e93bc5adace7eb8a8e47bb
MD5 5806722ea928f594a5cd6108b2d09a25
BLAKE2b-256 7c67be0ee363ddd1ba531af8c0d47916e541fd36dbe3d09636e8d620794b7933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc982ec27a42a524df19f952014afe6b76c7b3779ae68c4fab807159b0f90045
MD5 434628f986d975afe65af2101435995a
BLAKE2b-256 f84e91227f4b37ed4dead1b8832986bf3e3d87dd4845e58de434fe072d2f6045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b06c4c230b772d95e298d0a76357f2caad39dfc82d2492be486d5c876aaf0291
MD5 74e4d1aacd289436e63d265c1cdb7c78
BLAKE2b-256 081a70825418a467e6d7314e58aa2eb5cdef881e1f8c09f5aa10299452ca1c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d982c2828e54d50cca4f3b4a316f1425a73c32dac88ae4a8f5f23c8b4661d97
MD5 4d3bbcc6cd013be3677bb0d1b05aa217
BLAKE2b-256 bb1e5d1d624f89dc02f52afb914db7cf50068938f6dfd330053c506d5224c0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a374b5978f027cbef8e5ed97c18af2ae22be776c790ac7991d1529fbe568d1a
MD5 40b50225aa9f60ed77ce7df97a276204
BLAKE2b-256 100b7aae6c50b84312f8d014eb5f0b7e5c7ca5f2a2378ca748d5732573a20796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bdd0163c4b6b03349495bbde6ab96cf6e31f37771ab798775f8cbebaf67c48b
MD5 53ae896028fb1d5301f54947a4973bc3
BLAKE2b-256 08a0ce356560348d3629db9596ee784071218d855ed180a31263d070fc780be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d577d1efe67589dcc9a976bb7e3eb43dfbd5719322181e70559cc40fd8dc7d0d
MD5 b7d7bd973bb5093160949fa672099cb6
BLAKE2b-256 1bac340fcc825daf30b2bf216405033d47ad5b43b2bbf120b5a21fbb27233e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ed50b41f66ce66330e8154656b10881d5690868e3759f59bd071a444b80eeb5
MD5 b8d098d72952546ca9247f894f38863d
BLAKE2b-256 20ace976993fc844d9d96a0fa218bf7c60b360a340cf537fe1649a3bdef71b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64732c8a9742343ed7edf094402ca1b9f7aca99b559f1dadb43de96ffa9388fa
MD5 d81d7d60d1f9f5b5806ff0b72041dcdb
BLAKE2b-256 1013ddd887109a0e6a35847cf4c85d5a80f403ccee69741ea174f91135f9e688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c7fa99e721bba122036c35d87fcd6481b399383de686a91247882a47e3518b4
MD5 199bb84e0571fda92457bbf61967a347
BLAKE2b-256 309f7cc61ff37009085d347db20aca66fae1082624b2ad5f2dd09a1ff3920757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec822779072a14af00a5cf2b0e4884aaa6e2ef8ce0ab19cf623de098473736ee
MD5 3befea02e5ab94654267f4543b6fe2bf
BLAKE2b-256 a7798eb8d4b727b818953a15e7e2b3ee9720ef3b3cc916c61be5aa45215b3ed2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e7d0a10bce64a9dc9672c176d0e973e3d6dd54a62da9f6dacca6e2d754cb7bf
MD5 649c1c9d07a0c3862ae3180cc98e5ea8
BLAKE2b-256 04cc2b2bc139becf93c57fe393e5a73fb819bcdd43079a77e6a5fa966b82f0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 917881ce407f0775c5fb2197946a6c8fda031546ee9050c19d0ca960c5a64e79
MD5 5a55abdb681977ecb9b25e7dda1b0d71
BLAKE2b-256 5de8464b6b66ad92fa711b5bfb53abfd6c858502a5e394fb8e3961fa5f81b618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31a117cd80e77f4768fa2498d1f9ac6a9f27a0c01d74867497bb744d1e50fec7
MD5 c74c6eda59cc61cead26d1b9150172ed
BLAKE2b-256 b710591b820cbb317da30a9726ebeab3d6dedb68f8fba708fc806b4b1974974d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c47c3f24786eda79d946c4e10d0f879a49259b41a8642b62b9d79a815d835a5c
MD5 1e6903847c6d4fcd1b32c7911e69ad84
BLAKE2b-256 f1d2b03209f2746046dcaf1372f272ad7ba741b54792957d1a6b5ca51fafa624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 509732bf8117d9f63b298ffde2c17a72c5315f196e472d4d5e379fe8c0c12254
MD5 09e9af0044dc4726f811240a62ea5a03
BLAKE2b-256 e2b80032d8e3cc0fbdf97fb0cf5235f679a61de30ecb5b8b2cd0a759a036cb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a373e7643d3822a193c865c4d0d4666e1d92eea0c50e4419d841e55d286c833c
MD5 935b4c994ca44583a267f4655bf5e658
BLAKE2b-256 70c2136d781102d0747be867b6ee794de949610908149de91e63cdf6d525848c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf7cd845a46c285ad98ab2f4619dd245cc9eb359990e4ff727b8273f55d16b99
MD5 c9729e168496261527664c6b8ec538a4
BLAKE2b-256 ceb6c951ed3a41c17f88ad73b0e4ec3e0ca53fe3f0513833e3b354fe03195ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29780e17396b906d6fb9ee8f9d4e8c6913350810da287955c6df7bb4c5d4978e
MD5 2c20248d4dffb4335b9f73d042524c80
BLAKE2b-256 389cbefab7942e31866de7f409a242e6a66712ec2d7d592215ef92e3dfab440d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c595bc3adb1c6a0c7574909a9d23525275642c7837ef9331bbaca58dccbb3f3
MD5 8f964d0c5485650377fb0224a45190c7
BLAKE2b-256 0e1730cdac50ad256fb2d1afa230a34c2491ceaea79cf4fdec3223e436f5d7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92287363ce6af5b582a8c04d9e258c918b381b35b8f2131588aba961274e2656
MD5 df022c5cfb18c51c0c2159fae82d3862
BLAKE2b-256 10da34b9c369823ce0c5ef92b68f1801a346d46344c6dbec61245a29daf7d601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17c9c9cf74c1e94caead54fb67294937ba5ad98d28277c06fed9239b46e344dd
MD5 2879ae865ab81bc7208717eb22dfdccd
BLAKE2b-256 783c5b2f9e9c7d72741e403b13380b114973625d32add445a4516e3acf580332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa8042806820d6e83ed311ce0d824ef800a679331ae524a10a8940350d39cfa
MD5 bfee38270f08696a501853087827973a
BLAKE2b-256 18a0cf5481452b9eade62554058af927988f9a30ad54861abfad4b2d5a0dcb54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 deb7b013ef9a52848c63c6d54b02978e82d472c29cae2a6280f10368e717db2a
MD5 bead3abd8006372af5939815312d8b95
BLAKE2b-256 413154662f7bd4b3bc20d395b596c6d361f0ad91e291956ccfe83e43ea96b9bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.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.7.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a72c05fa2375cf671d370433f37de0ade37ef0a60b9dae19afc3f186d7fcbf2
MD5 baf5a664c10c76d2920e671f84dc53b3
BLAKE2b-256 ec1cc00a8ebc152cfc400675569cf76af56f6917c87720c120405d960ddd2cc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.2 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6752de13613bb1674e061e160abcc78b579d4fad73e4e1ba1cdc7c53a0485cee
MD5 03cd5ac17c28cdb61ae572bb97e94465
BLAKE2b-256 073a28dedbb4c4efba8282ec5ffd5ff4ff02b7f5a3732d47f4e144bbc676dc08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c35242ddc0968c301be4fadea98be8b49fe22b015317e654926a189103e71398
MD5 890305f8f1e42d8e8bdf791af40a0f50
BLAKE2b-256 7cd2349a51d10c711999f6a3dc9ee897308e0b394755686675f543c9d9aa9062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a051013b06ea6eeeaef458a79f808713937c769704af94bfcc5fa4d6f2ac93c
MD5 b1d43418cd7d951731e459e4a2af0cfd
BLAKE2b-256 aa3d6467910a7b57566ffca6026a1bc446ce066101fca68b0d1de03d4c3158c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b8c8b89cd7416d7e2d0272f76573582cfee045fe9a27f0a0ba822e2dfaec337
MD5 f9bf207bb7caf380e162915dcb94bb26
BLAKE2b-256 d210a9edd237b8dde809548a71f9d8cf9c938b568e0260f34c4143bbc531ddc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87107866abf906649d06c1a87835c5a238c8dbb2de1d6f488bf78c387cd9e577
MD5 b9f5972f5910ba8c84f7a1e71072ca06
BLAKE2b-256 f1bf4513c613f29738b129b0c4b14b21534a513c3e09a28594ef68f267fec403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5adb204ef59e1ed0f131cb0aac4aa4dfdd85f28606fb402d3f09138dc39137
MD5 33570a995d26d74ea87cac76c42116d5
BLAKE2b-256 6e0355f028deb18960d7c6fa8714056c5cd4a9e435e83b9adb06c5b004b20b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 704b3d4c10a6353d8ed0f07c14c550355099f8a4d44ceb23607bc0bc3e6a603e
MD5 c8eaf990be443f23c72a60a04d8785e1
BLAKE2b-256 b5d34e63711838e27a272abecd07ef4d88a5be132910213072052104f55eeafe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62bb3420e49f114b5fb75f7fec1b31c23a7f53d9a3fa5a76547265044ee2b8cb
MD5 12310e383854130694193eaeae6bf869
BLAKE2b-256 577773be367a6223820430f7b5ca83365770f5815520f5ff4beb1403c272756d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b11ceeddf858e43f699e6393112cbc5646060c254b87e31c7f3bfcecebce35f2
MD5 bcb3929ab81bd8e12d51c191b333a041
BLAKE2b-256 16c1e1ef428395c1ae76292bd5b9d33c6baed1177ec18c95d3aa67e406e6604a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 114c15b2763c49329525901f2e24edf5ffd0a402f51671e78fc76bd3fd5a3d44
MD5 0b2a4e835acc021c99f268039fcf5033
BLAKE2b-256 7ed8d4fa8d6165ce0a75919e513e729d29a32946e1bf2e027a3379fd37b12e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d32f59c655e1d2ff06c147a594cd4516467ee558ac7f737b22f9e7870cc2bd7d
MD5 647b3a0f05428b2c157cab06e14f7853
BLAKE2b-256 ca3ac0f0bba7adfd9e47df65bc99db4d4700ee43cd16b16e31e4656ac0ea89cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54af6cd30883256f6d821eba4416279ee39937313b16545eea66d3b70ab62c9c
MD5 8029f6e950a34ddbd47173bdc63d66d3
BLAKE2b-256 de42280f5cda9c4a7c3c91bdc64db859782e5a16f0ffac5316316f08e5f44b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab48f1f4af2b89196e88ba5bf6862ba761ff75ec082654de8b9b9d1707c46d8f
MD5 496a383fad5508822ec61dd0a43b2e1a
BLAKE2b-256 a7040cf40129cabe12d05e57ae26da5fc9febf7c46546d8a2541f5534be6bf26

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