Skip to main content

Python SDK for topk.io

Project description

TopK

TopK Python SDK

Full documentation is available at docs.topk.io.

The TopK SDK provides a Python API for managing collections, inserting and deleting documents, and running powerful search queries. With automatic embeddings via semantic_index(), you can perform semantic search without needing to manage vector embeddings manually.

TopK’s query language is designed to be simple yet expressive, allowing you to search using semantic similarity, keyword matching, and filters—all in a single query.

Features

  • Automatic embeddings—no need for external vector models.
  • Create and manage collections with custom schemas.
  • Perform hybrid search using semantic similarity, keyword search, and filters.
  • Upsert and delete documents within collections.
  • Automatic schema validation and easy collection management.
  • Intuitive Python API for seamless integration.

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

To authenticate with TopK, you'll need an API key:

  1. Go to the TopK Console.
  2. Create an account and generate your API key.

Keep your API key secure—you'll need it for authentication.

3. Create a Collection

Collections are the primary data structure in TopK. They store documents and enable queries.

Initialize the Client

from topk_sdk import Client

client = Client(api_key="YOUR_TOPK_API_KEY", region="aws-us-east-1-elastica")

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

client.collections().create(
  "books",
  schema={
    "title": text().required().index(semantic_index()),  # Semantic search enabled on title
  },
)

Note: Other fields can still be upserted even if they are not defined in the schema.

4. Add Documents

Now, add documents to the collection. Each document must have an _id field.

client.collection("books").upsert(
  [
    {"_id": "gatsby", "title": "The Great Gatsby"},
    {"_id": "1984", "title": "1984"},
    {"_id": "catcher", "title": "The Catcher in the Rye"}
  ],
)

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

results = client.collection("books").query(
  select(
    "title",
    title_similarity=fn.semantic_similarity("title", "classic American novel"), # Semantic search
  )
  .topk(field("title_similarity"), 10) # Return top 10 most relevant results
)

6. (Optional) Delete a Collection

To remove the entire collection:

client.collections().delete("books")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

