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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.4.5-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.5-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.4.5-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.5-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.5-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.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.5-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.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.5-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.5-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.5-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.5-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.5-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.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.5.tar.gz
Algorithm Hash digest
SHA256 947238d183a220cc368cf1d4b3b534503210bbc301dd374e4897e1d4568c26b3
MD5 767cb9e56b0cc5538ee3746a7808db87
BLAKE2b-256 c32b0a4c70eed9606197a1e8869f4366417e66b32a061bcd6fb83cdfb40dbcf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5e21876d9e725fcb1cdd3700347f6695ac27b9c556606e051affc1439272728
MD5 1607257d992fe9a2c5417501f4c1a85d
BLAKE2b-256 c44d0c7d778f4343764d32883465ddfe99b0a8e93d67fbc8671c92844fbb41dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 756b90ed99a0f523978f84322b7d341e557b18765dab7730edca21b5c575ec42
MD5 e19fefa82a196ffddd1dc62ac738b6d7
BLAKE2b-256 681c1cc6daa4b3e18e31b3c3e9f431a5dd0a28a997f8854a6e241a6e799c2dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7396a19eeeae2745b16ee51923fee26dc581ba4022ebff75d6e0ad7fc08917a2
MD5 86a173c623938539500d1c9d449c3339
BLAKE2b-256 a9684eaefdf31911031d0bf34ba7b43d9bf4db568f92467e38a9beaa7127a2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbbb0e2aec0ee2332af949c6b97d7398a14174a6596af995bb421795f2fb8b7e
MD5 566ebb0c67470f7242d86e6ed6ad5c0c
BLAKE2b-256 0337d9b2647e83cab70161da5aca1d88cb9ac07a8e134c388084d07a5bb9c6f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15e00b79c4873ae97cddd7d3feb86c83233397c3d95076f3755f4a9798b936c1
MD5 45ad71b0f6482f3cc1f7624c36e8cc79
BLAKE2b-256 0f7de392b13b86d6b49b6910b68d9cacd669f8f9b4e427bec44845f73df8d67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b63b73dbb0a07f8e1736cad954abf15122c575a5832172b5f4684d5fb189c912
MD5 1006028b4daae6503c26899b7a9bdc9a
BLAKE2b-256 b9a1258a278b9189058573de849753dd729574ddf41a17af1b463612927ed83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 643e7c810560f10b2ea64285a86ae7145dc3dc0ee9eb6d720e5e1c91ce77163b
MD5 21e8887d81285a532240e34d63cc687d
BLAKE2b-256 6afeae8121ab5f959f38d3e7ce5f5c01e43e5187d21d997c9f32cd273d38e971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 220e12088cf6c8d3fb82eb7bdf6f3a900d96c33d4a00dfd8208d0eaf6eb8a009
MD5 81b156f93aba7bcf5184453696447b5e
BLAKE2b-256 3c177939e32ed631d8863742bb4fb8f1b2ca309a3bc3622fc6d12010438bb5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6c14139c97b14b63ce7ccd022c27403b7aec7c72419e0b9b38c76f2f89d9fdd
MD5 f38fd925c5f1a493a708bb3a8e97ebb6
BLAKE2b-256 0b90a5081d3bc1ddf84fcd4c7baa63919b07dda81faf0ae56cf64f9949f89312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41a9c0ebc84d48dd70099f7b96a660a47180a94f74338b83bc198d68718b95ac
MD5 ebd41d46f8eea31a628b03e8378ba09b
BLAKE2b-256 0f945d60c267b824b61916d282c34ddc54c2ede6d4763877e0da6154d73c6918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 617fe9251df2e5ff0292e49111eaa45ce0ccfde61768911c216b5793a26f74d7
MD5 16b43c903ce608f9df6307427acdc17e
BLAKE2b-256 296e343ac438de3b30f2c96265fad1df7d190c00495f9192ccccb2ff993b6263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 969ae1ddeb2db40f2c3e6357bb4f2f84b2cc665b033d6e55cd541a3347239311
MD5 2aa699c238ca258064562d994b6b2b83
BLAKE2b-256 5365c00df573f5c29590135ba9f6249505a742e57de89d7391ae2123c6b2cbeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5357d371e6c4c9fc82e441ec053f854663040129964195358005749edc848aa
MD5 c2cbae6211e327c2870c527ebcf2e7a0
BLAKE2b-256 9307931571d1daa2cd1e8361fabc3c938ee574e8bc2669a5e3f524ef8f6688cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e44179b3475683743c70fbf613ccfc6666947137befa395249c4e81d01a3574
MD5 395311dafcb033e83caff5d7141b3e86
BLAKE2b-256 b411bbf4cc28274895da46597c223ec1f50ab7bd28fbb69962996e25ef217087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9b57ebab797a551adf5e51d504a37b3ee39fc956965c50f9ac954f7a25b40a39
MD5 231f8f5c1e6d9790593eca8c3bfa92ef
BLAKE2b-256 8f16ed91bd4888a9c849319b0d1eeb66096f6f6a0cb4d94ea319374c2e3f22b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af46e2c38b71e88c0a297f573c39478e4e1b0130c2eff7f888b357b3ce22be4e
MD5 028167e480d7484684da0e71a8c30fb9
BLAKE2b-256 0d197e19114f13dc3c855f889c71df0246b9e5bad1ff780109ac692774f1c491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98f2276305d2aeb921c6cf79b6c29b7ddfce56812f52e2faa61744cbcbf46533
MD5 026a6f5b54a47417578c4e4094aced69
BLAKE2b-256 35b9d6e6e8fb8b4304b1da0bff89c704084013c8074df737054af505c8c51718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1abf527331dac1ae35d22e15ccd1e5002acdacf1fe4c71fe507b32e7fb6e2182
MD5 67b873867ac7cf5b06754d03a147d4a2
BLAKE2b-256 8f21fdfe1a8df6465620f1df6228dd8a1928b6e2eb332d0d26cf77a332d30bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 495adc1d7c76433f68f805977f1e917234a683044211b0e304b056000cd1c761
MD5 1a69b6e28b4c1286dff7bd4a88e723b9
BLAKE2b-256 457841dab180c3bcfe1e87ec2ec774e84a788b6470c420a9769d5c7c514198c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 050b316cebaa01256b7968d1849a2ed3064b342456d4186aca4d162a624c1ca4
MD5 38bcbff196e8d1bb822fecd496482558
BLAKE2b-256 3bd5260129a0db626592b5524299307a4c0470e9c59b96607a3af6e8b3fc0c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d340e56632ff86347ed82c0a15654cfe6aa36509e019b81f5b99de55d5dddb4c
MD5 97c22ea6302d224d35f95c1ab185ebcd
BLAKE2b-256 5aeb793e48a170120ecb21b7e796ef716de0a9793f67edf4887d4f4585f5562a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80c1223a24a0ac76d4d2494934fa132efe3f3e6df42dd8ab335ff129ccd23427
MD5 d50ee211b82fab60360894cd65ed1f6d
BLAKE2b-256 5e0e3f52ad5bfa3bcec247f394fb5cbd8fc3168bcd722043c594b5a0b5dc9ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aced9d876159eb05e43a1077632c0c7942e97283793a5b68c3c4e5ea1ef6e806
MD5 8659666e1e314db58c6fc397e1d02dd3
BLAKE2b-256 71b00eb1a02d787b022f1e0c7df450c93a827fdb1cf4750474f855823316b84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c25ec0364604c59fdd74e753b63fa21b313e74719ee1f968efed0ce9c355d43
MD5 6caa7d983b36b9c563372a77879d1d01
BLAKE2b-256 1cf1f1d85099c1fb78cbfdc1a2f9c6499a4b1a9c2efde7f0ac67247b80a48ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b5440c4a8d467884e23a54dde29c8dde41f03b8c7dbdb4c3a2a63f2e4593b23
MD5 b008537cc52182cfe9e042659c02962e
BLAKE2b-256 26a9ec9a25818aa3068f9d42cfe696d50a4687b9f7159df25b5e8bdab82f6b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bfaec2c2c08b2913fb2e4af1b8e666c627642b110ff807cdbf183e809861cf8
MD5 4fc0ff25dbcb3618325e3d279050c902
BLAKE2b-256 9b97faba00b16cb623a2b8c9c240c4d7e136f969a1ced82ecea7118382d3c5fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87d02a98a63198368eb7658e6acde35c7de873afb09442dcb46136085ce4d378
MD5 a271f917efa88973b8597bde9cc1a81b
BLAKE2b-256 c9620835b16b4b71d236143988d405871016ee832f9253aebcdd8955ef976e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96be487763a4a3eb786b788c4c2b4b8694a42ed958a70735b0650ccca3fb991f
MD5 56306a5869e9166bf154c2a2a131438e
BLAKE2b-256 5cd6ee677987c0674e268a40e172e960772b8606beea28c17f38ce8873ad1c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0714511699cdd04cb70d71b86f1bb765662ff0325501370f923d46a0389f3133
MD5 4f9793600c4f61a225497d42dcd64089
BLAKE2b-256 020d995df1c2ee8bd7bc5b67743cf6a76a64c21f6b6ce01d8b532b0356c2b8ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f8a7669621ad0a6d750b5422e7b5c2fa1635adfccc61199d1b28ffd1ff8cf2af
MD5 23e61ce398b167811e3c9bffbe0d92a0
BLAKE2b-256 f1303295c7e69bad566253ad307524c589c988788d03b505010930e279109030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e909bc510dfa8c664510d6463d0bddc90062ba03310b76e8faf161d70dff577c
MD5 ddff99ce30bb65acb336df9575ac4605
BLAKE2b-256 fdf0499b0e370275b58e5d2d915fc2430643442fe61e062e2c1f8130c26f35ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9aeb88ffb5711786f736c755e1fec40e98add1704694ed0043fd6ca5e77d928
MD5 6a91689db049d6bd23db0b98da08b4bc
BLAKE2b-256 f4858c5e8d082c2112540ceb87d75b7d14d37af50e236daca7b7ab753f6212e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 217736f69ea3ccd4504c0aa90e1fb95c868675eb295b0db20fef712f285b4e66
MD5 cb6a4d56e1b36dad4e70a315a2eef744
BLAKE2b-256 bcb733c0d493f80943ca6a4daf4016d6f559d2d918df088afa33110ce4571dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23fafa0a2113c4ce615e7f8ebc8b71b1816116832180bfebf9ea6c61dc7ad2de
MD5 6bfc516004bfbdb365991da02eead713
BLAKE2b-256 212eca211f4e596146b3a505769d64ee001589d895f10af9293bfdfc21efe855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e7d62d1c9e515a7044c54b78b2c335bf00e382acebe52b14ab0cc2e7c22c290
MD5 f13f06f001d91888a0bad2d980359bae
BLAKE2b-256 fc6f9062b6e1652aeae6d914530583304300825ab567f8ddf0369e037829ec5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2a5ed271c7d4a15b4f10a239d063fa635bb9768c8ef36b88467229d4c65244d
MD5 b16bc669feeb5b67a5f991b9fd2a6413
BLAKE2b-256 ac26a2bfba1853eb32657a82ea08fe24669a0b9f28267cf5f833764763b7621c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86f498851a6cd7d6e038a4c554999405ee15f984a4967522ec1e27a2be3f1f8e
MD5 73c8e842b261386cc829c6382aae9c5c
BLAKE2b-256 00404517b29f8070322f93a726d5e0518aa7a288cf85a3fa7957b85590e2ac22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a0fc4a413587053197c963c15e4bea7228111b4f893f389ed61a9711528f590
MD5 b0bbf0735c544efc0c9bb03e29f63404
BLAKE2b-256 9e2a8030643e3fb78ca0baa738e90e8a5d4a53b6cd4740c8ca51247e03e63ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a4ea5d05240de91b8be62f23ee97debcd846e59940b538738db9be272314744
MD5 7c4d608a5913cbc1bfc81d67b3f28ff9
BLAKE2b-256 90e7949d0b3018b047d642ffdc6db790909b2fc4d49142a9c0b17432a853dd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ad22e8ca6134fcc1d512f4110a918cc927be8702cce61cd655185a17b9b9bb9
MD5 0bf7da705a1d06ca5fcdf31ce5f4a849
BLAKE2b-256 a3f3360b095d178938ea0d7b37b1979e494178b7f515d3060444c21ba42ab247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 750b97e8ecff4b82640e3edc2486e4517c10e238f9f6c87fb00498956143768e
MD5 cf304c07cda0dd63f8ff5e2bc8b027f2
BLAKE2b-256 5fc48e8cc1ecb57090782945aff23e1a5dd9b6f815fc611d1fbda9acd946ab50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c06e89028fe67227ee6e0159c47daba1eb8b5890ceedd180377b137504c376cc
MD5 3fc471797b6a47d244f67adc80f324ff
BLAKE2b-256 e918ffe4ae6a7b1a51fa6037c815b74578cf1e7f65ae68a9492e3df855b48bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c95472b6aad09981345098b65e733d073f638dd01d52d6a174203a883c8f2512
MD5 78f73269e84a30f64a56932b980a5989
BLAKE2b-256 09e1f735eb1935bd13cb2994084c321b941f2013b81d45958249ed239270358c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e3530055fe77b49a371a36cbf4bef874f388ffe8e6189bd65be29d9412351b40
MD5 e70f17870c13e2a3716081a0ad6ef370
BLAKE2b-256 b27c7892a29ab7336ec31612ebee8a8c16ffb3c125aacb95ec6a7079efe0fc61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 918314809174d1e7de635dc8af3be8c916c90e713331e74c122982e61ee2a778
MD5 e59ca47290eab587e5970075946c9aa6
BLAKE2b-256 6e8848b552cb145d1e7145c94c02aac9c9e75931e069ba7c179de369653d4bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3bd827176f03a43757440efa8101c9122a6731de678b6e6f29c1b12693f8d65
MD5 880ffd60ee3fb62379d3778158186ab8
BLAKE2b-256 6a68fddc7220b21633eeaf4a51c61828986e58f1e1390815ce2b9d93f4a7b651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f89af6fbf5b3c419953ff145a5325b25aca0cd1c20a7128a3cf205b602f8b624
MD5 23567f8fbe76d9c0309370b713c644ab
BLAKE2b-256 0e249f8abe60169225c6d429c244b13277661b867425b96e81664070df558e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 004a1fe7a23d368787a20f3ca6416d5bb8f11f3f2db08e799647bcb9df0799f0
MD5 6cfe8d9e4eef4577e8f8a5d375a8940f
BLAKE2b-256 27962277212db8ebb2403a49a3796be19c6bc6d0cca67166ecd5997b37f8781a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98ab3b5790333ea817d795354f3916db51c35587dc7bc3435567daa62a3726c4
MD5 10f348e5dd2daa6d095ca9c59c19da26
BLAKE2b-256 cda6c01e12b52d43f5e659153c3ee9675c386e0e4abdbf81a070fa1f3dc8a8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 396bc4ab6f0f58441bafb11623e38a71e9821b5a93d6584a50ad51217db7d8ab
MD5 75ae6dd327b735c1eef64f53b9b78e81
BLAKE2b-256 290af95a7eec47e564ad7477448e87e49b0444ec56023b830ade124912d3dae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6b36e2f2305f019b1be7adef213696b2f6971ce1ebcc0e8847665b5dcdcd587
MD5 755318eccbd32bb031a396bd527d4637
BLAKE2b-256 e7e1a20515ef7c6abd219a39656055a2129b570a358e7bd367949dd8f711213e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51db2baa33c4d0eb63f5f6204d772e79799a9b1289fbb875c389ec30978a3fa0
MD5 d0f11ac09c97e4130b025e8bd5e86f63
BLAKE2b-256 403399f98fd5f1d7f39f9d11b5c5d651de150e1070508dbacddbc9bf1d62031b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 390c9225b19d535eb301a62f52b1acb7a8be4bae022f0a665331108d34e4f2a9
MD5 d7b8661a295cc09ca103ade9cdc39d1b
BLAKE2b-256 78dfe3e20bed8e61e3cc7054b6618414eaf1639e0fb0f9454dc104129ca9fa0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ff1b790b9228fde7677fbb5f2114975e298c8e01eb586b3dc095f6cedb61d3e
MD5 6044cd05d07cc9501c30b5c448210c81
BLAKE2b-256 b717e9fee60f8265091f1a1340effc9c0c73764d42112743f6d4369ebd510f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b11aa7e62a6cf9bed5b8542fa6f66d373f3c0b07d6d9cf0ce666abc1ca3fb190
MD5 da362051e2b43f2c83ed57d2a092b4b3
BLAKE2b-256 32e6bc8bcd1fee5c194c1c8aa21fb1c8604b903d415744e893c8e570152d2cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4f24cc05618531b1bd33b78b046b8a95b66d2f6b57bdef9134f149cded9686
MD5 6e57aea48b2b17dae1ddc03baf8decdb
BLAKE2b-256 ba917c000619cac3ccc301b5ec5f48cd6d83e678bd8c52babfbb7b28a87f7949

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a521a118b59c69e3f780f631ff5a2dac61d9b9ca423048fb7a0b3a3425138cb3
MD5 e704e9f753dd0d992511a81204288ad1
BLAKE2b-256 2c6711eda87114f9794e70fa3d25758c94c918fff7bb6219012fa22b75d4354f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.5-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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7fe26c6183aad5dbdee1b8c9a58f287088fd62a1f012105c8f7bb5636da76ec5
MD5 fcd4bd5c827310d53db459001aa17e35
BLAKE2b-256 de5d6fed054853546bfdcff4e7f97f29f64e778a7029047877282559788e3ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd0fe4ef714a6dc18fbb18af56bfb16b4d6cbeac2a4c32cf9dc3353b09f3b3c2
MD5 248eaa783c2c3b799b0dd0a46137d6b7
BLAKE2b-256 57a6c0dca5efb8345ea69475d628c295e11ce3022dc68330dc66cbcad7d2d688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31c7bef3d77b35e9797d12d0d97465668c57fe65498f93563f37eeda9da35d24
MD5 a094eb8fc8a70be515cd55dd4ebb0fa9
BLAKE2b-256 6467c8352ce4024c65416a046e52b3c0eb77c7e3f515984f05e84a3e6c274114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a108c47c3c2ffd882b0d4d63c2fda00c3c16f4287faa9741c62c4a40c816b43
MD5 7f0a961599fa7c67e0e6fda8b8db4dd5
BLAKE2b-256 af12ae76e9b454f359fa609a77dbefb45d19fa498b6c2a72cdbfccdf57a40f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 404a2dc4e552fb7aa4cff8713f6d453f623a9ead06452a6ed07caf3582de686b
MD5 0e30ae88909e0e6068ad3a178ddb9f54
BLAKE2b-256 87d731940e0f41a1b289bb06281ec9e5a5ca2978c3c61f574d2f69e2175d3963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8e19c733bb41d29f187871c76484b59e4f8fa663842ed7bb58978419d5370c8
MD5 d2538a7479ffcaa634fcd52978385a66
BLAKE2b-256 43efcfc0b934763d480cfe7143d4deade0aff89193c6cd93ad010595c80145e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ea0b0716f1a547b72d4c519f0a3f0798bf1d9da3e70a7bf955749f83f762dca
MD5 ae28f05e0671179ae3f1770f89c0d8a2
BLAKE2b-256 15aa4ba9d17d042430f0599be0d4592e5f402f98f066cb229e15cf0f375a5d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d443d2318fb51639981bb64839d4f14e19673b76afb21988325300bdc56c9f9b
MD5 0dcaf7ffe5faa21c2cea36ac49ef03ab
BLAKE2b-256 58e447f5a82e2bc132b8daa4b04e70ac057da24af80e5ac4c2115680bfff5234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5071978e3da5aa4ce3eabc0a012317b8707ee831974c7171447cf020131d332f
MD5 18447234c54e8702295cfb2108ca5f61
BLAKE2b-256 5d69106f5e45b1684852deb023f77fb9e8f42dd3433b31acbd5930ae648a3c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d06a46de3b224ed34153f61ab43dfb912d6214164247f901a8657ce25d484a99
MD5 2b16416c252f634697f9e2204bcfdcf6
BLAKE2b-256 32fcf04a5e6001b75501ed4e85ceee80a86be638e94d18416bd72b82eed52bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c782be1dc9d67e065dc01b5728b1dadc05b8d43350e4e8a5cd46237e1ff51bb1
MD5 c8b81b494e18aec4d1e2ab0b5e1b4ef8
BLAKE2b-256 f4601b9f123091c1d31c5e6db595a0703ce3f5783233424f82bec8baa3b0d14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41ce973ba4611ae3841cb099de6e180d3e2933a3c1e5581470d2151bbeb04cbc
MD5 a1e9d714355f45b6392d9b2998876f7d
BLAKE2b-256 e7d74db9ed1d6a0883a99d8cd328053b8755cb04950c4815eda4f752e4d05e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c7219b4798acaa6a5f9f99a602edc0e53e88ce6b433b0e04165388f3010fc50
MD5 93b375497659099b4ad6ed38f051782c
BLAKE2b-256 6259d16bc97b603312a2fc7833ef06bb2e98e4ec71e6ceac416716e26cc00ee1

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