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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.4.3-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.4.3-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.4.3-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.4.3-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.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.3-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.4.3-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.4.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.4.3-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.4.3-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.4.3-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.4.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.3-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.4.3-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.4.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.4.3-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.4.3-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.3-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.4.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.3-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.4.3-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.4.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.4.3-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.4.3-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.3-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.4.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.3-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.4.3-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.4.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.4.3-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.4.3-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.3-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.4.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.3-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.4.3-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.4.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.4.3-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.4.3.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.4.3.tar.gz
Algorithm Hash digest
SHA256 86656dde85b8e738931a8605e9b5e7d5aa613bf09219c07dbbde2c24cfb423ce
MD5 236fc358dbff1156da7b490ae9363c3f
BLAKE2b-256 1cc7f36fc84ac31d2da12147c8dbdef3014843ff84a0fc71d4222f78dc11a4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f22b9be3de5c780db57f11f15b33f53604624a7e58489c88c5f90d34bfb49976
MD5 43b037644ea8d7f4db05b23351c46411
BLAKE2b-256 056368f7508efaf9a0804295dcbcba2fa65acf8424c5acc417462396658d1aa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 99d6604d8defd021edff0ad3c62207718dd6d55c949db316554c7a0b6bc1c9fc
MD5 93da687ecd9caaa55563693a9bbce3ee
BLAKE2b-256 6164896c50845eb8feb9587f9f2fbf9dc0f4101605420a47a60a35d7b0121e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0316a569f864ed1913adff84ffb0a24d2456c258733b047754e713924264c6c
MD5 5e87f8a08d7904d47ac2e3a95f5a1773
BLAKE2b-256 b0ef24c1ea65ce3a707d6dcef7a91dd30f141bb6a9e70dd6ad975a26d929f4b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 466079d26ecf56a343971a5264f8782234ebd26a42437d5c4a3ef1200f59d134
MD5 3719f4c795a381fbf32375470bf61ae7
BLAKE2b-256 80485b0fb22a239429a8176e6f2df1b3de91f32c838c32e85e60e3d8f181910c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87674b393f095eacff50870b0529d7e0e3a34235ed51d98c052f791faa233de1
MD5 583745ac7186a84396caec053028dc9f
BLAKE2b-256 8614eb574fa50c415fa02568ab2056a3215d5fb7fc81a998fba93ff76003e0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16f3030d417f620fd25013ca41ee74780342eddc89658561475326e897822e79
MD5 7de12c5d925887bbec6f99b2109f8560
BLAKE2b-256 36359adaa2962ee2e9a0141240989d45fff6e7317588e7823e616f07d21f1c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fd107123ff163b861f5140598690455a85e13d48a70477e89309ef3b9fb4343
MD5 72347e2d625fe76e560b61f21e2358bd
BLAKE2b-256 f4323585a92600ac2971ef4f3ec9c2cae94d4bbb7d0ac3ddcdf3128b82b6d892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c4961338fc76df916f34e0fa9bd067afaab54b5b6e94bd26ed5f444de91d971
MD5 f0d0b5cdfa6e58ff95d8f0d153b06ecc
BLAKE2b-256 a4fc9427811d9ca6d5fed169b509ff2d975c64c500a773f5d2081ac8614504e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 263079c7eaf569bd52b1b2fd0676c94303f20d5b567b2bfcb11d2d5db3969c5c
MD5 abb60b996d2ddf6944bcaa412256c179
BLAKE2b-256 58d95889099fe9a5faf42f00ff609f3d8d94d2abe76f1bb5474eda36cfb4ec4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7f4e72a8095e5837c0cc4259b0e3f01436bebc41062380bfb4555c3c142e313
MD5 8d9d2661c784abbb505554acf9599151
BLAKE2b-256 a78069fbd142807d527175d30ed187408ad9f5b6a760c4f6ffa0a00a441529c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05425709c1df233106e8246480f25e595b57394e5b8c801aa0dddbbca88d628f
MD5 63b1b05a9a57f604cda8b6d602ce66aa
BLAKE2b-256 06078e5473825696be002befb1f5a356ac19c54ee55ee59d1993d80a638492ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 167227ff1153f06350c286dcbc688f2d94fdf047f290798ff9a9c6ba1ec4255f
MD5 3ac420e291ec0457ddac3066556950d2
BLAKE2b-256 30de08c7c61dfca937e5ce77f367f36a3d626f159314352ddcf7982064f08172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce9adc6eadf5e51de310e2bcccaef8f2733eb6205292ea8fffe5ea3b92af6375
MD5 6d93e291115bae30e3a72225d70753a9
BLAKE2b-256 b6e55abb2852f002218779529223fd5c8647f5bf01eef0d235a53b5254341ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5bd012426f9604d1521eebe86d53f26daf11f2b8afce7b9d38eb4064086d9e8
MD5 a5c8bbd6729d76945d47d391fcb78724
BLAKE2b-256 1e2724952df8ba73dbdfb715537515dffef019f2781b89ac4fa666cd372a9800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ffc08f9d57a209c712e37d94f12ed44e971de4c20de9189ac393580f0261d10b
MD5 34db1809b7ff57f8d1da8814b53938f7
BLAKE2b-256 22e6274484733bb461c83fdf2d42c33e475d642daf9112a634009f0cd77df91b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a1ad5ba9189354cefc0c605f868cc1c74b36b538ff12176efa04008f6c3a5c5f
MD5 f963fff85964374ed65b484c98ac6922
BLAKE2b-256 ef3b11539e31a25c3938ecb2ed39aab9d580a9f83f1fd132fbeff1190b3ae63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d7d9c5c55230d73ba817319665fcf2d660f21a6ef4a28d709c5ff800e40a8dc
MD5 36fa29d4c11b91d3ba4c604b91c3eb40
BLAKE2b-256 c357b54bfd4f85d1f6a0a77d58e2849928e64f39ed16a5e1befd5082d6902989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3278753fd9252959c9dbfadf3d4a825ab5c4664c5cedd3e8af496acd719bb55d
MD5 0a1ab42cda19d8d9c5b89d8daa1f4b12
BLAKE2b-256 94a518898ce51802b65b8a92f4039e7d1222b33d0be35ff64f9c2c9998243502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3eecd26087bddd4443ce5b829b34e55c02982d4d1babb8b7e5f0ee3ba89108dd
MD5 e5d2b50d39992d44025d766ac5dd0150
BLAKE2b-256 fce36af4b9faf56d9ebaee448d390d12eaae30d0b1ac24be88b5ba2f6dd920c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 033c9cf367909103e7099521f3dedf249ef8728d282d4aa40714a2a7981071a2
MD5 56facf71113a14b1153a31a107f5635b
BLAKE2b-256 306d61f7f1bfe5f02aa323137ac5ddfb86bf6cdadc00bf91a190e2d2db4047d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fa464ce8ddc21e2e8c1f36e31250f1cfaf81a826aea4de3c3ea87e596f86231
MD5 e26def4c8b8f9869afb708a98bc8c046
BLAKE2b-256 04dcaee12d9f9281f568aa4f022342e04c41ba5536417abd9fb67f6655678961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c54e99cf8735b52711a4b4b4ba9885487799e1619c1b952b78167e7436dfbab
MD5 f43801ba6f81d3aac65fb3646d98dbde
BLAKE2b-256 abba1e66aab213fa5ec1ba999f0abbc614250be230a3e85a08128a09359d58ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2495c0c5d9dffb93b639afb9cc7362abd4748b89e825329f9808ddfd84542db
MD5 47524464c8f7efad544c3eece437fa51
BLAKE2b-256 0769194b3bb846d322319a7ea2a80a5c1cee0bc677b79d762182f6bc1f7cd09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 031d08c6e4947e50e6e3d9912a06453d358f5d0d531638d910cfe495012bf32b
MD5 67cd65f8732eed59d45ae1f562c9dcd6
BLAKE2b-256 d3d4df31cd282f3315d6f305c71e85d1eb17f418bc6cb59bec795ac104af61f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f88d097dcb888dd73fbff736a2c55cc15e8c9767a72b67e45cae20cf61401e0
MD5 46bd44021530e0084690fa356ab04c69
BLAKE2b-256 5979febdf39d19bfb657d7149cc2bb818099be2a9efeee3619d3f4ab684be2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa27d201a9edc3857c9db9e4e4b737b900dd7fde282151777d4005f5807369c7
MD5 06ceb7ff1f8e82a5aef904036d5ee516
BLAKE2b-256 a9d84c5fd4eba934ebe5b534741af27c5ace514a40fe72efb02b1353babf7ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92e35836eb42a4fcc58cf3aef3a667f86fef8bfff38dc8c91dfd070009d5fab5
MD5 f7c1ccc4434d4a47ad7e55eb69e219f4
BLAKE2b-256 bf067e45b812e5ba969c06eacb345723b7d200e01de11df669610105e6bafb42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1eb75518ebb476e6a388804aa6105808c343cd861856183321e6bc3c795912ce
MD5 77583217b35d29b411aa8d17cadd2ca6
BLAKE2b-256 13174448e645c99071b5078e0b080bb36cd5ab07f8a160b4f1ffffbe112d43e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42a2d7699be6a41a1a3c3c43aea0f25cc270e93900e0fec09ba7d13ef1caaf4b
MD5 87a236390563f2a0959a0b6fdeaa7ae0
BLAKE2b-256 3788ab257e4b2c5bbee2f3628cae1d79c4f54082ebae9c3d04ac2ba00f90f66d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c84ca6c95b42693a98319b3b259322678ebae9e8baffa862dd421c4824dac24e
MD5 30c992bff59b7a9ae9b20ca889f33b71
BLAKE2b-256 1655d7a73886e03d4f9adab134159605f7963ffc2a4dd1b67a385671250ed9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14d86847fd82de4a4bf012a400540081688ae7f404197437e3ec943cd7ab5ce3
MD5 e64d191836a441312f6fd6ee744c72eb
BLAKE2b-256 87d8ae109c2b172d1371e22ac7978ded3d9f362c720cd7801708d8e018eebaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d714b5ffb6f644c9b22267ab8d23a381e5e31177cc0e05074381dd4a490bb4a7
MD5 e3c6e606441140fe3a747947b2decd9d
BLAKE2b-256 1eda14da698ae6363c92c17cfed3e36afbe34d0afe53d13f4a27c922789929e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 355ca0c518396fe94837aaed8c6c801b1a7b678aee398b399af803d7f386279a
MD5 d73ebb8df8109f038f0a51b53b268e87
BLAKE2b-256 ed6c9c9e252ac68c7bc978c5930e5391a57070e81f9463865f1b2fbb30637053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2c23b479eefbdabecdd0bb03da3802e2d5bf91f6f82716df353c09589f5fb94
MD5 81c9c002e8c501fa6c7b1e157dbd8ece
BLAKE2b-256 1783e9217c7b6996dfe18bc4219ab94ad22d84b9b6ba0e27408a0f8f53326662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 829dda0e3c49baf2b1e91a2418dbf72e86c5b5201de9c36893cf7fb9fa3cff10
MD5 ad2ef6a916a4fa654c258ae782cf6b64
BLAKE2b-256 285f049faff40d4ac5c5006e2ba0b5de8ad07f6ed12a8f738ec8cc90fd670565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccb648ada21b6fbeb71e3593d189456185e82ac7b3a3c8acea14fcf0b7a6a193
MD5 f90699ea5b69c961847f7bf28fd914ff
BLAKE2b-256 7e30bf37fc0146b1dc252dfde1341830dede5cc4498bfe00c9ab3f1d25705fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2400460306ab6c58d7a105c5d652f4a94a26a252785563288bad5e3a661d717d
MD5 3d49dc15a1a9fe264bf7e4943f1f4f93
BLAKE2b-256 01989fd7c5df364607393b226dcda6f354edb2f6a42127094766fc4907b3ab8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59a55da40f0721fd96029d06f61b1e841e9be0ff539036539ee9c343737e780e
MD5 19d5644b5386d37394b34d8b19403fe3
BLAKE2b-256 59b445082f0cf5417796fbba4ee959fb70a411a147ac34df2e864c96a0d6b508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0e67d41cc3632d9f7d16552bfcfa014513e19f31342f9ccf17aee398ea28ed6
MD5 4bf06081a3e0fde0afea5060343f7a4c
BLAKE2b-256 bfb9a0d87fdad7f63ee33c0aaf2b62fb569b02d896fa1acf08a183b7d7bc249b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 716e44dbdc57b6fd3913252d991599ee6329924d9434a1461f90f370c44b1481
MD5 38550eaf4cd8ac1d48f0f614351d4e23
BLAKE2b-256 5c7de3d009414690c8e4b130589712749e16a5700e1e57156c79386b6bdbb0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a329a6a651c57ef26bb60c28a27fea8ec4fc2dde137140f5f06bb03e6e668d2
MD5 87bf4d760588d87584bf2633628816af
BLAKE2b-256 eafd80b80da9ebc5e670ec90891f1deae852168a1b7453902ea58638fc924907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6270a2d912b1fe3be87327096cc8b4e58af613d0a1eda8369688839ea6ae2c4b
MD5 d47789f4d5ed6eaa72fc705e0bbcb6ec
BLAKE2b-256 04e1ef5840c889e4e91324018636967a889bb84aefdfca298b94b2749209c016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd1e6d70460e6b2f59dd57e56bc40026d0272f32cd3731c8873b039776fe4aee
MD5 5d369cc6acf768ac7bb98f8e881a937c
BLAKE2b-256 0134076691c4c826ea1f58c0502f37e0297b13248c2ee2fe7cb7c6f5f2d15c12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0df46700a2224abd9b29461818cde81a2426b1d4cd16b8c844fe1c5ad582e5c6
MD5 a406aadca0edebb9426e6e4e13944fc6
BLAKE2b-256 e5e313146fe8968d83d711ead7d58d5ea0e7de3bf6877a2a1ead691d77a972fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe37566a0f91e006cf12d129ec1f509082ce92635e14d340a6e63b6cde6bde79
MD5 b326ce45ab3d53e692680527fb692371
BLAKE2b-256 55f038f9b44c939dce67d2396f3488b8d816a4d6ac98e429ead8e6c0d24886b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 178dc0a59f7502419d1c6e9a5a664a9420a1cd0db1105a5781312c09750a2ecd
MD5 d467bad978e79f18367fa0b4122a6e1a
BLAKE2b-256 de80f68b6aeff3f6730207da983ad8bdeb1c3b207863dd8bde5f28f275bdfe4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9222387f07a2ec60c1de859b5b12b9f7a28c8805e9fbdde123a8ba770d6a9964
MD5 c4d398ac323d69f1ff4060ee151b72bb
BLAKE2b-256 cc6c4da53f3569a93c7ab7dcf875c408d422815a712324b91325af0bdff5d4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e9cd34eaaf9946ddf45fccefb0c936777c1088ac6b6fe9578b38847de4ff494
MD5 0cbb8564200e14535c999ae9af359e7a
BLAKE2b-256 afbd8b79542299bf37c3616bc1dd50f293a589a7a0235346a726557fdff7e574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 551fefd28472e73837d58d4142717c2e0c3300d6abd62d8cfdb7665b46b59e83
MD5 9854ee27bb6e6abae36f0f8e98c0bcb1
BLAKE2b-256 93ff634b557b422c7b70123ff7a40189bc7d2372953156b13be9aab1e3ffa85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37c8af78685ee7bb832a6243a877aa1b0c573423d5f642c8a30a1cb9984dbfe1
MD5 5d45def4976d22b48e40a703a26d20fa
BLAKE2b-256 5039f660f639de1ac7c927274030180973895f55bcd47c553e4f26adaf694e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 435cfffc84b78cf2ea821a19d6dbb5dcc8ffaabba57c8904b508396c59083b90
MD5 6c39e790f924c85023f995092c37d6ad
BLAKE2b-256 0b26eab58be915d8e52676126df708c13c793b434ecd96aca058b7eae772d4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7fca9ca43d5c6d60c1cb1dc1e880a684f9e27ae4b20ecb7ff9b59d74f8600ef
MD5 4595fca190afc51f36fbd3e7b7df4f5a
BLAKE2b-256 2b4d7b04ecd92389ed030623c4f1a6e4121e21e6f96259ccc69badff20e67400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6276384767af7462b10712550cf7a34c38fb8e00f7dd4996f5206cae2e14c2ab
MD5 29ae5e034ebeb424a660fbdc8966edab
BLAKE2b-256 843353238b145792020c162a3f711c0b36a52c9732fb090f8a4d02ad532cf1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72988091a1e6b62a61504ce3194dae6217eeccab97c02767da0e36abe5bc6d29
MD5 82a01c3fafaed2ff585c22e9ac8bcc7f
BLAKE2b-256 831c0af99c5970b573b96ae3c47598aa46891d317bd0c733db27a44b1ca821b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a042b4e28bfac76d5574655e323f1ae8e47c39fa850e30d72ff02fb8278fd3b
MD5 6512b03f19373115ce2372315227cb58
BLAKE2b-256 10fada4ff8c60f129c98d0f1fd69b030bf3b0b22d8a4697d490e1e16624addbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdf11233857753b86ec8d70402b2b5e4ab4c0f3c16989ce6259284c19155830f
MD5 0b40258d8cb71466c96e2cfdb7223b4a
BLAKE2b-256 5c397da4827a1939bfd35080b25c4acd8c1c74cc5487d3ed7386c2e9d867b8f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 016234a7953e3f3e665690e4cec28be3ce855c72a37b70df0573cb6fe278f583
MD5 7f32727b0077afb77c3ab6dbe769989b
BLAKE2b-256 4d843c839e32737890d7bd00b139df0b2089bfcd0a3b3af1b5492dd9cd731335

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.3-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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2091582d933d1e9bc1add48b40c716f0ac5666702548ac765bd65a6229202153
MD5 cf6c92355d2a063259c7f6d220dac2e0
BLAKE2b-256 90ce7cf7c733b6695015f64807c40ec762f89c932436903834fd32f8da6c66c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0592820719fedb4d29aff87886fe9cb440765f0fe262c659eaf9b57ae47785e
MD5 5d831ad092d7b1bb8dc9c2ad127c4d20
BLAKE2b-256 6c07f0928fd8e71c563bf2948d6aa2b59f1d4ebbd0046e041a3ccee17a09569d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eebe91481403bc568c4b0ede3a0d3a26c3fa8da26b4fb7dc5673f4a372cd299e
MD5 f46f63b14ae5e274b82a1c3da9373e17
BLAKE2b-256 71b7cb9a559604739f03c65cbe5cd1e9c85014ff6b5c2584c8af3743669be79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87998b0f5e25fb0bb13702e2abc3f52bf15ae3f5cfb6c2f3ae0e17735c312abb
MD5 8d387f76e8be73bfd24caa0cde59599b
BLAKE2b-256 8046dfe4ed3dab413ebe2b7368c6e2310d9c4eb0e0823695456d154da9dfeafa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa5e0754f5bab028ebc9ab54bcb49fe618c2fd25d7aad3677821cf1279cc0193
MD5 d23bda5749215468aa4b6d2358b3d781
BLAKE2b-256 c5dc5e626c4dfc738bb676b36f438d347a4acc30e25d6b7d6eec16bcc5ac1ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68a2968bc48b9f35c943697e3909d82c61582010bf916833ec0fad0f1e548aa7
MD5 e19aaa93d621377e97921ed1d4180b15
BLAKE2b-256 6b19a78c40b754f1b182568a94d766e60f163893510f5d8aae4432ca09be5c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fb9dd4b480c5be5ab794e70af0e2d3b0ddda1e9bc5f1fa067b2e4a09b4c878d
MD5 f30139ced078c6241ff94ab2693a6b97
BLAKE2b-256 e7da40a03644ea5c112c57e3768a773ad1e07d9c1737b4d9c7e9752d091041cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7792f524175ff4a52fd601b7643fb1f87b174622a3730989b3c68bd1c6bdeaa4
MD5 b2acc15506e19b045922f05c0242eab0
BLAKE2b-256 28baf870f3e189ac1c585a29401ad7ca22cf497ddcf841e20711cb4def366e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30d06aeb6ba5f275ea063a44a83c766af938ab05cb8654443d5597c460b3fa21
MD5 5001d14961271270584cf4a9e7fdebd8
BLAKE2b-256 6aa5bfebffb0dfb4e9a1139c4362b4c5e084e388ed7b258899b0e950f405d75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de991984453cccb241f0eef069cda6857c0cdfd0f040e85be5c165312af9a57f
MD5 b644e0cf1aaa3d07d606b685f0de4128
BLAKE2b-256 edb323d6f626e3f95d3ea93c6042520fc145aa813d37332683335239ff30ac0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab7d8c3b56c8d9ce4a305a9736cf8ae0094d724781f7128ab952b6ac0344101c
MD5 75cfa1d4af2be5bf4f1889b67ddae532
BLAKE2b-256 11959792fd0aa186b1a64ac0ec20ce5c02739d88bb6c5a603569314cdb503772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cb9b27d783888159f9b2e694b99e906676f919d5289a73e996bf15fdaa67e32
MD5 4620e4cb7b6541fe70b3b05a51e6af0f
BLAKE2b-256 d83a6582851a3f5737ef1da4cd2db87efbf280d079d706b2e9a34fd6e44b3121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee19759b14e6cee6f982de949aefac93d49505aebffeae0d44c9b97070ea9c85
MD5 9db289c9b5780d998cfbdfda4aa917e3
BLAKE2b-256 5f5357a46b4a5aaaf2bb6e9ca019590e531708657ed4336ec5f5217fb7c1b776

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