Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, fn

results = client.collection("books").query(
  select(
    "title",
    title_similarity=fn.semantic_similarity("title", "classic American novel"), # Semantic search
  )
  .top_k(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.1.22.tar.gz (142.6 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.1.22-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.1.22-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.1.22-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.1.22-cp313-cp313-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.1.22-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.1.22-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.1.22-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.1.22-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.1.22-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.22-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.1.22-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.1.22-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.1.22-cp312-cp312-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.1.22-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.1.22-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.1.22-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.1.22-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.1.22-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.22-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.1.22-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.1.22-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.1.22-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.1.22-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.1.22-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.1.22-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.22-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.1.22-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.1.22-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.1.22-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.1.22-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.1.22-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.1.22-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.22-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.1.22-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.1.22-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.1.22-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.1.22-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.1.22-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.1.22-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.1.22-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22.tar.gz
Algorithm Hash digest
SHA256 368708ef93ef41e6fd94caca78e9fcb46b7bc1b7990c3aa06bcf37e86a23cc98
MD5 480fd7d0316e069cf65e8b9be75c7e88
BLAKE2b-256 acb7a7d9f6431ca7432824f6f4acd87e18accef5604d419bd2cdc9e64959bff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa5ab81c73cac873162cd5d8e90647275745ba90314916c0fbda71a2891e18a8
MD5 4e8efa96336b844d127422a18f0ac6e2
BLAKE2b-256 3af4a95823dd6f19306f935bb0ff17bbaf15c82f61705e8dad8056bd2baf2239

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a2e299cea85f8304a49a7e598c8bac23937de7f0b4a612bcaf23b60d3648936d
MD5 1ef2d41559f1bc79f807664d53762da9
BLAKE2b-256 d72e0396fd18c5923d5800f2ba6f5ba366d8377ec7a7828a2eedd3e93c845945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7611954493d18c233d4b53cc401c608088d4a457e0d143f84ce2d51318c36a1
MD5 98c8a89d280aa43b5c57684d187d3d9c
BLAKE2b-256 c212c58efd1503bd15b85775fa2318eacceef2449e13839dc605bf9f9c6eafb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0350ac3ca7f6b9ca0c400fa6f626c24118a3f82312a8ed75094d29fcbfa80289
MD5 427c619b3d9416b7d47f496d18613155
BLAKE2b-256 6fc4a0e230c997910edb101c130d6cb53ff46ba37ffd882b2a9301e29356201c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ded94d5397ae029d9fe9f38315b14f0d4af9fc58a6923bde231441075c82b141
MD5 8c1e091edd103ca7e4f915400d5ec8af
BLAKE2b-256 7e49e6c450c58986ca77c529aca1075815f012fe4d36a8587096c57d755c0355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df4b029b235ebd1e902a0f59e752402d7a4b580c624fc10eaf91381c827ebe79
MD5 81c86f8aa4efc9752b676ca1ac8f47b4
BLAKE2b-256 681df206811ff8bac38e769f4fbded21d4299fec44102193a7898bb9d7d1fad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cff6d449142e906d2cd791baa604f7488006f1511570ac020a470f50e04ec39
MD5 95e2b5174a523742b6ec326434e6fdb2
BLAKE2b-256 882514c59c604f14f1f8af61f200f0256c3bf44fd9f1787ed12d2456fcef5bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9513dfe9c0a0f4ea0c7aabadff3806c5af39335f3fa306ea76bdd11b9cb1ebd5
MD5 f71bd3c51ea4f09d5145d67612f12c54
BLAKE2b-256 db8ee0333e83e6e608e083d8eb737025580ef93380fa21453e5860e601fa9dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbbf3b0118c4b4947e02ea32b293b5fd220090344ceac56bef3d980711051b6d
MD5 df84f494dbbc98a6e9645ee370f29297
BLAKE2b-256 03e5c5fb05bcc336d4fa1b682600702f532f7a156cc8f32d7bef1c56d373bd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93e04cd42c8b70921da372ee9ec0a365efa572e261c6583e8b9e6131051246d1
MD5 6bada5206cc58ff217431ee7ae8479ff
BLAKE2b-256 066ecc4aeee1eef6fb5b1f0c918b0a8e6b49acd07509836b4d6f752209c07568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 092d26c6d39eab7bcdc1748587208ea00f1514ff10b3a3dba310d3f0eef464d0
MD5 802c628ab8ad770497ed1fc868d90138
BLAKE2b-256 57a589ff6b6b4b6ab2ad8ac28acd161482f27f72cf0662b328667f8a5a907228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13f48432c25a04a58b6bca9ec16e1eb3f5fd75732b14cb59fdc0a976f49dd7e7
MD5 6653138e697eb0fe1c50c1cc16204862
BLAKE2b-256 d31b9a41774a7deaaca6848fb77c80e18452935c098c20de76cadf01a7b44ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfb00b9fc7ad0b4dc84efc295b432b499d7c7b579301fd19f195c003aba86cbd
MD5 cd73a42af6e51e78e473192f70c47109
BLAKE2b-256 8e4925f85990e5dd8c7fcc547a4b878fe17e75d3eb10212cf26ac2c3b3e34935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50f8389c377c563b64eae113347fc759ab0318d185899feec5f248f43d0887aa
MD5 740fd277579fa3e922ba2db5b0b0c2c3
BLAKE2b-256 7d8d5f19b179a5e54cccc3c89d15689aea211994408fb6190aa1fe9ac602e7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df5a8301b13dd8898217d2019f9ff74b01e6c99c8fc974a5ede33e9236072891
MD5 89a02c0ee710c87f825390c44abed926
BLAKE2b-256 f0dc0082c944626a40107d8c9f0e94368bb0a91c0edc7910d279f121b269d64b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 459c90e32d234ce267bede31e144395d3ec8ea93ad0c0f5f7feed0238db9286c
MD5 068558af9f45ec5e21fb782eccce0b8e
BLAKE2b-256 f724445ea8ee3e8ec83b0766419eac59bbcb88383fc501127cb72c6859dd5ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d1dc89528d0ff7adbea6234ac4c0f7a7b917c80d51def3cb84764862d8554ac
MD5 0157bdadd489f347265d5b510a809df4
BLAKE2b-256 5a2fc797ebbf990e707a06b6437302a8f9271ceaf61005b25d0c315d31a56f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca68b2bf3a95a1c6eff297991b6f7c2a33cc24339b382983090d898cc425a52b
MD5 ed0a2e2c028878fc5416bf2953eb2c2c
BLAKE2b-256 b7516ac08c02eb0d135e23fdbee4f9bf7ba3bec66ea09f6eacc2bddf33f764fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9693dac977ee79830594308e79f0f08bab90a02fd6b66776686ef41f3ae8458b
MD5 1c31cc4055c82add8f62baf4661ceabe
BLAKE2b-256 fe22c6467d0e737fc0759fe8684cc00a39820d8ac38fd3c2f24e7c76ddcded5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e667e3eefe9bf12ffcdd415de99b0df7a033b11ac3dc46a5b76138c6649ce46
MD5 ab490d9a3727597c6208aa8541f7f393
BLAKE2b-256 ef23e073f9cb98510ba125a0a79e9bd5dc10b0598c2f2857da150c94334caa22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92880e72391eea0fd03fc5236d785846a1ff84f706455beeb1bd218f0ec41e4e
MD5 8d21978bc911a4c86c0e68a614ea1b93
BLAKE2b-256 a2b5d1e17247791988cbbe49b3d710e229b4a9c9c12f28a5e84e6cc6ab7f639f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a91defc917447fede1f6b0772169e937f6e9e43d96c2ada418e1192f9c4334ea
MD5 02dd383915ddf8dbbc77817d46ce287c
BLAKE2b-256 e6877d312b5931f0c094435d2c0db4ee89963e7c4c89f7ac27a75c1e4db728ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e1bc4d2f43ba560dfb097d7b1ba537ba8513fdda8cd88d1c2a0b8da57ba09cb
MD5 2ac66468a99320044ced5d4d45b2884d
BLAKE2b-256 5946725a03cd9945d603c68abb02c38a6bba69c4e74d44678c392c0a417b2446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9875746cdd0d9ec0af4922441eb23ebe26b80f4e27692b04af64a5fd072d70b8
MD5 925908b84ecbd82837780673124a41a5
BLAKE2b-256 f9dce16b36bc4effb31dea8933d3fcb36f2f04b2f6e18a56e9134e7a453f88dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 902ccbac3714899186b1e0c9194e01df661822c7c9a43bba452aa37112f0fcf8
MD5 8a49bc66ea7354b07b99d422e3125fa2
BLAKE2b-256 1204fb3e34acca5b8fd6d2bb928994d9a27ce0ec78d06147bf03424c6154a167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0190142673b9f9a883710ff69f838230bf8d7d4dc6842df86bf8f120a26f89c
MD5 52713b86a2ba785900e6941f626bf9c0
BLAKE2b-256 dc5170797b2ca94511de4983bf9b4a067d98e21f5d1db56cc112eeb69ffeb904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10982fde1cfa42e813dc5a9f405efae62649f8f639f7e8fb0bf457a3d678020e
MD5 a532928107bc2df5ad9e950721c3add7
BLAKE2b-256 9fb7c7fdcd42058e30ea366d47250439c6f122d7974c9f3e069e7976d5416db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a68d45f8503a7a758b82f5d0789c6a686f8844d57b9f14e695cd5ba50dad5dcf
MD5 c5ca2b180bf7bf4f742ac9096355f23f
BLAKE2b-256 4ad7845ff06cc22a9482da5f50b6f2ee95b2dae7a778704e15dcab65e8685a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9329fcfec6a42930f91fbc0e6115181644dd88376d2d4736a112a6e402044f1a
MD5 5b888eb3dc380df31398f19e76c7fe95
BLAKE2b-256 f65dee7b54165d4da76d43bf6b08c4a184a6188622f1344b9b015bbbd568376d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 643e15d1cd0155893b84d484881da982ae85dcb02e29c932f950919840a2eaa2
MD5 136899dd7726788b6ecdcee9e5bade09
BLAKE2b-256 3b0730fafe1d940063b873ad00b61c308455288a3fac8b1ea783218878dc5903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8663fa134e8c840c32bc3d964f815bc0256be64db474c2eb4b7a44c9ff9aeade
MD5 a4de916c7b771299a079212ff5f7c630
BLAKE2b-256 3332e2ff06e35a1e16f3f5691ec232bb1ffd082a5bda11335be6767fc7090010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22ee52310be9771ef637f5e2467995fb8a575126a08c7043ae4c749c4ae9c9b6
MD5 6ee233dad98bb382729a53ecfdb2cf49
BLAKE2b-256 d88da7864d9439fdf2b5c4947133e1ad2fa2203baa20cc742d53edd888d6dde7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 380cf8f49cf5a628f0f58b0d3947bfb9b9329cccd8715bc47fe3feab63d74641
MD5 9864c4b18087ee1e26069c6670690d87
BLAKE2b-256 2b0957bdc310bc373b0eeee172082e3efbc68ad4242d1c8390e6cda38dfff1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b209bd836834702bd4a35b50ec66c0352497d0dfb1f4a4829fe18c4248693e7
MD5 df2cf5672a69d5ddd298e128e28b4a8f
BLAKE2b-256 5c310bb6c548d46699fb07bea7bf6d0919dad30f70f695a883238e56205e031a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fc793baff94fa89de8bbdafba653a64f4fb4583f6e7919cf636bad0dce26b23
MD5 740b25be573cd63c6fde7634509e028b
BLAKE2b-256 3cef59e507e59f1e0405cae28358a2a16ce51ca0b40a4650f7dfa471a2216146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b143dddbf0b0380651bb3244398bc0e453b5d2a5eb1922c6b600d09360e3639d
MD5 7c85323a6a98713b8b37482bd1c6ac57
BLAKE2b-256 ff4461e719b249a40294f381c1136650c4db54d4e97a6feba55a1e93bc16e522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9484aaf6b556c9c3b7a0849d6bd254b905e0a728f7286f1e2666d24c98c90cf
MD5 6ad1e7b5001b6df89df313b2f76222de
BLAKE2b-256 6b0d91525d42dc96b2db1c12cc8c7df644cbed44e6d0059dbcb6528db8ee4cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e4e4a0149411196e07f2271e01b471a51b90c485d8a1cf00b29e790f142372a
MD5 8533e1b2c03d6b97cb558f2c814c5dad
BLAKE2b-256 614d6971c9994808d224536d92df114442162e93981cdee6f1c9b5fe99775900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b0df8be8d48bc6339926f166bfa2880154ab8e7b29b2749405fa5ef7ea97532
MD5 efb7d8adb80a8d607c2f3bec1e14f793
BLAKE2b-256 867c47efbc99d977d8c635c7b0d99ae9f9f775dbd00de4485d3c67072090e210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e64c867c97f664eb51b6a655b01090b268e381f68d808dccdd9eeb37fa01d05
MD5 685d6de0bdf2796771ce22a3ca421f1d
BLAKE2b-256 a3119eea440121fdab0845428fd05f10f405a0c48d4cd5596bf5e340992f02d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27f652b66e67db722dd2a9f004ff638176d4ef1020bbf4abce445d59532cea2a
MD5 be16808dbadcce2edcbb1d788369247a
BLAKE2b-256 60e81d3a87e38cbe9f754bb9490932d05a4814d50fa9ebfd188364e682a1ed83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d29b1ffd87642b3ed905319e26f0f799f6c119c7713dfd89e802ea843fb5ce4
MD5 3bf6c8514273619ec7c8be12a485d822
BLAKE2b-256 a8d2a1dff47e1fb6a3f72540224b4ce90bd0c9646c95b65f01b4a7fa57eff0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 86a5612eaa84a0946354be478dc5f9a739fdaed3294b518ff98139339861c56b
MD5 05c852c406c1c3c99db5d0ee7945c1f7
BLAKE2b-256 1f732021a08806eeafba28b6ec4bee34947ad8e3f5bd80d369f3f2d3f88cf71b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 27bd0c3b019957273e40048a4b23f2b435fba56791a38b8949ee5c4fa4a95a09
MD5 eeab3999de71054dea36afd2d21bcd9d
BLAKE2b-256 cfd767ced16b7c85619d9c2efd23b600e8e77d16597a14ea0ae973a67052e179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b3e75fdbfbd5a5cdda408c7c5256809284662e42036ef2d04acff2f395794c4
MD5 5d58463fda874020b0d1098e8e0be15a
BLAKE2b-256 29aad1ec7a74e992c948e1ff112f2008c106035c95f6f616d247036d921784ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b970d92a263be69470830e8583ba48795d48bcb219e8df558cbc9faea7d6adf
MD5 800f85eaf95e04a3cbb078454250d535
BLAKE2b-256 753d25fb2fdd385dda4cb0896fa026355dc3e6eb05ebe95292ff3eb41aa5fa6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b508a33caeb463e08a6c14ddf7a89727eec68b40ca5fe2d6d66decaf3b7cc541
MD5 3d9d658aa5b0ad0fda44791ccc17c01a
BLAKE2b-256 cc09a7c2b4abcdd4a81db58c5e5b9af684d4f26c71eba38c316c66a7aa15b1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df33a78428df6170195d907d1f3cda6b431ef78b64cb0643db5dfcd6e3ce30f4
MD5 19f18dd317b3653ec975e27a3cd99ae5
BLAKE2b-256 19793770e6739b2025378d35d99e23515280d1ae79e34435bad959ee701a2525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 116c46bf3e6ca525b0b5eda0016f80105a87a1b490c62a19158f7db70fbb2e1b
MD5 44e75b969110b64523c50d9014eb5040
BLAKE2b-256 dc292059f190d9e44ba44d4efdda98755aabbd329d75820ed02ed8d34741c243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae4d313a08f3b11432133f14c14b7a34dbb150676312951b643378c3b588085f
MD5 27fb1e62b939c99af71d0511ee00c8ac
BLAKE2b-256 a9320e505855731108f522274d724ba00c34d03ee5363e592cab37a34ea2eae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58c590bffc2f11bc4ea5916e046452505a841108cf6b9d95eb03e3f8d94c5532
MD5 1b39e1ee0deaee38c96c85b606ac7f56
BLAKE2b-256 c5193dd8b412053c63297cff54ccc0a5751209df418a91bd59c323876e9cc895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 965b7f9f9e93347483686a06f08acee7840364c55dee9253fa4192fe8983b052
MD5 a74acad58aa4211b3d7f1ccc81a1b1db
BLAKE2b-256 55cc43f5329ce53aa509efda6599a5668e468b1a27ea65365f4f2a5839b53ae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db41943bdc9a91d49bcba9ccf12703ee4602a27c6fa281198ac5b3e0409f70b8
MD5 eff2f8bcab672e2af5cadb2a38df183f
BLAKE2b-256 84973d62929415a16374b28643c33b2a9f4287d9e360f30e3b72ad9aee7991bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a3ffae2a717cb88d707c8118615f96ee85825d1ff2ce499be411ede276eb866
MD5 0ac2227947fdf033d6b53480997b39ce
BLAKE2b-256 917a666354f4afa26fe0ea143026776585fb3b0ffd5c4455c32e0de0bab76a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de77bff7bb2d3470b5d6fb35fec9d10bd2673e2ff0d5b8fc46196ef7c449f26
MD5 1d9bb910a9e04148a73057d67609dec3
BLAKE2b-256 ddec5750eed822eee0325bfcbeaa385a82f87e1ba3c02d3e11ab15994c0fd376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47b58e80ff4b506159a89cb64273f76e9f8aeae80fbee34c1e318f2e7f7148e8
MD5 e03cbcb52b3999b8dabc9b9306a65850
BLAKE2b-256 ebe9bfb6535e2f87650bc58afbb35ad1da34bf3a26b5006ffb9039d4d77516fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee2d2d01d28e83fc2a70eb61ae33cc876649f751fe9409b376bf19020c5e7ccb
MD5 e3b1ae1f14174ffe294b3e883b20bfe1
BLAKE2b-256 92b7a77d5a241632bdf5bc47bc19760793849b3c9d2bd72b4f8e7100ac2493ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de82740acb23da8768ff75413f74459062319bbcc86d3ee47da348f741ad8639
MD5 3a17beee5b587b57eb80a3bb242be452
BLAKE2b-256 d340e0c82adb7340a99fb34b47bc460772654fa2bcd898191b632183fc9697bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad3a78a64ada46c0dbd6320c3c9803aeee27f61e2d276380226ea252370baf57
MD5 6b2cf04d13d9b53d56d2f368ab4b1b51
BLAKE2b-256 c4a1ebe2da0a9b327885fb8531aa27dd0a27ba11dd4b6fe20eab9bfebb38fa59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 649221615c345f54582019ce39aff8a7560a49a98f00ef41e044d91d108abb15
MD5 1562930861bac40e5f957bbaa8173c25
BLAKE2b-256 f7a9ed54ef75e44776b2ad9ac6821a61f78b8678b3e5d544a8ba28fc9dadc94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c66a2f4a93effabc8810a2c0a0a80eea0fd7df771a82e2a65225e8ddbb988ffa
MD5 e085fab3d5afd9b8b483099b317d7c8c
BLAKE2b-256 e9978090e5c24acd89fdbf3de822423f0028b2945d770348f526eba6ddacd011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e335ed282e1cdacc4f7b2afb2b64f277779fbf56da4cecfd72371ac14eea3341
MD5 42d0b35c487934fc7c52d0d998c1b0a3
BLAKE2b-256 5646855323cbf77a11f67eb4590bcad62b1738e1f4987f532a36962e0b7ea122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57540ef9405b764f5dcc61ae71b75836591ac8d163b13d317985ae5470f545d9
MD5 084a3b2ae9b7d28166ec8e6f01b2ef6a
BLAKE2b-256 d05e5a35ebca56d055bd095d0823369a1fd8478f38b11b491509f24adfe01f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59a21cf5537ea60764b5ebc1c8466137632bc22ccfa842eb7fd9fa965d089962
MD5 e35e8abc23a3407136b9177613a760d0
BLAKE2b-256 968a4e8c812fdfe2706012302cbd8a28572807dd0864ced0a379a201b96a2166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfb6ea26152f162468777b550f63591e303d57b7f3fa67d6ff9dd5111bac3bb1
MD5 4bc69e9a7aa6c83db2c76590f7a4b106
BLAKE2b-256 6a081d630229e6fc927a56ae8d408148e84f7e3d51d80787c4493bdde2874ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed3d8701ec5a6e5dc4dacc4822889caef405332df9640074fd0cbb9292751b79
MD5 1a4ea7a1cc4f1c53bb6d5b48079f91ab
BLAKE2b-256 261127a433314b9a2d848e96d286f224b6eb3b045003b13461816953c86049b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4646c477e44470c9c02c45ee7ee1b1383fd7fb016ae3972ed9d4441748985dfa
MD5 5348438a8e41120636424d2801344d19
BLAKE2b-256 b32a56c0f4c2de036d0944ec4f8bf75ddfcd34daba0e1301e361f65af4518d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5086c826b9c8344cc91f6e3c1cee18a4698a40162db0a7ecf32645918437af65
MD5 5c88ea788d0d44e0580a1e0cbcc194b5
BLAKE2b-256 0fbbab7f50ec4ab3acf95bca9ce37d815953eb5183d8da480da594a7be4d1c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3c07f1e21c9d7f057e33a26f826bc247af6b69f611be2ae4958145fd71b3fa0
MD5 f158bb61c32279a1f30f5a66111b5dda
BLAKE2b-256 6fc587d0b69a35c35df4d25a3d62eebdd54f50e6ac41e3975ad518605cef6ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.22-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83d254a2c5a05d8b6c1b2d7dafb4864b695b56c74f0243eb9c49545c6a82bcf8
MD5 5fcf7726a2e9d8829a923741d00091a6
BLAKE2b-256 26bfe12db725119887aa67a7d1614edc5826717b8033771fba05a61259d2d9e7

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