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.0.tar.gz (106.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.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.7.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.7.0-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.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.7.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.7.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.7.0-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.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.7.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.7.0-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.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.7.0-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.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.7.0-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.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.7.0.tar.gz
Algorithm Hash digest
SHA256 c556fb63aca7fb38387c0797eb411d8c4f2c1f74422d3094c4af5f3e53707a7e
MD5 d628e35f4d5a2f8a071e0aec4b967375
BLAKE2b-256 6542df283a8bb481156af51f1369e4ca9a1add365e76c601306d170c1c808911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59bbd3472f356cf7cdea2486fa065c315cf5a01489d7082db6e2cc91103e073d
MD5 a72dc9cc36e8293755bf2f265b5b9820
BLAKE2b-256 cae3464f9a8d6b8b9aa194e20347b1982d5e1eebb4a9dd0235915f25a05f3e96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 694853ad1c297ec7f37daefc0ffc2d68fce20e9f5181a48caf5c945f1bf99a18
MD5 b806c85216754fb9f6db295424ffc617
BLAKE2b-256 0fd7b26d2838a62451ef30647f0dc53b8cad7cb2152883e8ab065d1383ec5c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b61ee761d72c8b516e50249d316ecefcc41a341479296c045069832136f5f8f
MD5 2df38c80ee9bb63c17e41532b03df9f7
BLAKE2b-256 6fca6ad39433b5099ce34b3e27d28a5ce81d72bce872275e8a540db6ac9a9cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 077d641a193ffc5cae1672e7350117106bf4c90d1e01edb396f6194e6cc0081a
MD5 cb5a139ae7b19bb94e56bd7b98ebb382
BLAKE2b-256 a585de63d77e98f21afc5fdcecec615e59e0ffdcd6baea7a1be5bb4b30a8b69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51cf5affe9b5d5d4839b8c2172b90da9dc2b778ce1f7aed4940dd4a5985d59d5
MD5 7757aaaebd026f93d4da8159fbfeb625
BLAKE2b-256 9b1a72a3804c98118e3e560feec00ba6e28c5c1a9477fe3dab28cae27bf2b981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 288203a835e2eda4c6de078d760555cb53f9d5e144d63be86383b34ad760ae2b
MD5 f297387d1fd2c6bfd4785bd01e23e325
BLAKE2b-256 29cf3cb6e7f7c4b3bd0fc8d6d7efa75cf3299b0f748cbb682ba9f09a270df3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fac6e12664a4c23f12d954b8cdcfbdcf560e1e5073037bdb7ddef2deacc9f3b
MD5 f1f1e0d4159aafcafc5abb50b2ba0724
BLAKE2b-256 92f92785609ba20bd98d44a579a340867530c15209cbe2ac5b80e3374804f90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5391705e66037fa093902a0a05548e2435678cb202b7107cc2d7292a5e83fecf
MD5 b46726d782ce8e2f883ed3532c52a8e0
BLAKE2b-256 603fc2d26b6c33d61f2d66cbcf41cb5030a7c02b057a572b41c9e63dadfca199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b382daff8764fa1bb3be9a00af8bcb26a7cd55d392d596cf60ae09b05c9cd73
MD5 32894b6da9e1c32847ce2bf310177c30
BLAKE2b-256 8f763eb6ac4fd623c42f4e8455c3a0f8307f02a242bef09da11cbbdf89698d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9412844307baa6a56b864e10979ae6bc0aed1cefcd9e26b6b7e276dff91ef962
MD5 acc79fd36a57b81e664de8be82b8afdc
BLAKE2b-256 bc23a5c590c4ec0f49e81b458f67bc7f14966790e13462b9c8a6a4196c281bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18a8284139844eb4274a75882946cd5ce6346704c382204b403756117aee166f
MD5 1d73ab095ccfe87de7f0492bbf0f40ff
BLAKE2b-256 2b043a6219548311f614921a40fe2a016d5a3e1fd48b646668b0cb0727669d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdc915255a1fc243ad6373a2e0da984b62d070eb5228f4e0002c308e2147affa
MD5 1acd9d524235f397ba77b2b903ff7446
BLAKE2b-256 146f6285f47d738713f3c46861e5bd7b94debd28ce151da9c34e2d9137d049c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d06817896263a1c32f1bcf29cde927893d197a186ba01d8fd2659ea54fdff3
MD5 b6691648db6f87e3e45b5cce8bc7b2b4
BLAKE2b-256 516becf5cfb242638b7d2e51e7e395c58fe8474a0fc086c14259baf8dbe69221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e29b9dfca13715711dd9793ac223b2993f21934e6bdab83ee65aa6347a3618c6
MD5 fea7886846f4c930d702bc8bba99c005
BLAKE2b-256 45e5ff1c6ca11c25339f9e2eb932e7e29df555af9ee7b60d1336557a35287e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 787151279dabc016cd72ca3afdbf235b4aee520e3e2cde6d732f3f47940db889
MD5 43ac6eeefa8917c201b99b8b5a30c16f
BLAKE2b-256 ce28975d0e1e7c9a2618106c9e9696fca18167fa222cae09a6ac9760bf5bfe99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 40a0300402c9a46b11f7e7140e9e3224859af1d46a68324dae5fc0aae43c7ca7
MD5 53b8cd61b27e4290c99bfd331a0779b4
BLAKE2b-256 f6342d1d484c90e0afc43e6dbbf441cda3f5f4f5d09c42b73b6e95c4d3e780ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7d87495bdc152416a16db9924f415234433e82354e943a6bf2b312f523ebdf7
MD5 97d04f311ad1da0456e80df444ab91ca
BLAKE2b-256 53c5459fbced6b25b5410376f1dbf09188018824050ec41223589ddb3409a399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39b261cc46b01a953a21830d0c426a5b69b933aaadbfacfa0a7c62c89b5856ab
MD5 69b4c9477440e382b014fc673d973630
BLAKE2b-256 4e9920d6308ed2430c46f137435875471f3f9ac02cc5c30d298ad60736d51237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77b98f9937464050fd601ec95b4f17113c1720d29a4dd3e9adecb3dcfab909ac
MD5 e4fde4c6820c3484dcc8b609fa6b181b
BLAKE2b-256 dfa6382b87b8cdbe8cd55211abd457436c9b23aacc2334d6e2900304a0b31b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a01357af78e2d2dbe780e08dc87cf26eb5ee13a81631b9f212512988b5bc430
MD5 d903a53171984cf1e16e86fea6a4bf36
BLAKE2b-256 a06a90e1503d7710e4a0b90f51a7ff41f595e87271f4b04d531b0579687b4f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da68d21273f9a06ac2e19b7777255d522e3b6b348ab8f46feec6018fc333f379
MD5 b1f5b939d1bf8e91e4f2c5e52c3372ae
BLAKE2b-256 34118256aa128f9b9212aaf6d8274f49291b5b07143d078e256c06c02fde4b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67763bb005dc5dd0a6d0d50dece3d0ce0bddd35ef7a6deebc713eb6bb4e7a3fe
MD5 ad01336d2d775af46de63f65cd2cc046
BLAKE2b-256 bef6fd4569c37e2b96d790d91ed4f11d1beae982410d6a584217b9d418249e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ac60d0ff2673c1edaa162954402983c37019431c473ebcd965118447105a553
MD5 62c2f18bce210a77a4628c227f1a4cc1
BLAKE2b-256 131d62f1507a53cb8ed207ed6d18b3852abf58ed54e455e38bb4b6108031cced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f102a8321ade9bb63e299cbb4b0c58391bac13c4ec373ab21eb67e53f22178ab
MD5 29c37eaa9579a95f8321eed9b506180a
BLAKE2b-256 be500283ff387bba6d947c77504c918eea269d1da18607a48479fe5d01e2a337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33445f100f39af80b3e12fa5f328398669ff02c09912eee4563e9c675d01e8cb
MD5 d072a39d9cdf6aa96a3ba566951306ef
BLAKE2b-256 6c955f0e24b08834919fc088d005ba7befa77e96db116f8d027ef053177f81bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 637d1e1f0c8f57af8660a706c1a3ae051c1ce0e2f4b042fa3ac97af6e1308676
MD5 9310ba0dc75667e78c5b238299e297a2
BLAKE2b-256 349da0f375b82aeb3df13abc0a0ebe66a4278d2092de718007645caa14ac77a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bcd76df43b06a4fea1b673aa0db0117772d9550915d4415eddc83bd563ff835
MD5 c65f7b3067019de6ae40dc93b30eb10e
BLAKE2b-256 46c2c3b02762a20c07ac1036633ff51df8c0377e5ee5034d87e963e7cd844494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 578dfc7b4008a4a0f77697a35efc683a0c69ab749616ca0dda3ee686589e2adc
MD5 f8e47fa22b7c0b28e1187c3863c7d25c
BLAKE2b-256 8ca465fa0618cc471f4bf9346f63860756e7da5009dee76dbf922b11f18fcc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9de421935da80339ea8cdc7817a79595c3f12b81267a2f5e64d019c4a608645a
MD5 0aab067f20beadd703cf6e2f5eafb233
BLAKE2b-256 9671503000b5caec9c11111619e6162fd323d426b7433e08ea99aa1fff2c2016

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 be607364100910049ed92b13b38e9a807bd6a65ead8be1cc7e600be22cb0800f
MD5 3d2899b7474dcff026e1b253a6ed7dff
BLAKE2b-256 bf61d6123cd2c188142bf7970b59e3acd4b54e7ba1930a82284c7528a9721209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52783fd709b362d4e01c5e1067baaff899854ac157687d0f293ac40edd4f33d9
MD5 247fd1bf7c5b51d04910f4ab30bea170
BLAKE2b-256 2870240f75f1e91a5e5d355ce6c4a9348f5c3025a443c0c0b09315e25a6e6b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e789633cb2ac096d4023489be8e2f424c150c837e15d52b1e85d85441a416ddc
MD5 a1e6f072fb09c2b7e74728e7f391425f
BLAKE2b-256 5399e0dbb232c647ff0f4caf30c8136621789b60e53de0b8291d5ba270e17169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a818e64f09d0735ad473527bde4064e882be18c2060921966a36d1fac5f0d568
MD5 fcd162dd0f10476cabb644d02d603352
BLAKE2b-256 ae61f947780eb0931d9841b3f968858432cb0c3f8634c66f6559e20f5161e06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01dde6f0965a22266f09539b8e95f414606d1c3ac4b1f6a5f7a7ba8a300d11b5
MD5 7f741a1731a3e5bb36d029b7162f38f6
BLAKE2b-256 cd8f7a71826d9f29ef982492ba5eed114306b0c63e8fb2019a3653caa5c9a22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c44fbc3723336daa0c1bd7e34ba5f1c2fd57a517c52054e55ea001e89511527c
MD5 a32d518324c1d5365568a7a069d36db1
BLAKE2b-256 c808d17db2945b654b222c87ee6aae7f323d48c28a0443c51bf83b999a9aac06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7823f9d0dc5a4f4b4e828cfb9bc528263cd113250e7a9ef4381a97adf985333
MD5 ec5fb2cdcbd94a11ad431c873962a14c
BLAKE2b-256 261b113acb52ddddaf0725ffd0a8c5a5dd760ceedd8c215765f617f98a6fa8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83ba75d39bae44f61435484a79c5a95aeb9191748a32e6a4ca32fa079cff742b
MD5 0d646c519e8feab27e4ff40acfeae852
BLAKE2b-256 55fb6dd4aec1d4e76d0de1b933de5579b821a1a4bd37513e7449eb60bd140363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b3e3ba992aaaba4d8511741defa1da829efbee912ed64b09c15737d0d9a3461
MD5 334a756af32b81a20ce80f6e7a47c690
BLAKE2b-256 1d96b8b7c9989dcaf71b83839c49066feb1333e7e17a65d132f6129484cd562e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e854c3709d3ac8d2bd227938402cd650a73dffc31cbf9b2a27bb06144052613a
MD5 98e670cf5103be4b31b9b3e91e38fb50
BLAKE2b-256 66e5c73a78e6ed36ee60a974608088f67f755f09dad753a87eab02a24c78c48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e051161abcaa5840cdaeb9e356a4a950053c6b071cf4b6042188484fe48b10c
MD5 f88e68e0bf1c23d573072126c826418b
BLAKE2b-256 ef45480cfe720cbf07b4f2c4976c7beb705e329e79eb7fc0c477ae8086bc9d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 069d5696d69636daef026246e78ca1d94b792f0bea4d5534e918590dd9b33e2e
MD5 017876326b1f71a7bf82ea5b11ab791c
BLAKE2b-256 fa309d6a06fcefe37b05f8cebde1c302184f417fb668e6e6b032bc722c8e6dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 447953b8756aef32eb1f9d32b37873c81bcd0f5654d3ab0b46fb2bf9eb9b02ba
MD5 4e52fe67e74ac9d063fa48982082b7db
BLAKE2b-256 a8b58902e4f5b6a63346a5813013aa8c3e9c62715e96c4f3613abe104c4b9e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2ba9b354323a38c0dd54dbb5aa9803acb11fd840ab2a74006b617f24ccf0af4
MD5 45fca09b1af3e4f91f5ba0a192907612
BLAKE2b-256 7572d6948aabe9304e42cbe415d9efe3cb271ec1d4e9a752b29aa48a750f2961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ae963dc205c9e152706daa3f79a572587dd562b9504eab1a202d982b1aa1505
MD5 f7618ca7cce80ede5c7451a07aa9efee
BLAKE2b-256 e2c1a811ab21d719dfa4d526e3ea46861ab4c5f32cb0ce2562d86a96429e21bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcfb81f13a66909fc8d0ba7af6001507eaa6b32ca64ff5100ad2b908daf87515
MD5 33b919cec1a908c992c69763b0034dee
BLAKE2b-256 00eabcd9dfba7e8011619157bfb56deb7e427523e7ded87305026b3b6c86fe5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a26e0f47228e6fce78f407fc83c3adcf06ed85e36ebd5bb06eec6e58e4511e1c
MD5 39877cfb062d0bcfa4a14c1e8dce0cea
BLAKE2b-256 ea86bd026c467e937a6edf0c847a3e6a8ac3586a1e93f79e052cf0b93b318201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13b412ffd05c4ab80e44a3dfc87c471167e8949d8f7d4d825c0175881dcf0c85
MD5 cbcaf718ef6677b40f94e1ace50eb655
BLAKE2b-256 ec63e3c874a0f365d7b9ff8d6b4a669d1707bf68c9f51f9d31f06410cd5e493c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82512052466e2b2dd5b44bc45459e5466239e7ea992ac42c96e4fa33e5bda7ce
MD5 c1dff680e96bd3eb9c8d632bf0c87ee8
BLAKE2b-256 35421682868f25f632b44167ce7d90653418132fd02adbf6d999df0e9eb68c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cadbe6e27fc1dfd7978c6104e89ed39e97c0057a4c88677e1d093cbbc50efa60
MD5 c7932c8d79cc021e73bc642440c481b9
BLAKE2b-256 1dbd110502f450ae721945e89369c125d20e610c96e16787708c8d23a61112d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 636ab9b962b45541aabe7b4b3109c95249ce69b084f043b95dbaf0f4b2e4a188
MD5 3dfe6bee2919c97bb9e690829b0aa6a7
BLAKE2b-256 dc834116c44d1b62da351a6d1c4e64260fa4bfb2d4985dcdb9cbd4f0b38f48d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83862e78dd60a4fcd31374770f953763fc3141f04e2976fad9a6690721182a7f
MD5 f678667a7eb95e9e4c6e74bf52854f33
BLAKE2b-256 16718f8c8ce0a77da2baa5934fb9b3fdefb69dcdff66e80edf9753a63f08bd52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b2d5dad0c8dda5ae1e69af6636e5e3a2a1c1419582b835e82f995743bbe21fa
MD5 9c8225475fed58436b9aed2afc286b1c
BLAKE2b-256 62fce897e3262e5b3a9b43cd495b6fad0f4fb2637474ffbc02b7699e48e08fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5779af94a497c378550856563c5c7b801a035c186c4badef95c5d369082fc5ca
MD5 29c79ccb74e7c43317839bc0c4db1883
BLAKE2b-256 5222184d14f6215e0783f295845a2353de12c73b495f02208203e2b2917403a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdef8d600d798a44a27bc72a21e3fd67c7236b9a31de6f3c95049af83132e1e7
MD5 ac030c50a0cb959ef09ef4afa628f28d
BLAKE2b-256 4f2253d658ef07286c64e4a5b74304c6c54e2096d1b1f3f36132a62b5b8a23b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 716a9ac338c8857a0af56e5cb1b2f5f2b021e23b7c6078c4da049579ab84bb09
MD5 51365ab3a6bbefc17f8f41c1f36c7054
BLAKE2b-256 bd926effc444a1a0f18833df1d1c8e24f1a6d6f4dac45759fc436a6ec7cb1bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dc7bb1e83765e5784ae948c6b09662c64e5f138f6ac12a6668558d2fd928d45
MD5 592eeca9a972ae3a3212ecefe3c2a72d
BLAKE2b-256 454d210e10df323c2acc0f3fd134b075cecb423c1b92ae40d93fb5d6ebfc1f7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 099b30aa65e892cc2a6f9df8f460452e197ae4e7b78508c95fef3347df7487de
MD5 253f29db6f5e7b2e29d51a602af32179
BLAKE2b-256 1af36537fc816db7799ceded292ea70a854c984d5005372a427fc28e761f9160

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cda34da5f8a48abecdd8e05b66524822b4b3052cedec71848e888f2b2e8dc296
MD5 253ca7fb260082aa024d0ab157e93948
BLAKE2b-256 2d486e95c60c62a7b93b888cf6299359c1dbcc1d600fa29b49c1b768692e6970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c93070dde8610d33803d1911514f5ffec71b8f7066df6b983f615963c512b162
MD5 e48e087fbb9988bb1cfaafaea26f0f1e
BLAKE2b-256 a3c811b2b5f8858efc4eeb5e4a8029f1580fdef8568350a67d625ea3f845a3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfff9e8e442d6393a71ed9d69269cd4e1ad48ebbc9c1cbe931d77d967c061768
MD5 353c8851611fb1b414ba7cf614bfe6d8
BLAKE2b-256 c410aea1b8a7c217a1a16c70948fe58d15ee07d7bf16c6b5be2a43e27b3c34b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b02836457818527dd3315a6c605da92571411526a456630e87dde606571e1b3
MD5 cb8ebe1c2ffbadaab3b5f3facf6bfde7
BLAKE2b-256 61fb9c1f708457982e539fd9beb51e2cfd948924dd1cd13fac8c043864f524e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0f626c695c48387c490ae66ae1773dc0582cfb3885ee1abc0abd647b8f49a0e
MD5 2f8d8bab4a133427fc054da1dcef0dac
BLAKE2b-256 094cfc9b18bed33e25aa11c3abdd253104105b52c51c89ddec0f1b234ca8dac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e67265d0c948b856f8112cd81cf6fe0ac754cb8ffaa3ba1d8e7f10eaa83bce9
MD5 6f56df1ed1fcc91544dd6d72003fe431
BLAKE2b-256 7c0fecc5425e0774d5d23e44752601848dad1aea70b08bde41880b03b8f92090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20c959749c2ad140a57a0d89daa9bcecf94d77e384cb1f92974f520984d277ab
MD5 8cbf2b4dce70848c48ccfb5ca46f1ab3
BLAKE2b-256 16e6b9b63b97457c2dd544368c6aff4966c6fa3581979014f05043ee4cf8d998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f229a18a16e31d9b63ed543460bc9ad912d65e96bf8b4acf88848c368aaf7945
MD5 42535c753622c2e7ed801d648ee2439a
BLAKE2b-256 c5074d26ff05417bc4c3aa4a57d2d22665d09691e8ab9e58b2e5375546dafd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5a1e3a7ca4c73e32a126952922fd53d21a5801dc3c836cf70ee4cce546d8f49
MD5 5c70d530005b4ae21fa97c8978c1806b
BLAKE2b-256 ca6930fdc0626ec76cd2e2d11ceaffa3b8eef297ed176731ff3ad7d937446d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd7721bc133230c36e972264ff3388fc0fa43f1883b3449529efa980684909b5
MD5 1ae61788a035439d3ac4b8602303b4e0
BLAKE2b-256 70bd50d6f0e39ad961cf9455fc11a2f70df565d68eec6d0c2310fac458ad8ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b277f25f9cf5d97676d7517290ec065c9f71306ab199fc96db7c43cbf4c4a2c1
MD5 dad0c8813750ad3e0b6b0109ac4ba23d
BLAKE2b-256 d864070a137d590d27fd8196a07cc6dbc36aaf13ab334d6f9b7ac15b6033a21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3146496cf25b98d931830487b6308d9f4168729293e1d4f15d182a22bb2a069b
MD5 f642ecd70493456a470eabe7f2446d4a
BLAKE2b-256 a6b1ce47db993abf68d3b8707a43baf2311c37a8151b086db849cf9264c92dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e26796024b56b7c8616bcad64d70d5e23ffb57f8834611098b92b2e34b894edc
MD5 161f2b0577d23e98d37b000259ba95c6
BLAKE2b-256 7857aedfbc8fced1926a1761efa6d4592ab7f1e9bd69793f254d970249f5ee24

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