Skip to main content

Python SDK for topk.io

Project description

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.4.8.tar.gz (75.9 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.4.8-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.4.8-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.4.8-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.4.8-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.4.8-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.4.8-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.4.8-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.4.8-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.4.8-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.4.8-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.4.8-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.4.8-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.4.8-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.4.8-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.4.8-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.4.8-cp310-cp310-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.4.8-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.4.8-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_armv7l.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.4.8-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.4.8-cp39-cp39-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.8.tar.gz
Algorithm Hash digest
SHA256 d600ad617d894991e09a03074487aaac12ce0675c8c3ad4578fb1e892a6c3e19
MD5 6935a307078e5fc059a2b34831aeb816
BLAKE2b-256 a7e2888a2dd12cc017936e510db590ca04db7d4c0c4dd57edb1c67bfe89c49ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc59a039ea41d233c1457af74dec499ff7d2e848212c194ede2d139c73fb5347
MD5 550d32f42c950f4d5e1d62d7579a4ab1
BLAKE2b-256 4e081a2af36037b711ede0791cacfbe6c9e5bf1dca8fe8cd4b70ba5639face4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 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.4.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48b567241e71ed42479ffcc61d903be098818f2ac59e71222ab1f38d0c102ad8
MD5 c9506017b33e9e36baf5d03300916932
BLAKE2b-256 a71ebb3fd3387c5c8f4e4768d751c23f25e9db29781dabdbebd487b41117d96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a2aaf1d1c5ea9f5a77cb1e044e9635f66f9b3ebfb501a0bcb29c8c454c0cd2
MD5 9ce85938275201618f746a22ff7bad84
BLAKE2b-256 ec303b2bf6b9767a4a2a65b7c239ad4ee5e78a5dc7d7887e9c080941e7e10f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96d1459f2596336a17573ccafc9d619bd0a4b5d9e9a31741cf9580cf9615d9a3
MD5 d45f2fc1161ce1e36ae31b5a5322f3b7
BLAKE2b-256 f8d4d704769a280c9d70f6532d35885e6aa7f0d2b3965e44f9f7d4a1860dad11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24984bc3766c348dade8e3a8b444e293cfcf50f68ae625bb6ca49a2f7cf7806f
MD5 cacef7593ad54b38d8abeb6dde0b9cd2
BLAKE2b-256 2ee7ecd7a29adc1fd9c53b17fddc8e37f4bf72281cc0a1b13221b47370aafcb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17120bf1df2bf8ac45c12a90c2b3b0a751119da3f1bfbd6826e3cf0cf09da207
MD5 179a56fa71ad68f9951ffc6f16b0e699
BLAKE2b-256 9096d02aca508c45aa5474529a6801713d3db12e3dab6f86891fff2d4c65c61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6fe395d91f50e26087e9496887b7bfd373bdbda545f3ba3c003eb25b2818cd4
MD5 797b778684a55e714289750219540eb7
BLAKE2b-256 8cb242e5b2600d2bbcd7ae7f0a584fd4c59009c158c8739ddd4d8d7cfbc5627f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57e2751598f235703b21e57908ee7645afb3180ca53c1d45c66c9166461acab7
MD5 1b97f1c1d40185e53b541cfbcc8eb834
BLAKE2b-256 4db6cc70356135455744c6848abfee0c5fb4583ff9ebd13c6916848297517b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d78c40fc2036bb065931aae8e672df362c6230f3027d55d18fa4d0cb294d84d
MD5 7cf0233ffa803413ae8d635ec51bbfe0
BLAKE2b-256 483cbaf75bc71efc27c339b1c43ee564c3df7dc93c6bfd87c55fe6e9f4d1b0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39876f49437274625dde551671fe11c2a0b041d036a64da5e0bd01a78fedb2ef
MD5 34a6ea973b4a01fa96a2ab89dd9ce019
BLAKE2b-256 ae2865db08f3c0512eabdbdf461319449c81ead0745e700a60ab5ad40a83beb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce9da742df33eb1995923a5623f81632e8a6dd3d137a373ece9d6c766d957afb
MD5 cd749def7d3b611f77beb7f2d4f4733b
BLAKE2b-256 e2f3a14d26c2159ac529bb3317130e163b84ce5e9249a5ab8e1e9e74e3518764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dc8a066e4abc2a6cb611cf8367419ba47ad71089a97d6f0ddc82c4e1f817ce1
MD5 102bebac2d713e9631887da7c598a32f
BLAKE2b-256 feb858b4c1c4351dcd9b83c86453712b50846e7a2c55d4245ae4b3f45707c021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9d5a9fc55dbe17b138ebbab523ea94449ad6d5cb0b4dc93e31e574c6cc20da3
MD5 6beb30b9b4f05b9bac1946bd31e34079
BLAKE2b-256 ebde269b4242e8729c865f79acdc941238ba8d1fe40fd2a09c7f322ccef473d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea096c5fe6cee8d7802202971e8529d60ffa6571a2f96f017cc265f97bc030e4
MD5 96c840e350c0c5facf27221436c6ceaa
BLAKE2b-256 d63a5544331d1520addadd2f56741e8cc40c37b7d0a681b9e59c55590b238073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88fcb1be9871e677d50682a05ab1460e7b6ec78e878de0893c82a1a19698f4e9
MD5 2eda6513ab90fecb2426d9dc17fcdff4
BLAKE2b-256 926c59cb658f3ecbf19914314f54e7c801fd793d33593e7f302af76e776a2f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 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.4.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8d273762d2f169cb90e5cb01f1891308fb7495211e9a4c82e1b5a80e725fac51
MD5 cdda9c14e2c68ff89fb2de1a97f208c7
BLAKE2b-256 65e1c53847ba3ccea7b2571458be2bbcadfc9547abf00bba2d7a0155cca159bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0eb2e3ef507aa824be040d2bc51cdbd45da64a7a20e6076de2823d3fa611bec4
MD5 8bcf236550b88aef57feadf0778f62fa
BLAKE2b-256 459e5c4b97a1c75e9d9f691cd8a6c444403540dc23865af6071a1421246493d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b49a656b10792b78de5472034cc191882bcd49c95f8db522458d7abe32c4a425
MD5 5dbf92a14448794bdda6fcd8c79fc4b7
BLAKE2b-256 aff26fd4f6e03cb84d5ec33401682ce60917b1a8ce233c251b1f1f4776b1bc5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c345ee8b73db0fcc5db51be6104d57c8ff7c7deeece63b34e9d63f16258a1af
MD5 d1a0ee135e3a919c5ae8f691bb9388cc
BLAKE2b-256 3ac00f7804bf1346279e92129505b27b339887ac479c8042614b39bcb9a5bf0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afabb4fd2ca8047b0077f9efb360c1654e05c7e58af0838ee6cc455efa50611a
MD5 0e94754fdbd59dfb45bb56940323ae46
BLAKE2b-256 0d16bb0a93f2e3ba20203d67ad103215b4e6f0a31ddbfec5a2c4f4f0b0752280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eacc77a1e2d75b0ca742f5c62650a5dbfe96153a1afb63f6396df2d1c2d8f4ad
MD5 81f7a96bbe0241e66a11ffcf0d3216a6
BLAKE2b-256 33bb8b3e5987654147dca0164cfb0c5be38cd2f24756a711c2e7ed14eaf3b80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0da81abd27ad1a6497039db10e869cefe728f757a05927c187fd30527fb54c39
MD5 47a60c5f3c82597c1e1527c5da249cdf
BLAKE2b-256 f06ba56b5746d7de97170349be1f2abe1dfcaa57482ddc7877bac0fe6abc7f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb959195a85c24eefe2ed3ce82a91226174bf4528dde4bfef85f8f187130fdda
MD5 9be806f9e3ab19b42e1306713549e36a
BLAKE2b-256 7f5074503450a56e5061afb449b8831ad64ad60e4e29b69c6caebcbd8174245d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03d3a631132f446f3500ed1e8ce5bad05faa27b0e8f44c81d8e97e7c3691d279
MD5 689cfcb600a6702de776ea060142a181
BLAKE2b-256 e2ab03337d18fc52c0e9e0e9e0d067ea0ac0a5a84b1c1d7a3856db752b27f912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e039ab6cc185984f6e3011e472ad9fe6f62903d8b398859b752ec1bc5e01c693
MD5 f3e24278f7067c66c1b3021c35d7d16a
BLAKE2b-256 5e3c7b542f81503f21c474f04347caf33197437a2f130505979bd726ff033f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2900931f3b4b1c3d557fe5dd95b3a3e8ede9ca94d9330ff94f04eb3b142b280
MD5 fc2395c531784523fcb6c5e93a493a45
BLAKE2b-256 ea9c5e80d23aeae675a0b3d3313b6d75ab021b6c9c824e83495c014c981ba017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eda33e922b0c393c20aa251a1715325e6bf32e29573a1793385482c651833443
MD5 de60878fab8832a67416383ef9387551
BLAKE2b-256 72081ae0e27e29e395dd47a78c0343daec9afced8db88e878bb63dda032e2194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f3c862a9869e6496397e27b876ff6c7056de256946ccabc7532afddd2e1eb37
MD5 6fe276d1378c041860753cbe018b1d58
BLAKE2b-256 6af80f1d4d575052bd3b99fb563daa1718662d93dc29a41bcbed0e43e1770860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cdc1e34a5da048b6d1b6519d127891be6acf5a3a71a001061f5de80a637b66f5
MD5 22129aaf569f7dde91e1d66cadb85d2f
BLAKE2b-256 4164c2f866b1e5d6bc420a8a1bc55b464fd044e74598794ea17c35217bf9492b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 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.4.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0169fcb06c472bb62ed3b09a2f072d3c9f980f0147fcb74318875f98bea80628
MD5 c5382ff9f2c0e05c5fff9db33efe709c
BLAKE2b-256 431be4edb8b82c476e64c1f5c667a13a6b50d8eb77f6bcdca884f393ffa005bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aeb106f4c51b86defa3358ed21aeba254f61f9368ccce29a94e0c81a2ee3437
MD5 356f6411092ee0def4c2b4008c6188f6
BLAKE2b-256 cc0ceba4cd50572bea2a764c2e3724ba2424648f9039c517104f607fb746cbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 014a925f55243fa8a3984468215e3a36c4edabeca7189708d1b4adc80c874e24
MD5 b341cd7029dca6c42c735c8ce6ca15e8
BLAKE2b-256 105b0dac7b79039bcee050308badc5c50d476e7d409feef7ac0df5dd770cf664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26545ba02338c608a874c24b11e873b7140992ba5872d2bbe7af977e82ae9472
MD5 a5fb62b4be2aa4a37bb61d62c32256d4
BLAKE2b-256 628fc745cca18ae9c4e24f9513f30e54c5043bdc77f3c30ee1501af575350490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b092f7294deca6a2fa720395739418d7313498d0c1d3ecbdc3c0f7b8a732450e
MD5 f506940e8d9ac09e114f911dbe6eb8ec
BLAKE2b-256 f32a288df34c217e8c4a8a83fc10311ca6187236b8a6235b4eaf675839daf73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebb0274b7d2cc4d876f0e73153154d5ec47267383e73f48b00a2bee1b972fe4c
MD5 d5060eb5f2130328c60ef2c06a565511
BLAKE2b-256 66afbaa85871c999be86c3102c560d070a2a801238a7a3a4aadca585aa56315e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84df0bdec93326289a50977c5e911f031077ba7789fec5bc4651edb728133edf
MD5 956b8c3d0c5b682e62608d695e105fa4
BLAKE2b-256 a284a7af036e4f018aa63f3c9cd0c8c4205adcd26419582f8f50b8a5adf5111c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4033ecad010a7fbc95661f3ab3fa3772c7a8c9a3b2ee55533bd14e8b7458e88b
MD5 7a5da8770ee4883354237c610ce221fc
BLAKE2b-256 a78a8b2c190abde2a5496bdc64cadbc07d225b2e8a4c5ea738b401b010153ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b1eb10454ea4ee19cbaeb4ef33550d46ad430c7c1e304e2a4c13717cbebac98
MD5 24207a5127911a4addcac76e15657582
BLAKE2b-256 54f309695772b11db7c742f8b4844e626344c33ba2b255e7fd9db2fb49c3a72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1323cdbe5fd55a5b6d7db8a703c55091923b89aeabd90a3a64f3bffae297147a
MD5 8a83bc32dbcef97fb649d3eb66eab202
BLAKE2b-256 b64d9883812538f1634161a190bfb19f967eebe098c2bd7e4f7a923cd1be5e74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d184d5236c23748d18b4e0d444f6da8c5eb5bf72503f1bbe443c858a153c3c1b
MD5 24ddb8b02892e9e1414c9780857bd652
BLAKE2b-256 b9ba6951277c9ac8e89ad05b73c59dd34a9074a7b95136d11c6bb2868d3063ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b1b8b6fe29bf3a8b346d25b5e20424db05acfa09eb02bd9370e38c5ec41bb51
MD5 fb586c8d49edcd1055e990d040d3b742
BLAKE2b-256 0339a3a12ed2024a550854a5ace69de7ab26938130f8e107ae800e04957e70be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9c12fa0524bc1e365cefbffd1eff241f3c13d5de809009cf9ee637c8cc7e427
MD5 438cc829e2e752ef9b837463bca341e6
BLAKE2b-256 06d022490f941eb5050cff4efb392ca3d63257d90de1fcc5d106e4771141f845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e39294edb240641c65d5b5aa55993d3c0387765930443838b1819056d2fa55b
MD5 23b7d4dd86f859e237e91ef3a3aa1641
BLAKE2b-256 c4d797fc32520968470f0484365bf515f40a3ff9dfc6c6ddb57b9f0a82a193c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.4.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 59ea7b3943637e65d270be54d940f8ffdb48ecf64be4e932df193bf2fe11bd53
MD5 1e4e4114008eb5e5dbe6d89eeb7333df
BLAKE2b-256 65dbcf04908e5f02f4777930da6e7108cd76887e229dd368624854c6402daf43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2738621582ffea5d4aa6bdc47100f26728ba31033875b7e94331e534d9269665
MD5 b82cffcaa16d65c3643af3af02abf8ff
BLAKE2b-256 725dbadebc4576374807314e1c82d31739e7d5ac638f15fcef06f99c2b75ba50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0581ad0726c53ea2b22763f59386076e576774ec21d8e66f8dd3cb7c649a1094
MD5 cc6afc63f7fbc3fee872815809bd2a2d
BLAKE2b-256 0ee5406b3a71b2fda3d910c167f0d73b32072c42d61912f052d32bac5dc88db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba106167910493a688ff0280a5a412875b69b4fdb9f9c1f58475a059adad9b13
MD5 683cff69b2e9447034303e77e3c2c12d
BLAKE2b-256 db3eb04f725fc37b25c8c3e02181f9a50b3099209e4a4ac540f39a79ba3fcfad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 622f84c08b95772de71cf7c747bd247c2e8b0cd14bc2ac7fe7dbfdf5dd8adcb1
MD5 60e9e32936144396e5e461676f56806e
BLAKE2b-256 eb8ec14d3c973c0665593dec6e59d93c4420d4f8b068ad872317a72b3748df03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecd0fcaec2ef037a824ec5d1944285d544114cc3bd6dbd78e7bfcee889cc1070
MD5 dec29e198666eb93b36539eb890a7b02
BLAKE2b-256 786c6910589f0efb61bab426cf092b62d50ef34a71de23cf16f9d123d655d47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e539029e16382180101fb6ccf0b2fb7752b9f339601899a62e8a242dc5997f15
MD5 f6665ee1cd7c1f4f17601b75e2e92231
BLAKE2b-256 0576b86475bea75f3f7ddc6d5c4d3acfda318d169fe5c45786151404bfc438ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 033ea372ff815cd96ee7210349e9c1cf03b04585fed2dbeae22c121f430fc890
MD5 b8c9bce333583e3ffef948f60fd21d96
BLAKE2b-256 57eec0ce5123f2c24eb9f335ac907e17d02ee300a828527c4d68478cf44dfa34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd5dcea4005878b1915062a8e331ea904c1c02c6f459449418405f354a064d3b
MD5 0ab9d11c6885911986c7f5b063f63a71
BLAKE2b-256 10f832c8c38ffbcc4605b5f16e070ea3de9f8ba9ffeb35f3fbf8ad543258694a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5b26e98a64f37cf910fbee4a6eb95eac0a6ba3fa453bd32f191cdfb3cc138d
MD5 02dd3fa721e537f5b038b8cf5c9f2c66
BLAKE2b-256 0366548e2f85a0dedc5b966d047c385e0971fa2c4aaf356ae6bf6ba90fbbd1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04d0083868fb196abf33ce21e90f3b08c9f2962433d0dee922dec20ed0665a06
MD5 f75efe563571040b4b5d198c7cc5cc85
BLAKE2b-256 e65110d9b75717863f7bde0494d31777dbc3ed3fdef325fa5dceeee8042f7229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bf3a0f519c5085c242b092ed88b54a4fb8dd9d36a69caf2cf4913e88a9e0213
MD5 f55ec73b2d07d8af3aa4b3d08e696ee0
BLAKE2b-256 d2ea1cac7923fa69eef300d8aa452ff927463cd3a5f1cd05fa5da1df8b595a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bca49929a9c72167380782f6b92f47feef648c81e14298a5ba3e42687c739ae3
MD5 e5daa13fb748a9589029275aa5705d00
BLAKE2b-256 13b787c54408017be3548ea478aafbdab8b6edb4cc3aa57bfe4572f9e1cf7a3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.4.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b6a39fa87eeafe05bbb47473b53a757f9075821478d53afa5557c4913a4ffe51
MD5 c9c0363b8149138e296de2cf1fce9352
BLAKE2b-256 ac5cd3fe7440bbfafd536a5450190ea7e64e6f0726b00253706b563c1d86d6ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.4.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dbaac300ab6a83494cc00cc74be7c3a56f5f10ab6b45a7a0c9c7da8f2456172c
MD5 2cfb97ffc0751b4501c48e560925ce32
BLAKE2b-256 b07266d3588d082a591df89c0bff0b253f52612d4a33892d5071b8671d95793d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fba95312409b935821cba879c23f6e99630bc8b9e795034053c9ca8060c21b51
MD5 178c4c8f06526da0e091c8b37127b1d3
BLAKE2b-256 ead9952d3448d19d3f4d77415a22bf079eb4c0e135d7d5a8906f46a56d14b972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03981a30bda1c5bbe233db1a25593b5f76476ebf5af5265d4cfbf4dd32aeeaa3
MD5 28370d84a243fc75e1cd8e97748d8fd7
BLAKE2b-256 773284fc1040ecec9c35d3ffcd6c4cdc0f6c20d909bb4c1a84fb1a209433e78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f6a662ec349d2df3a4b0d04dd47bd1b373671a00c74b90be25e1235a13d4bce
MD5 cb25b529933611361efea6fcf5c5606b
BLAKE2b-256 54f1b7abaf3180f4101fcae90962e10c6746808292fff040819448db98431365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c9941f9812019aba85ecc890419449fc7ee41287f25b74cc08d530a54883e4b
MD5 262626c01f9d263a14f764377c6efe88
BLAKE2b-256 7a9e2a844652baf0de1529b19c236aa87822ff218ddcd509b2a02e78772da9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2e7ae5eee5197d7071a0f8cb5d97f2650bf245f936e97a7033840ea2a56b47d
MD5 47dee7fc3a4918e1334bb6741c2b70b5
BLAKE2b-256 9ce5a04d53b652d17248f8d1a4869705fef62275f784a348b22391c099e8ae41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f27d802f18b465e688b38fbb04757f0f5c880c16d6f66cdb2df7a074c23ae2c7
MD5 1221f2780de0c03f39cfbfce8e68fbdf
BLAKE2b-256 127944148d72d1db178166fdac63e711cd0ae4d5773f72778a32f881f62b781b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7601b7037cbae6c6a2d1bee932c8339ddc46f96f3d911f6167c3f6de853e03c5
MD5 1ab2c4ec6ba4d09569085890fe40470f
BLAKE2b-256 5862a781bc103c3c4bd403eb289cc7cc67bfbde68d5e4272ebcafbbc7d721576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f96f2778a666adfde11e7bedc20508020b3a30a0131c128245ee4b646c4414a
MD5 2028341bd166dcc7388850b8e8b1f400
BLAKE2b-256 28d1642ee462842e92d6a689eb1f72b2118085e4a85f4d817aa30853e4a1483c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96ca01bc3037bc583b23f131527a24aab32d1b6502d2dc9a7238d292bce619f4
MD5 fa3ab76d8d62124c8f47096e1aaa31d4
BLAKE2b-256 bdba85a16381f8f00a9e27a32b100fc84c9eccd863f22a5bcfb6b06c8db00977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11cb4d46b2e7e3f8120f3692a47b9f19254b0d4a173a77d9db757d547e14232d
MD5 6122f1a52ba52a4e14127cb6590ebc26
BLAKE2b-256 4bc12d575e1624b0a37869a67ffeb710ccaeab8535172b67ecf39339b1016d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f6fe9ffd9966359d3b54f7a50bed9fe78ee3b424510f123c967e07e11f90309
MD5 e7ec68e3122b968bd239a8ff22895e75
BLAKE2b-256 5b96c30ed5fb17e12f279295e98cbb1e9beb241dc80d57e77d301001c8d10f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.8-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 defedc909e7ce1780b1f477f5283b51876327793bdbffe02e98e5f5ff7cabfac
MD5 e686a2e0bab47da823e8283fe10d8a9d
BLAKE2b-256 b7450f550c1b0500f6f472b71ac9a2e457105c8869514e169bd08e9e84f399a0

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