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.4.4.tar.gz (65.3 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.4.4-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.4.tar.gz
Algorithm Hash digest
SHA256 96d35d526094695470cb251f5fad8f79d60147cc15799422de234924338773f4
MD5 ac003116bd44a5b0c6748d637b25bbdd
BLAKE2b-256 2517a26f981b3e579121c5a1d13b0d977712fb63fd688e07d43518c23ce7c9d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f13b6351db2fd5c73290b4aee223da2d0114f15ab77d803b67a792c1259048c9
MD5 ec229824b03f75d3af72bad6e434df33
BLAKE2b-256 1369ad50624523909b65d9f0225fa3460da84ec197573e593e159c46febb9eaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cd77637ff094c2da321ea66f5d0b4d3961f8cc0667929ad9056f4ccbbf422f4d
MD5 c090c5042f3110f3b0c3dc9439536b55
BLAKE2b-256 56a2f38747a3b1b0084a10877201a396acc8d54aff893ba0bba510996245f0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f985a4ac6fb97971adae338d8879dab5d5e862d8413c13b6d6d9ef576c558f95
MD5 0b619a8e98b3dba4c12feb2b62658422
BLAKE2b-256 e65eb67d07bc193bf1d0d6e45278cfd275b97fd864cbb6d48083e703c9f31f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6213ca84ebbfd6c3e7bb409f926695aa895fbad182c1de7b6e67eb4d068fcc12
MD5 9059be5ad74738c9082568107b64638a
BLAKE2b-256 4533203b570844df986e64cada67073de3ad25ffb93a2398d8018a7fe489ce28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6c83e1ddb27e263d7aca31156180c37d73de730a1cab03c9420ea5b331212c5
MD5 4eafc1db0164c819ce259afaf95c8c48
BLAKE2b-256 9d5f61db3c8a7d7515fd0cfa130f4933a2ad6bec162d1c6914d6712ac0084804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d250fb3a64c5967ccfaf5936277a6bee22eafd0f8c6abc6b95431a81760dfe81
MD5 2051ef120a66d3ac9449183eff03ac48
BLAKE2b-256 3d66b269c37a7d57f5460accf1f7ded6fb7ddcd20f0adbb5aa5ea89b38a545bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75ad72386f2bcc622298c143b251a47abee15d16972cfc53b2f2f1a477d369b8
MD5 80609938b68df9fa6b06f7077f5a9b9c
BLAKE2b-256 08d0dca5d40b0d09d12f10d6ffc63f8235d8328e1af97bc7ee8b5a98ec509b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9465f60b934911cbcd2672c5f8b2111222bfbe69289641ded94698035fd6e29
MD5 2a7d72527beada00ecdc635fc2e3debf
BLAKE2b-256 95f7fba04d5dc6bcd29a2245ceb84dc88854f0c795d1fd9cafd37ff08e9068de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aff3c2f618a36821cf7d7ef7f787908d3abce1c75dd18b46a5512071e2ac597e
MD5 707ac23b192bc77359382e0522507142
BLAKE2b-256 49ec0240be9a95cb32d8ea863538f717dfc0effe3b042a812954701901d2872d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 783737cbdeb76d51160b3bd9da1c0006ab3ed537dc472a8ed9a9902b209b980c
MD5 506217333665eec6d7ba9a8ae4999414
BLAKE2b-256 fa7399840fab411b21d37bb71b9a3cfa5b3da64bdc2e38564ab8cbcc24941bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31593bce93bf61732ca20159cbb232d44a9913a6d3f439e52f6e870e04a9882c
MD5 736abe95fd7eefcb04fb70d926907d1b
BLAKE2b-256 45300427804ff8cfd36d816d9e6ca93de0765d4b77efe111f79c7bd122314858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc49a1b4476845f939cb36a5e067d994f8f6d1432303bed0bb71ae0a42ef7604
MD5 a299a7456318fcfa36206e5db3c7749e
BLAKE2b-256 32bf5f337904366e65fe2caacd183bcc2d3327920a014c413c9380345abc37c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27e03d03212987de93ded4ddb7ba8c4a124b59f1b84b619cc18953dc7247b5e6
MD5 f3e80d9c50a4fb3179c78f2647b246c8
BLAKE2b-256 dbbafb90400fb0d2f95e1303a19f066a47c5519a505c43ca4bd7a34ce895e7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67a2b14e253743c65ca07d5e9a1a490a12d5264cdac41d86c011931d5e0efe33
MD5 baa5e27be85563b86bc515a76cf48a71
BLAKE2b-256 86f312ec591ee6bef7b9b6e2aaf81af0d76450d6c8f76bf55afdb768a62126a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2745bedf9429f39803d26ae308b7cec4b4d0558a6caa05c5c70cf630f1e31c3
MD5 b52129fa09ca241094589fc161163127
BLAKE2b-256 f8f1977b069150786098264909c087a0bdc2727f4ba1848f599852807eec9bea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f8c6b0d1d76efff308018e9c15b9fe3a17750f61b38988b3fe6528fff35ca6b7
MD5 a866db9c452eaf193ece0b26dbcc528e
BLAKE2b-256 73dded98e02f7b2266954eb3a314920a423471243433c5eeb021c74210133122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50b5ed535874da61bb96238c860735db58f83e2a87505568ef155b76e5c16c8a
MD5 8942cb2c145a4b4180711a71a2a1022f
BLAKE2b-256 060cd2df775c836f8605cdfc61226333fc53f60f788b4c6d19d968e867bb8f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a8c4f70cbe71fb2632109156538310fd3dc8b9b13cd636874fe585cdfe7fe67
MD5 27a6bc117d9474eaff55b990b00126fd
BLAKE2b-256 140c75e9e1ad75a0a92e867d4a68b610d26fb788b39c9fc3510a8244cf5bb324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40477e45947f5f5c403317964c4d5bdc20cf6710021d400b4ec7886c4af5ff75
MD5 55f3efd373a36c069fbd4916787a3bf6
BLAKE2b-256 665fd50c335a94cb2f2127ef05da27cf953fde53b4cc9f2d322e25131757e19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afa1804d48d0b19ccee03dfa7f3d2917081e1b6069c37ac7a527b83a23fc6186
MD5 d5690417196b03f3e6eba1d2f1e01c30
BLAKE2b-256 967128c357b00d6e7270b7b3466d055d01bf9682ae7ed61eae723f98c0c3e97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 848c3e3e612992ab22588be874086605b7698696c5f1954d58aa120f87790ee2
MD5 4d2b0d9e4633fca97e5cd36164f049a6
BLAKE2b-256 c54d5b552ae95006fa4f0192edaf9ac4e79664a3407a679ec34c802932a64bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 438914c3560179fc4f0ffbe8af48a2d24389d0de2b6420073e04ff0bbaf4ac19
MD5 7375ede3782275b03a206a57b10eaf73
BLAKE2b-256 6d697d813955a00d17359982b361c0ba639b8d05749b0566c22f4876cf5e623b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 623d29294f0d7c47e418bac242b1e5974a27ba44a11e3ccb41995c296ac25c9c
MD5 089ced83c077e0006cb68d40c656ef04
BLAKE2b-256 eacea14d72e2c39ddeafbeef10ba8f3be236f85b30553779db02d9e4166effbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4745cefacdd1fb893a3f8cfdd75d230d5b3a3e3d088a3b3e41df0127bd3295fd
MD5 ed9e87a650f506a0754b686b258666d2
BLAKE2b-256 2ba51bc96000b3beb60fb68929a998e2511af92f4918d0774e495e508752e9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14599159e102b0b85934fe27f7d5cd1800098fbbaf9dca5886cee42b91f97372
MD5 8b4557fc2a379b2fa3b38503605e3109
BLAKE2b-256 bf3fbb6c2455b87bb542b4791d810714d6dfb02301929fc207bc06a6185e856a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6b635296286e05e3a9cc958447384de1487cc84687b261c9e9139b4ed39b1d6
MD5 88de3c7b20adb42ad3478b151b65f173
BLAKE2b-256 0cfa43b9ad42a295df504a9a4cb863dda688003998e21b104f06603b539d94c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 999d334c2bc85098c62b88c6c78032f024203cebce0f8f1280bc23c5910a82d2
MD5 133f46bf33524c48b149768ae4faf7cb
BLAKE2b-256 3ed8e0da733929dc9a4c5f09950ce4eec3d0a4c7e8d830f6a2fb47cc51bab3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c4036b17efe22656ec15116bc017c8cf90eb371148747c9aeae7721d2c416f1
MD5 d42d6e15e2ab1b0bfa8eb172280444cf
BLAKE2b-256 e2461e6b5d830ab528ddab2337bd74fee4618b1d898d47a30c55d8fd0e70c26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d611be2a441471d9367d2ddfc8f017876a7e9423304e40018089e436d0b6cc3
MD5 e7f0688e10701a8961c1967a7faf17c1
BLAKE2b-256 d534b30c8318e0c092cc64e40c45f711df9fe8d78f4bdeee4b840baf9701d362

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6343083fe0dce22bf700aed13980ed69c65e0bcfb90818a6484f131731f3579e
MD5 03aff3b2734f41bcf8b9fbd0207bce7f
BLAKE2b-256 4d855f52783e8e89d0e76752098bffd780fe6b2a8eb702bf2f656c41f25cde40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 533ad7a672314d0bc029ffb44a00c0e9a0ea1b6b968426cb9e6d01a10d9dfc4d
MD5 a73b4d957bd808b18c72f9ccf42f93d5
BLAKE2b-256 ea6539b44fe5eccde22e3bd1570ee5f7e2cc025c899895b889b0dc57b3126893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2caa22d3749c86f675b39f9ce4475d396a21f5fe80c7f41c498bb79bd30c9d26
MD5 9153c95c50072c8f12f6208e91f35018
BLAKE2b-256 3bd5816e1881c77391dc2be79809733ccfcf3ea528e7a1d2af25aa08e14297aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5eb55da158d20dd46af4a8cd45a3fc0c60b251321945db0a5439f7352680b6c6
MD5 15498ac0ca59fe024c219cfa2569a413
BLAKE2b-256 5c37f8c49647c44685ac54e7d11b4b2015572e8503549b128713cf79a7fd3e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2876e9c22a75b84bdb6187fa0e1b0cfabda37f0c21cb44b8809ca2e5ccbd0456
MD5 d1d55e90333a9c91b748419c81008a33
BLAKE2b-256 973576aba321cecef468947d18cd5119d3a0612e019b13fd9220a7bfc3e9a1db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68f93cf157ae22e2f57440e6d683854dff117659be92b4e5b62e6fc7db9353d4
MD5 65402a5c6c8e98881e486e4a01c79378
BLAKE2b-256 a9b7ca23bb8b2f993a83433521c2b54b19b0ab3b4462dcb6fc9b588410738b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0613637d7b8c811530859f91f665534d283114b55f78c0791c15393ca0c749be
MD5 776ef098addcda1814db1d9f3bff8755
BLAKE2b-256 0b5d6a8176499abf0898115e340ab7e0a73632f9ac6feb236c4acc6ce40bf457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1719914ea92119dcd696112fe31403c960241b13d33b0888e82ab09b5ec2b792
MD5 b87937220e8ea28d7e003e09304314c8
BLAKE2b-256 a4281589f73e877b1e961dbc252b6fa6844b37503c528aac49620c8bd22381e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cd292d4351fb6fd198fce855adf11438db056da318bdc02db99ee4578ea41b6
MD5 5dd4bd079c7804a9efaf90372e9bad41
BLAKE2b-256 4075970e4936ac1f994a7aa58dca22af7a878a11195d537b583b9e90d27e1010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b92661d3ce8cda6f1f512b6bff6a346732c6ce9424d943f88aae627580c655e8
MD5 ac89e6631868e2aff09557a42977392b
BLAKE2b-256 f2ddad1014c305705c0ec767275287a2e48c6c21285637cc68e854d52f7c31b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ab3a2dfd3113bbf858614a0ce6976695d88b4dbdab8781432f731fabe71de55
MD5 ca1dbf592e1594498f47c6f298025029
BLAKE2b-256 741b09f7fd238081967e8fbf7b937e46728aec4436fee1ba35aef57ebd26fe59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47a92fbfe2657f1a726a285e53548c9fc5759ce9af17a4453ac0a3c322523804
MD5 4d96398902895afe64c1cca2bb2846f6
BLAKE2b-256 437887d7745b52bd6d0e3366444ee7759826a8f07504e3968ab1c288f26fe3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c81771cf6f5ff9649319b2b7cc4a8db1a56b489a372b9c03c2a45a57ec632e55
MD5 4b7e6dd44a40bf2385635e2b1b3bb728
BLAKE2b-256 0beacfd1db081d1c7344fb63045bf39d0e703571d0bae9f708a606d8c2102ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51870fe3b6971c8e6d2a078bed0a9c6cbf1af5d57f2ddb74b13cceab4eed88be
MD5 2e2477024153f708666418c5b0172f84
BLAKE2b-256 264f97856f6fa6650941def768df32d012b22b681d7edf817b98d99bd258d05b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c13e09d4535384aa81b833ed3f9d96d34f04a90924e94495f94c05b75412ed5c
MD5 f5fe8f334101e9089cdd268bb8b5b0c3
BLAKE2b-256 dc074de53c4dda5c13bba92792989ddc0ebb9fefc1b61c0a4188d87813b322f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5724546d369c65339ca25e7d25f5ba77ca48632f2c1f6b5f118a524087277d58
MD5 0c1fe515713dfbeb9a447434f7ca1f2d
BLAKE2b-256 2e462dad173b6e6d88844e24af50127f36ceec07b97582674402a7e8408e76e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0269db6be0b1aedcfdbd2fa4aaee1c08e02c936dc0e0d42fa215a29349cbe879
MD5 2de571c05a3ad10b5c538d7e224884e6
BLAKE2b-256 728e8b7f5dbef8aa60e310163ce0fdaf831691062dce5d953b0a881bfe7a03ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39fb4a703e9379f49fc22117ef17279a742b9d392680594e1a802cf406653afc
MD5 10da3a09cd20a62a27270b5e4f3a97ef
BLAKE2b-256 9fc8198b9570bdd9868cf526717e4305e3d5085a30b2d89869ba5447868a0d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d83f0f92e62b157c6814dbfd5f26be5260a23fdc191482e827566ee3f04fd221
MD5 3fafb62ec23efc86e72b2ede7fd873dc
BLAKE2b-256 3bf0dd25294e153c8d5c9132646cda56e3784a4469de74daa41d0becbf17214f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95c15f4562894606bdd547d5458fd11542155e3c2ccbc6e8dc4584a8a6551d51
MD5 781021a8c936364c1270e5acb772b783
BLAKE2b-256 40afcdf337f90ddcc78cc6e7bdc5a417c6256fcae309c2c781a3d6851af18af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07538c8fb5da52a0e7ff6e730f77e7dda9dcfdb25433b944b5de0fe10b054437
MD5 ff3a1d9fc24be038a95aa47556401a86
BLAKE2b-256 64f130f94e4a11e9810e96bd666135778e8cce913632b37fb757ca1c19b6756f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcd4002283076498fa480fcb58302fd6641300df13d5cf8bb11e00edd18a97fd
MD5 6cf3ca3dbcee176b680ba73e09716150
BLAKE2b-256 5ad1a5388df5df0489aab5882abcfc78eb5f87c1adf8c88913c9091771336be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44834b83bcfdeef48d4f08672a55706670b21bedde90ab349452b4e75bea878e
MD5 94c3d5f9055076570979ca4c4498e308
BLAKE2b-256 09dd865907becea8bc236a1b7b2415ab4404879dbef08c0413de291fdeb9d464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1d099ebeb9e02df4f1a125699238a58d8a7271727262c0db5b8d91b8775a88f
MD5 4cf639f4a332c6407362ee32b7a57cdf
BLAKE2b-256 a8bbfdee3ae3efdf75dc52a9ec98aeaf35f818fa0205f89796b6bb507c739333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08a139515a0474c44403db7f56c60c9eed88f132b5cf8ad4581a17d7f48d3624
MD5 cbb0efea8c4187580b068ab13285e9bb
BLAKE2b-256 a91e33b7640d7de9798fe4736548e5716f3cab8327f92d50a3f151788a1c06c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 992c7a9e86b1aafcb65628294255b75a61a8164ad25966b0bd96396cb46f5efa
MD5 60969ef570a310a157a7f70fcd0b5fe6
BLAKE2b-256 5c50e23f654cd6ce7c25c6f324ad6481e528701cc842b155244865f2d0de13c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d10c8191d3d91c1b73078061e805e6cff601b30b00fe9dafb32b023e08436e3e
MD5 5ecf8d17d16b2cade8c88d3e6c91c917
BLAKE2b-256 7722d692c48e7efd9c464077b65797bf9c5e3a18a106cfc99e1b9c32c734c300

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bef962213e7c677f6b4495851de367db93a5c784aff0ec293d3b68f575f21221
MD5 e9f77b7431a504cb08a5ebe7bacce06b
BLAKE2b-256 5cbbe40c6d931047dba1dbed5ba9a1854a70bcec1f97b264f6271e08de925f11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.4-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.4.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9479a1d7fecdc7b800b8089b1fa59e8e3a7943accef0d52260beedd3f43ffed9
MD5 526a2ced347e6d197523e8b714e93a94
BLAKE2b-256 27192963210d5a4040ffe58cfb7030e3e8bbdeea60d5da563e20dac0d0a96f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ed671883afa88f030fdb5a9da1f19c932c067fbe335212ad8794683fc4fd4aa
MD5 bdbbea76f4c5088d31cc52063eee98b1
BLAKE2b-256 236e4fb5c3c6dbde4b4bee5461de96f584a29a8f9a04138af850ca993fd87557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6a82832d962a2e53c3fad2890966e39275fa1fc9699041b53f5a77704506906
MD5 5dbccbb960d0aa76a50fea3575b62acf
BLAKE2b-256 5c1cd37be6892035aa1ea5b2d1475eaa3a4ee56119f92fe82c1e481946aad6f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77a37227395f4d5e49870b385ea9279bd31772c80bd2d22d0e69d258c45087e2
MD5 4f1a8f8758aff3b58b6d6dbb7001234c
BLAKE2b-256 d644c19cdcf1e82651ce322173f50579885f3e13b46b5328e88ce78158a8769b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf63fce2dd50c420258d0ae6a3a0a2f36a7f3e5229ae404dcf28b6bc023b50b1
MD5 1ffc4d88ec6f5d484f39b3dc04d2f1e4
BLAKE2b-256 f285b1a720bb4a86f7a0d43cd1b5ecf918ea5d602537d22d86724c8ebbe969bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d089a32c34f71d59b7f3cb9cf0a90a04af94ca79cf62fc9c18d5b0af78479f44
MD5 5ec347a883a99c624ce4ab95ad6f348d
BLAKE2b-256 2654d3ccc7f3224e8ed51c38872dead938d37d00505bd312e86d422debca4e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7f8a51ea04fd688e633dd08bca1cb05d6e91c09444353cfd8e4e36573cc4e43
MD5 62a0dee89e4fa368c8b5a79fa26ef41e
BLAKE2b-256 88cb3466fa825861cc0e7b96e22d7023106a8e3d0460af0caa147773005da264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb8002800e05dea01f2f4687d1a653d18238c8ad7e4b48327ce48640c59d7bfe
MD5 f3bb879eeff685201bd770b4441197a5
BLAKE2b-256 bb63bb40cfbffb72e63f7bbe43ee77b5c793b52be0883472782f789328322e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcf7c5bb16263a5ef76aa843b2a5ec1558e4f1383791338569e95e6ad454796f
MD5 8bc9e717fbf81b235b357294cc6e377b
BLAKE2b-256 84e95953b8d7492c73d997ee5efbce0352fef45d22e71c423ba76f90ff8f9cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31e16c3507013f3308a00223f02df5ee2ccdf691f4a7c1fe959a205fc8e450ef
MD5 44b163a6e2be4a7ffe449010d32fd9e5
BLAKE2b-256 ae6981d40aa576ae7bc8660d131c25436f900fc7093d431bf249b96e5b11bbb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f61f4197e48602f0086f314a0fbda414f5eb9e3db5257da78d3bedf2830f8d5
MD5 36e3d71b31e9b8ba421a9ece3ea9a803
BLAKE2b-256 dc9fecc00228fb06df4e23f8d5967e260daf104ffac696f178c6248e8c933a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2d651f93055a0ef61596feb76443686b94c636dba20de8e5cd42dc41e089f3
MD5 849ff22c94ab56df916453f6575bd562
BLAKE2b-256 d2f73f28ddc6a7a0c97c90a3ddd9c60d4c9f750cbb08f83c1bb1a79d48f0b539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d10eefeddd9be2870c0034b8923480dca53d22824c603d880e4a0a7c1cea3d9
MD5 807ae8b651c2f4e9fb8ad91a9336725d
BLAKE2b-256 94a806e448ea89c991280de34e7bbecf5b4cfde9ea5ea4b6d20daa83cf646054

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