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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.7.6.tar.gz
Algorithm Hash digest
SHA256 690db4458c19a258bea72ac15484202760bc2ec39fc95b2766f8d389314f2cbd
MD5 bf65ab47aa48e7da2669b3e7921a8187
BLAKE2b-256 156cede094cb981e40bb3f0d506b253d5719243a885b24613e002628f304cd65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0cd1f867e25437ea60f9334cbcbea0b3284749102abae125726ffa4faa0fc65b
MD5 5e1264b5c1595080605c29b45fed5efd
BLAKE2b-256 94845eb80c913ab97348d956b5aae606dbdb4bda9d8931ba025133768bced3a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc3a45e0e18cad8e4aa3c05455c2a66b87caae73667a40025085adfe4fbf1b7f
MD5 4b602a8257c07ab15f6d9f5ee783b328
BLAKE2b-256 c0057d73d0eede4dc6fb942d65e62f8b4d3e04a3f123fffc15b643f6fd413558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6609b32d5e1362355326ab2aebe30e694e32e2abe11864afb6993a8b9362c951
MD5 2ed0294fb9b3293b17a1de48a08cb43f
BLAKE2b-256 2efbcc891446c3fb38f716da6f7c2330467996e1668417d373926b87739afd7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be8ae5b580d31c4c5ae02801d22f14624d119318d8eb081aaafd8a8815a5bd33
MD5 193259f408821a7e82e7008f0d8521ba
BLAKE2b-256 d2a7da09ddbdf4d49210b2f3a9065fb0df9860db66399068873bf409f77f8af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2249d81ec1688c18dd1d31f73c33e70c304b7ef18e589e2e541c4ded028ee18f
MD5 c6825ec9a32311229e502669f9ad22b2
BLAKE2b-256 a04c164822abedd07760c2818973548f119f47a77924b543d9f67b27745366d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8562a821530df4553b9add44b10dadf8c6643f3d5a6ae386e2618fabe1b75be6
MD5 ed69c72ff1f864945b72912aaef5c793
BLAKE2b-256 bd0a185ed296ca4f1d0016f3a44f7eadd7c4991c40751fa83ddabbd5bf62afac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21483c135a375bef7702d3f7fd71049b356f1ab20bebb845381380bfd628f989
MD5 05dc8ed21573d436fa8abe2ca4d8f078
BLAKE2b-256 592a98ed9724de41deea1863871124be5076557a6e9027d5777f8913f8d7a075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13b65b3b39d6bf664cb48e3fb2f1201d15413ad94e455f0edbd1a2bd407ffda2
MD5 4a45d0769795de02acc99e08db9655d6
BLAKE2b-256 c02a274006b17ac02aa45a46aa3574460453555eb373ce0c82ec0deee9668708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62e2fae105b449a72404ec080eb57c4402d63704d7abf952b8e73758e71dba5f
MD5 9603c31ee17269200fa5479eab77eb73
BLAKE2b-256 2cacba94c95161bbf65b1f5f13f3839605c52558e922a4c090d5658b5b999940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87dd7478d43466580a1b729b0013a423b9fe86cc784b7ef470014fd5ffdec07d
MD5 03b4368ab546df0e55a01e47d132635c
BLAKE2b-256 21edde726ff3f9ed9964d415f9885f9fcb4d51790a14059d3db7ffa81246cd42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b847bddb1b8931a43b9b40010adcd5986f3a536c6a45e308ad568d718a5e62c0
MD5 41a242480f7a4d429b02b6c85e3c1ad2
BLAKE2b-256 8e4ca85babf6c4d87cdac3904f5784a1b9b9a0e79a033822933330fa664b8c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54d50fbd565a3a22e9997d10f54301aac4c441abe9a961c7c374f677fa078fa4
MD5 8f7d916804ac209f5585e5d99ab10e46
BLAKE2b-256 7f4cc219715b7a9e3038bb353b27685778bb521e1e38a9ae21cc654d5b79accc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ad831b408b3c34996253d45b0df8f7f2a76b9d88b0197bdce3ebac07fbf1f3a
MD5 7316524d70987e7c72fd4f486e9e05ef
BLAKE2b-256 723590ee776f93d38cc944dd376bc91cf1d0ba2d8c000abfb1fee75df55b2c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31d56a3c778ccaa2c379ba4e096ee805e9e22dc00f257108749d1841f151f986
MD5 c14720ff4963c8a90fd7775c104eb0fd
BLAKE2b-256 4465b522ab94f66804baf8b09dadc516c3679f446a0b0b1bdb85ce526b8c7cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 032c37b7380908faae6a1f12e1a6b0163da4ad8934bc9d12582f37db6eb93da1
MD5 b700734664f2eb8788407e6d2599b9b6
BLAKE2b-256 167c726b2d93433af0275673cbfac69eb1fd74f42f462cbaceaea41231900a9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 826e2c3f89212d3250a9ec253b70715b7f6ba0bd4e121112caee6190fb83bbf8
MD5 3d04c6fecc37f2bc6c68ed92a3f000eb
BLAKE2b-256 c6f65099aa47ce6e8fc4790b06fd0007c46b48dc3bcfdf35fed09f7a1c5ac845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c409899a068f7bc31a1b05bb81c90d73e5c5430046fb6ca71b6c702a52769507
MD5 d8f8482209a9d3f5867ffb15feddf3a1
BLAKE2b-256 55dc98008c00cd4bf1aa83d55f91162f77720bfd8810682699a819a83786fb20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f05ea530f0f387220ecc3669ea2bc2b2c99d1bcb3c7f3b933892e583ebe1ba83
MD5 f576f5bb6d28307c00b1e691f23258b1
BLAKE2b-256 31c4df153d60f66d94dfaab621e19574b90a8c53902183ceb089b4f5535b2a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01631497de77680b46d227ce9711d55666857c2306cb64177a1f83d3382b2310
MD5 dbe2f141aeb766d4f1f2ea075c24f936
BLAKE2b-256 e390c57e5049e5caee6ce8cc27a4fd35e951e75e08bee9386975e9848ff234fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 553eeef3fc02a0a2bf05749ebe773e26256b3f58d6f05090f6cabb818a094d8c
MD5 f3081b9a4854d6eb781758c5e83b1027
BLAKE2b-256 2fb4e991df59551b3ae4e521a7d95c478644acf7a63abe931605241a27648395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b153219dc4316d66790e456085182cbc2e93ab4b64685cc93c5c2178b2a4882e
MD5 aafe22abbda44f849f7ae4328d84e3cc
BLAKE2b-256 a3bdd2f5835a022cb7eb71a893db0683486137fe712790bdd82196f583b8c8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c9c2ef74453146bf49ff6ee79687a04018f67c0b500ddd0f20d9935637f1777
MD5 963de56d836ab8a6e3f0159e7a6920ae
BLAKE2b-256 bd6c845f30ce36200b0254369f823b33fad3fe87fe1754f59c61c52120212fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7279d9c008cd23342f561064fb07371b217f190d5285d1d37a4fb0e1def3a77
MD5 1717d4467e15d66b69777635d6331425
BLAKE2b-256 48f9faa841a0f0c365d4ac1da7e819f2011ffc11031ece389612c31e49d1f710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9dfb67561c10cf79f22bd4feb4a53a142a5695009fb8853b835828d6072f8f75
MD5 f93dcdddb72d3759bb56ed3f6b54ec4a
BLAKE2b-256 acf6aafc9e040716df340f1d0a36455e59dd46e26a0f03fede6b6f624dd9a416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b41b6ed8e39efd71f6256cb4da05f2a905399a08507f176af5e91adc08797323
MD5 9386044b00dfc7e17cb464c5368ab58d
BLAKE2b-256 39095ced22fdbc0e8fd2c91fd740a56cecc5cdd29461e4f040d23ccd6131e5c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0841e82392aab18153cdc439942ea19c5b924d23957d11476e56a3a7fca68fe6
MD5 a1a3ccf3ffc6ef766eeed778fe664bdd
BLAKE2b-256 3657003de2eaa4ab8632f50fb8ce4aeb9fb6636f72a1ff77fd53ba5e2ef4a66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80bfa8d414fa0215beaee3fd6596777707e1e558c852c0bb97fb5cb3ed73d861
MD5 bc97045ef6f630a598e3580c0b2320d6
BLAKE2b-256 4b8e837bd77a3e21d833a0d817de61f05962de34e238fc117e5372473d1e5213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b30e84c4b866818899464352abdf0165212952f5716a17bfed4423ab4bb748e
MD5 117af450413f5ea7814629860a92ada6
BLAKE2b-256 4e056823e4fbaecd43d7a00a7b30c62c5071fae03ee1af1ccdbfebb7baebe6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec26c0cbe323bc3a3e93e2395b298d342e76d1e9cf49bc52c6785e1f25dd5952
MD5 7daa4be325ae268821688b9e65b3a809
BLAKE2b-256 17ceb615985733e5d60ed176357725de2b8cefa9d363c810620c306b617e4a4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b115743cfeb2f30f4bd7c04062a9d6a5f94dab39cce659dba0e17121b99726b1
MD5 472598a6d7c2e83933530775f9a62a26
BLAKE2b-256 d2b8ba29e5c37447e4e3e60346b8871f4144a249cf9c0bd35292d3e43fb02ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24dc693679c4853addeb1ab080e262edd1a25115a2e7f0ab8c158d5793bafeef
MD5 806159e8b77134b0939630bf8394671a
BLAKE2b-256 02fe3e6394c12fbacc12175317af224bbf85e5acfa16ada6328e6465ad2c1134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 947177e07fbfa4001c4fa79b6c24bad387bc61bc1a699f4ebe79a5fdfd7c8b83
MD5 ba2c9c5d757e70b19cc1f54752152cfe
BLAKE2b-256 ea4920ffa323d895ab9e3ee24c2efb857cd6f3678316adf7d620088ac3e311fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0437406795b84d40ddb3fe8698f38bdc185343d40e8bc35963a029982afdb9fc
MD5 abdd2eec0d0265dabdec0b7cfbd8dae0
BLAKE2b-256 fedc4a285295869ab29dfb9fb780a8ae4426da6750c7aa31f8e696a62f8eaf10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21b5e9e840fd312c7c5d825433cd06880bb896e2fd681034c11405424244a26e
MD5 46bb28c22a1286df9cc820ec400eb9d3
BLAKE2b-256 df0a5162312b8f66982af534d42a47c2e5f5941a309fde882d3a05a493c645ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bdae0ed46a042a8496af8938155d74b633db7e01902140cc3df3082538b45c1
MD5 6ca1573d2a130345e8a7a4de3536696e
BLAKE2b-256 77dadcfed628bc8f56a426adf9e241b1c80d5ffac532e1ed275e3cd38d30b480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61a3d1e23d08331eb904aaa520f29e20c6aae3bffb01ebefbc37b2ed58b5fd85
MD5 dc2473a1d1a38ab1c6ce3355d4ae4f8a
BLAKE2b-256 a8acb0c37c702b0e664885e024117d53914157a8f6327b920f1b033879e660fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5664c6c1b3b67f3036f8b60b406ab603c6749d5846dfefac8a5e76bf9159ef9c
MD5 a763cafd1a583eb2d57dff0ddab8a872
BLAKE2b-256 7d397ea63e07915eec5ca0ab45a6da8c809cd860cd895842a632baa3c0cead91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb33fd0a4350cb81efdecc3383ae0bd499750cafdd2b5a00b7cd0132a7d7c115
MD5 5118fd4ea411cda336699b800903d832
BLAKE2b-256 ceb7cc29771bb7f498b083a0bc1717c76035308d2c25cc1ec3311c14fd4cdfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33c30b0cd971a1d1723cca6a3744fd108ceeec98745ced14748c80e1d44ea474
MD5 77f0a31d7b75fa515623da9f78d39f1b
BLAKE2b-256 36533a2494ebd2a88dfab7fcc8e51afb94ada858f461cafa0f391fc3ce62e229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3edd00725c8362e4149ed211f712258495fbe738b74d56b72bf28387e93404b
MD5 d148288434be4620a1761399747840f5
BLAKE2b-256 29c21aea65d36da3da83be08935fe325f278ab320d05ebe16634bb862720f9d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa3faaf4981b5450e1bafd2d801269d9c5a8f53574e2d125fcc89e956de0a1c
MD5 16b85c408770bbbd6865925486ae4546
BLAKE2b-256 3abe91d232fd12be6e4a292386b4b45d7c5f1f059ce3fa889ddf8b16a5fc57a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52b46911b4f263126c9411cf5f1005534c4775ae9436b7bded7f4907e55fc067
MD5 95b9c2a011abbb90373679abcd20ce84
BLAKE2b-256 0a74b6e852075fd73097c1cf40d0b24e005a51be64335f6051329d7ccd2d5619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a92adf84b084d7900fe6470caa81334175a970952f55eaf16f3ad5f6bebcfc5
MD5 a03b0c13fa0f525c996c12db8cb1d270
BLAKE2b-256 2d587d86b0b18797c4cab2505f35d70ebc450efdf7f4494dde3f8a637fc55d62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1973bb50f9ba237473d4551210c0fc1e68620efee4997a39c6387e63dd9ce1a0
MD5 f0e22c07311c92e4a1a374d3bcc7c91e
BLAKE2b-256 67afbc4cc1d9cc22280bc15f9e31d4e201f0d4b378c5effaf409f4808bcb1804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b5c1fd3f24c3b06184b850749154dbbb631751baf0619fae6e80c4dcb14ce49
MD5 566d2acb41209c28a77ff2bcf48b5e15
BLAKE2b-256 b2cea5882d9eb2ae1066eb3557c110be82de9892544e6278c07fe311eae74ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3542c27470e7c056525fe12c7894217de2e7d88ec564f0271fa44d1a908dee30
MD5 e52f5617e8483274738d0538ef5f09df
BLAKE2b-256 31eda93b8b505ce49a48f616589988b5b0526ad9df66d6084c4b62286c4d1a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c7719aed7a480dec8fb7a0878552b08743f032f4e7c4a971eca9a849217b150
MD5 2c05c6168a2f4ef677487f403f7e1e3f
BLAKE2b-256 a34fe1fa520072edf25e10a70797254e4055d73c74a50bef77f7cb12843893d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aabf1af8b5437014af823cdc771347d95afd307b88a8c347de1efe24fe3cb666
MD5 27aa53af205101556cf7825acb840d88
BLAKE2b-256 a0621b7ff07a562d9260862dfe983a01e10faf616d89e3ada4c180fcc1c9d5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7511e9acafd1db47fdddc001a697d0ff6264785e968328ea71035a7f5fce1b7
MD5 68d0b445c8b4ed6cbda5cb7a7bca001c
BLAKE2b-256 ceb95e94714aab0174296b5e90b9265b2aba29d6539c37103221c03bb8d6dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 529586b68aebc7c62037ee9b79c0edb789344f0f0f6f3435df7aac715d6fd53a
MD5 3a6c1f681df27bb1ffdf70218bb18f9a
BLAKE2b-256 9a8deb7420857c83e8713917e29051695e92ebc0f507b702823554454cb52efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7112210a345f8f8bfede9cd1be5a7b3b13619458de0bc3d4935655ae7a6b67c
MD5 e287e139e4bd2c65f95933afb2efae76
BLAKE2b-256 f42a382c687420ca34ec6dbdd947655bb853cfe419be4ab11998947a0120026e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13e182b04f586b4c65cfb9331e51c79c525ec0058f72b033e0f836729782139a
MD5 3ce6d81f0ac76faf20a8ff905ee141f0
BLAKE2b-256 e785c84a59b431e66687a3671723226d2ac9ef08521ae29e0e5a8f2b4c9b3a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28ef477e6a47a9eb22c2e484d1c6148131d3f8cc2ea6a5e7b3b2d6e0151ecc06
MD5 ec57aa542ac652c7a56206c9285fcb18
BLAKE2b-256 025ed3ee9233ad947d7b7d7ac661ae27c0028383411752b76d499841a3122b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f268f25e1acad9342cbfe389c4b7eca48a3cc313befc637229201cb7585ee49e
MD5 808c8a6e393b0791ba53dac112297e8e
BLAKE2b-256 1809d8e4ace5f6c64e3544c2ead7c2d8dcfe9f8ff2cc8b9ff5c525b116010b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1944c4934bd5f333e4554052efb0703386a05319b7aa38ce088a8615ce9bbcc
MD5 9293dfad88949a2ee9c34b20cdfef182
BLAKE2b-256 40cc44fb8a395c6e0a6f093bd22835a91e27d3304cf15024950fbf934aa3d97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fccdf30b5b68d128a2fb1617ed2f8e720ae3fd52ed0fa0a2c5cd927bdd6c1f6
MD5 3a28c41d408fc3c4f128c1f2a4d56f56
BLAKE2b-256 200f570c0ec3cf43fb1602dc6c8f12a3b4bb2f06280d0cc658d6e833c6450d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d823b332385c81e71e4f640a2fb5473ca6029c5596f2c45de107f335546d3a4b
MD5 bb88b28c8f3a5301b9e6bfd1172ac174
BLAKE2b-256 5aa811e050c7e58d3387747200414cf00ee48d8b1d0f5ba3c8313261633c9a9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 728f6a5628f2ecf4c3d33d016bade3c0802fc3dafcd60b11901965ce2fc03419
MD5 b921ee0567e5c039c97c3df212781796
BLAKE2b-256 76862f4c79fb28eb05abe06adb14521fef2241e94b932213ed6fdd8d63c39b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1b33d615f13e81cafa1c7a539f837925ce958e85eaf1caa3566144ab047e2f5
MD5 7f056c8c4a3dde0c4caddf4433f85e23
BLAKE2b-256 23493d07ddddb29a8369c7cd492963cfdc19c0e4ae89a0123d23961776de845d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c69aad3871ec43f17beb51baa18bd1dc867b0535feb626897362799acd705032
MD5 5b5e4529629347a535f57c7d2a74faf7
BLAKE2b-256 fd40ceb4b0fadcc1c0b0a5f3e8cd2d89bc4b3c79d790410cf32b174a892b56cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e80020410e69f36d0461011f17c1d28bf4a03516ef02ecf4291afa934fbeb78d
MD5 48557ef4ef55065dd8f4c536660cdbf3
BLAKE2b-256 378df8487d37c4e95f23714848a2fdba587b5f4ca35b546f200ebc227873e36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dce077557d27808694ce6fdb88b5954cd3a8325e34f1f31510bf36cedd6d4dc6
MD5 e3fcc19602bc5a5fa64c12ea762625e9
BLAKE2b-256 1829a67dfa940f9ae78761b8d901acb0968b08f83f9087e33d601ba87dd780a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 599e7ae9a8e560b6dea7ee77f82752de38ce49cb92018bcbfcc38e1882615508
MD5 38d5f5cfc63c78bae0ad7d5e746b3442
BLAKE2b-256 302acef13be78134f5b4f7083b518b2e00853786a9206e2a0c3eab467ed78003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a4653b2343247957ab5a1b40ec1eacdeba1e80b5124542d009c2dc79f82a960
MD5 3dcec9ff32a540629fae80e6f9629fa4
BLAKE2b-256 ebf57f043e4b344cc8a13c84f418ae84c2e09ea84bb4c006a6a278f75a5fbcf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1d8f8da098deca1411a6cdc214ec27ed9c6bc847f678f6a8f24f51adb28c872
MD5 85534de1bdcc339f95f9aad935217dfb
BLAKE2b-256 1776341f315024d8364f1af271cf1ee65695ac366252a5b5a86c1bea6b121ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c2713c60b664d85c2fbb18d1e09ef2072fe98395a46daeb98f9f8058c53bc84
MD5 75f2617c624d973e264b5c0a98bdd82b
BLAKE2b-256 f270c0b078a479649acea1da83352bf43ad01149339d700798e9bb85a15a2933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff665bba9c3921a5e81c2df6a85995ba5d8f00459e0e8ebd28d3181080017b7a
MD5 8c9a1d57aa6f33dc537c7fe6abc1a522
BLAKE2b-256 d8d84f684d4a9d46efa4cdd77c190efac334faff7a692013e5a5ec43e11aefe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21a90dbbfd7305be46bb7f023db2f72aa5e5d302135ee8a9558692c7e3e6f121
MD5 b2f7b47eea67ff1dd7b9085042b11cc5
BLAKE2b-256 3ca372e2e6e29f137aeedb6625c9cf6def06d1865adf13219fd1f8e652900018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ee18875d60c1e698c7f6c5f88ae491b2739a2e85fd64d1dd9ef970e89c342a3
MD5 f70b976851ec6126d2f49a124e37b5ad
BLAKE2b-256 a5dd3c0c3a9b5127d007f34c98ed657775e0edd754690e7c2f2d700d6bbdceb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa21345de66feac76c7c9076c9fcb4915d92a2198e4e0e72b595ed2019c26c55
MD5 a205ebbb8c7f8eac83a09b144be3fd01
BLAKE2b-256 bbf773b81dcf70994eb6f93c87322c591aac8de253a38e0667240cdd9d1aa484

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cb807eefeff76f3523bda7cd689d5c543bb7b3218b90a732aec56cd37d48c4d3
MD5 dfa6a0db4888a67f845ac95404c06954
BLAKE2b-256 3f86c1e0a62bf498f8121f53edf583ae1a827355699c7d916e6ccef165519779

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e0636121f070dd6ba388aa7931c4f9a5d963b2f15e64297a142e569b6cc7fcd3
MD5 b6d2e3b6e90c08b8714138c02f7a4f9b
BLAKE2b-256 82cd7dc4d76bf4a9cb0e523dc55d197efc24b74e16c4b20f2e44717f53547138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c2467045a50b16c8087524f4ecdc6fd87a378ac235c3bcfe6d1d0239a7f82e
MD5 0ffc707ed927e216f2c537efd5b41bda
BLAKE2b-256 5b4484a915728925ec8f4af205a572ef098182e7801e607bdb4b9b937dff02a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3641df9243382f296a876a7bc713283dd58e881285f43e6accf738f04345a95
MD5 cc29ca841de0846f55ecc3a072d1875b
BLAKE2b-256 10e58d8b456c62f2cf940de24c9a90b313346d2fe42cf6122c1039e354c70050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee6fd10169a87a06b4211b3a666e107bb243bd312fd975a893b04ed46b5b107e
MD5 8a8b6337d4a15e59f7e7058198a287ba
BLAKE2b-256 2912f1bfc3de6db5bd24918b2f5763ed2442c685f5457f65a7ea2709a831bb06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a94ff95fd3bda0866c62ae71858373fedeb77810c6af6fe41fe26ad242ed7f5
MD5 8809043756e1dfd262a486a202dff95f
BLAKE2b-256 d366a4d644cc47a89165b71097a2d8fb2b23f4569453fc10928fa8aefce1b96c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2aa98eef8239a27d0419befde993353af75bf4246197e7c06adeab8e7329ef5
MD5 650982a8188912ecb59d31a0fa694916
BLAKE2b-256 88b8b3e812f5faf3f944e521a05071c0c711aba850aff7452ee3ae9cfa60e9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 882875aff023f22649f26b1a9cd4e0862b8d5ffcd96347588f29a055a73ba9ac
MD5 5a46107447cf6ee075a1e89b01182f1d
BLAKE2b-256 444dc38e49b2acd8288f7b5476433dda66edea451798595c23e84b797bc7aa63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2ac600f186df8fdf84f0c42bc07e18bbf36b3cc8f064202e0c64382f7ab6e11
MD5 3dbe1c07cd28337e9dd66463116cc5da
BLAKE2b-256 8cc1637c7b2c0df714d8a9e080cc319738285a20debe42dbef11e338415da5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c3e5b06029e27d7132df90b576f9e4fad5ec1dc16c3d7eaadc3206b7d81c47a
MD5 f2ebaa1506fe517bb6996d8ca22487a8
BLAKE2b-256 5867975b93db9434f51e362e608445712524a600c1e87a4ad09cc70532997358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9246383c358b8298f43ad1696c3faaa3110a43d0d565752c8da7f2f2f4a3ad30
MD5 ce2837f9f234e32a30f5c2d5d5a7a42a
BLAKE2b-256 15e975d61965d87d6f77fc88f3323290dd26e6209cf795be6bda965c4652a2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec10ca4b9071347e57b985b5ec53a8bf58ecaa63a7b69e671a5719940e6eabd7
MD5 ad2cdc80f726799d2b39f3309ffae987
BLAKE2b-256 38f66947bf3f735b15eb3dd53be3f30cf016b52f7e561d490537ec4aac27e021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94bb2a8ecfa61227171933c4c91407ab44cf994171e80859c3dcc5527ed586a2
MD5 cf8a2dac71b55ef699f4b64cc3c6e228
BLAKE2b-256 6670570bf525ff4cf25965be579ba276475f34f6cda9021dd1a3552db1e58b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75f6cf4d038eef1ce8e2a4e7352e8b16086c77717a5546ba52448a3d4d6242a3
MD5 59ba5ed1c4eeb67a2f792b073ea2ae61
BLAKE2b-256 7b4ec126e700bc540d0b4f5bb25cdf2e168db87c8805b1d87f85cb829e8dae55

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