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.5.tar.gz (126.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.5-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

topk_sdk-0.7.5-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.5-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.7.5-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.5-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.7.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.5-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.5-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.5-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.5-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.7.5-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.5-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.5-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.5-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.5-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.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.7.5.tar.gz
Algorithm Hash digest
SHA256 71694aaea325fa8f61a95b0cbd43b0d757985758a18dae760503d1bb4b2e44d9
MD5 c1dc469a917163845c379ff83dee0fbc
BLAKE2b-256 6d4ef07f20ad66438ab4c645ed481a637ae29b4cedd797a69ead9c6cb945458f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d2f7aff0701a177a39aa37cef35c63975dd66cf76e78cdba08043ae2b63f96bd
MD5 f7d277615998975b788accabd11e919e
BLAKE2b-256 a2f497e8bb97ccde8f0cf9a6c305857398d14da3453039a54fb51f4fefb79834

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30513e5e26ad6a08bc84d88aa46301028a1f84496334f51b4ef93466adb993da
MD5 e6a967f4d66c6156fd16628b28587413
BLAKE2b-256 4256c4e1972d9eb15482f04ea072461df72e25150b09671e96e8a40d5e549798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be7d13f20ec392b79ed941bd0268f51f2d7d2ca54b52ced1d70c7328abd5b5a1
MD5 6832c09bcf891b7f8c2cb64fc90899b3
BLAKE2b-256 85f05df87170030dcc0c922badb9e8fc868fd6d7f80cbeebd2f57a9153260007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 658496997289a367b240fb04ac3e2a802445385e63d5c86fb7d9b634a858e951
MD5 ac4d887e3c396b5449d7fe321e8a8bf6
BLAKE2b-256 b465ff01993c4de0fdac1afff05ab4e3e4f2561f85544e50a27519515e0ac4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13c75753b420a032060823d41355cdd37c5afbdf0cb65b7a503946efde2d3fb5
MD5 5cc66d90c656c2c4a0d379744e9e4132
BLAKE2b-256 f6a4ecd374807f76a9107ab271f1dc7c58cea7e31ee5f95a4540e615a8118e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e223076ad229d0f9824dbcc2926d96245e7efb158849c45ef782c04bb3c59501
MD5 b9a59c3e8bb76a4e6df3e972c1d939ea
BLAKE2b-256 1ee25651e77eda61fc4b0a01d19e752d2a8f2720ab446bd2910d9ee3bb285813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b22726c36081c48ac7998e57bbf0fcafb1a21566d7b7e38ecfc8e70e9a076e9
MD5 61f15dcae1784a41575ccd84189743c8
BLAKE2b-256 36d5f05c9662a6363e63df0a2d79c4b62b92b314673996fc46b55bb32a1c8dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90ba2a40ba7d7a4885164da430ca30d39b518f017b6e39d8816688ad5baba34a
MD5 e71ea0c763bc50cdbf6c7448d40f0e6d
BLAKE2b-256 d56b885035bce761c6c70aa996d3963fa15ef074cffeae3f096e095b543392ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba158baf369b3696722fbe2deaae8bede5d6ab320c084c61536b21425bb03bca
MD5 56f63902aa29e48488d7aa2ea3f93ed2
BLAKE2b-256 aba4b1179e61757aba99b71606a624262f7ebc34c556b7da8540e24380d53845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aee9eb66b8d294e7134ffe78ae2653eded69c911177a0c8ad2eb54b77a3e6b33
MD5 5f8b84420a5dbe30d3016ed59098add3
BLAKE2b-256 d0f1ee13827a6850ad7c91e8ce16f8138577ba18c69dd22ee35c2ae20ec8ae8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c166ef2ec93bf3ba815eafe77d36be834c8b29069b778e9ece2970c49a0a0bf
MD5 167e0b6679f0a5860ba9dac3aee389db
BLAKE2b-256 e4c5824fe2dbb4985c5c04f3d494502aa4aa9709c8b18aaaf4e01d9d78552f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 670a2c67c526dffae64facc0ef23ab8b72ebc596e984922bf304ef110e2a2e31
MD5 8537a291ad20a83bc77833479d986788
BLAKE2b-256 072e83800a67df2315bde458f257eb5b02a7f9503cbb2ed9043ed34b2fd35e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75c3082b9d527e7d0621f82d51befc3196a45af2b9a0550e5509e7a23eb5d81
MD5 b6fc9d3ba973e67c2fe0ea5517233368
BLAKE2b-256 a32f12198eef7840406c704d312659f969acddbcfaf8055dbf6ff25acd2b380e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48d037ab57f781faefd791dbad2fead45a394df89d86a5fb216878ef87e5f16a
MD5 0c88798f5bf5c17135cc66877b3bf5d5
BLAKE2b-256 3f4035fe3ae3f84657cb368b840d3390239b0c54d27a3add88053bfca7dd4c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4ff31c2a86581932ebb01f42fda3974dc168638b3941a92e22d3e968c8ebbac
MD5 c378de6621fe3c096fb00e309a6592d6
BLAKE2b-256 93e0d9528792c9c7b1de498feb27b4ddc5ed66953f2692409d23baaacdb15a98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8e83357150e78faf88bb239c62d699a7e08a3833f0bc3ad8d86f31f0f8c4b376
MD5 5ceb9639ef45f9e0e966de016e37d7cc
BLAKE2b-256 3fd37ad602035d46a93c88b8bca22f204f3a950d1ee31d9d904a810a0719adca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b62eb3113179934c134f03f147e0c48a3089045254c64a870267234ee57eb80b
MD5 3c49b119b6abbcf11d9759dd9017cb11
BLAKE2b-256 547e6926316549981cea9c33a5984c4a34916fd48c220294407753fb63922cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59280509e846a77e74732e2693be030a87d90b8e5fe1cf724367b500ad24158f
MD5 8754cf68a578ea161ec498eee047f1d6
BLAKE2b-256 7f575e583b67da8da023584718d23a6ea26953d95ba41ab7564daa8cd6434615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 304e360aa98b4b12aeeeacd67580902c00e7c865b846cdbab5924670cfabafb4
MD5 80012894aae3a4c657df6d7d5d5b7730
BLAKE2b-256 1a8430695fe6706e3530c18d4f6d935d36282001421fe0f37d4fbf1ae9991184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f9c77ffe6c43ceaeefbae7d802a762265a99bd62b56ed5e9a9479935c25604b
MD5 ae5b9cb924306fa960a939b05376e535
BLAKE2b-256 97c50244d62dc61c804fbbb732972dbf62a7f0d3877ab94368d6be96cb200700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 502e99186a77c5f53d3f98272a19154e67de0fb0d0e4a79f68d1f52da1c63584
MD5 0976c9c8b082c8519197ced58bb88a91
BLAKE2b-256 12429ecb77712de47bddfa1e53ab38cb1e5fb795b5d7428b2c7e6e2d3ca810b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a24d70ba30153282bfc4326d2ffabf0c55a38b3e6262c17aef1b886b86a5da41
MD5 3565a3a76880c895563d96d7fc4b69e9
BLAKE2b-256 87a3a585f12ea83600c1181f9de3aeae9a7f50bf5b725415d08edee0d1a43119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5ae11ebd23f0be96d26c2c9ae269b02279871e7b38d7c820e18a58e288c1643
MD5 fc9f22ed49fe9b0402e023a054dcb36d
BLAKE2b-256 5a39655218f53bf97db5fa35be7ffa2a2a7c1e508a392b3f53d8102eceb111dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1e185c3a76d74987ea8ec15b0950e1fa05e48fec191734cad5f9ff3d0f21959
MD5 5251764fa1d09e56c4aa8e159c075312
BLAKE2b-256 f44c8a31c62d892d716fbeea24abec1903936ba0ce673d23d842ed5a7fb1b5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa8e953abcfc338c8a0e1dd127550ab61a60bc23f356ba1e86e076431cbd2f54
MD5 0d019da6932083704b900c3a6d329d17
BLAKE2b-256 2d8d299046277b3bd2187b21bffcc32d900f153e6ca5b441fbf0e53ed166c025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e5472e44330b688d28c634b0efa29bbaeacc0223ed9b07267adf8011207680b
MD5 dbaed021139c68bb11a8c5a2f54a86be
BLAKE2b-256 2e38bbf8db50e3055468cb03c0c885feb5cf9a1f2c56d0f5a71b3d999092779d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 001e49805de7b540f6df73a985d35f7611cc9c7dccd6e474dc325bfbe802c41c
MD5 b562df8c283a2a7d96452742a9d9b8d4
BLAKE2b-256 4108a55e328857bf80d704cd7c99f11b3de42950ce6b8e6ba18033897b6f5fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b665b6fca1a86fd4bed20b00ca168ecebb014f3c930c06f691dbbe6485a48df
MD5 f58d2d3e627b040ac7156160d1628102
BLAKE2b-256 f142c72687203e2774c532cf89f7ef621a9c327042e3ca7a4211265abfa66020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b9bb0cad904fbbf7f7260994d5020ef11f0a8e3f5b6ceee29a377bda7fbba43
MD5 b7a58142d777387de9d500ac6e474a76
BLAKE2b-256 ee7ef8dc2b2867bff93114d12b5b5d9b347687d417849f8087c7381acd988b4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d25be0914ca39ebccdcaa56e4b4cc0f85443f207366a01b6a67fcdd002ab0b2e
MD5 a04a148f249ff00741e969a8a26db931
BLAKE2b-256 3296c88f75fae9f96329644025687d09f8aac803db05181538ae0ac76d43acc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50764b574caa4744e74874ee74e5a55f48dcb4b944a52acdb861e2ca47742826
MD5 7398f9f7b93584401aa7e506e4c21c98
BLAKE2b-256 d50980e98e79efb978275ac23907e68464fcd71f20070205573b405de4eceb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8800e69bec0eed9266c75922a20017e75ff30813bd87d69e8c9bfa1f4723343
MD5 09418ba3b48073e768f66f258c283fbe
BLAKE2b-256 9488e317c08ea3fb23c816670cce4c9ac3c8fcc7f4144580e05f2eb8fa68617f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5ec2ad61481004c1ef3c6cc1ae52daa948cee2ca0da0c9c7cc223e7427e8c6c
MD5 d388d17bde890bb13ba7fe415b0c2a2a
BLAKE2b-256 95a9ce11f64de64664621a33afa0ba54738d9729f6c844dccb2107f24ec868b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91934f576d099757ecd1a3c6b9e6ab6945bbe0307474fc4544f95eed19d93f20
MD5 9ef8fefb9797fc897517937b7a675d5c
BLAKE2b-256 f3935d6f366a4cc383f48a1ff24876fb5a8702f2c4627418504ef5c40aeeec9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f05b4fc3adeabebae78ab27eae4ab735ed228ca908418cd9bfe0a61f268f92ba
MD5 5d96b5f2aa1808efc1ffc1b7cbd7a2c0
BLAKE2b-256 59d8e2bcb47e42b00da03b9c9a65e785f2dcd721a117445ed2e7e6aaa1703c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f6356d0b87a3cd208779d94ab18b5ec561ce0793bec39ef1b7b6f7101700b31
MD5 5042b7c7e1ca92134603323775a004a0
BLAKE2b-256 f27174704d149dde6c8478bcabe1bd23cd4318f738e5bec9c78e6d16bb58d277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c58fb777fef97c543fa5c323d888624a702fa0c47fc5f8c6af57150396dbe311
MD5 f242c7f8345d8d31423de3bac371f015
BLAKE2b-256 58109de72c14c8ea4dc69fe28dcfad0bdb00d6ecc614865a5df0c4449a867c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc6e0a44a5c0befe37c7674c2ce331bb89917b6466c27fd84ec59b525c271388
MD5 9fbf62826e608a030a02f9bdcb0556fb
BLAKE2b-256 0c1a97159b74c17c6fafb2c90edee870cd2ad6a1e58d2edbef80013eb7184516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3f3cde7f28acc1ba78d63eba7944c31c4c4603bf84c2e9429d5579aa786b9c1
MD5 67ae154c30a7146de6bf71cd61d76f36
BLAKE2b-256 4307bb57489f2f5fddf2c8119b119c6498db9c5bc1c0c324dec0cfc7d57d1679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9682edae271a816c11c5e7d572b82cf7c9ff1839f45714561b6469305db4b5c3
MD5 01fbf81641f7819b90a51518caea08e4
BLAKE2b-256 b8b87569eb80436f48d9dfd83f31c35aa901957572f514df8e960a939a21ab94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27d9ddf616764ba0e819c335831b0b559416f1888e09922e423eac745e42debf
MD5 19812f8b52887c470a74e4ca1bcfa69e
BLAKE2b-256 8730738ccc0cc5e13a10259c391fc8a28ae612bc314e5e135ec612c74842fadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3b6483178932c0c0a5206aa6d2d4dd8df8fab62623371fc085f23702979bec5
MD5 5a9a7178cec9dc1bb0d87a04c4f87cf1
BLAKE2b-256 06b32d9b50fad79117cde5a45e85ec59ae3b8f5ee75c76af169dd97724034104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85cece1b06bf3e878da18618d542820d398af4de4d006b9a186eea8082fb27da
MD5 da869e18376451e6312139e7134d735e
BLAKE2b-256 5ec1c8273f3becec34d72d7d6290c6868e94a89e98ed1d88890238b56acc616c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90dc50ec86d301dee119048b46cdb781c546c48f53249ccf15d413a53cf79ea5
MD5 2630c487e45177904e6d730c70408615
BLAKE2b-256 fc6498f1222de26ffe6144d236be723bcd798c12fe828ac2cb8408964ba16a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54e6cb43c22589f692ca22a5c45aca09f1570cc854727e98d843b3387a583725
MD5 e23731cb2c8bb49ea6227756441e0ae0
BLAKE2b-256 75ecce8dcbc46d48eecd0047fa3a0768daa5419ea670a800b22b197ab88fb4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7cc6a41448a9703cfa1a23500b39bfda88397c7bd6fea8e4dfa5bec4c3bc969
MD5 7987511cd48b1df0ac46bed67495dd0b
BLAKE2b-256 adda31115a8e46c3649324b8890981e9abff4dac35481b1883d3feccf3b42425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfbba25c2ba020ffa86537abb3e13a2861db61e18e2fa7da5391bdfaf909a0eb
MD5 0a8802aa3f1153cce278ae1ecefb9cc6
BLAKE2b-256 cc172519ae0cb5c09c7aebc2492eb09cfcfa7ec4b54c71696b293775ed151f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 575b858bba52fad20730cf439c675dc0b0bd4903e0fdece3b59e45375b58dad2
MD5 f6464c87fb145ca9758bc6a9b64987c1
BLAKE2b-256 550787009acaf9b8978696d39e93a1038bbf0876a27ec87c5657966f3f00ac40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a85cc9c57f67f6989c18cb0a64487a59a7891bf1bf437d410959d258041db0c6
MD5 92717af8fb475ab25f912c0bcfee0526
BLAKE2b-256 d0434eef1f5a4959b769fd91126a63b5ab34ff968d87dd3b88e3c3ccbf7b8992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e11835208ae54b058a7d1e8e1d3f0da5be5105cb59068bb5110fa982bc7dd4f4
MD5 916005775bf1a720600fd4d9c75ebf39
BLAKE2b-256 9d5dae41b280f3bf5c74185c48cb57d45a31193fd6474d446fae0c3b9ad999ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86334432d38878a42d76494c67472bfd9c1e3846a6a2cd0dc37a14b13ae91dfa
MD5 bd5a7bebe692b5aad7339998d3631fb8
BLAKE2b-256 91660940ec5078637526663396eb2c83624d7aabf8835db4e2c7de285001fa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3af0131c0a02198b49db3ec525b773566bc39dd93f6d6090c67de36d01355e7
MD5 67589b9572985a0666603e88922fb4bb
BLAKE2b-256 eb77cbdc2d7df1fb402daf4fdc3832dc1e998818e47c0158757de1c81538aeef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3933083662117c5581ac4a72ea2d9c243023e4d79968dff229de466950c476b7
MD5 a9ae041c517d248abf818beb06a98c91
BLAKE2b-256 3c62cd7a27150ac62d0a3ed19a84bf3a3594ef57cc8607d82766df1602945eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37e6c694a9e4eab531f4638a80123c528dbc482c23f7b065701d3665703487e0
MD5 cbd9031514b752cdbf9bdaf0e96327a9
BLAKE2b-256 7454033b026d3537523d947b6f8cc5d37b797bad30d7f3a8117210bdd0704f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 959451d7125134c76307195409dadcd7164810d92ac771b1c68340ed380841ec
MD5 96a50b88e76a0dc7a37235d4af17d92d
BLAKE2b-256 26bc1527f968640a7d9e8755c243ef4f2bf67ce6ba10508895ff0a0bc51826e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fea888d68b3344a759927759cb845820d213ef2e798fd04a1b71ddd7352c1434
MD5 6e95205d4bbabe8f6fe22db992572175
BLAKE2b-256 e0861ac9d768cdec804330b493b33acbc4fe72c533fc9d4664bdde70757328f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa9b88a21f37bf39cd1ff040ae2401d5d6d83cb6263a7eccf6f0eef8f8580e53
MD5 9f40d1a2902a0744d1473e53105a4715
BLAKE2b-256 4f5a49f92f79788d3beaadb27f1b95c03a51d1f4064f641cd154e41736910835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8e43d4104ba90aaf29da8eaa2b4be5c60b8453150afc74924e669167e22e906
MD5 d7f444a0c5ea8f851dd3845f368c4fcc
BLAKE2b-256 ef522b2c7b8d8cc361ad619da9c34273bef3a8221c2d211eb4f47d74b7aeb4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8a7b9fd4b40c8ba6bfdc119588c407e8928bf7eeec1d593436893ba473527e2
MD5 af131d73d407760c483de9cadf2c209f
BLAKE2b-256 e31a1115fea84e96ea082c03e9e93d47b673bca50d91fbcec29f79cc57d434ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b054e373a4f3c8da83101dd46dad0d4189a00e1422f3c18fe31903dc0b1d815
MD5 2ffd9aacff246e513744f7dfc3b985ce
BLAKE2b-256 c21fe7fdff5b0681be718892bd195425bb15b3a074def3f39d6d2448538eba17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24e3c349ed85031a54ba3615b40688ce6848bad1dc0f98c9db26f30c313226cc
MD5 31f812155b7cb58749e9a65f7b2521e5
BLAKE2b-256 0a20373ee34be9dda8ee202a5977f361f0e8f07ac6f0ceec318dda0cf96f8363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9af1d5c8a55e7f90ae199480c2afdd68815dc0ff9b0375ba42226d74d61be3ca
MD5 723aae927033edc73ddbfc586132a921
BLAKE2b-256 489cfa893d9c0ff900a88e896d1d63544a6e9c22cc7d8a6f0bde245d0fb165fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e443beee8032266556e4d0bc4ddd8db14cfc4db0dcbc0282468fcee85f0f164a
MD5 9a52116c27382c8966240c5581fcc88c
BLAKE2b-256 dc85e2a2d8d1b1027de98abd4b83af7129338f84e081363cfb43301a276cce12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6bc8790420047110236b2903bccbc6e8f27da9051b482c247ae798547f6d71f7
MD5 4d4f50ebc12c533c8d69de6bec54fdc1
BLAKE2b-256 76d01c904ed4860093c996c1635c2df0fdc6ea1f121d31949e60e618c397293a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bff294f793437eb715f5bc65f224ffc2f420cf14935c824021b2636c3306671
MD5 68d8fb53960a84d3d735b36071a10281
BLAKE2b-256 128b7f09e305a0b7a4ba80cd1f19277e20fb1e0cf66cb821e0c03da8d4f7f27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0d7c5accca650b70af7734c98375c83f8c8cd0f7fd246a39854966fd3b57c87
MD5 cd4aaf340a6e15602e60b387c492574c
BLAKE2b-256 797d06db4fd92698b436956c450b5f5df588f7cdd922e30e1e1ffb987704f919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f2a705f6030e7036b23df95cbe04c1d8d4d34a6c0fd2e8c833893f83b6e8da0
MD5 11875bd7afcd9cf9156d4ebc850d86eb
BLAKE2b-256 08f7d04bea575cc7167d28ae3bc8fee33be00f674bdc91a6e116d703e6053abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cde8a05a47cea9aa0b5bbb38f720105d7dcbebe103149f26bed3eba1beb80809
MD5 323750b542eeb63b5056b3203647d601
BLAKE2b-256 87e77bfe5c188ca7750240b2e7caa1cbc5a9b898f940eb5f953157ecb1a2aa52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adf0e3785a6c392ced22da52e0d9273dd30c334fc0a1b6faa1728685aa339299
MD5 d99276e7eb2815d7f5ac25e6131d693d
BLAKE2b-256 450316b34581a7c8d8826e25f9aedbca27fe9f850913f0242121f54f9d4a7abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63a2c6af8036b90d44696e87d5c492d2208ab2c85e8d031165e55e0caba60af3
MD5 5ce6e72e39f996eae2148d1ef972286e
BLAKE2b-256 b0ea377eefba61daa8a2c232652013bbc0af03daa8cb14db121a8402cb869a99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 71461223ccd2076208391676ab4c197384329506091caec06c8ee552025d623f
MD5 23abc815b20edd636e59a48314017afc
BLAKE2b-256 fe93f64e79d04b728ede861e849e58efdfd099a04467ddb53c1c63a0be4621ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.5-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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0197339dfe6f74b43146b315a45b222b9b6ed06b2550003c5df56283984d1da1
MD5 6fed3c9b48ea8322391f00bc9a220e52
BLAKE2b-256 4c7ecb5bfb10220b690e5154d96db45ebbbec478e8491d7cbbec0a7181307865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c941d3f78484adda47bb383996f2890b459a3c18d79a1d190ad058ae7b53db3
MD5 a7194be86dba062bdc959ede2254f509
BLAKE2b-256 5762520730f079bbaf724c48c5474754821fae0effcb6d7ad0411e776d8e53c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a73f6aed2595f8b770ace3cb20736c20ed0887a0ae1106cc8ac26796d7d5ef00
MD5 5602d35262c0d708291a0649512f05d2
BLAKE2b-256 9b0561fa1f5fe321e7d63018952e9413beacd5afc4171aba5298d5558628b2c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fe705e9e7d39a644a1eabe9561b1658aee8bfd0e36ad7927f5d9ceddc2bdd24
MD5 ea860101a7cfaee7b349b5568c05f9b1
BLAKE2b-256 011098ed3858e88117cc0b105184f3a98b0b3565a34b75fdbf1d209e4bace928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9475a56bcd28d0cf7c88d36f379b054b19bc2a9cff6f6a66682805b53a8252ef
MD5 56a72d1190e11908e12e1314e2934d1c
BLAKE2b-256 0f1ad966d7f7e01665be720d065fc70144dc3219b494f72aff85dd2262a2297e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffdee1adf0411d246e878bd0c92cc9b9a2e5e8431ef75a69bf8ab10dfacc8165
MD5 8e676942683441695a9f39683b27a1d7
BLAKE2b-256 1505d5b8d696f9ca2894658741e9a379a2872bd53b9d1c18c5eabc81849a0a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f001c28a67930f103a57b62e970a791e3ddaa6e8d55a67681a027d1598a98391
MD5 dea2e4fe00c07b88d1343d5c3fe71361
BLAKE2b-256 c729216c111e6651e5d61f60d331cca16438b24dcbdaadd49a145ca312723955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44158b95ed391bcdf13a1b4f0e81eac032319c86ad47a9e2a9873bd0b896834b
MD5 76c36ad91e0d109bc20d591996b8b093
BLAKE2b-256 ee8ae4b9292835f9ae3a84c62d7116ff971396c14aba617683c2112e6aae320e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bc39b29f51726d730e78de7527d2f161d9ef2443f84616801ebddde5cd0f345
MD5 1da462bca312731668712ce070e8d236
BLAKE2b-256 3ac60a92c64e735484be2a8fda08e0a6e00521ceb45fb040e9d1a80de9058f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11816b2c33babe0fe0c99f34635520cdf6b47acda34269ad91c4f70700de6c79
MD5 c7c85d7b2bfaaac51c1c66e881a49844
BLAKE2b-256 a7548b5d4ea8828ecdfb31bc8a63202b99ce70397a7e340ce24a938f8225bed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5df53250713b8ef0605a73f84aa33eafb61f6a96c1d8ca1e6e17c2182cea2331
MD5 bce4f856e1ee0d6f870558eb01d4b3db
BLAKE2b-256 b48a4fdd9081291f39b6929763e4d90d56dec234b03f8fd9fa048fb8d4f81b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4274ebf4e5acf99129cbf384de8fbe076981d0a17f3b07ed78583858e82b323
MD5 b92fb1295fc3b477df1d31525b94a5b9
BLAKE2b-256 4092b0d45a7887b5007336ad42260b1cdac2429abf5c90ee219fa33d176d0ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f547db50ad101a0f412c4c535ec547e47deae6744250733bfa2da6718e335930
MD5 5f551884601df71ba64fc916d178ac15
BLAKE2b-256 b3340442af9b6c2b06352e3d09132569d081fe41a8275659c5819749204c09bd

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