Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

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

6. (Optional) Delete a Collection

To remove the entire collection:

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

Project details


Download files

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

Source Distribution

topk_sdk-0.6.3.tar.gz (98.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.3-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.6.3-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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.6.3-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.3-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.6.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.6.3-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.3-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.6.3-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.6.3-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.6.3-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.6.3-cp39-cp39-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.6.3-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.3.tar.gz
Algorithm Hash digest
SHA256 3b047df6b872cb34a7ea58e571758d8b861709d2ea40453041a6f996518af11c
MD5 48e198f6d1df399c7a402c38b2e79649
BLAKE2b-256 f6112ab327b790f56fbd072df4e64683b25bd567b67727ba64847e94befa2962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 858bd7234449a6442139644a4b93dcbbfe85c318073f15b1a5891e7b1f129aa4
MD5 c1028aaf9939df41e581b8ec8b592a54
BLAKE2b-256 274a193b1e12303810a30458f26e022fc47b87180f38f734c7d5568ee9010fac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1eaadf058cea7770297bbdf3255202788d6ef583a3135669d321b938dd3aeb36
MD5 9f841f1e77d2d422376c5434c7512dc3
BLAKE2b-256 f945b82f9a305c3defc8af2cf03eb82950f5e878bae57d8c6b8720aae45f6d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eb2c7007a2a127428d95dcc0944e9fc92cfe14f43e6ff205f4b11fc6aa8cdfd
MD5 75e74724a30a5d15ea5b36caea22ecca
BLAKE2b-256 084517405f26a5c40f88b8d47b7411c4227770106163f9f344b9f92660268d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2900d169577f411068a4627e003f91c58fda80f01712457d463f7c5e913fb7ed
MD5 aeb78a109a9b6bef700d2c6a20ec5bf8
BLAKE2b-256 ce17b62a8b6d433917ed9f5396bffe0a7a3738a5c080981d21412609f9d95199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b02951d0448d4b361a65df9d1a72991cebe05a406e7d7230c6ca626594fbc440
MD5 f4943cc033801a91d0b942657d27972d
BLAKE2b-256 e14cfaed749f991bda4f096c282477a06b51c94b7df650ca2150d18e4f7fbe74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ffcaad1e75ca201168b98f84fc00d38c00eae20c5772e38e58b48481c691a73
MD5 8868454976dc0465965a5dd711a3e72c
BLAKE2b-256 1f9a8bcf739b3f00dc016f23fa27d6a673e7f57bd6af42483680326d4e66d795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4e55d90c3ac462bafbda239c94651fdbd4d055fac72559f6ab3605fcf45e9d1
MD5 631bb517c9bbd16a415dc098d843097a
BLAKE2b-256 54d316da8b362b68bd4a57262c07c6a8762b789ced540627edfce3c65a3ec1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1664f52fa259994e5d47300917219c303992782df37159bd302cb5ab3b0405c
MD5 407ae6d712c264ac885facc0bded5cb2
BLAKE2b-256 ffd754787144e568e72279f670b2a65f1ec22f5dab6f28d612fc9629ac69fd01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b475da95e9fe946aebfb44f7722e2b8ff21e686b245d63fe4a455c1a08be7fca
MD5 e96f09ef6c12c1ca3c72cba86a21d498
BLAKE2b-256 98a1a80eed7a2d5df67e6a11a5910e1c40603e87578e0b8d2d5a3e035a8bbf40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22b644463d83016321b4ca2918802c5e3c70d7cae0f73716e859a5b62a40fe13
MD5 7eb394e98e988fc06c0e2f45aa87edf2
BLAKE2b-256 33b576e4ce48227c19dfd1a0840fb85d87806152992fa7acec8a5395fb474a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6bc63e1a90d7405edc8c88cf595f975723df5880fd57665fbe1fba7b0087363
MD5 29b5e7e43d66b91636eacb3973b0227e
BLAKE2b-256 bf133035eb35e265162e7beb0c824cc824e6a4e5335d60ce953250c1e82aa186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46964b92d582aab0f9313e50344af35f4680b725c8bed623843b5d41b0a63422
MD5 814587aa84e1c543122cfb46916a43bb
BLAKE2b-256 68e09670f7d9ea8be4aa5cb566c76aa8b15fefaf3bd3825d508c18d186457c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fcac1f187df998f54b20add89c95898c1b949bf38abb9ff2075bc20d0462717
MD5 373b4ee4c13a6d56d9020a2633acea2d
BLAKE2b-256 3b1ba3ca5dea79a3b0fcac686cc65e0bf4e04d29cdd4704754dee7f46e778efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a5a66ad9d1e31d7631bdc550115101183e84b0da88ac836e68f1c13ad07e21f
MD5 64c0b123c607adfa06aef120e8ca6eea
BLAKE2b-256 83b23e7175764d1bd35952e673471ebf64d8eaf6376f0675bed4911da0b86d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5039071c52de5bf7708b61654f247c9d34891ed09123af173a79c41e6f88059
MD5 5c5577b1893485404e83dd6c7e034e80
BLAKE2b-256 5ef7116df38fa6adb6dcae3146630ef0e9f744febf04cf2222859cd9f3694d9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 14545df6e9f45ae8ff7dbe5432df7af0574d66cf261c2292401b72717dc311e4
MD5 2a6e394c0184d2dc4e8343edd32c8d23
BLAKE2b-256 d397fa905dcf4e40db70921b5f9dfca97dcd2af18dceec036f11a457f0731fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4232f67d492a410abb08e8fcb11bfdbf3bab7793b5264f8d18c6fa398d7b08b
MD5 e0b6dfa5e7bec2661f717fb7b1edcd60
BLAKE2b-256 f3ae257911860eb413ec74c6235712b0e2a2e074bd59d76ef2702abd679209a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 044a2deac5567ce0412ea9e9d7aca75c0827b21073355cc1853a5eb17b1cdb44
MD5 92865c7f237f3d5cbbc11b627d98672c
BLAKE2b-256 7bb31cc5dacef7c8e74ec145e785d26dfd651321c4795e0f57579ee8c75ef83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d68dce082dc969a91b691f57f07825ed774739f5df7923a4d6dbe4a5a78d333
MD5 b0df3953408d52bb43bb21417068c2db
BLAKE2b-256 8e5a413fadbb183ae2fd287939b880e7728f45bb59e7a98f50080958c4d0a6ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaa6a99c8747bcd284d85399b54a250d7a68c2064e066a3d7a8dc1f3c2fbfe86
MD5 7dab93543a8dcbcbfa0abd6ffa4a1e6f
BLAKE2b-256 8fcf693d9c1c43524d3cfb3c2db7fcd3a54e4942426e51ffeba03f6a43dbf18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cfdebdee35ce5d0dd6cfaa9a798efab3ffa7846b73dacb2f9b29bfc09789c69
MD5 74f78dd74c7c49701edc88840860a64b
BLAKE2b-256 bb640fae86f1637a908b49e7d30e0dc48e2b87b04be58da5af562a23cbf21454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 891a0fac30ad5d6b05985314e95f8afd428a9926e594c57f615cd873db3bf8d7
MD5 1d4dc35bf7457b1a44dcaa62f3cc5c0b
BLAKE2b-256 18dc11dcde18631bf821ba81ca421fdbc568806d6aadce629a3a85690dee5eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7963c44fe71b6a9f47a655ac897374b46f419dd96fbdef3609232ff05dafc186
MD5 396041dfc72c95da5ce2e056288015b3
BLAKE2b-256 a549c6fba0fdc1ac0a88f9ea9ecbf7972286a0c648891e14c796feac4f18bd7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c87e03aa06aef38dddffa6b1f3545a514f5a668f410a4a3a73986d3a10a6c747
MD5 e9a04df28750935c7fdff2f6c9803c2b
BLAKE2b-256 0f247a50c7719b530cca6ba08e9e039b29c047f68e1d2f7e4e29625ac21a7851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1259bb66a1a93cb3fd5e14f62cd12ae041ea6524c9509a849907f7a1d412565
MD5 7f8b79038b9f0fcbc1d4383ff70af9ce
BLAKE2b-256 2c2301d8a0a8816a92c21a913057e2e80b39453130036ae6ec7f3f7e24d1747e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42967c4494ea3526fddfd36c56341a41a7414ce41c631c5821ccd71778b9a0db
MD5 32cc44630dbf666e59174dfa4aec9a5f
BLAKE2b-256 01e5b685e1d764a24ed99e874eac91f8f15a4eb33294cfdb2e00766bf1a0653e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0921a6a22496076763ac0c8ebd3a3d615dba05805ec9801ff59781b8d0e0bf12
MD5 5274073e2d674b64c02f4169fc2c355a
BLAKE2b-256 b93fabda144f92dc5043a50cef7b7e0e3b29d194cfde8a210edfcc4776fd28fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f4d3bed6d16f928b7c08a373b8418c85216a4e1f898123561c2fad6cfbe8d1a
MD5 e57111afb3357084fa0a7bdcf42db514
BLAKE2b-256 d5c6c3ce8a9e7b7f08966f5ebdfc9700a9687305feca7b06528b29a8f0a1ca99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3891e9a12dab4d1f7ecf326279a4ea85feb1ea217e654a6ddbce93d145475cec
MD5 7dd7ecc08a5caa4d397cb909f6dbd1e1
BLAKE2b-256 29b05daf1725f10a0939e05dfc26c682b539e6940bb5018e8966b8477578da5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c09fc527f482038d3b1d957226a7a35a5b20118028bc5e17e04f84468f718a1a
MD5 8bd9bf554792fe618d3e96c960971172
BLAKE2b-256 fa8e89ae569d30bf44e403a03d89c786da94671e193ef89963001d8e6ce1f7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b4daebcc15914b1a3719351df8062cb1ef77ae5f6949a95c77403c3ab05cd80
MD5 00e38e9568d0bdb49c15e4cd025eb33c
BLAKE2b-256 b65b15cc282d426ffd7930f794d66d16b491516a856abd5e2855f1f7350e5c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e92671ad6be2a270effd06e1a4109aec3fdd884f4ed8a50a49ff3e7870b3123
MD5 29e73efe1fa9b01a92f2f957241d5684
BLAKE2b-256 d657483aa50b6232bad8efbcb4aa9948b122b6999dd89994fbfb435551d5f7de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9211160cd35ccef17a6cfcc5e2b871363c01aa85ee340734c70d9792e16982d
MD5 93dc74219ebce74e652d47dc4f36247b
BLAKE2b-256 16f27b6db136a4ccd325ae28215e2c31a648479654b89939d104d0862e03a460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3deaecab50d90f2e0999928ea9ca144f61e4bc92f1cdf9b46f032d826728cd40
MD5 3444ed8dc818d6a29c3ea75116f49db9
BLAKE2b-256 2d7baa9738efef50d65b90129a106f7f2c458d88f180fed3a35c8070100443e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d53585caecd8b83c9db686e3a3e47a94656818f1585cfb4844bf268710e9f24a
MD5 e7b30d350c69a15c342494799a08bf2d
BLAKE2b-256 0ff1339cb9e99fceae2dde46f3306002563e0a953cc7b95a07c16339d17ca57a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c3ef8ffc4c3744d2856aec94043952358846720de97f7c15410533c541b1c29
MD5 26b8fda1a5d648a1ba5487ec625dcb44
BLAKE2b-256 44f973d58094ad59c31850a5fbd078170c56d6a9f76f4ee77745e74e5721d2a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fccf431de93ba17c126fe86117f6fd874432a0faf5b50c8c9ad23411bb50646
MD5 818e30a523204fd9db686d3d11bc8669
BLAKE2b-256 85cf0faa9874da782b0ed17dc8cd81a76486ef46d11b73eec900a680ec5359d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47d91b8443325fdd77e23e428e5e52a419cf88015648fc22dd7faa8eaa10ceea
MD5 91cdce7609aa2f7b243e76090b847a28
BLAKE2b-256 666633ff17c0cb924ce4a1d1b80cde0fe6544453cb8c43fc0d49f0fb48a5821e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa5f65109c1d4ea172aec13bd074027fa4f0d4439a349c9bc6b9bbb97f1a84c2
MD5 172256b2e836a88c020306637c605df0
BLAKE2b-256 611d2e26492eed2eedb41bbe18b1ffecff20cb449dc8a0499df26d8a6d84d7e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b40f60e321f9cfca8efe78ab4fdc143f0070f3d72f116b534838fced89b9b73
MD5 3f98683b4f47a7020815782e02878781
BLAKE2b-256 65e6e4d1f425add267190a327be910e92c5ddef6db555abda9a85432590040fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3972bcddd5760883c7e9dabdb2a75caa99882ce7d08c62615934fea8e6c4ab2
MD5 4a25ae8b5b92c88f9b61d2d5f43a026a
BLAKE2b-256 ee59c97dee21029e3ce15db75362f0b2162c018538cab6cb3e62ce2d5b0850cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95ee6ee4288ea17471eb0f5dc1151232a8b72ec242cf3deaa6ed395ca5c469cc
MD5 585ea59d56fc447110fa53e634695b04
BLAKE2b-256 f54068b992188599a30940705502e4aff9971fb4624792d4740964f744eaa4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 432d236eb728cb053d32a57c525dfca41c4f16934ebba5706f4f033d85eec8c0
MD5 9f6a9ba374f205142865c6481f285bfc
BLAKE2b-256 1f74f9c88dd0ba842718a63794e69327047e05e029cabd471da86ab32b43573d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 11282255793220512eb83cfda7ed2fb0c943d8d6815f2900ea4b1ab85f12dd1d
MD5 aec07cd42e8729f0977d82bdc9623966
BLAKE2b-256 753ef073b07fb55217cc4dc2fe14d1e9890a4ec3b326a8e79d3b030c0844a972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adcef14ba66b90b42b6e3cfa8b84c3808fa4bc2c03022ac82a72dd04cfe5201d
MD5 81584fa6a3ca77cc356252664fe3bdfd
BLAKE2b-256 208f8e4b3024edef22f9ad1b689031cbf1f8db310ca36bc02bb5a540a2bb1c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e00dade07237396c810c86b0a3997ed36fe0b681ab5668f29b2c99d4a30ce7bd
MD5 045a154ff37a50a2aaa56a867b2b144d
BLAKE2b-256 ea764cc142690eddc62fadfde70ded05ef5f316aa41662f1baf845c468c176b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b895e36733e3bba8bfb090f5fe3e0c9d61d68dbe6f84a9ee28f7cc0e92dd2c6
MD5 906f1928405c6915778d477836e188df
BLAKE2b-256 5eb56af61142b3394574fa2a9157957d751c0b6c74098eb55a833b455ad9a6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62bee831716e5e182968c98e1a381674d734e52b1ea1169a4c2d7ed61202528e
MD5 34a8745a00156765b3fea9d5785d5f24
BLAKE2b-256 3966e7b52c31ef6a9506c80cc35346e9a90eba72d63394146628a2c4270d45bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc1a9d0a41a06b4f3f2188bf581a0cee42d46c5e1ea52947f7635a3981cce893
MD5 b0f0e29cd30d7cb1c187b52e7c8c5177
BLAKE2b-256 054d4c64be0a02f798b4d14956a23c629723e330f4bb89f90b20f0b55a42946a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56789ecda627d116a9a4b7b15f840cf8341c4e0246407fe2c580acde76bde8b9
MD5 35e1e6de413a30f874d363e3327f48c5
BLAKE2b-256 fc5bfb4689cf24507f9ec7088ff5244aa2e0020e335026f16dcc287e8794395b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0578f47dab6854cf0e88aa4d4328d7d75352378207ffe8e5ecc8d9ecc77665b
MD5 edb0e06b83297412d34c96afca396838
BLAKE2b-256 aa088323fc53231823c4ca1e9ca45453333802fe6dd6644e6ae28dead0504d49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c87bb28e0ad50c2ad717fa1297f329f37d6e98c3a3d4228e0959966dec0ba614
MD5 f76cd712da5f42a2037b2be059574241
BLAKE2b-256 d3cdfc6427a12e7f2acbf1fc44e51efbe05d42e11027233138f7cdd710938bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e709bbabcbab5d6837d8f4504d50aa9b551ebdaa4fd8fd1a6b1b37e4a4bccd6
MD5 082e0808be9fefb7788455edf9eff06a
BLAKE2b-256 7c347772bf85efb437ecbd96a5c097f6321dfd08299ee97464937e26decfac42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 784e3e23ad5848abf2f9ebfc9982873977fb2bcffaa65c67a867aab8b76d45ef
MD5 c235dcf74586c3e7aac599f2bb94b6fc
BLAKE2b-256 32cb37546a7013cd86f6bb91088a48d5a464567a60ec02ea81390cae5124f32b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8a0828c98375a6536cc0d584716896845b289133b30c56981857648a03d57b3
MD5 b34fdd875ca0b3616031266688c9a2ea
BLAKE2b-256 8164dfd6ce967e037adf32274243f4b505eca8ae06e1a96fe1b49da712f146ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8d5ee45e14870b1a17360337a48af96608ff6b8fc86fe811d211e567760b72a
MD5 828f8db455de527069fac1e044226726
BLAKE2b-256 968018f9be5af805d1cbcb2e7e2f5ca0626d61f916a562bcc08f1effc19ae20a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 24bc7aa0a5fe2e32f4e043af7a2f3ffaafb749f2cdf980f2ede7f591eff641b1
MD5 39eaa74e01d51a83080c82c2ebb6f157
BLAKE2b-256 fada6b860fe62d33cb27f6e3ced5c93aeab6743395b8b41e86e50ba65249d3b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8f517efd13449492864920ddb14cab3c122081db44756324e95ed855a1cb78fb
MD5 3cde1101d14c69941042d39db82d2895
BLAKE2b-256 b1bc0c9c4b8b05295773dcfeeae79869611e2083dba6af8d28057358bace9115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d3a73230ce52fb42c73dacb05c0a6b14a5384a5f84a6236057114cf2ebd1aed
MD5 f41420104227552524a63551d7e975e0
BLAKE2b-256 237a183b821c4abf03273be95df94052567191135cc0b8e4c4e547475b98b191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d7e4225debd0315b6150f9a988c90c0cd8cab65718d28653680d1a4f75bc7e0
MD5 3efc109c8e7b4574bacb585dab697fe7
BLAKE2b-256 34b18522118849df48b233d038029e150d99775c945a2b71bded2351bac0cca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddcb177d613ff00e374d33fb0f70d26b8872c0a81c2bf501aab50a49c48c9bc5
MD5 adf4ba03a86ed32f8dbbf4f28234c87f
BLAKE2b-256 3faafceef4a0951a897d25bfae6d95c9850a21a42e5dd0ecf594a31b36baf1e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09f466cb56412a9c95b0fe3c436db37818369e990bd16334889360fbc3afd84e
MD5 688c6500e80bd44cc652f9f76606d689
BLAKE2b-256 6a1d1b3d8c4367f9cc1f7aaac0dd50b32ba7407f3d0afe989432b252e127c28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53589364fc2e587372a010f3d2fd3cf3f17ac1a4f7971f1e8f017fd58089e4d6
MD5 3bf798baf61827b394a5ba68cbbd7866
BLAKE2b-256 f1b26e5f1500a08cc4b2b79ef404b63671c74beb9b99ace4fa47594d5688a247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe5cdb24ab7bb8cccd1750706ce3d8a779f1505f70b882e6335279b2d9882d47
MD5 f4f7bfded43d918c16cfef0f6e25cc8a
BLAKE2b-256 fd43305c1ece0afbad9e9def1a680025ae95d817b2a58b698f9a531814143e74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 345981525c3d2ac31faff7640a5d9e1a6f6c161a1c1b532d6650d44caca420f7
MD5 baf078b3ca692195247e361657d7f6e3
BLAKE2b-256 161cd11ad8a4eebe6d66f454694b910104d41f0c2cd0b9220f7458f0c9bc10ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e80050b30b2112c5dd715f88581410aad1e0958980ea02839438afc1c6afc47
MD5 82fbc177df84c8b559e72151e8507711
BLAKE2b-256 dfac47a3dc32021def6da641665c81d7cc835792233c4f23f60adbafddef9699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb353dc349566b7d219ba213659e51b83c8d9cb4a215cdde9bad541ab388b7ab
MD5 0f22d18ed9bda326be859cbbad9c2e49
BLAKE2b-256 b66864c1982df836904a775b2e56b0b56b666d98460c6e9c1b1fbb4f678a257a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51d291125014930bea87f23df7555db548f78e9ff33cca6ab891fde3b9348c3b
MD5 41b167b8057ce05a644db5ea43ae4c89
BLAKE2b-256 c4ec8c9d73626a39d86affea4d3b03bbf39e12cd134c668220418713259bc9dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8942d997fac9bdbe491fc668195345e9f9744a57c93c48ffe7d69e6fb493ab5f
MD5 27dd1c8bc48a18a8386d7ba7171b13b8
BLAKE2b-256 6b7471d601cc5ada36d974fdec03437cbfab274f89f8b99c53a56afb66ea19b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecc62eae908df5d94c50f3e2ffd9e2197414dfa3cc1e8e69529914da07674787
MD5 58cceb6f664ac11ceb59f7eb4eb91c34
BLAKE2b-256 4b8a31dcdbada1dd290530fb531e58586368018c5c506fdc782eef5452ae1621

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