topk_sdk-0.6.9.tar.gz (106.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

topk_sdk-0.6.9-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.6.9-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.6.9-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.9-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.9-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.9-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.9-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.9-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.9-cp39-cp39-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.9.tar.gz
Algorithm Hash digest
SHA256 517096d66b783c9f4c1cdf70ed3bd7083402bd01685dcb67a2be3d862b67ae41
MD5 7533aed9eeeb200dd7581f880e39f906
BLAKE2b-256 d5da8ddc5d085ac1532f2e19a47acacec42926c9eb1cd6f86989b3cb9fe1e967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aed85b10bd556d9e5ba18e474679cae8af4b501b32f9031e968cc76a85a4424d
MD5 98c84951b2ee1fea7c3cc89e57d40a6e
BLAKE2b-256 f12c9ed55f7db6c342ee34c17d2891e7845e1c7595b74b391184b5709a97a504

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8e2a4b125654b200aa47efba852072468d35b6377133a3cfde9c08ddbcab0235
MD5 22f8b42e7dcf17780666f265efe504f0
BLAKE2b-256 aa0dd030d449b5e5bced35a80948d8b2b0cd8ce3ff3366e9b87a73ad4b4f23a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c27e22cc92ad8048b561f60b774940f818acba46ead82dd3eff490de63407a9
MD5 6447964be94478bd60d6a83ad6633708
BLAKE2b-256 c7d4fe9190ac3a922273c3829600e3c33017f972df22c93a79848d79daf88cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9382ca0f52b5c64debd6cc610d7880284d62428bc1f329bd211051e48b26f4ee
MD5 8d0e58fcd6e12075862084e994b2620d
BLAKE2b-256 aa7c72374b40ce658a5916ae313a3f474e823064177fbbee9344156b584f3e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb74f9b4d69573ca1ac8d3c908ab2b7e5c054a31fc847cb7b6fcc07f6b07674a
MD5 ea1cb775b5d0791eef1916a5a9f51d7f
BLAKE2b-256 09e8625b1d11c243c46ea33dd645b550f2be2c696ce0d8d73fdf4c6a09c75035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 290001dc1591926f89905f4866c82cff7b15954ccf36c73a24b724b50e104ef2
MD5 b49fc3a6eebabf3c79795a8926624f27
BLAKE2b-256 e80d8b205905e3905484bdd4281722f59df1e05b926dd87e4ae2895c47869087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e351bd8bd4ae47528fe9d2e6c9b8bc8577f0564eb1cd6ba49dd7dadbd055d86
MD5 14d32ba0292a88803bac36a96f44d189
BLAKE2b-256 0db20e6b16b9e5c3d219971bdfaf985ebb3105e3b443fd2873f88ffe749016b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46b0e550a20060640ac5c6b1a3a2c0f520349d5a3ee10135b770c0c0a06efe43
MD5 ecee695115ed72565dfbad6d1a36f5ef
BLAKE2b-256 9ba7a8b8d887506a94bc81a0ef0ebd64f89ab046f99097cdbf6195457985cab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 624925df3f468858eea22e1d0b7367fd7ab70445a52da6f2bcafccc668d97459
MD5 7e7bbda92c64b27775bd2a7750410c70
BLAKE2b-256 286557a6b93d7e91109e3ad3076608a7aee5097913d2e949997c9e5ec32fbe3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dff308511187e0e1ee26928e7ef14737582dfc49564dcdfcecb7f5e736c1a2f3
MD5 eab362670ccd32ed3e9a56ff179cbfce
BLAKE2b-256 8a973571fd92d212f8a7f88e3a79f1ebebdcaf848dca9fc4e1cf682674eb567e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e390ddc27d6dc18659c11ded1d7dec03e46a3fe588fe2baa4de670810affb53
MD5 ee34af79369ff4c8511b58fd474b1d85
BLAKE2b-256 072be4fdb8fc21ea0b6791c5fa2fc4fa916b294b75e01217c1e44bad0eb20fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5d3ebb0209fdde22936684a1d6c6ecf300c79c4d3e1334d421b00a3b411a057
MD5 6cdd1c892901571d89b7ca7f9c7fb4e3
BLAKE2b-256 17fe797fdcffc8401e8bb8ed9b4f655e75f3444102f0547fb6b393e03f6f5410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed4ed76938ed41e83d2c6a925c7414d0a6db87533e4db51f5769c4650127fa13
MD5 a834200ec7ac905d7b405a85e3fe4e08
BLAKE2b-256 ff6620f31b4ab2db16104820b4a6c2b9f086d26c4caf0ace4ccc19df345975b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f97e3dee5188b1f542c3b1b74b80239d9d4efa7c437bd3f15f621bce4a4dca9
MD5 2a760512da9aec2a7d3f2e832769e024
BLAKE2b-256 f2ad4713f813cde02f44af8ec89f8f0d1dd4ba99177e1d975e97abe83a9940b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7aca389aaccfbea560e3fc79613e288575921a0c40df54884ce2ec0754fedf31
MD5 bf127be5158616dbc805561664876ad4
BLAKE2b-256 147d3370145de6995c9f79bd64ad212912d259c26c6b7c2ef954102300981e18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8bc2f5d25bf4c8647a03d53d6c19c2e921e5f5d97ff48970bf5f298a230073ca
MD5 67f640a3066e5689521cbcf376d85d86
BLAKE2b-256 6b9173f49f8df54c8b97874c9d70aaa52fb4aa9f47e96944d6175b1cce265be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d05a1224f098e646c1219dec6ce3e3eec980a959cad988f4985b6286a2085dbb
MD5 b7cf17c43ed2dbb6d41ca6d96889612e
BLAKE2b-256 38c51165ea1a4119985044db0e73f1ac3bf9a182c141347af2ccecf7cf4b57e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 961f99542f290cf0fc486f7d29929017a21eb62359e618f19dbe5c4b5ea05aeb
MD5 90761334691a18e1a379baf8d4351d03
BLAKE2b-256 258eabdcced998fcedcf53f6712c30c7e5bf1c008020bf7d7b7d04b56270f29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d32576d9623e51ca283c18bbe2b21cc8a4f3b78d610b7be1613b01b8ac77e0f
MD5 998794879f455de4d7bed1b22c2e46ab
BLAKE2b-256 165cd1172cccb386731bbdd84343c5b74cc9ae2e2bf96e87afb46d0796f1fa75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b8fc339b185fe787e7b1d5ce60e784395322f2fce0b21b056d81789fda9e772
MD5 1e0bf8068fb9dc5ec7dd1fab7d866cfd
BLAKE2b-256 9be9214bd78c4318fbac5ef7c871faf2369debcd6ac9ed98c460eab0147ca1db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d532d0ceedd5a9e00ad7f5c8ca356c6ee4713c140c51960147f4ce10c8ac8e4
MD5 556c7384c8a83b78ac1451ae9d914bb0
BLAKE2b-256 7e83419c9547682565ee22f13c692e221cc7214d51e086eaec6ec3461e31d73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af6c58df750b974bc5a51837602d7956ce9184f904b4d07de9d17662350e5912
MD5 9139bb1c6d6708de66619c2fc1cf1a79
BLAKE2b-256 bef604a1524415ca07a75278e7ae3fa516fbd90c42d4a27157e5ef50c041eec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42146147d97c478eaf75080c65c5c8291d01fa4fdf7ddd3e3923e7c882702eb0
MD5 e35a8c91df7ac6b5fd37518b8272e77e
BLAKE2b-256 e008d38e1ba50713ac7702b10e343732df6fa18303354c56557e87c88ec1a755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85a88cc2f1368fb5bf02c6df38ba0859712bed8fe0b8feaf10978324461e5ad0
MD5 c7f3f1ea716401e3ef5bedcb76ec023e
BLAKE2b-256 6045f6ef649601f82ecd15ed9b831596e02de9b4c4bee31eec328604024a5609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5656b037b46f6c96a365614781461fa30791edc244c7110c384a3c607ef5956
MD5 58bae1df44e18b53570ff9ecc69af6c5
BLAKE2b-256 7464f0628acb14a1e8d0696cce65609c50eaeb89d898457264b9e60898281338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df12db1aec2063b479f44eba282836c38bd2d82a0a578a2576fd51678f37a805
MD5 7d1c6403681f37347bbe4d69cd83a26c
BLAKE2b-256 f1924679dd12b206b042f6744351ce8bcfd8f02de64897b49134ebebddd8b39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36f7865c75db5b98bd37e80271c9119855807268e7a37e35407559249eac81ca
MD5 76c7875bc40944466bd0298c2fcfc775
BLAKE2b-256 86752e663a3f530ad1711419b96eaf4da7496516c094cd29602af0d367949c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9680c67660040384b40d9f65ce14a803deb1d51e7e17d9597f0800ea71d24b1
MD5 9a4fd22bf8f9ab01493d395f7a246736
BLAKE2b-256 d5cbdc652e747bcfa865d223a0474063fc5c9b2a0ab90c9f09b884fd6cc3b9d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4984de706eb7ba69f8d281f9fa260f6d2660c330d89bd7b883d406136d48b98
MD5 f5cbc8c17982575b129212a4e4d9fdba
BLAKE2b-256 eb183757c02941f3c1edf5c39922955ce5c13a99468ce1cc356dbba6c1770025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8958c88e7367c8bdab4ae57c3777a230dc9f7e02c5dafad6df9ae3437ede7658
MD5 bc62550c0171836fa6eafc9da5293ec4
BLAKE2b-256 09267c2e4554fcd711aea36c02342a0d8c972fe30153244563fa1bde7260f0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6d8f5ead872a9fda827caaf16dc26fd1d7b95996f336f53a1b091dff2e0df37
MD5 a5610259ff2b7e2bf6be098c302cb2ac
BLAKE2b-256 b3bb60bd10f2e16e18cdd23c2ce0a65d595c4cca6c48dc279be6292d7eedf85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab94cc83ce2397e0c71849ba372acf834e3eac5866884d4c12f30aec37e3274c
MD5 6bcea918881f9b5dd44de11f1bd6d80d
BLAKE2b-256 f4e23ca4a239b9101715756e02488173d8e04ddae79eb07bf94c8716a53f92f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d3cef0eea0eb27ca7ffea106bca62356788f0951619ee2ca1830f526a8f5273
MD5 9c05d151708fd3957510963c5a343339
BLAKE2b-256 79e3528cd7714271488953dc91486f0cb293a6b9e52d27637607449e2550862f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a680a98c95ebc344537f6562b48d3ce0734ff2ea4c176435e701e414882c9c5a
MD5 92183e1072e6c065615b31aa7601072d
BLAKE2b-256 af73f5f1b8786b42c4b07f59ac338a2b5241670b8c106eda24ed5e77dc3175e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 578219a1d537a97e2484c325f49e6690aff4ada7726900bce1c17bc8ebe433af
MD5 af0205ea027a444d8f01202c696fe533
BLAKE2b-256 42650cb71406d279c1e958b807c4ddcd1134d04ed14f96483e4b2959581dc334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c38a1cc20ea75f29ec8a4a1d571bb3d682aff72ccfcc657a12671ed7d3e683f
MD5 30be2dca276b0091b49b4b5cccbaffb5
BLAKE2b-256 f6f87a56f06d527aa5dfb1a8d7c1b29317eead6ba2c7d08d20ebffcd192a911f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ada1c2d240120ac3d6991c3193b35247f0f955465c6209402082d31bb2af125
MD5 457ed37edc45166eb917f20b5d2f2b3b
BLAKE2b-256 057927e64e85ab4751d213eaf5e18c0c6e1a64c66755a45737f36745b235c7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33e58b1817c7267c21c6d2408dadb6951a5e10f872f86cdb64cc449a94b43b9f
MD5 762c384bed2d6214c16bf8c309ab0ca1
BLAKE2b-256 961bee8377fda0273ddf66c599f9aa4afbe2fc8ad29943e4e101c476c8175731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fcf8c295ebec5fa3e28e831cfcf3612d3381119c437435cf912fef695f906581
MD5 21f654cb30389125d5db566aff9e3efb
BLAKE2b-256 4192b82bc143d32a7bc27bc339c83445a4f37d4fb0c0633e82f0acedd33d674a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac912be6c647dfd6f252a5b684d65f849490d9e11cdbaaa5c86746586bea460a
MD5 518e3e6057356aae4dcf2b69884afb12
BLAKE2b-256 38520163d81428653f2cbd8d07aa5159951019bc7d1e59e06d3166c1c4fd231d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cff006af58580fba4163191e72bcc10e7aaac533da41f1f992db177b6f08ee3
MD5 afd95ac561aebfbd933b032a59dfbbd9
BLAKE2b-256 8723894f9f26e0245e0a7a5fa52bfe631d417d2cefa5de1db09e3b5f1fa28bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6fa458f3dbacffc4affe59eecae52f49e03cc77a4826c240eaf7feb12530d9a9
MD5 38ae60a01376df96d7d714d198bc9ef6
BLAKE2b-256 3c3cd645faa682991816f30ce4c9c37bd7d467bcd6eb13ab203374c41792dcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59bca7c74bfc3c6d39560ee10a171c337d19df7fe289c83c80aa36b2a8706502
MD5 bf8d8f5839fff88f008e9972279fb9b6
BLAKE2b-256 e73ca8de1d21243f8b9cd4832fbba94c869f50f1e320163c2188eddd17b96d24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 55566f04ac4d191e0c5cbcb49e628104fbe42f62e8e7589bbf6f5a9e22c50fa2
MD5 673de1cda432aa65e7fe8fd82a1c3849
BLAKE2b-256 2cb81819d2e64a473a4853a0b7e58b97f15c8bbdecc38e16bbe6c3892e74a13f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 873ae0c3c13b089b0e9676cf5328a6738e9834767037e5acbe43871e3ce677f1
MD5 a34123842d26f41d7006ff3fcd1d47dc
BLAKE2b-256 4c30a7ed167367572843fb339adb8a4e5b2d4bc496d3046b80ae84102c6a0c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed7d7c8bf958c995a0f080af63ffa13317b626617bd147dc834173346588f2a4
MD5 719fc9a2c0738a645e9e8f585928403b
BLAKE2b-256 921bf0da5be1f6794fd614cff6d24fd0b973cb2ea4f246b234418ec3b44c4117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa73cf4121a84f6569c22dcd129978a24712fa8b077f40eecf2a1bd8aea5b224
MD5 9dd0d1ac61c571b13a048121bfced3c8
BLAKE2b-256 7ed8e481b84e884a395d9cb466b0f4b635addceec9c6494ad364ae54c6713890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49df1e170c2ee4ea9444af1011143f7d303aa8de0bf226aa751df05fb8924e04
MD5 a40b5d325de5083c24b7ab7793f72de7
BLAKE2b-256 ce9e1d1901dc6126c86a408f8c1bcf77638018b3e6d7f6a597462f037ad91f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd3a56f6997222756e8d62f7bee6d59b7d97b2bb4e80c02a916c16a97ce6d15
MD5 53b4cd677c04f5570077b8e5d5fe741c
BLAKE2b-256 c9ce2dfc7f2378fdd178d9f3c4245daedd9440727c504dfd7c1fbfbff645f1c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 554db4405898500d8953b2dd8c72e8c4bc7091a95399c67e7bc16544c3dcb19f
MD5 78f82fa65034bebf715e7ecfafffe755
BLAKE2b-256 03c44184acb16102964114fa227e2cc77f8cff63b33c91317888b97e67c17342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 576eb1a371688ef4ad1025531a6eef89cf9de8a81fc7c6c4b69d10afbcea644d
MD5 e5c66727c42bbb2b66c94ea98378c6b7
BLAKE2b-256 cfac994547e2bb25db99bd21e1069c5df96baeba90a72572da42566f2a7297c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e92d0e1495d6dc0f703f993d090217b54ed54bc4281c11e8a663ecf85cd81988
MD5 f700e0dfc2927c94ab64bf998f94b6eb
BLAKE2b-256 730142e5002fd261156922ef9f262f42c9552a295018db43036fa09fe1842cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1dca790278be03f8f9f1f7b452eb431fcd99e91f3363c68431b9e02746e7d300
MD5 b9fb449969da7572f87c7ec43ba96cb1
BLAKE2b-256 f4af16ced1fdf0bf8e8ec4d313139112e610535694cc133107debc7226d9e9e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9602ff3b07db7e882b20e5b7ac121013d816bc3e963e182bfee3515f7609c227
MD5 ab0ddc7ec4b0ca732e8476d5d9fbc684
BLAKE2b-256 878bb27bd43261552c6cd597e65860783201f2087eb90e16e57ad1607692e490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d5ee5aeea31c4146faea11f73e262626a3466cb021dc2164bfffe07be16387
MD5 28c7c13954abe2b7ccf3031700817700
BLAKE2b-256 6aa40f96d98c3754a04be00c48bb5cf1bee71af9aa2045f6eb847f40974c5b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a1c4cfc54bc6cae858c201cebc6531f7e4ade6f108bdc4103512eb56aa2322b
MD5 7a8c48442990aba8e8cd01592c309d38
BLAKE2b-256 c68c17fda3447c244017d348e85ef32295e17e8daa003ebd26b7ba5a1b4465ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 16d67c8dfc6df88f32d6ca912fcf09842f22dbb8717d9e75e7358826b5821bc5
MD5 b5d923c4688e980abb4c6f1622302da3
BLAKE2b-256 899fe18e3ce5a4c7cd20e711f9418e378491f3006bb7ca995ca0f59094502ef0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08a43285d2db57616d760df7a724eb432b231b3c99a02f7ff4b0c2733482e483
MD5 268008d65c088f6954bac7ca2b236392
BLAKE2b-256 5ab4c260b2cdf0dfe7433cceebe29bd29855902ed249052d6ba1667a0ad1efda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 859ffaa9d9b551e18a46bcd52cdedceaa6687cfc7e12cc0ba740c7d27a0818da
MD5 246f083c728908367e527d558380297a
BLAKE2b-256 e1c096eb7890770fa65788e9929722d9e4322d1c0afdf67aa5ac4b2a61d2a76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12fe99cb38e14eb248b4b50ca4692c703aebb5109757eb1643067201c8dc37ee
MD5 63d468c0ce95eb7b46177c2d8d7660a2
BLAKE2b-256 7cd48e9ec7f73110acd8b3ae1ae9a619281a79c4cbc1ad9c0f12999b2cca9894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38d5e5d10c5f7d9dc8e64039183c98b52163ab99de4d67c57614f3601b71c04e
MD5 cc39b5bdb1b8fc04d8f654030456e7f2
BLAKE2b-256 5fdb505dd1683ca8f27aa51af077e1ac2b9ab6c8ce2debf025841d102fcee86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f944a98245a4344edcc67341666169836ce408c4e2a60c3a4abef3a67a5ba245
MD5 39278b3f54a12dec74350c952e519ef7
BLAKE2b-256 8fff71b0f566e11d48854eb7b924b4d5a2c43f73bb6b0b95e9c75a268d189bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18b4dc844d4431dbcaa08b6908064b1c5ab15c72d5d2fa67d9cb4619796e9c59
MD5 6d48e171abcc8e49ad1266cf9cb2f2f0
BLAKE2b-256 8e51a1d9d77b8faf8f1021aeb98615c57e84f3dccd98020c948be616c93335df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dcd67d5c798acefc1f55550bcb82e0d46bc93b24a3211e9cce027343339b6fe6
MD5 575602c611464d96de5e5c194ddb8616
BLAKE2b-256 12a6d774df7191ef78b015c9ef622d4d4386c09a460dbb4b30c1c516635e4b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd668cc5e94810691ff35caae01af2870cb15d8b85502bf891c6298e7c55df81
MD5 75c4483f371402835cf7ec4986907c21
BLAKE2b-256 9592323bccc1000bc244e2c0f21ecf51de0984849e9ed97e5efefe02780ccbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 045f3b7c25f7c0e650de6f891c88c96c18b6a887640ae696c1c7d3502688ff79
MD5 b01e3f0a320be5c6619d8da8622d6f23
BLAKE2b-256 f13ad93917205805a1bb3069336838eece42ea6df235d9ee028fca212c7eb305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c197403b696a0a464543ac58092a972f18fe95e486fdb6ced883dc7e75a9faf4
MD5 6d64d675fd5dc5a88dc9dde2e5246193
BLAKE2b-256 a392d6b9f99d9f4f2c2cf3741b54f06becb44f07e00c15e14bf9cde670eeebf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67702ee7cc5c223626e9826bc6337959df6cbc373e183fb63b8bd0e3b4decf9f
MD5 c42c0c6b57bfac32d5dffc8f74ef5d1d
BLAKE2b-256 43a944030191d3f2d0e4a5669276fa9c912cf4a3dba452800fc9f03d58e8e1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3a08e7c508def942d6978f59c6843bbe2ce336a94dd1d7b10260c02f2cf25d
MD5 72e5199f1f58a11bc05ba2bde652fd15
BLAKE2b-256 1fa9c2672f7dd076447e112060b10dc1e5ff7829958b6ac4ef4b707d7208002f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.9-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b3786d9edfe8f47d56c8dded9ecee75c7e09e8f5d609ce0bccf0800bcd8e1fb
MD5 81432610550e1fd0adba2d52ddd9953e
BLAKE2b-256 497265dd249f555b5d7ce73435daf3c882d3b32febf4a5a6de1d430ba753dbfa

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