Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

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

6. (Optional) Delete a Collection

To remove the entire collection:

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

Project details


Download files

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

Source Distribution

topk_sdk-0.5.0.tar.gz (78.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.5.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.5.0-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.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.5.0-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.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.5.0-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.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.5.0-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.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.5.0-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.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0.tar.gz
Algorithm Hash digest
SHA256 81c61a8a31093aaac8b3c67ef060f5591bc7dfc5c019f35e55753dda08cc92ec
MD5 161db2be94c6726609262b6a75587b5c
BLAKE2b-256 188aa966220db7b641c00f3714db4e20f127e3da9d3eb8cbda4bce70c71c9f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e81f464b0ccb4a1f7eae882c08bdf0aa529c3c7549074cc368ece5a01b00dc17
MD5 8aeebb0dde1e2bd64b6130215b85d891
BLAKE2b-256 017a94c07d5e4610819165f34be08b7516e2e7aefd4f2c4d5e3a226298516b3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19627196b13e051a22d85ed0dd5629a99adaa9c91bdaa0be4f190d0e0621fbcd
MD5 a0b1fd45a58e2f29c6b9f03131e0c889
BLAKE2b-256 63965bfccdeb25dd33d793a5396bd0550c98e80180ada855f60748f68445f8fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 051fabeb1fe5215c5fc93aad6cc7c4cae9d513b0c683fa144d39487a00ad2733
MD5 fb692e58303037b5fe5883242c16f85d
BLAKE2b-256 80620f02628715d0b5abf50dd9d812f07519cebc405a92835fa1237393684264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b753a2906ebd96d8c8a985be68e8a54dfad0db1830f3fa142f7cdc0ac6c9f4d6
MD5 8058fdf57792ba5a82424d69913f4d20
BLAKE2b-256 e0093afa2fdd063e024b4d9df7b65ceccbb320015e12e616c55277c990e7d2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a54585a25c463818f9ba25777b93d00413bb947ded11726c22a7408e927f1d86
MD5 4d715674f6c9a27b964898591d28f283
BLAKE2b-256 a6699ccf34e31dd7d7ad73745aacff2d5be0af001ebd879c65f6ea8f835518b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 330a5152c18f49bd6d476b8f4aae70524f957211be0236d88f80d49f6f58e52b
MD5 8d990aeadc8050c7b92700e78f3a9845
BLAKE2b-256 9a3f56ab9bab85dc543a9bddc4bcc2935c3f23cb0660580d9d245ce1beab8c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d16ea480b1cde35e82df95d1c130245f912b21ff224e3464644288feeae78dbb
MD5 0132cf163860096b77d779821d9eda56
BLAKE2b-256 016501fd2ea4fe81510ab78a74f6890e3cebb1e9c451c01b860315a7e640960e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5f0a6407816ae6c3f137d84094fdc99ddfe5a339ff09f538f937fdb3eed72f1
MD5 45c16bf1189c016470257fa58b729a10
BLAKE2b-256 45f54a22cafb2eb468de484a06f9df47c648c159a5ec90dea23885c6124edf15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f3f474dfcb33592d6ab34fe8c3c1c80858ddd0621e5023b368353c607f5c03b
MD5 1b01d245a1d23b02068bc5a06e20cfaa
BLAKE2b-256 8a88e6bc56c03e600f53e67c4fd21d712aebbc6055f09d9bec2a8e992e54d5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e29f9327cc710986642efc429aa8e83e45199ad4ddf379bdf8fe1fb862f261e
MD5 a7f7e15215b3b5c1c6a6958cae0caea1
BLAKE2b-256 b05372bb88892c34ae7cad8d2d7e42980692de17f22a3268269905779750adf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78278b672798990afe69bb5574d92b64cacb5c1e7d72a675f4c49f5edf2d3390
MD5 1ca7c645681a7f5afc9a11721a1828c2
BLAKE2b-256 5aa9e11c157fb31b5895427b2534aa6c77dad427b76d54c3704c90a50f07c5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5b2b680d7147d4a5ad4b825bfa3cf0594f7016ebb432bf4e1c1f4840248daac
MD5 6fd9187d3d7fcdd60c6589215d3f9732
BLAKE2b-256 40500c0f72279d4b2930700f2c2e5f4618fb88342274999814346caf85b60f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa71d29a70ced00896019a53704779ae3dcec27889c61335713eb9c3c95049f0
MD5 94b71a8a0cb163a077b9668ec8e5f2bd
BLAKE2b-256 8f15b19500947d763aef285af0a9a9d05855dadefa373be7c5d530932b6f10ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d256d00c2dcef512e5e966be28dc14e7ada3f4e4a6b6f37bea2780d292c154b
MD5 d614f023caf5edf0f3b05a6a7b07e7ad
BLAKE2b-256 1c42fdf5b381f3d4c15d3ac8c76f82d0ffca937aff333994f502b8b88271eeb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d3985860a744a3c2531ae9feb1be4c43f864ce7fb6347271e9aa27fc1f03b32
MD5 cfcb0eb319aae60254645df53de33b98
BLAKE2b-256 fbf45656b51ccbcaeecfbd64498ee6e9320256ce90fb30e11ef12c825e86e4db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c638acb5bfe58920b385d03bce3cf7869cf8ad80da612cb6c204cae2a7e729b6
MD5 b27a969d2b07a6f0533de3aec7a1dc58
BLAKE2b-256 9da575641a1d6316cee2dae840be071771e35d1233e9618d4f0681bee8047b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e1c0a2e83c1ac0514b3ca77185f85690d338654c5390b6cdab4e2d181aa9160
MD5 9e671934b367ec8686a52c1797536972
BLAKE2b-256 0f89d33be50314c3bf274bb2eb35aadd14af70c2f0a84cafbfb884b76e175c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f97ebf4576064190b775c16b768150417df74389385a7977b5902291fadf8477
MD5 42e6e91fc35a2bdfce8e0b76c0a2aaa8
BLAKE2b-256 e7ec96ae7ed9700ec3d2fbb0c60aab7df829629f4e99755dbfcc055daf589cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d8523f1e3e23e58ccb23be761d707372bbafaca8512cb0caa21ec75c68d8f28
MD5 5ff303b00023e5d6d3106e2c261e7e63
BLAKE2b-256 c41b83583e49303a2fe9393f87716b6b9e517fe8596b8ec1188f0696388870ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5d3016be5d20b6f927cb54ae53f9f1623ef14542f981eecad4833fd9d5c8785
MD5 4fdbc50ab7fa153516f4747878f276bd
BLAKE2b-256 42561e52142b95a5091a2766af45fe7efc751290d09f21c8061c47cd6bb98696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be3f2ad71c52c67d5bd7fe5897c81951256e27a50d01157e0a70d4e73fdab783
MD5 65feff7f05a79f651e3b6795dd21be35
BLAKE2b-256 77ea2f4b4f04bbeb93f3dcfe422c96d686d58deb2d9bca1f4460119156a948d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dd165cb23215d330c2d1ece35d5aeb38450de0d140c9260875ba52873034721
MD5 ac352326ce70d7a71044f5a7a75b6443
BLAKE2b-256 d84a70c1148a8fc368ad4f40c89eb48169df242182294e418552970159088ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9341df54790d92e2218d0dc20771dc32e447b6daa07f67f0fb8c368e076d15e9
MD5 22f4db38c2bfe806936d245687231459
BLAKE2b-256 3c40fd68534b2dcefb659cd1190d6dab9676c478b234329d9d1c904228c80bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c6f534160af7e19a9d26985e77a2535d0aa01a200812e824241a5e4650645e2
MD5 96a7bdcfeddc9631e72621051c0b4c04
BLAKE2b-256 ff0e74e14c9e6f4077fa256fb4f33139544976bab22721e9a4b538ec26a9b66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40f2b4934f776ddab1d6431590861263fc7490b7c6ae60c89efbd6aa576da725
MD5 8cfce031243b4e95520381a591cf74a6
BLAKE2b-256 4fc81eaa1136a3f593dbc16de0a16481930ebec880c467de96cfc17dddc1dba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e10806f4eaa0edef2c3753e51e123c81e3a6185352b6139d0c5c6c76cea2bfd
MD5 428d98484bc834aa23e6def4777817dc
BLAKE2b-256 43bfe9ccaae927009f596b0f3151c13392325cb32fa679b52cd5711977e3b9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778c2403d838dc9ffc242f051d68637330f6d636468084849e6ccd633d1cba39
MD5 b5200aa7287e020bf035c9f2c97b8dc0
BLAKE2b-256 934dc5e13918121746ddd2b8bafb70f00907a13302bca59adde7672745388b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6ccf5d1c9dc28d394f03d9679bdd843aeffc4b1774246b7eaa9e474943923c9
MD5 2157577e49cc21732945ebf1ae346719
BLAKE2b-256 b30ae883736b3bbccb544950d39707c84dfaae117b93c3bee13f15515d299ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc9df8c9192ddedea5086ef423a75ed13492dacdbea674e4bf769a685872b98b
MD5 6d06c66b33375713e344fbdc23db0bd8
BLAKE2b-256 f6389a748fc69ba05c49086ed03eb0230f7e40440e4c409b9878aca249def385

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aed0e080aec4004c8c45f03e1fa6a513c8a05c68e37723e1ca3d599c7238495d
MD5 7d70067c6e8b7d58e0f32ce9412e05b3
BLAKE2b-256 3ba29cbd20ab75fd38b6031b2842d6915ca1c31382b64070432d8b34cad41f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 355fae0e24243c0aa3e0b650d6944167680e13214ae0c599b0cffcf900b027e4
MD5 9b42b5d98d845cb875df191d85598aab
BLAKE2b-256 0f26155a3644bd0c722a2246a934d99b95cd6aa17611f22af64b7bf8e7d49bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3061574bde9b3999961b86e2649fe4752faaa17a3af4b7dcbf3e8d5d2b8e308f
MD5 a13113138ad831024c0515f1c14fb4e5
BLAKE2b-256 47d6475cde83f8e414a796190830c1e3bc97d8701e4d6033f55efdfb98435e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bcb0d9805a8fd7a09df93078a8de02870a5841738aff2d45ffe48f12b62e3469
MD5 84ed0be3447004ac3a32ac9ac849813d
BLAKE2b-256 c01d55c895c363735e04a20640fa82b24618ffc75f4c9cf23c4f69578c1b753b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6111bd23cafd063165804081c9eea282a8a43f02499cf680c8d2c21399f8e564
MD5 e736dd96ba407ab4a6f17744d39d5d41
BLAKE2b-256 979b97284682a42f859a1258ed34c1bc7c18c03b5a93240bf2c262e3b349dda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 605a89937947ffd23abd37ea89420cb242a871895184867a34317ead81a8623f
MD5 a2c70efab99479f632f1695d12ac9010
BLAKE2b-256 5338a9a21de4b1f1b47b08cac89ffcd3f635e61ff766b947fbff781e8dbbac8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7d52e477221a74e1e340d00d49dd507be7d10114297b8d43fcbb0f302292dd6
MD5 fdf3e956b45977c49e0620e5b610e923
BLAKE2b-256 3defe5ac3259947d2a071ec51dfcab18606318208dac1f3597221edd2ad4e3f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31161ab677a2ee79f7bb53cdde984225224e2efa7077136d0bef3246840ea5ac
MD5 008efc987f8433b129b79d90704bde27
BLAKE2b-256 a58de4c2c020aed4c30932c8f18f87256a03952f76b3785c542066b3e69c4339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 538d05e6aa418576579bdd12c98f002ae5f150ec5918955f27ffc636f748b961
MD5 a1dc2de5b1730ff3d0bc45d7395a9792
BLAKE2b-256 996bc958eb2fcb5c450fe50d693e2439b8c6cd86718bd162030324ef00a4139d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc8d911b715bc4c9a22a8bce2ec80294330d34c7536679d19266097ecc79357b
MD5 f8274e47d6202688b8c824a52c7d7e36
BLAKE2b-256 de6a1e7e8fcf930626b55582e62c1189af6065e1b774f71df422a9579c9b70da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b1ffd689e09687d0c88d4044cd82414d5b8cc9f884a722496877f3d933740ce
MD5 94dba5c2dd96d2c4c804ebcdf1a52fea
BLAKE2b-256 74d26d16e348c6f7c4a2d68016f6803ded881ed314abd9fa1a3d2a908d211b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c5ee4b98d8122c4fa9ff66fbb9d686fd56af5b5f96a3941114e7bee785a4ec
MD5 9e29d0fe39488ee4a8805f61667a0d85
BLAKE2b-256 3369b92297e9f164b0c8a382b88c0fb8d269ad748740c45e950e3b123722dd1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5b18921e72c3a3aed68dc71335c264b316cbecb4722b5977b4db702e19ed00d
MD5 e19aca080d18cb4ac50596746eeb5a55
BLAKE2b-256 e8e34c919f19fd00af382d1ceab57ffc2febd5b720dc4ea6eab4042e5c36927a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e342608ebca951d8b7eaa6b7c592a4ae058ea18d2994cc146bbb4565002ebe6c
MD5 8d453776cb36166767d13aa7719c133d
BLAKE2b-256 fc24e5fd7366fef119bf4c0fbc4afb422096947f3d06d55b434de8d8bc4f30bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ebd7f8508062739b99e8a5df7d40918d9b701e0e5e3a6ca41bed2df60a1f8293
MD5 b7c348c45b25b71cb42da3a55e4824ff
BLAKE2b-256 8d4f6ae612f73868199e64b09a6fabde4b34df10a9e868388e8f88b8ff9f0dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e2864573aa3e67679b4a3de97b39c19b46a3e799852384ef527d17e7322f7e1
MD5 73f2f7d9a344455281a1550731b8034d
BLAKE2b-256 63ad5ef6fe45e1f68eba13c3c9728dc793d0efcc3835248edc18065774686d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eea1b12059d750981a97ff77c8ec68f25ed3fff59f849124094649e607dd7d97
MD5 413bf16c52be426b745f55e7ad24d919
BLAKE2b-256 fae2d4e49765f72f6a1653b1af210975b814cb64f49b3127a9a2e6cacdc5165e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28c04bbeb3349d1f21807c158249368567da603545c53d91de2706d3d3253ff3
MD5 46a6a0cf027c5c1645e37bc47dd468e6
BLAKE2b-256 a1e51911b5e6a976803bacb123bddccba8204a97b00468e196712deac77a40a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a931d4711dfaef02bd491acf161fefc012a9a731b0b0f09e88b950ed5da715e6
MD5 81df636df48c653af8fdc7dcf87f368b
BLAKE2b-256 65c3e41dcddbe16110b983bb6c38c085bbbc6f616cb8bba22dc78943ae6b45a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 991005e5cb786b498d772e2a2e9e0fd5fd51eea3f726b5602c8d5f4996983cbc
MD5 f7ca56b9106d56997e676c34c205428e
BLAKE2b-256 a889756d537e58feae709d98f7db2074a9bc1636d837e09306a4b76b7e6db00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd859dd727f5dbe3cf51323c9ff9d884171da7aa7fe777739f0ceb7d89d793fa
MD5 452ef4dbb1dc86326c9f6a0b975bcd69
BLAKE2b-256 d7d60472d3fc78d85ff77e631aacaf89f30f7fa670279db084111ad9c128e84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c372b678f1e0fd006d4ae9b1bc6a18abe77e8dfbd0ff5c521ba6f5e0007b2062
MD5 a849583ce26a85d3a2babc78b797ae68
BLAKE2b-256 6c9c9cb1348831e1319024f21c370db1535b561a9410606acfe7c38819b3ab7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e153664d67cbcf84250d385a508e76fdc108d29ff6af96eb28363659777d228
MD5 a86386f48424df78cac194f5a32b11d3
BLAKE2b-256 f2c54b9812b7c363589d70da58fe19cbe6b82773599daa465a2925b8665dfe6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00ab08b22af67392d942aaae419f86027b1176dadd4350d6c63ac13d2cd4f9f1
MD5 1f7564d117bd4efeb0c22252f4209c54
BLAKE2b-256 e5be36c12737f67524e2d456186052fce9a6ead653c9677611766a1ab0376a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 999ef294b96ce9a6a0fe3985655233d3aaa58699fb5bc5fc600a6f478ca4fd4c
MD5 ec67186e8bd267a6feedda1496eaf3d4
BLAKE2b-256 83a2cdb08eae1ed3b221f37af327d4399d5201a0f8dacca6929262ca58bb3603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87be42b857e4ae5ceffcf220cc5bdfbd821c2d1807d38e11114a34d8f3e3ef7f
MD5 2995b55458becae6a3b7e0b2eff65d13
BLAKE2b-256 21db14ec1cf2e7132c7fcb2d96ae02653a7f058c42d19f52137aeaa91a9f2bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aee0ee5a819d7b4cc62bab8408da43e80fa318618460befac89cd078f92d02cf
MD5 6fe0a7a5812af546688fef18b285a707
BLAKE2b-256 6d9b1a2b68b5f34814f151e44d49a5a2c56cdec38bb2aa413ba75c25896777cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2060d8cae4b2d7d13efac1d734ba57c595db2791169390a56cb69f5c549d667
MD5 7668a75caec6bc2ea8ca0cb55cc87c8f
BLAKE2b-256 3b7696373f92a3c89debbd0e986bc5e9cd811e7cc1f92d858d9f93a0252ad851

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d46bea8c3c1f6271c73df7052b2abe2ac8d4dbbf302d0d7e7e61d8a81936bbb
MD5 d5e6a35efc00dca33d30d2f4db4f9fb3
BLAKE2b-256 9f19e159f51485566efb1c56f6b2889cda72964bfc95e0f4f71d1b67a7fca9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a17865c03d4b9507af7753efa1261d4e164a5d8430d1a66559c4d8fc6bf0b316
MD5 1d4759e6214ddea9eb68b867cf07418a
BLAKE2b-256 4004a8d54a83b4135924a8ddf441e399ed4679e5e05600df0bdce2d28d7e54df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76b98be4086345b0a743738c516ecb53ecbfec2e457fbaac272701a7786069a0
MD5 267fab69b54b7f48b6073fb015551d8a
BLAKE2b-256 c72f9c2a78d8ae04cc4da7b9613c3674065cd97536ad7d6793dc71b4225a1e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8d85901f626afd5f2adf5ff7c5a01ff784277bf4eab68c384e98957b7754a79
MD5 67bb47a5ccb85389cf7c634fb2a8950b
BLAKE2b-256 bba92bb4273856e75b6136414e66909f420a0aa20f96039873ac81bec6c280a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8312b1a9eedf16d6d43a2627a3221cd261dade60d09a1609f885d6cdd052d32
MD5 5d7e6613de184104cde7b75cf5234d0c
BLAKE2b-256 a1f7aeb93aeb6ef8e4ffefce42d7e3c600cb3ab95c22c95ad3128a14334f75c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0f384ed68fea69cabecf9444a166a2863ef8816398f80332034f639c72d3f6
MD5 13b423220a4f08d40660b9457ad71749
BLAKE2b-256 c78f3cba5fdd665f421dedaee35d929e541827f7cccbd4e136998715ee364a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c793753f054cb2503b82653b44c506b7312a24e967c7a0e56ad487a24dbee2e
MD5 5c155901f51a373cee9f6c869bcd278b
BLAKE2b-256 d87edb217071078a11866a981611c09fefdb7ff26b8023910795933f2b47dfe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5e40fb8c310b40cba4424c7b706ba1c0c6410bc5ace70e8a3404630a8503ad3
MD5 2d962a5721e4df06384129ec24b04c39
BLAKE2b-256 f49f64fe44034711d32a5d8564172eb1762faa2bc9779bba1258a312342fd171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 960d6901089c76c10e37436eaa564201420c020ae9d12fc44e6cfd89b8774703
MD5 282a08d0c46bf3822ff89bf172814b81
BLAKE2b-256 fde1099a2b126c8699e2be9fc4460fdc26e55817eef955be0772d2be0f614ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 665d5622d23d34b8f001d6572033094ff62c3c17d21b4e5db388954ab5362dfa
MD5 6a78d14932d69482492dbe749ff015a4
BLAKE2b-256 357611aa92026c28d63cbfea27f3e6bbfa768a276b925ebfd442ebf12a37c885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ac81d406e9e798ee24c752b87a0197d440bfdc4c67f2d54bab0a668a52c098d
MD5 0b1b40d96eff3853b24d3cea1cd303e6
BLAKE2b-256 7de9b98404db04eb688cc91760250016e7f1a1c0965ecda87525389a9864f76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbe36363c3c20323804667c2e37da149ca83b6a19602745ac901fb3ef6c3f9f0
MD5 b7fca4bbbfcc77ee1eaaf150e831a970
BLAKE2b-256 9c991621e96fa02d833abdc30c2119528e429051461e75173cc8a553ac203239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c78d14fe2793f4211cd8e03392d582bdb4ac4597f29599c9f82cb8ad7024e06a
MD5 14e7a72a085b1ef98fbeef63da55de6e
BLAKE2b-256 a09b9b8e6af1ed07af9f5f861b5d62be96c755773b7ee290f11c7a2bea81e806

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