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.7.3.tar.gz (123.7 kB view details)

Uploaded Source

Built Distributions

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

topk_sdk-0.7.3-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

topk_sdk-0.7.3-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

topk_sdk-0.7.3-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

topk_sdk-0.7.3-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.7.3-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.7.3-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-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.7.3-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.7.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-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.7.3-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.7.3-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.7.3-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.7.3-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-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.7.3-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.7.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-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.7.3-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.7.3-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.7.3-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.7.3-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.7.3-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.7.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-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.7.3-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.7.3-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.7.3-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.7.3-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.7.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-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.7.3-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.7.3-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.7.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.7.3-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.7.3-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.7.3-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.7.3.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.7.3.tar.gz
Algorithm Hash digest
SHA256 9f834d60d7ae1f49d782130ae7d7a273f97debbed1fb0d42abce9252c11067c9
MD5 b974471d311a5c336e449b04088ab910
BLAKE2b-256 0366f98a98beb399729b21905f09ad5d9971e85c8ae6635f4e687222aba05432

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 82ef3915d55538f74c0c12b780f45bb235d1a633e9c268f53fa3b1f77bd15cdf
MD5 ad7ca940fd5d4c2548fb55a1a149a4ef
BLAKE2b-256 da8558231dac0a62d8aefa429b940085856dadc25e85ffd93edc1682ede39231

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b77302de822a8e50eff272e944a36cc47761c56f2629a1676845348759967b9e
MD5 9a2958b5519c16e35781472283296ca1
BLAKE2b-256 7a8dc978d6c1c11c864cc40b7e17a5c7c16faf313432f1ef5ffa3d38647c719a

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8e3660e41a0f6ac22f3fa11d112a295caaaba9130e60d14ffe538346c24ef8e
MD5 f65a2edc9b5c08e3571037809fa6c64e
BLAKE2b-256 dc0485889e002c8fe991f8ae5ebe11e6b6c4524e521e6b757b717c66273ad4f8

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df15585ec1f2f894eca3a0ac989d1f055b9a034b705b2d80c584c764da02e13
MD5 4373d800e6b8e28ae5994e61d7406e7c
BLAKE2b-256 22d3b457d109d8b1faa59b1388199f686cd7cb8833d5d056883e6bf8fc807af7

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b85c753fc4f6f10e0632dcec7b7f6431899bf81d4597f39f3463f94018b281b6
MD5 b45ab18cfdca47ab2503f98b3f8b35a2
BLAKE2b-256 12281605e2af3bd98dbf3605b51fff1238fdff7e29e1fec54ae49e8b2e77d7af

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b9e2896b5a0f355607f64da659157fe2fb652aa6e1f0aee3fb45cbeb4ed97fd
MD5 e39fd9ee6d8205990f44cd5de525850a
BLAKE2b-256 40f0c6e7889384650098000a4df8038b037e957eb28b3c0152b18dc0e107802d

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da45b9d2b21b94ef12c125f699e6c4a1955e70603a2d73cd71fd14acf3a6e8ee
MD5 25a000664f06919e98fd72b48ebaf501
BLAKE2b-256 6d00a506cc7e79a2dd8e289bdd3f1a88e81fe3ebbf8d0c02730d3d858aeaab8b

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b7bdea8b1ccd0018d2851db25e1be12de99c6ad26866be7b581723935f3a9ae
MD5 9977e51b232795fc456bdf1f211fa9e1
BLAKE2b-256 06ed75d6792de91161a48ef89f9fb801f6daa6aee96b6f717c8d8a9c07085890

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7199bd842438a414562085964b725a2f1dfe690d0e10557a6a588719410b4e88
MD5 aeabbc07dc0baaa0f63c9737c8df48e6
BLAKE2b-256 7b66916e3f6f8777f78b104465d6ae30e47e9f046351d3d5ece7b8310677e89d

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 148616a1061a82f787584d101e66a713a3c10d393b654297d99d2c23531ee78f
MD5 db72ba053182a1d9f34c7c473111f20c
BLAKE2b-256 ce683d7725e25bb760f6e4deee5bf975ddb5c0e89616c093661d9a7bd81e1181

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7690176376c25e40be0515b59b11129f7e297d74361c474d38dc6a4c2825a215
MD5 0caa10904ccdf95b5d5611679804703e
BLAKE2b-256 f7164d2170c122f47ab889691310612ff93923cea41722342c528d527f0113af

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 068ef2205f66dd28a31d8a79c3f3a9d6a629eddeac792e846fcaf01aa85699d4
MD5 b2520d9e30f88e5de41acab069ce6e6f
BLAKE2b-256 96a0e411bed046d5a7f0174cf621fbdafd76f87cba50ecdfc60ccd3614ac76cf

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9ab3ffc4ee55e08a10bf0c40508a1c9b2e54fc60df74309bd0969ee957b6706
MD5 f6fd930bd64a016cc0485e9cca14e8a5
BLAKE2b-256 f0362aff92acf4e50fae0bf9ec425d31389e1a837352031002998232d307877e

