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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.2.1-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.2.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.2.1-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.2.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.2.1-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.2.1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.2.1-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.2.1-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.2.1-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.2.1-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5d8fb3fffdee7fff85e988f8ecacb1094b76eeec3a9a08f784dbbc50b30039db
MD5 a9ec062f6d18ed6950421abbfea3bdbf
BLAKE2b-256 1f520a8d7761e5bb4e9abc9bd0e6154cddc7a60a1944d6f338fd54d53c49c0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc734c37dbe05e781f7c76de22584807820b33823fb250f20e36ce80f1cd9cfc
MD5 61e55fbac9ab881499b3df48ee5c2af2
BLAKE2b-256 4d8e10705ef3f3816e2c0d64421c8cb7e136fb66fd6e5cabc3696b261d4c1c0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e42f794435be1b0e944b910d59a34dfa8f46354793e75fd108199f1cdaf6ca98
MD5 51b7eda54318978619fa14207e5ea0a2
BLAKE2b-256 7ba813f38d8e603261174e61813807a29cc62169586fc716ea45b6b2dcead84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c748ac90c0898c7067893b7f13a3d7cd5e6fd8c7dac70823579a55378297e0c
MD5 b086ef80b003a091a169e2fe19d1cbf7
BLAKE2b-256 f9574fcd4704a4567f4c56fdb5a8dd62a7f464fbae224da5cf4ab878faf0b6bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c59568a06391d18e769de11cc5eaac37db777d9151517669b7f41ccccf3e5044
MD5 184f58729e6c5551fe4baef520ea27d1
BLAKE2b-256 f2b0a4ab91cf4b2608824589e8a4a361f65fae6e6d1bb09d27eeaf6c4e65d12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c49aaa974cee50d75c8b38108255dd2ba056798161f65a2df30e8e4e228d5a79
MD5 2ded136740a308993e7fd7c165d31946
BLAKE2b-256 2a3ea7f35d57e882cbe478b2275a01c08c1b2b1600792ebed99f69a3c1fba718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559f4f4eed8e94bd15a1125da9db9d864cd4c5eed58331b12d44c8a4018bd1ca
MD5 b62c5710385d2268cfcad9751a05fca0
BLAKE2b-256 53a570b2cc4c9b4c91e793854b187c58cacfc061e3b09a5bf3221c9064663293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 821cb99d185e0ad02ef2e623203586cc7c20ff481d9ce7378aaccaa51d4e8dfc
MD5 dab6071a8c7543749536a5ae25212e41
BLAKE2b-256 675559dba7b9d748b845c2a59fe7e8f4d3d71249aa237fe6602c666c1916df3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e27a9f4b3823d74d42e0b68f7ef269871c243634a4af554fad73b172f3a520e4
MD5 92e0a5716555c0b3aa5e16ff26c0b6a7
BLAKE2b-256 848c7812e0528e9aeb906ae75118ed85f6b89b90f817f7ea7d91426e1e65cd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae8c1972a16dec70c0904ee1002feb69575b16cdb3a3bd4516152b5208ab2644
MD5 9f04377308e9918f3c2ef5940146837c
BLAKE2b-256 bd4256d0c65702f48904005aab64725536e5c121c81ea7e23ea43ce96696b984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0a21933216dbc0653a7de6d59f3a201492241e0f40656737053bfcbb819ecd8
MD5 ba5c78e623023b1943c052dae4392fd2
BLAKE2b-256 353c6cfe9196f728d9fd5609538cefe8df3f40761fbfbfb0a92b0d479f0ec4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae9a55ca43187fbbb745de63d03d5918db8215aef3eb6d4334531692a85ad32f
MD5 bccfe5f7f0bf186ada591cddb0764bc2
BLAKE2b-256 a19ad3e1f9baec1ed7bd3fb0b644c677140b995a2ef147235ba7a1ca6914df25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd4ffe00b90994c434c2d44a3ae6cf0f2466fb36c9cbfb21611a2adf2b1cc6be
MD5 8ad090db8450111aa7b75c78af9b30b6
BLAKE2b-256 95f91bc63cc6fdcaf0105edebc0632c3b26b7b15a1347a583def15b09b7fcfef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 347d318ff1a86eaefa1a739f7f9c42217b6b9926488ffa1c0c4e0513de992719
MD5 bd75c4aba890bce823ce7754fe147995
BLAKE2b-256 604d97aa45b7c9782a2e949cff7d52e05ba6a2353c676cbdda089f596d1e4811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91fd45a62a32e1f3e093f961a642c6f0a047c01d95e0ff0e9836d62efa7343f2
MD5 f698c0219e9627f786391dd0cbc9f8f7
BLAKE2b-256 78815d54b41ba8f35b8ceb138267bf11268c98fe78e0bf22989b855d5785d5f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 80c1c48841da8bfda8f7b9257af89c9cc2c0c56866bee4dce6c35766111d7ec4
MD5 d436bbdfb910558bf1ead6a8a744fe10
BLAKE2b-256 d9f74aed3e230d14bebeb0d1812ddef28c07b56a225260a360ce89186dfb9cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7ab8e9f07d09805b02c2b0cb53c95f555e50446bc2e87fd62de3f29cf44a793e
MD5 a8f21454b072de4e64efc62c175d133a
BLAKE2b-256 fb9d7375171e8ec1570f1355bb8b9976c8471cfea0de2f89ae45160aaa50843f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14c67361c7d668877d39c3a82d95a894a66e7e68614fbc9da352e2fcf79020c0
MD5 bc392d629b4eaef61cd30c0f051b7fce
BLAKE2b-256 f148bf697175b3fb6bdce670329e293c2f7388e48cdf7030e014368d579d0d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a75d6816816ed9f410dc937aeb8806905ec5edd4b1150456659d0053e47b0845
MD5 43bfaec6a98a18e4d12701a1c610f433
BLAKE2b-256 5e9b65bdfba28b7e00bd81cf76d596d94b7d4a616125854e9db2fae47b12f3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1df41d9822f35c59393966e8acf5cb9e1ced57c833a088309a0234b784c1cc4
MD5 9fac6aaa072936ad3461286cc0b8cb66
BLAKE2b-256 7954ce430dc2c51576a002cc85eba3777c77b832bdd83923f5251a6a31f5d4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f42cb467e0ea3d610c7d54259209c70b399b803d00034ba2085b6a3ab80db14
MD5 d572a5e97df44fd3bd8f1db3313425d0
BLAKE2b-256 dbf0f4ae757bfdcdc757f995e3ef046d71addd8e89fc7ffdb7eca8a8b6956308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55f807bd34f4002a827a73ffbe9579f7255ec6e9aad729f32856302b67f8ea6a
MD5 17f773cf4e29d75b9dfe58f3f1e5e785
BLAKE2b-256 2fe1430b64a8da265d524a22e46fb513afba1140ae5a246def6f0a8f8ed220f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29f1666061dfa10816ea59c5a5abd4771dffd25ca22ac6d2297107c5b4e4c0a6
MD5 4a700282ac9b8d70237544b5eb319006
BLAKE2b-256 2dfc58cead4673dce76b8ec2ac97b1daea04d3789e13f5dffdf2169c99d97816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c267cdd871094e4257d900b9ec7e7a7b446f6badd7f3ab65581a522ebc1aeb2
MD5 3dcd3fcc957253858e3422350c4d7350
BLAKE2b-256 65993b32b0a631a2a2a23fca4093c7bf6212ff777108c165666cd552d6c1a0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e1a8b143e099a2a8a55fb7686a3fc40fb1139c36443f57a2012a47e2d9e2dcd
MD5 cb7b7b7739090ea574eff80513ff9449
BLAKE2b-256 782eadf7bda9fde237e8f5ce1d6315942716cff221f211dd414782984b3ac470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6fc61be0283fce393dde0d39671c39f48e4fc33242ba4b0aa4939271b432ec9
MD5 0e7bb8e669548a58e3655f71f83146c4
BLAKE2b-256 83a5c44708f9228b428357c28adf259888ba85fe07445c774b0cac044858e1b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e971e2832d4194b4994c7d4b3ce9ba091b3a1b38fcd05ca01c01b42f2243fdfd
MD5 8e07833b5ef82dc4e31f853d06aeed51
BLAKE2b-256 c65369e4cf7b47ff2774478816aad98f53d49de95c6a43486cb582b46a77ae8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f38523745f8db685bb13c9590147d2708d6d0fc73019f3554d19462cc79aa1ef
MD5 be109a93703324332f0894e22e0dd3fb
BLAKE2b-256 8e6c1b582caa223b0adde2bf7f8cc7ce8c22467acef612c7320811b9979c73c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef36760aa3a156bb4fd1f7e5cd2b501dc1033f2a9355cdab638d4d0966534b3f
MD5 125e6bd4d09ad2d7ab3cc466a0a66016
BLAKE2b-256 1c17efb1c0434f3ba4922b52d2c08159086bc05c6046dc6460a1e520aa7789e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 25049764489e5244bcfed6ed48c95d7c31cd21628876c61ee25c2c207676790c
MD5 e62561182024ffc8f143bf67ac2b7c19
BLAKE2b-256 dcb9071504ed7aeeef603e342062c2ca13e5da8a32054a94a7888ff4dced1d31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c933e1d871d456e6dd22388097b7019bfc69cfc3c71b7f29241c4e0d5f959e3a
MD5 5477fe20e19b42ee718f8afa3257eaf9
BLAKE2b-256 7b6322ebbe92982647433075ad5e88a28267272f6a3f578c5c5f76da382f7a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b196c02e5426ec9c4ad35b2ea3a0d5258115dfd3bb402331dc9c69189fd93427
MD5 d4f005030cbb63046cd5cebdbe5d6f6c
BLAKE2b-256 e5229342b8bc0a3a8c085493288a82091a62bd09926ed999fcb87549a3c9ac24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e55da661e2c4d5e98c35f22ed540946eb4a968d1d9dae06770042e21c99af500
MD5 ef39d22d46b5808368875d332d14140a
BLAKE2b-256 917def857af23f3697e79147ee7c20703cf61251cdf50a195a4e81a0e9d5ff3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed7edda946717ff98643a430c1480203fefe5cf5376a3d24436c4da907f78639
MD5 e9a239510022b8c08a2c430df25293a7
BLAKE2b-256 11bff238fe201a0845331719621a00aa0756fb27885fe32a9a9089888fbbc1ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27a2d03a7fadf02eae3d9a2b36a94feb2e2ef8b70f671f694cf298611af41e89
MD5 aa29fb56a2d1c56b308b5de41de540c1
BLAKE2b-256 8dc1e2addca135870e64cad972a9f7834377fcb86757adf1d2682827c36602d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa73df81f145a85534168b41e051c339ed43eb13bcffeaedeab5918a00d18c69
MD5 dc748859eb374ca5f1265432356487f3
BLAKE2b-256 1299502b8fb68b1eaa28b40264864a87092abce4bf24bfc78ec2c34026c9c271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1f069bc919c0e8cc90e73922f5c607c42bfc01c28f668c020af9ffcab5c9c16
MD5 cd74c6d2a504eaeb997c018a082238ff
BLAKE2b-256 9004fb6bd8b47c2b3f6e3520839bf8531472b73507f3d005e820d63cbf2b6793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55058abbc87421dbc336a6903152d9bdfe7660c69bd05f12efe828da9c3ef735
MD5 a2f8ac5905cd789af91524adc3c699a5
BLAKE2b-256 a7095b02f8ab5bdfd563403f752e1d6e6ea9d5cf0a36154783cee6028344b43e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c21a47b70f865714aca3a76832d116fc7293983bd2efdcb4249acc6bfba52aef
MD5 ea06f4091ce093e84173c756533bfac6
BLAKE2b-256 2dc360d91af4e02cb626a6a23c6be14f182d4bf52f5dd9934b49f251bd5cd7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15041bd9564b83993fbcbf465f83059dd888c86db94fd9ee8f5acb232ca4b90e
MD5 2548c0181e656249f356affd69795501
BLAKE2b-256 9586325806302528abe4ebbf55f995fc1aea60a5cd2e7253cbf32e4ae407a274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2b0b9652108db1cc595d622eb311d8a64cd814dae6bd10a6ec13ec38d0e23e6
MD5 1da1a8631b08270d4d281b747b86d0d0
BLAKE2b-256 02a49a560d71536ae8ca12ef6a555b053f007e44fe1de1bee2423af09fc0a4d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c980003931f1e19da0268e77cc3486a235828fd3f03e37d0727045f481bdf8ad
MD5 f0bd9a2e2238f7177fa16221cf586e40
BLAKE2b-256 31d3896160febbf4c9cf6451ef18ef8d25c7687fcc856a249ca3241dc8664253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30fc45174294f1352c7af5025e2f8ed1c2d6142115e65b791282a9fb765b9cc7
MD5 a53b00e681910291ec8b4e13288e72e1
BLAKE2b-256 e5902e18c04dbe806f6dd3b034915191b4fe1aa8b95aea83a89c34afde57134f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c40b40b1fe7ba844d39ff407a6a9d77205682022522d50d0ba7ecb513642afc3
MD5 96c43ead55175862429bd11ef7b39c07
BLAKE2b-256 30979cdbcfb63c07f0d390acafbf5b206084678d2fcbe2ea383f41989b5c59c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1540d7274bbdb62649057747a2752e92a46c64dae3d4e22f55fb03148ae63a8e
MD5 cbede8fa0d7b038f46e9780b0968e39b
BLAKE2b-256 3bd93bd96f273059b0dae418778f5a8e84f79cf5db970f7e0c31713d07c012b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3534d0e69957ef38b0a6968a64c7d7e1624b13442951576a553de21b89167189
MD5 5add3945cb80fe47dc531ae19ed16ff5
BLAKE2b-256 2818559c35fe7a1098be047be61006148a6c3265c56b027b9f9585abca5d07af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f8f71ee07e49e16293d2f40aa51f51001c00b64cd3417ecbd60246a537f7b87
MD5 8449071077a94a4a7c15ea1f8f0a6aa2
BLAKE2b-256 d7b1df7d6aff32623cb7608e6fe358e3fa6badc5ac4de78d48ceb07e1c3934bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 451bf8f53e8598092f8e018911600fb5cff0f2e68ab04a730e4b6be6d523b0d3
MD5 3c9fbfbc0b94c11c0b53c087ac1f8bad
BLAKE2b-256 6549fae6de37883d797baad38997479c1ba364939042e4147364bed6aa1dabb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 118dcaa461489346c3f7bc897c47dd4e73c81cd257e131eefaebe9996baf4b1d
MD5 c2249b66f6ce3b76a381682a7fe05cb5
BLAKE2b-256 7f79161c2f5c8ce5c6e83b4774687ab1a8b6c32d4fb52329c9de3c075d16d441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f665d2841664b9f334a4f8d7e308e0ddd86f73e05177334003ef817bbe6b4a4
MD5 868f51de110ef09f2c3913c3f409473a
BLAKE2b-256 f2f01721b63e41101f210b604c9cead6d0f1b2063c1027e605a9b1ee1eb04335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd9ac924665469f02ce6add5d088799239a94730163f3961882c875761cce672
MD5 4cfb3cfcc59ae0c6cdf5b2c819f2073f
BLAKE2b-256 780a1898d594110373c768c1141c1c1a9c59552b162dbebc861ff8b6240b1cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d769cd0c8e518ef3956d5c3bd89a1d5bcb3d41ae1af1df5a535329ff287e57e
MD5 10ec652ba908f48010e24d185ad42927
BLAKE2b-256 60d9f29b43acd06ffe901d92082322e9035f6d9241f022bb289635bbc41ab756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e63004b9e0f789e430da7e99be3adcd8b1a18e8a6d21d4beb9811c1e2e1dbbf8
MD5 79dc24ed9b68ab4626984cd69dc0aefc
BLAKE2b-256 ca99520989b09808e378bea70c30d80ba0b6cffd1d22e9b095da3a47253d1a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b251228a8c6ec1cf1733be42ee08c91bccb015ae3a6d2a804b0f520789e62ec
MD5 4beb90612f0a3f5ce5efa20eaa03e980
BLAKE2b-256 8eeb186d88d21c3a24069df89306fd7656673343945560a7928e31a304701cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74f13cadbdefbb35d33192211b48d94a1f946993b810863113b2573338f345a3
MD5 d3ce92d600c0975943c85ac7e72f8d47
BLAKE2b-256 3ccf9d9707ce21c295ea45789754a93b10e4127071085915c14f223476c00031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27f322d56a6e6703653d8428eb10855cc5d0298a3152a6c275ac3a65f5972c2f
MD5 cf188d1e3e05185e58f4546bd4148ce6
BLAKE2b-256 386aa5f1b1b2e7f3a649a0a0ecbb789bd739797a6d9946be9d21693fac34a631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcaa8d3175caa5b04ba6dcf2bd95d9d3b9523b13231a2c1880742f4f0701c03f
MD5 d383fe0653b143380cb2c580bdaf50d4
BLAKE2b-256 6c49745866e2cc3d498f9179bf69f1757108d4cd3fa338c3bf17a283b59760d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 253aef7029eca6c80143e600c455b11ba1dd96c531af214af5b24bdae902db1b
MD5 d4136764ed54a54894a184e1570edb11
BLAKE2b-256 c6201a3ff0c11d4c6d732a0e35f52f86cd77fea43c4c9441b12028a7776474fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.1-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.8.6

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b407551d9a10f663abfd45367bde83062ccb1ca0fd20dd543fef9ad64b74d150
MD5 ee3949be976163931a6c612cd1422e98
BLAKE2b-256 8e7570adf5f3d04200e4bb9dc5bc13c269860bd85ba167d33ef64ff92724d061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb6271c08ce0b9c5d71cfcdbd97b5b49323200628ab974c2a9bf9b0859c1c992
MD5 e7c0f624e70aa3a220f8b9c8022f18ca
BLAKE2b-256 954b507175c3d5f6c867d1030cb1ab7ae0026a07269bd7daf7e5f59d11dd1d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0d1fd7fc8189652124d9650730218af96b705e3583e246aa58a368f2edadd68
MD5 552cd2c8d91e150333921ff8ae66076f
BLAKE2b-256 0ad83182556d59b8da1f90990c63e98909f678b4ad5ac086734c132dbaf3f08b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4308a6eb5f7f12bec64db3a47c6f767676d1db3cad6283a9b01c65448e8c30fc
MD5 40371a93e3b9854084e75fb731229387
BLAKE2b-256 eb5c06cd919a73d1d9f87c01871301f0cbdb995ffef56cafde05e1e08878ec89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62011b17497e3d956b0bb273cbf54816d305552605f43e94a44ebe59f10adc78
MD5 5483149c248b3eaff7dfa41510f43670
BLAKE2b-256 4035f70da36ae0fe9bff606bad1f00e43937ea6fee8597f57d30b4bb256b8be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e14b50a485eb3926d349a8d4a2ae71439c5ae61e532236e3fe573d2ca465a4af
MD5 52b5120503ae4f016c8500cb420720a6
BLAKE2b-256 300af14cc751cfaf2d94d203fa5fc3d966d419fa6bff542b51243e1e4b8fe4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10ccec860b3e706b396e8601cb17e3b094f6eaa5965a0d00c5cbda766b2f1a5c
MD5 9619c6ed2c2e3000b8a06a6688f19814
BLAKE2b-256 c375106cb4af5afb514fca85373d4a9e40dbfebefd85c2725a045a54c3a69ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b523b255e8ea5aa709da124517dfb0f85b5a45c07e6745c26359b752a124ac27
MD5 ca7e098ed4df40e3d03b2ec653e3bfef
BLAKE2b-256 1e4d744ae4650bdcec67c6deedf8545152fabfe87c62d0a253ea280ea9296b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a44107e3a5d32a8a067c88a464b8c4ecc55f91fa99016891ed98a683c475a7e
MD5 d108a929ce77299b8374c6654124f832
BLAKE2b-256 c364e8e29b688fe46091feebef66750a349ea80ba9af7db00c7b871355bf982c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 731f80f02cbc8048a70d48187f6d89dbcf8eaf50c1e76bffcc2d2bf3b5fea955
MD5 0d29826e35a6ca70618d8fff5b2122a9
BLAKE2b-256 3710eb7aebf74b3c502b05fef5180ea498858bd632986b1b282d3e09c75f9b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64c79dc86e97b6fc9c4795bb8d4524b68174ad06687551d5f8810048b1f21031
MD5 7d28f33e659beeeddc70b596f6a399c6
BLAKE2b-256 cae69dfe07be5314117926a84e3b3f41c75c4ca25e8416e3040ec98bb9f0a941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa30f0048bc49cfe4695aefd3c10f07e000f1791393e979ea4c6a510c6b71c0b
MD5 06962796e9d243afb4a868f561ccfa84
BLAKE2b-256 ceaf6a22b09b784ccc00e2a8236a1e651fa8d9e051176331ab7a65d154c07579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cadc3031793bcb989d82a83e9638272c49dbecf8415c47c87ebaf25fce833e71
MD5 441f97de6415c9cdebbb3629e34fed57
BLAKE2b-256 c595cd9a44f75af487de1d21f959f47ada4198710ef741a74d9324e91787c250

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