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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.6.4-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.4-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.6.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.4-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.6.4-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.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.4-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.6.4-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.4-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.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.4-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.6.4-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.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.4-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.6.4-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.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.4-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.6.4-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.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.6.4-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.6.4-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.6.4-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.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.4-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.6.4-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.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.4-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.6.4-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.6.4-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.6.4-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.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.4-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.6.4-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.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.4-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.4-cp39-cp39-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.4.tar.gz
Algorithm Hash digest
SHA256 e8d67b0a1dcac4dffc53cc8d0b71e937fe15efd4b007c5193c121fc49bbed8ff
MD5 847b17667b2d144a6a9175cd9a006aef
BLAKE2b-256 15e290cfff0f7b0377a5b3ac899540fe525514e2feb5efcd4e5f18ca1d41b955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86976e443616d74525e54b48c7ac66f8d9377f31775bc1b5a8e3dcbab6082ad6
MD5 d6a6723c7e073a4587aefdc636bcbfb8
BLAKE2b-256 4a6e91f3da2196e0402fc7821e7225c5388cd27baea366f7883e9101ff66d8aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 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.6.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 af3196eb8f5efb356edb80528edbbc3b920451d043f1d037fbd547fee427db95
MD5 6be9ec32dc949d7d074936e96cfbba93
BLAKE2b-256 f3e31d50504a5c61668baed1cb159e42d70ed49bd0530cc94174189e2a7d11fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d80710ef0a5d00d2c047380308ffc56cc257f7a54f4ad8a56f17050ce9958fa5
MD5 8ed1b0bbed65438dfa6e8e870f733d7b
BLAKE2b-256 d42b253ad085987daa72e0015e34f41ddca4814e6d35acda3a2477922ae6bf4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9649cbff2c90a9e3dcd4a475a5741b805001640c7ee1cba39225564ce12fb1be
MD5 6deaf2f605003bb14c8bae983792a081
BLAKE2b-256 e81fcc8026a2c34b277d9a834538b8c3b55c533a0cb8c027e6661f7034475611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15c8fdfb506db0c3402130d6b8c2fa96e46f949c98a2bc9b8eec0afb87988dae
MD5 39880e9dba30de27f86ba068903c0170
BLAKE2b-256 35188dcdb0055245fa4695e41bacc7f1c28ac817a6d4984dd5a5a2351166eaba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb10de1fd42b6ef058250fae404fa91e8a4ced37c2614ab987e729bc371343f1
MD5 4332144fb5afb58735636130aa3b7958
BLAKE2b-256 78f5e10ce7ea00f3618d88a8193184aa7cc21dcc34c395b6dad216925b9d6472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 413c30ca8135eb5885f7ad0a0d82cf93f232196844f4b0620c650afa74c45110
MD5 41ea1f1197405a9e069e5121c19db547
BLAKE2b-256 74436280bdc64c25b65b7863f25c8cddac8aa329d3cb89a70f11041257f55d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f28ff954ac3dd1f6177b53d9e2baf045c0a806e98569caf03825701f036da0fb
MD5 446f5f73d673537fae9c8f7f3a488043
BLAKE2b-256 ecdfdf023cc5e7c33c5f854709ff6f480fbc8769e2181ea51bf8ad1690003d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d30c4a798d094d402d2c214ca150d2ac60dd7b7369401bb396daf1b83f91f06
MD5 6210b804138b6483382657bf1165fe83
BLAKE2b-256 9cbc1d14b677aa2a52d81305383b728996fe021622016e66fb1d4bf57d9a06cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b089343fdbbe4160819fb2a5df88a3cb74e6b7df57d7440b1731f396f322285
MD5 1a7f41769f058a2f6c578550c94ea168
BLAKE2b-256 88386f1ed96fabac78c89cee97b7a79b299baac7c57bafc9461baab6fb4251d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c090e7dac9cb5051f49ad1255acbc1f2fded044a1a09a6fdbbd7e71aa18d499
MD5 0134ec38d5b0be76b242184a25fa149e
BLAKE2b-256 44175cac973c7aae1272fcc177305b76abe6b1790cd2e5d8d5dfb0a5e0d132b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59004a5fae28de11cff2569913c2bfd371cec59cb707b15ceaf66cf9836134eb
MD5 c100d72be3b58f375690049906ebe575
BLAKE2b-256 3b1bba6ff4b4051384e004042aa69892c4b087492263978620b31f6d2ff3a74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de5518911e180fe7d63fac3de4e500d3749c780d0a229029cf6a9573313ad45e
MD5 c35aa1c146a0d02dc845782df1df30e2
BLAKE2b-256 bcb44adc3d6ffc5f93f1de22396c6b1cf13730630c102b64f9da6f4d1dbc19d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 416373ecf3c07961afd73db99e51f8ee43494bf9d3093bbfa85f92976a2a56d5
MD5 e3531438836c1d00b460933868435aa7
BLAKE2b-256 6b756b85d2d44111d67b4bbfd582f4f763539493979c75113159d4bda27a0fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7423fb75b3b97227560f960e0168c716a1f31f7977280d2d5350bf6259ba8081
MD5 39f1a999ceefe94e1185b9702c71c9dc
BLAKE2b-256 6e327a619e852b55194df369090833c44a6fd2d5b90ea089b3c14230e9abeed8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 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.6.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b5d2fd67220bd45bda20ddf527c17081af173134068d8010da9f84bb6731d67d
MD5 69d51ad71fbc65325b0f22f30a02bcf2
BLAKE2b-256 c737b8999bae9817a29e49cad577db5c7e9217480cffabda88a6990feb0087bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5324ddc3673945180f95912fba3b631cdda5d983ab28cd62251427c8f9f342fd
MD5 fb0226c921cfd03efeb8403725bb8816
BLAKE2b-256 eac3126021b882b41e86293e11318e9506bfda73250cc6427ce2b1ba57fcfe1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e40a7af3a987fa7930d3070a6125c9cfcc3e8cc9459a193f81300f1ac3fe72d6
MD5 f882ac45ad56021f731ec224ba9fa29d
BLAKE2b-256 7452ec69dfb5afb5abc814de4907eadfd53a781b56f0bd75df17d97e1eb2a1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c727c8f2ec4acddeb6ea2f9e4698cffc5c51348abe9ee78031f55583172b059b
MD5 643df3f2d897923aa961a3ffbd8a2b0c
BLAKE2b-256 b2c753d62ad2d8fb2662302a94c369e4e470dbbd5dfa5d0d55418a2403b41945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca7d04f5ed185696f56b242633cde979b97bd0831fb61ce793d39843e0b74f7d
MD5 115fa3f31cd4c1724f88ff07a40a025c
BLAKE2b-256 1576ca49f4fd3caaa566038609f67770b307bc5eca68ffdd044671a8d6c8d12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b32f3a335f51ffac3c9c1f4a477f1fa6e46b0e716cd69434a43230e3b620d3e
MD5 2ab54ae7bb660648903f403f3a191c1b
BLAKE2b-256 6ecc9fbdaf5c675c971c6ea59f76c62a392aad26ae062567087231ad4d2b556d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2726f64faf5a7f4b5abe2640fc0d4ecd2702229192d26380687d3125ee7e480e
MD5 32d78169212215f7d4de2d43c86a8efe
BLAKE2b-256 9aad9c1f5f10e38087ebef67a050f97909fc7a34e1bff13ed0779d28da22ab88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5665e2422bb12ae39241089b905d4aa02602a8751d06bf4ba96039fbd02c83b
MD5 b67c31b7012c7c8de920adddae11416d
BLAKE2b-256 16c06cc742f96b1b2c9461b388c04496f214c8f57683e87672070b3d7e09a0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1dc9dbd09dfbf65a7e160dba225b0deb1b15cd139fd4f5a1a0223611d7b43838
MD5 a8c78610e4161cd7a71ddb016b90b309
BLAKE2b-256 aaccbd2840f5fed197ea4847b97fab23a943668e6b02bc43d766c0935442d51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1bb2fa6dc7ad3fc07c2f93d4fc2e6f15abc00ddae06d06994056caf913b77bb
MD5 df9edc8db4d9496ba20519a9d3ae3c65
BLAKE2b-256 98bbac417847eaac1f79845335c70e5e2b95240ff27c0ebd92158ba068828f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48cfb60ac5827f74d76478907d60b8a2bfba6b658ec8fa0901795f322d8876ba
MD5 838eebaf7b03c12c6b5071e646d2ab7f
BLAKE2b-256 02eb47642d42615f52641e4fc9e138082f37dbd65352a7dabf32771efcbdd174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0916ce72dc13680bf7de0dd237f729ce1c24ef4bf6b892a457331ef8ade49a40
MD5 d82b3be2f588254d77dcea664bb4cde8
BLAKE2b-256 aa1bc033aedb5b2a3f120a8f6cf95617b74b0a1ecd2d420cff3fc1efd920a26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e2e8c1c5be99348dee27f7b89bc48022f6875cdb3141e38bfd8f88cf25bbb7a
MD5 3ec4a16e83a7cc328f3ba0f9d3ac5fa3
BLAKE2b-256 97efbba670ab8e1616ae67835df8fbba6147766f686aa6c69dabf2acf6a03455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91b66ea2296af7838aa9eb1c327427bc3f2d6888e17edeb9155cda332ed6df9c
MD5 768bc4bad4bf9bb4a11d78541f5c3afc
BLAKE2b-256 5505561b780d22631c1aab95fa8ba3c1b7560e16ed97f27a9e734da3f21a24b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-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.6.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 116602c962bcb06082736d6faadc3f44a883bc11b6e3f0c09f0f3801125d82cb
MD5 35a96692914a638ed4a433f2888ab1db
BLAKE2b-256 5ef7093bb503070517416c00bdf3515f42e82f5338cfa6a9010df46c00a6f3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9edb59ab6c5f802b3d4a49230b68bfa9aefa2b37d71a337b6d47e10f10da5e0d
MD5 0c35de7409ac88356c538b912e86f6af
BLAKE2b-256 41226303e9e4d0ed063fc25e50a150517292911ac2ca03cf8ba98345ecbce4ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75741aac9f96a045a465940c239e62ba8f15c6d4c27f0e3631920a8e79dc3df8
MD5 b02e77dfa27ed90aa947d7c48495aa04
BLAKE2b-256 728e444ad9980b81aa8af297debd256dfc3f7ed0ae2031cda25241d0dd6d86fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5632bb832ea07a89efe058b6d1023f00729bf59286631d3c58377ae330a8bcf4
MD5 9a199500581b9bec9a42319dd5c167e9
BLAKE2b-256 4bfbfa5acf21ed80eca28d9e03236fc87faafeecf5188f099bea735cbda37fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01bc9162ec5401158f335e4e761f2fa93150ce6085d072f64d253956356a095b
MD5 8f822011df7626cfd9abb71e11847867
BLAKE2b-256 b0d9d0fd13ee0acbe87f7d19581e5186923347dc9c0e0ccc573852a557f689c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbaff95f6fa53cf5b00fa8bd4ed886e54c7e418c3624f806045d17b1262c4f06
MD5 28ca939e96458329761ce28c9b1e9af1
BLAKE2b-256 f4ec76774c5154fa99fdcf8f55c9ebfb4038ff8b4b096e85cb1c6b132e1f86eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0b865693fde54a0970c6d2281fb67534684425f60601a50d9dc54a81f476cc1
MD5 ecd26b8efd9ea23733d29ef8255d777c
BLAKE2b-256 44635479555690f658e9ee931f98e5596a391a4d6943e73e01b7858b86a12dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7228e9b4e124b9292d1fea65938348ba6f2b473719a2077bb839fe6920cdc80
MD5 e7de2363208a2960c0840650412d6f89
BLAKE2b-256 c0c6e5c77eebdb4e0868470f577f7c2d900f07e6fd1929f24c9f0b9b55060792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9870c633dc4ae7f7106ddee87224f8aca8f4f8eef53b58a3b093494fe34e5689
MD5 c9cf01e16fc77d46958a2930519385f1
BLAKE2b-256 aba96f9f0ec8b0379637cfe8eddcd8e2add8194633f0da04093e7971a88ad250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0783d4f3fc38bb454b32228cc9168329f187babe28d026b446db6b6e0b632ceb
MD5 cdbed97197278c76b42988dcb74ae4ab
BLAKE2b-256 603ea159be2f513e4d868863ae60bb3e5eba93de8caa22c2a15d1a6c0f9f45cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfa31d841d0f9b46a5e5f933afa910815efe00f70a9f19c6fbfad5d9acf8ce79
MD5 d8b6f60bed72fde440020c138f4ff599
BLAKE2b-256 22e8e281a917adc8da059e51148c041a6d17f3e860ca4af4eb769a552945e08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d28321c55283c97983f0669e9586e600d4d0cb0b1371e08061e1c5c6a147d6a3
MD5 9ae182d83389355d6f31e10615cbd364
BLAKE2b-256 7a2a9b08179ac048a21d018bd442920d45acd2fed494e580fc1704d4990cab7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfc50af33e3151a6cd93d5e1c769cbc24dd2e4ad0054f07af9b17eed9dba2d19
MD5 b22e96af9b7f9fd6472989a748c70d55
BLAKE2b-256 85c34d70032e9b7c2fb5b44d0995008e58a5137604fc5c8c9c32c903bb635804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b4b965b6cfc7f237cca25ea660f321f666a5cf39e362582aa39bf9dabb734a5
MD5 8564b62e9a9f6abb1675bc05b1bf76eb
BLAKE2b-256 99aedd6d7f657662ab86f9239ce3a66c9e7e166bd2dcde369f159a839968d750

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-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.6.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 62ce21a6f3c9a014189533ab64503b58c26ba583c60d8d44cb17f3c545cd2456
MD5 7a4e436a7998a97bb1d1b5d8048e8209
BLAKE2b-256 a7fd4dc5cdb99573afd0e10064fc6832d5705755eae70069f5ac8d7b11ffb4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd63e1b541e28d99d9eba670c27ee28ce00aa4be7ca3e2f9df5501d84bf91ea2
MD5 5e64de4ac3fd9643eb53ad874d5f4b74
BLAKE2b-256 acde84d05e641f6f2ac4b145f7fec792abaf96ffd048ad926f643a807fdf6dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2f79e12baca83424dbc7aa9f17c3e9f1ee172bcde7f36e4833e3948dac7ad1c
MD5 5c2cd85f5d1b1f84c42c19c6b96aa6e8
BLAKE2b-256 c43db5c7f64fe3b90107950d44420697a20d14c812ee57407eaaa2d91cf47c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d58b78de27441b6aa66679d6675e1a0fe0d8f66555e206d706e53b21632ea1e3
MD5 21fa82946d85ce9c12330b3db3684cdb
BLAKE2b-256 b60264b6e0c6a3975b5ea7bd04615250c92093f187e3a5cc7cf5b819dc0b4414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20fcf671b996a2a44656183e161550b07c5bdacdedd0e8f28873442cd3aa44a0
MD5 cf7cfe05b6751d796c2874bf0e0db5d2
BLAKE2b-256 360b7bee2a19bf7c6ebb5d5c507f4d43cb2f84a25a40ca15aa0c5d0b8261d24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa1612b2c9b35b6aa33f2600c0571929569b69aafeedb6e4d1c49e95a55c7fe8
MD5 67f188690c39aec061a56fd32a85147b
BLAKE2b-256 1bd55367cd4a4d39c33fdeb06c370239b93f840000e08336406b7125197d617b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 286622526a3c2e21e4d33373738db5391c214b23d449216719f265e8f012edae
MD5 f3bf76a527808c9c2f47db6221d06d55
BLAKE2b-256 a0a6d5ea7377c3f959dd087dc5fe0ef02c6107a0d6e11e24e4556814568e5ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97a1f22112f1ab52bf08d7c53c2522327465530e812274e38b2b7feaed443bcd
MD5 72f872e7ffc7361b4fc841f2455b235e
BLAKE2b-256 e4847e14db38bb0e29fe1e8f0575c8837ee4eb28136b9d9a9de31e1952d60093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5345b4e5e78b87d9585082abc88e16a2ab120dcf405cc838b16490a0461e25d6
MD5 9780f7ea28326945400964e29afbdef1
BLAKE2b-256 0315febc0ef55842330420bc09f8861d10c871d046ca286beb732d27f2d2d3ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cffd3aabe4a12867f1f450dd248c9dd6854839e81bc7a4b92a8b27b6175fb7e
MD5 989bf8937e89866c3a092a63e349af92
BLAKE2b-256 02349acead0b53bac714732ee8c04acb719f6e14099830cbd73acd917b083951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df23070da161c4ecce08026d8f2f7ee32e0023aeb27d3744d8d49f511166b361
MD5 33e61e73b5f83d43b7ad6db9982d8975
BLAKE2b-256 7afa3c2df5e7cc426c7d84ecc2c5621ca5e9afcfc53eaca6a31de2b3643c7853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2ef88b24e086e0640cd9a610e3b05356596f1e2a751f9b60aadcdfeef032377
MD5 34ab77972d888529cdb702a7df60eb04
BLAKE2b-256 d86d1671f80f8ca517704d4a95793bedead0f50ef0ddd2373ac399f1db968f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1f0bf5852d4d451f6a075d21057b5c09b60e890fee197c27340ba1db6468976
MD5 cff3af45a4e4fc74480a83f1ebf391f9
BLAKE2b-256 cf08889a854f5ce36b49289be1a885dcb9bcb767b05ce40a136affa1346f3e08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-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.6.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 50b9e88fe95a401256ecb6eda3644222818bbd692b96b0f79d7f0e487df38bcc
MD5 b2f77e5761512a3d45e95e8fbb63b372
BLAKE2b-256 9e305517c0d2de859aefe04e5f69a78c2ffe3ba4f7d904a50499829a01c950ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.4-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.6.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 196f3a21631c086acf3c6765d86a2c5c4ca2cdd76272165405183b407a9bca43
MD5 8efc5d1b7dd67ea2cde91c1089317e21
BLAKE2b-256 0a8b68c012bf2a0d6951fdf93cb45c24272fde0976c85a2d2e4c8795d90ade73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bf6435736c97c3754c9d20f501b5bcca75f7d5c52cab4facd7bdc0ded494660
MD5 8c97c6654265de0f903b3f0142fbb810
BLAKE2b-256 e51c6fc78c422e9420a971c0379e9b13932bff163be20448dd42f76c059f09de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 377741233d7268f2b3c08a876460b0b4cd84d4678150612726a9c508ab858577
MD5 b5bd2b975bb32fe8b09598c0026566b1
BLAKE2b-256 baaf20b31b3d55f94f6aa0a3a27ee084d053c48c15855006b9e841661b8a0eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b2122cdd05e161095caf410b1b8e958788df23dca22b5d2b95de16a4bf9b78f
MD5 60f1ca7e528bb6d6ed5e7fb5a5a5db14
BLAKE2b-256 d47529498e226483541f05f901a5d796b33c3bdc924013731a77a4912df56bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab3d24fe7cb7398845c2ca78509feeb569c55c3b04ec601e6440df0948dafdd2
MD5 36e1a6673e9ff891f14e6a7306c99cda
BLAKE2b-256 1f5afd996f6899c41440ef34b1bf447a3b45f1be26a2dda493e2a23dee5db550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71b82bd384378ee0df1fec49ca53ea2f6b82593d0b10987e25dab64974752704
MD5 1334eab35beaa20ca8f09ff2d12ca815
BLAKE2b-256 58ebc211170d00703b90864edb45ddb7238595e29c858653c1ba4c4f6a35e9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1200a4a50895787a41ca168485569627283acd2bb89e05623cf4745be2f81313
MD5 a6175ba9520b7aaa8091b0cfb039fa3d
BLAKE2b-256 aeeb04370386c7ac27aa00f01477e2dc35efee9ecc56d90c7c41288b6f79f52b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb8eeac9e248a61e227fb018882aa4d761a6285ba23eff70595b198dd1418e1b
MD5 18834b47df50c4d728f48f564b22c881
BLAKE2b-256 9cb5353893aa4a4426c9edf107c79a9c0054b99c20ff3f84ffc969e68c9e6aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8d64e5e0d2281ed45c09c07f5260e72a864d78d4a648782a8159cbda7e8bdb5
MD5 aabea247a8039dd4e8435554b0a7826b
BLAKE2b-256 99d65f5b0327683dc186d5bb1e1f538b6ff8feb9aab7be0aef59b4cd7d2db616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5f40aade296b3a7a157d177a0160775b6f8cc8c0a072c30b7b352f15b20da4
MD5 be6ff7b7dd808e80e2fa51506cac6653
BLAKE2b-256 97adc51425e8336ae2c77b3002982fdc202a7afa4d7b9fd2f2eae8f71c25ff99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49e80d340253653d19eb05e9cbc28dc5593bcd7cbf7f2dac62b09079a01867d8
MD5 591c260b6cf41fd488a00f6d9a4c631e
BLAKE2b-256 b5a6491825755cc83af787985b45019ec10dbefd59fca46c28e48fa63d9d6eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25e1fffd23c0d86b7596d4a5b01b324b38035a3c09686e4bf4dc8cf5206c84ea
MD5 44b64bbf91f083634539d7e43e6e1516
BLAKE2b-256 4b37126f583cc4e196aea8b883d370a1dd44d98e85f9c2954ce1fd1c88894353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 435937f3dee0cf050ed2d91c49e4a30264d5815d6417bef34794b6eb4f89b034
MD5 aebddec38a1357c9794aaf542a7121e8
BLAKE2b-256 599f38215f368db2d3971cb70c6bb2ae4b5eed8ade0aaf9d615aa39ff5469d09

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