See more details on using hashes here.

File details

Details for the file topk_sdk-0.7.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f9b14f211cacebeff0fa8c08e100f93ae62b04ec8e4f039f97e56f421b5d11fa
MD5 c17685dcb02d31dbb94de1481e225d15
BLAKE2b-256 12f19ae475da0cae61c3e21a010ac6cfa1abcc9d1ee312db97fa143059089fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7faa6a0a5289d7077b79f9131a6f96c7c9f194111b58163f9ba06d69a6f9384
MD5 34424f024e20a0a2930368a41de7bd1b
BLAKE2b-256 7e452541e6e53cdd81238dc2246011afdc319f2f59de85cdb91ecfcec63460f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.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.7.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3c68257b6b34b6598745c5ef82bb846a9ac24f760cb04f453351129662d46ab8
MD5 9d9c020a5f44de90be9c8d9ec3afce91
BLAKE2b-256 f7cdd6f663545429f50d8b733a7ba7d98de9e78bfab7eeffc8d17e4cea64c2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46194d48e0e3ba8cb61d48ebbbe2ebc971581408b493815a4df7b7b78fad746d
MD5 6aa22d14de9a40ecf09d1da2e4205793
BLAKE2b-256 2ca848346917ed64dab6bac8790f5b9bd6f0c49cc52476321d289d19d6c2b3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78da0fcd0b577914ee4823b1159ca9745dfdfd7dc75080feb5f84446dfe4eed1
MD5 9156965c11f4497c2c48386bdeba963b
BLAKE2b-256 d25676b36379520218446810b380f704f3fbdac2860d57e5a944e16842dc761e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35a95d13d3e1530c572002744991c0fbdcd70033c172cd53d3b00879ae37ff06
MD5 8efc97fa009757b93a4407a85184f22a
BLAKE2b-256 03798ae7e05616cf08cbb7b3f6938a9031d99034119c6f13d91b0e75bfff43db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64aaa003a17adc7c543dfa66079ab5b419d5f5d0760c7e93449540d0d4fdcb0b
MD5 b5a61deb127028d9cbeda558a20244df
BLAKE2b-256 4e795cb5f7ca8f5bcf98e62bdcbece965612f33141e07057d2d24c87a23ac0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fedfbe46f06730d0cbda0b293bba7a50763ffe26a5f901bb3dc67dc1e884b464
MD5 06be3b7ea3318d1805555950f2c82fbd
BLAKE2b-256 8e7a359ee63aa4e029b963c222457bc48251318d068c768be01e3b79ecb1b702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 629b91c3bfe0186a721b7334f9e04cf45f5a9198a70a9cd1e38dc2f840bb7a1f
MD5 06f0dfe3d792297ad5cc192f3d2e0483
BLAKE2b-256 936ae69cfca481869824836583d79d83c5c6ca8f42b79996c3f6569424c4389f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40c724b861beb95a5ab3e5956ae42fc3779738faf7153ca94a0d88757538ab2b
MD5 e55cbdbede65e9c6388f4ad3d065be00
BLAKE2b-256 f476a79eef1ee082d2a45dbb9513b10ba3096a46efd648df58c5991d3c292e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06be462200c84a69c8cb313a14a117034bcd1dceeee1adb56e8d10330bf0ad52
MD5 fa01bf377ecd958b539314a7268abd4c
BLAKE2b-256 86e2611fbedc52bbb5a11eb8906109c096b87db2a4cc3852251bd2b1b37a17ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24def634d5d06bc698c25115e44c230b587e35de5325c07e22aafee800bc1656
MD5 6cd90a969336c19ac1675b5e14bb3bf5
BLAKE2b-256 6d561d2611c4b7f6be7e5e7ce7614bb3a8002b9d573933f2103325e2c8b5ec19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31c0fe525f9a1692b8708f4dc33eeb81bb09b658a8111ea17f50acfc7cf8d465
MD5 4c0e6921b4d7fa1f667c2feaa446294d
BLAKE2b-256 68a647a94b88d61b1b48ab898e98f7e60b2ab316a37bf563be2fccb682fdb1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6070ec031d2d5ce7e795848cd6cbe339b503b72ab35cfdc81f84f01b2c81c40c
MD5 66629c190f8516d6670399c7d7f09888
BLAKE2b-256 04fd36af4f7514db20e45e48e2a87a0df39164f6df3c65e4f5042ac64ffa980d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33b7bae025ec0c2b6eb54a360e1bfd188103e4b0b83eb25bfc470d63ee72047d
MD5 0bb0050ffcf6624ddc619b31cae8e001
BLAKE2b-256 cc37c82fe5b2afa7ddd5d923ca194f7e334b3f349177a454169a403849f4da65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab7b2d2e5bf3438b21d4faa0f33fa36217df44ac7bc9d34620f14fbb69c122ac
MD5 e8f5365d8ee6a4dcc366d1ff6f0ac6f5
BLAKE2b-256 2d7f9c20b529ae7960879f42be8a4bb7686ba1257a30a671564dc99967504196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.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.7.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1129eef5c1850c7b0d1ebf5539a87ed5126539b83d574ede7de0421e26e2c284
MD5 ad3bd645eb23ba99dae443ebfbd239e7
BLAKE2b-256 1dc68b182b7e7bbfa074b5712623bf520a715e8f8b2a5ca93897efd90fc50379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce467c6fa7138e46318cab50d92099b28cbeed3e2ce090a57f1b180abb12c571
MD5 e80e54f7b3e3e8662fc6f57fae822ee9
BLAKE2b-256 b156199cd78b454800e5af7da00670f9fbbd22ce3e470018da6dc7f3fa02fdf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ec26b07fb3735923417f269a2a3817187e73c316d74b0f4ec8a84afad4b4e17
MD5 6a3a40fa2d77b44c36a8874f6bf72dce
BLAKE2b-256 1a9da0bf928153c6a39770bf6b36cc6f0f8fec03abe16fb5dc5050a866dd4275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9ce787c6bdbcc10de81b5be865888ba4e01b53d3e4b6c4a85afd895cd22150f
MD5 b072147eb52d6cf3c8999b8e4eb561ad
BLAKE2b-256 bf423d6f9235196a89f469a5c9a0f9fe02b5db3bbc91897ee1d40f8ac49a9614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e9c703b940f33e14031b68911b7dba29287454326c9995b307e8e41f4a5fc4d
MD5 b4d9c86da4298d1a8b09507268b249c7
BLAKE2b-256 2c0dda549e19b064837a4b89d8236f30d1bbc4ddcf38f861048b3fc2a984167d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fe5443206a30b895af55bd0b36cccf8ba2e702ae4b7e5d85f6744057ba05167
MD5 57480fd9577ff418767072ebeab77885
BLAKE2b-256 b7198576931c023f720738382401172092dac5dafc5199c2fa2fb835b4edc093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98e8cd05a378a3f69fec041b2b04b12f1c6d600ad39dbc39980d30b8a854d698
MD5 d05fea69e2e91de1a0b481f72396c0b8
BLAKE2b-256 af7a56ea51a516c4eb647c9943b1f75295f818883d824f4b5a514b13a1f2afd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54e3cd20eb42f3f7ace1fc45a8c50d7b85c0e1912da1d3f7ed15e5468c23a1bf
MD5 04cc000faf94dfbeca6ab77717a4f905
BLAKE2b-256 a24db845b2c37d46b1d113a716008e7f145e74f702b9a2ee89b758a94d75da61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46c740579cc99a964c7884267ad0787ce24c822e0d0a0999bf6ad65dd706346e
MD5 257cd6304df6374588dacc7a606ff3c8
BLAKE2b-256 1997fc6f3375988ef6be406a3367b51dfa54fd52b371ded775f67aaf3b59e4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2895eef780bf68597fea251d7fd5f542b624ca21c27292709b8555d2de2f8efe
MD5 90d4ca5d4c178927aedd458303ef1953
BLAKE2b-256 78ec09c04ed61e631f42540f2bc48484e04c64a8feaf6a743a2b342536e48037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 568cb0fc664fc5e1efe9abcb5c3d249eda9d0f21d23ee2b912209569dd0ccfc7
MD5 8625fe3330a34e0064b44a8f143718e5
BLAKE2b-256 9584aaca2d2e8a62a588fb39a307a7582224aa0f7c0ec0b01f6cbd08ea20dc59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfdda8b92a96ce232ff451bf924404f0f00df7139f8e183e321bfdb6b248ec5b
MD5 56b2152baa216771e6b311759ec8a0f5
BLAKE2b-256 6cb79ca779e4f662be6cd6b361f7ab8800bf2388317d44668ab8c4f0b09c15b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3146d965f0dfad90ba031f8b5e059e3972a40ccfcb479a264359aafa0a6f73e5
MD5 9eb553de5f307d5b5e718060cd345e48
BLAKE2b-256 d40c5d3937f418a09d780049435146035745f802f5303d7ded764070e693aa0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dad9fbe6229f1981725e6dd692d46a0dcb483838ec56a41d920eb912736a8aa8
MD5 7a77a872dbade8eb5227f839a6258b4c
BLAKE2b-256 2b2fdcf4df78e1aa21f574662488b50d4dd106dc980ce35421b3526e562e70d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.3-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.7.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66ab6dc58174cd05d8627774b39434c31e48f3b22cd7ad43482f5728615d0679
MD5 bd743473169e21c8a65131038e73548e
BLAKE2b-256 685b3b0f3b245dad3493bd1b763836275b13eade3c95deb724da4e5334e8451f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c28c3841577830cd93c422ee75a0899737abc98a8cd89fea8a0fe584ab3c6f8
MD5 dc6fb47bb4191f99c3ce2a11e9227d37
BLAKE2b-256 3e4973d822f0e05cc3fd9e16fe40104289ce001d8f822c7fbf94eb23f798f54e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c46e244e40399f68089d6071ddcbd06e110751767b1d8e060fe2aae4dbcef5e
MD5 822480c1ce07c2beca9b2119fe6fe4e2
BLAKE2b-256 63ae2f4cbc90c6d6bd51ffbdc67c307d59a5189d99b328850116084cb3fece41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9339b3afd3fc0e2ad11f9d2a6dec85d4bbd292c3f717bc0c53001869dc813613
MD5 a6f9b2471de05cf27fbf3b70c233c486
BLAKE2b-256 f5b61d10ce4c760789867d03bfcb2d2ebba431690a6ff2e1b3bf33645c9c5192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6378911e5bc3ac91471f103563186419d781ac8e4b5b2f068e0ac5304feef912
MD5 623e306209de53020a92b98855b0762f
BLAKE2b-256 3febe32f424ecfd37fc38f33dea4e73d983a3152f7fd2f6261cddf29d161ad7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 115f8d927408a83b676efc0463ac22f06230c1815dfc89f0f9fffff72a4011cd
MD5 b3d236055865536536f80866517e7767
BLAKE2b-256 d659e3dd8222906179d04c7f270e93cebd6fec6d5835ced405b3799affd6d7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6827c0f1575401c2a992cdf752fe9d2bf0f3eb3bc4f80b8cfe6f76b303de2b3
MD5 78689047bdbbec20b4070d5355a5badd
BLAKE2b-256 c2d090ac3fd832860f3303e2bdb393a0c1cd0490c1f7d7d24025b8dae8af7014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58a509a91606158a6237a0cf4591e13118e3f75d6e98a9cda6f2032dbfff2946
MD5 20cae6282090cf3fd93716a0f1307b5d
BLAKE2b-256 82c4bf09450388059c880d3c1caa9927ee4ba3de6ee2f6c3868f1c7c14e04868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 190d72b69661afb6a5c83d0e01b42410b25521592a12860baeb3ff739003c795
MD5 ce7e5879c012009d757ab23f8a6fc48c
BLAKE2b-256 83be328f05d408694047e7af87133c27d803ac81c51b9bb256cd12a1f2c0987b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfb0f6ac6199457426461abff7c1f27371419d7be86156d6ff674b1b188fea88
MD5 f9dedd80bf54a4e7c062d71192863421
BLAKE2b-256 419b48ca3276203a050dc3b5d1e5aed91931cebe071fb465349c1d345c57663d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59d1bed4c8f2f0993842d4a38cf03ff595b38c35d2db4d9eb5a8174a775e1246
MD5 77c9a2eefcb5e8bd43b6cc71cfc6da71
BLAKE2b-256 e7a8f4bc0c7b138d959507032dfa8c0951a7f1438dded4cb6ac45383078e9126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75450d7a45d5cca4fc6ff20fb5049674fbd4c372619ad30c59346d620a8c054c
MD5 f37618b88ef268e1bc5ab3908456181b
BLAKE2b-256 2e855f296ee16f9f5ed2a0e7119ba172544ffb435207a44b33ca40c71f9e2d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f36c459a35781cbb34f9daeb85793b384239b7206b1fec0e58ae41a3906cc85d
MD5 61866b9cd6b1cf0ecf03e8c4407289c6
BLAKE2b-256 46e5afb6d6cb399550e541249e8b6ba7df933b3bc62cab88541ef9ff4e99578d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ade480a4fb5953b0e1abefac8cc572fef622c7111a00ac11837a3fc8f4627967
MD5 19be593fa8fb0489f29f54ecc22b928d
BLAKE2b-256 b4da60ddfacb41a094741638964a3350269133f3841618697476e0df38a2f6b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.3-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.7.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 be02e8130dff2bdf7712ef241d2ec9a97dfeb95fb8822be44cd34efba05c6d6f
MD5 249e4bf4cb739b4cd2cb82489c5eca0f
BLAKE2b-256 8dc3f51d5cd67737c86c3b46c3dae383dfd5e2e410fb4c24b15a5cf64bc3e9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9350eaf4ea99ea5cdf539a2340d4bf75d1cb9202b40f18b4f60ed47f4aadf7c
MD5 33af084f13a5782683e4841a0db99339
BLAKE2b-256 b0a2b8bb8b2f009046d63c86a60d32d77f51c4d196017970b278a09d02e72d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d556aebf45d1fc8deca0da305430fa7d8e4fbb20596e7de3dd6217ca0e9284aa
MD5 913f4e623ae01861fac167da44a23d59
BLAKE2b-256 261967623a507f2a57866b11b39c138d24d093f5c21046f30e78ce44fa5b5115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b31be026b2b168ac675db1c630fa17005180821551dbec09fae37a251a01c37e
MD5 69cc0971d8109b9fd5eb44ca04be13a8
BLAKE2b-256 d92f0dbd5beaf475c46ac1637b4cb78c75690890522b48c441fdb7950e39a881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b158ff5e0f39e59908d63f148f15dddb9579abaf0c341a7abc890dfdc42b59bb
MD5 eec44a1de4ec89e53012549f83a7bb4b
BLAKE2b-256 e3dd21a4ba006bff44b9421a64633f77f4d73c8837dfa38feff2fcffb050cc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 229eec9d3d778425dc3509836a4af22ee04c91ba146d1894f3f61ddad5d4dd59
MD5 712a0dff8c0d4bc4ae04ef9e45b85ece
BLAKE2b-256 477711c34e9016d5d233feef7c9acf86acac5fcb9961d88e690576a13af87911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0bd5831272f5b4c21aa2d2a3f77fdee8b8d24418c48c1d034a7b660f8382f72
MD5 fbb4dd59a0b315d39b8a489ec96a4737
BLAKE2b-256 cc852ac404dcf85877bab910c2ccc78c4c18dedbc291caad92fcc4dc52fbc9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 254f7206439a6fbc81f69eaf5dcb708ae17f6baf0eeb1c724f332823c71ee40a
MD5 92be7fdfbfb64347bb3c37441b74354b
BLAKE2b-256 84663aee3154dc9b0f6034c4fa1646e07903dfbf6b29e3c98c084bf6334d7473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8c6e622d0027524fd317049e41f2224b577fe17713a1a14aa7e2b127a61dd49
MD5 36685c997fff57a89a62bf6db3bac573
BLAKE2b-256 4b1e1d34582a0a07024faad0addcf560afe64ab5b1de9ec6b130483d6d90d39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fb3cd54ced0b2d11f32ab77d7794c7d6dc992c03f2289d51bb766e96ce8805e
MD5 bd9ff0a197d7ce90e829538e69a195ec
BLAKE2b-256 3e7af052f4badca5daea1a07d2d84e25f835c84faa54387adc095710c1cf3421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4251e9fb0a9e1485349bf283fe5d09ff5a1033a39b7953947bb4d1358b8e8016
MD5 8c6fd27f6fb5f5e08eb41ac7b58c317d
BLAKE2b-256 94df84375d9a09657772bef2fbab4b609a24a3a2655a80aa2e5d0a188f1d3704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffb9de744952737aae1c5fb8e4282093262191ddc40bf03577a8b425d06428a4
MD5 03e9e3a4583177a47f7e2e4c554a195e
BLAKE2b-256 7a3337d20ce685afcdcc3e03613c178dc604f49a866b5cee41170c326fad6203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84d2f650345254c100242b093439fa484d515a0ef7ed40bb0a8eace1718d1210
MD5 2c58dea8f7a8a825f9268fb51e172463
BLAKE2b-256 792db6df8e74d76b4948a3a51fd9b53f08d79a42879004d75efbc410a4b314bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.3-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.7.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ffe8afd69487eebc67e13caa1863c53d3f5bad3a6773b79f8dbb98b0033d032a
MD5 8ffab666c1b30e970cc99702eff0d399
BLAKE2b-256 c279bdf426a68bab5faf97183ba13bf09b5606275f0edd7509359c2fb4df2e59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.7.3-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.7.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 df7cd3b6cd4d2987ee658a29334683c6b35920ebb53ad7207ad7845e82fc5469
MD5 266fa88eb655855d103b22bea19d0f92
BLAKE2b-256 2aaf3ba1157f42f170e4f6ed438d4be2b058e3fd241a6c387b27d29603fa8a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f43c9dbe87d56226b1225a2aa0df55e797935024186a20b2948e6e1186e1de
MD5 11f090add2f6ffeee8d9c11b0c0048a0
BLAKE2b-256 d4c496b97e918e7593b1cce7fa2df2b5df36d7faa9d465d0eea86cbb4cb8b9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56bddeac44c938acfb2e5e054546006dd00187bb9732b34447d7d3030e11936d
MD5 4b4f38b2ecb540b540a70a84c71cf253
BLAKE2b-256 151cbb0c8bd87dc4a4a135ddd93e87cce3a8082a196677b66b18b9b086a2c5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be7f36af547a7eb8344aa4ca87986e2a03e5c80f3966d31569f9022882dcfffe
MD5 a13f98d285b493c13ed808b712874c45
BLAKE2b-256 5098772bd870e590ed4a7e7d5a767b94b4a57c2d2ac34f0d739af32fdaec9223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be61938c5478d180f5376f28905ef970c3201cdcdca945f667f9bfc88d879e20
MD5 f9060a3f279a848bb607917d8793de06
BLAKE2b-256 67eea1934eec697f3d0f15318ca102cae12e763c2f4526b39223ca6ad3ee3f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b89970a7c4843eecf8926f46d04d3d66d0f423dfbd0504e4865950db5eb4ef7
MD5 7dd2085278665838520fd82647cf92b8
BLAKE2b-256 70aea3b9d872982eec7f51a6f9f895e8afa2811c30e15984dfcddf9fbfbd1b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0159cc1f40cb00e4019a6f43054c5ef0d80574212ff0df5b1f8e54e23ab1abb5
MD5 135acea08142c8b1fcfa176a8d888a09
BLAKE2b-256 1bb3996c84fac1cb342ebb7553b6d443d9721250db72db5c1e39d0083a935afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b0016b96a5c1aee5ec3a7b4940115755af7888e901b9fde5dea178285a648bb
MD5 771c290ac79abd7d1ff9e0fe9671a9ce
BLAKE2b-256 e84c56d8199658bc8bf33ff39b8bf9baaabf3d43671ff66dd36ec1f4a64e80be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a08ff8197a7bfe2495d18fcf3aeb1dc31641f6989ccd346a74e3d5b58220d17
MD5 6f8a879f5de18dffeefffab2a90c9d95
BLAKE2b-256 4c949cd1bef4252322770efe1f35e03868ae691687558b7b636782855fddc411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73615ccfc4b6f1357c7268904182a9ef5e4f72d0c897f8d8fefc3a5ae579ce56
MD5 271a8187c0db5e00bdd45c4ef67a56bf
BLAKE2b-256 44bdf77fa6e9b5b68a3cc291a517a01124d8d8f14bd919111745d6156e46d114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5094f26c88f6eff00d5a359159d2b53726a6f46f7e7cdd8e59c9010438f27be8
MD5 4cb176bc95450bc0930fd673cb0962a9
BLAKE2b-256 f279157f7ca2aa2ac93becbedaac1827c889b2f8f926246526e1449a5c3d9d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56f2ce9f16830298ea32bbdcbc8e4fc98a1616c91ad1dc36189a666929f70f99
MD5 50f1778794982ec60cb53828b8a47309
BLAKE2b-256 7539274a02f76cce7feed8e751dffaa6f91b3f0b5c59e2795d0dc7c366bb954f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.7.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ab2a85f59d31d5d91d43c5970a8be6786d8c0d3473d395d69c6b5bb55e0fd5c
MD5 babc49dd66f460b0d81173f634aa60ac
BLAKE2b-256 2cb1b50e4fd9a48134c306e7b522bd80f7e451326e9037f23e1fc550668a041e

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