Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, fn

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

6. (Optional) Delete a Collection

To remove the entire collection:

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

Project details


Download files

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

Source Distribution

topk_sdk-0.1.21.tar.gz (142.2 kB view details)

Uploaded Source

Built Distributions

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

topk_sdk-0.1.21-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.1.21-cp313-cp313-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.1.21-cp312-cp312-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.1.21-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.1.21-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.1.21-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.1.21-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.1.21-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.1.21-cp310-cp310-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.1.21-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.1.21-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.1.21-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.1.21-cp39-cp39-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21.tar.gz
Algorithm Hash digest
SHA256 5b2f6325a127a5f80db2f1fde48e5721c0267deac41875e1a6ba32bb76acbe74
MD5 20c71b24644469d45f261dd99e0dc017
BLAKE2b-256 d113d61be0544398d4d72bb914f5ee9735687907ee2a55ba77c47a19657b064e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03326086cd8696ffd6e73f9502eb5fdec36a495a08fad10f3c35da35516d7005
MD5 5bd00d9b76459397527354917cc0f9c9
BLAKE2b-256 020ff6480048b3e3c6f171e5db99f44c6e143dc43345c89406e3996b36460d1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 28dd2103a2166ecd469b3a7414812a0ae4452c50e03ab9a557641596b2c39cbc
MD5 3f7f3c3aef81f100b28e86434ceef9e9
BLAKE2b-256 0dfe56705c54408df06567baa8f13d3ec5253ce0e8f76dab0cf842d917a23625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8c947591102d527caee36e0d90003f279216654db1cdb455a1541259396eb5e
MD5 e50ff235e166366b53b484690ba01c45
BLAKE2b-256 becafc551e74c51ef54a76467083682d66a9a3feeb4536e74b4d79410839a05b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7209cdd18104d03e403aee5c544084d21526388d2dafab4a0047317771de6fe
MD5 18f2c13fdd5d638e3c890eb113a4d223
BLAKE2b-256 4b2d4b0df14274d5d4634b26f1a191baf490b90409653898afd559384889bb3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b792edada1e91108dd7a0586ab26ad5c5b5203a4658b004379b1551421c0c399
MD5 b189dfe33749e53055015765eb207372
BLAKE2b-256 903da42e452b0cd003088d8c3e33ba845508ab5adadb797a2fdccf63c4838544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac9d56ee715bfbf5bf13d8bf060ee344066ef79073070294221d03aa183984a1
MD5 a65ce4e722608523086e29db0a1a6732
BLAKE2b-256 31cdb950a80c8f1eeb1e325b15ed0317ec09be84bbb3fc937e8cbf146e051215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 105e159f307b4c831794cab686ed49fac159ef0cf9fd4994f7f642a0fd59c1ae
MD5 0e4096511f89b27ec23b148719db3661
BLAKE2b-256 812213e09cf9795d72b080cc24200e0c91387c4f7d259a8760c32c9e6b68fec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1b6e1adeadacc819b6680fa90091c285b0ab813d8aef85cef8f521fd846eea3
MD5 8e78889f8f63af2268291070731ccaad
BLAKE2b-256 1fd0490095f2d1457e86d8ec49494d8693b3008021eff8669e342563b064aca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fa53435053cd6ee14de4ba9df3009d350c4a65de9c1afc933c8b15349411e21
MD5 1517f7639707934b56eae349ae0939ac
BLAKE2b-256 b65727c4e83e5fb6de7423a674e4a5bb4ede1b0be86df519f37633045522302d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a2f3ce0ca3528e85037a411d0f0cc0ee4722410527ae0398a3df75bb0e503ef
MD5 d17bdc3587746217d6488b6c4f172e26
BLAKE2b-256 9ae328f483c906860f87662d2868eb595f7633973af73a817841219d3844cc6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f47b8c27e44e39b585db935fa176cbacd7a62a22a9583e00e12d712334f06cfb
MD5 80c5580bca85b3d515de6dcbd9db7a56
BLAKE2b-256 35bdd2dc487aa6be5f90e3d06ca4cc5ad343b3b97fcbf98e3d599dbb5f0ad002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eadef6f4e55e6f43b4dc9ddd71ce94ed7b025a0e0b986b4537f4221bd137a52
MD5 ec51b754965dcf3a7da49a9d616c2931
BLAKE2b-256 16cec3bfac7eef7ad973139f945e954ec2f2283d87dbe48dbc19c50c3f0bdd94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4209c58a0afa594ca8540b160e2eaea4d54a2818fa5a616d0eb35206d476769b
MD5 cc18df1e42f367e874957c8214e0ecf1
BLAKE2b-256 319936df7b2339640b31c5cf4aa19ac6879c128d187d2709c09a85aef762c265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74a59814dffe50060de4f29614054aab0515831b976cd2fb22dcc74356b15381
MD5 220a73c540cd06e65472d269911bb09f
BLAKE2b-256 2a6a5d78b7204d2acb0f0b3a44be4eb9501b67b8cecaf62bdd7e3ebab5e02465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 294f765105d58aeb16ec3d2aac157bb8a5d1d4fcecc32adf8c17a4c6bde581a2
MD5 afc51fb24a8669b8e6b81e029a7f3a71
BLAKE2b-256 832a695e60c3905d875f5ce70c6e58a9a17c92b464f095fc2a9efb26a47c9788

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8ab5c88c1b859507a4f60b6756d541bd8535fc4da6a1d86369a57344abf5eb66
MD5 f69ffddb8c999374866a73c7f9758fb0
BLAKE2b-256 864e174e51225c4268d69417a8d577616c51634b17fb60044dc325cba284e3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebb628c0556f09c5739671aed4bd8c66e923db36e6226c3381283c5a6cb1e9c8
MD5 733a2dc71bce9ff87158020c8ae19551
BLAKE2b-256 348fa0c6f2af0f4271864e1b2ea4e008ea065e5d88a1396eb31089ebfd1e1d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a802bebf2bb9ba97f90447befe3f3634ecf7a77a3c3ca0bbadbecd07025f754
MD5 ffabf35f0dd8a5a089857a0abb486c7b
BLAKE2b-256 5a96fcb666b9e54761d4067896009f088184f5d843897f665cce848005fb8d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f3f5bc6b33afb2588d6a91b3b01d9fd1c30300d2b25fd932b43c9736c5f9535
MD5 70a0f3b16bacbaeef37189932f9f076d
BLAKE2b-256 d0213b2455c0dfaa3ca194c001098dfefbd062181600b52d427d440436a21695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 febdd8a14fbe2dac34e0cb5f94429fc5660417e0ddd8a128d79af2c209800b12
MD5 8ecdd3b56dc7e40afa7fd25d7e0423c1
BLAKE2b-256 105546c292be26c874b993a1f9b00813641f41fdee18f3bbaa8c269d8bdaa0f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3212b47bb251eb8a0ed4332454fa77549becc32ad99539b85e14ef2666d8d1b
MD5 3a948e9772fd32adda2550e6b5b6890b
BLAKE2b-256 4adf736763acc6f83349fe3686187e4af652b7609253cc69f2d84118a39e74e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7ec965abf6cf25ea24cd75677d9d8a683fa7f75886eeb4f35a1b33f2c590953
MD5 dc7ef2dfa425691bc6604d1aeb447135
BLAKE2b-256 7a0595e3d14b6c4c628efe3fe134497f2b12ae054852d23e55844668e2a05ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f008a3b94de0626b5d09207fd4c2c24e1d70f0a91ec435de4a00c51000df44d
MD5 8fa58365a12ea6d466404ece6c370e90
BLAKE2b-256 55d581cc06852f50da0450e4a37c151b4195709a444cafe28697446d149eb00c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5517d34d1f20a40392748f22220f8d6aab12f0e594e5a11e593dcea07d8cb626
MD5 01ae918bfa9547bc1b76413a5069ee32
BLAKE2b-256 2fb61c1027cc96a363cd4aa9eb60e41000b55a30807965cd1f0358ca0cf7dca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d851f6e74d56a4ca71171fbb3d9d812886488f8c2826924a6e6eaad1dc6d9ef2
MD5 768114468d26e81da5699a104986e5ee
BLAKE2b-256 cc791a95c8b7d6e7cb5f92741ad235522dd524e8dabe93a04553c5f3859ceda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26fdf0b7c9a8a25a64364ff7e22349772b621c95e4c799b460001639a8bd77f0
MD5 ccaed30ecebf5fd7198c3e7bef4fc931
BLAKE2b-256 25a227eed0559ebeebb3c8a217a6d23576e9a49ebf004230b99fd30b81d2c988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bc1548f94669aa0d770e4adb5bd45fbf537d511cc72931bdfa9bae64d24bf56
MD5 6e5b0f73e06b8b2379b79c507ca8e749
BLAKE2b-256 317550da01b3698ecb28bb421c3f074de97e270d30e083eddc98fd8bea9a3e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4775b6a75331ae7c3510dd00c4e6095268fee7813f47aab7bd6bef72925b706c
MD5 102f80850fd6f8d1d02b378a9fe1ac6f
BLAKE2b-256 e6d66f5179cbbbc40f108f9dec4dca38542c15e01920e7c7a6a7313c32b72b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 29dd13fe2bdce9c4ddc753c76bcc71a15db27e7f3210314e8ff95508b70f704d
MD5 9ee7b8fe926e097ecdcc9b74ff1198bb
BLAKE2b-256 2525627078e3f389278cc253ac8489514faf6d3be0881b5d98ae41a86bb22cf2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02b00808adb3705facbd15468671e602641e2413f33754701a3731f388223765
MD5 b1f2a4deedda35b05fe0c37a75b4aa43
BLAKE2b-256 f0cdb71fdfa569d7d6b7f1e15da8e8878ec4afdf6c1c465d5f93e4ca15d53165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec768a3aef35b72158a48371e72975b0ac8173472832bf4dde8f395341660d0f
MD5 094b534607af158c35ef5db55d80a179
BLAKE2b-256 d51c70960d360c829473cf5bb2305567a3c67020d762c2b615bebe861ddf763b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3444fa02ee5c46d46c1ef0bac404e3a7e3f9fc03c2184b9fd093fc0013fb3679
MD5 0b02650cbdc915061b3d25457f7cb7d2
BLAKE2b-256 f196b08bea2974a3c196d1b3c251c797b7c1e9b995d94c60ebaff4d6930854c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 024c5c0382aeb5ede8c70c0d7ca64ac2d9904eb5db9777a940b6528f364378f7
MD5 c52a66ddc35b121fd6b317d396016187
BLAKE2b-256 b9f8f29f5700766cf99710cbcc3f3b49b992b7e3793fb7d445ca36f11277d22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f67dd7e8d1bf857e4adc6c880b5b858efc93886cdd86cfa61ecd70756f3c44
MD5 5b523c3e3b50506842e0e62183c3004e
BLAKE2b-256 c10824b3a25c7d7fe632943174ea80abe8f9a8a35408ae2a8657bad4ca120e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2ded47282ad46d2885362960b4d25be3b85f3614feba4ed87d355ff2db3592c
MD5 42c320aed7febe0209dbb4129d2863e9
BLAKE2b-256 b40d9e1827ae0c453ea64802298c3b9a8ebc330ea4d534d0a411bf9994fadf1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfad73d1cd33f02a891a95b37d73d87e2a69f38946ae12a9da4c8566ecaeefcc
MD5 40ab075349364cfdc789e1981563488e
BLAKE2b-256 141fd8ed17dc7b00a01d35cdbedfc411ea67a476d13d452d8ce0723bf4e86445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d640040a25397194ed1c74da50a122afb23d3223c58e73afa472703a64225b8
MD5 861fac08ab87a039a46cd855ff9cd8c2
BLAKE2b-256 db11bbda38cf6814281b4f9e4d90c3bab244cdd1664a562313946e3945106072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d4b484996288a78869795da8c577afc2b8850680a0e3b0562f4fc10bdb469d5
MD5 2fc6d4dcd0b3f6c8db868cf8f95583c6
BLAKE2b-256 e9f03d39a979e89441c42870308dc36c27a268856b2e09964052c77df4bafc40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f287ea0e314884641c554413a6291efced6984014cdb947070ad968e22f63c2e
MD5 ca9733a416d10ccc02ab8bec10ed44d7
BLAKE2b-256 79f2bc1c67b3d81e052148fe99139b1135f374a2315da7aa76f9e345d46490d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40b9c49155e9349cf3cfe8185c6e031c942a2bc6ffa6772e4ed7fbfb2e067924
MD5 6dea4cf279fcfd5c1251df4fb8da4411
BLAKE2b-256 b9cbc3ee70f115575a06b26e86a71df6ccf462eccd36ddbff5b73cd2c14321b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c03a06ae3adf0be91793999acf5c581a95013b8123d3bb992f6975548b678969
MD5 db017e59c271abaea0c5ffc73a0adeb1
BLAKE2b-256 2cfd266c18cc29b43d2e6a9b2a4a185ddf683aeb605428d030d08cba557ba61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec025045fbd34f3888890a70983f956e16a1b31549fded0534b9e9cbe76efe27
MD5 5e77b96b26028b9b8cfb67994e0f182d
BLAKE2b-256 00444be4a7ed8c40696f466d74c8afc0569b3fbf58defb6866c35058c2a8a90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5bb3d65de3aedb545c43247ef83c182463f696ab43341614dd92d32a71fc32a2
MD5 a9a0effccc43e033c4d769fb85beb646
BLAKE2b-256 30c0c5c152e2e483eb4a2a89ff7ee8ddf9cc7496bcd80cf5130434c7146d66c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0851e37d812dcea8ce6f7d7a11d1dfa2e05e5fd0cb97b0471324bbf5a4576f3
MD5 ada00b60e03f442798271637fcf3106c
BLAKE2b-256 010affae4d2530353466376964761b1e99a64c998500bd109e610cf75e629cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6066495b181a2bf012f4e24075cb5c131e4839de2c8633b393af8a50c37eea0f
MD5 88e162eedd154dfd228850395326dfb9
BLAKE2b-256 ba1968c6dd341796a8cb212f9aff96c33dd0cc693cadcde770ddc2525bde603e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 daca100da0ddfb4e338934eeb5e3e4b2a3f3959a80261586d6c4863ef0d5ea55
MD5 2f0d7ea40a62ed0ca1e09305cde0b870
BLAKE2b-256 01a1c767ddbda9eb103285d8dd55df41378b7658ba547570399649bffe010a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35cbb67a10c4832d5af0ce603bcca32aca41c1f959f2dbe9d7041a0da16f2b0f
MD5 9dbfe7131fd4c5cfa8d78f5bee3396a5
BLAKE2b-256 1b34d633207cae636ad7be078697d5c2bbb935537189eecaa9214c9004c94809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be649d8ecc42d3fc524e529960a3ad97066e6966a74e6ca4416527a19e3901f6
MD5 82d59352825e3c199b123522e5c72d5d
BLAKE2b-256 7871b223bdad006792cdf5f2e21de6813baa419e9382b21710299b6ae11a5a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b99288d63aee90de583df6b9f02b3063185f0604a008174cc54e92ac58452753
MD5 3a0e5f65c70ddbe24d667190de6e6123
BLAKE2b-256 7368b4d60ff27642f7b8c21466bf2f0666937e4ba07ec668cde221dd8c466365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c708784615aaf29f2d9b5e738b571eff7b93e253f2d575d6ec83351aad96bd1b
MD5 4fc9571ba6e57c677c4b1edc7b27034b
BLAKE2b-256 d5afee2e1a831b3b273a56d2b9c6369e8244675d4ca5e0d726c72589590c8708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 134cb3ba3bd806031b81f281014479497f8a77e55ca1f1e583273b38172e2f76
MD5 2244fbc67764e183eeec6e58770cf3d3
BLAKE2b-256 24e08425d21683a8a297ed11387e1facb877368189955bb5d380d3d3aa86be2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e06529b102ffd72c926c210cb04fd62d8d33bc858509a089382c04fc132847cd
MD5 1bf09385a05089f972a8d404fedf6aa0
BLAKE2b-256 a1a2a5706480deefc439974d1183c76866905d2df9842ac17a457999703548c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f55bf2164998dacde4aaf8faf09b6cea06201be4b029d403c54a8488e4de9015
MD5 698243442cb88944645c330c43242a9c
BLAKE2b-256 439b901f470671516c841161651ba88f1a0589451a6faf7dce7571f07586dbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84d2e578f860ecbf11ae3cf19c5ca388629c78022afb00db9be5234a9b64c26e
MD5 366db1fad0c77209d127c3071e47fdbb
BLAKE2b-256 f3c9f7432bda0208e9fd55ba21b673795aee58ccd4c125a77722d5e45405a37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cee89950ccff6ae883c3c9280ab9dc280afb4620c9056508e28dc5f8320ebf5e
MD5 9522345272c88736ab24d047590d533e
BLAKE2b-256 d4b7013e5a2f9c4275e58444263b1b30fb8b94991b7f31238f4e2a9269546d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 845040815daa6899c65c2fbed456eaeb42897dc7b81b6bbf5793f2c633bf15f7
MD5 6c3ea841e79c6ab4d27619d1302b9da2
BLAKE2b-256 c7e6dd3e2e675a55c1cb856293e6076dbd4ec920b82954fb108c48fb3fa2c109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 255035592b78a7e5b1ae47f9f1b1e5ce4ca85d7fe9bed4eabad712ee45eda6bc
MD5 b3ae485fb91138957a03bd04c266346a
BLAKE2b-256 5675998de788de5e0d35cb8d01a543fe07bd62a5e9ef1538fefcc4cb7c5df403

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8cec79ed27792b9a9df618daedba4a0d1559fd038ce44cb4f45a639d40c42eb
MD5 951331fd913888bafcdcf80ec92e4d51
BLAKE2b-256 5de3387dc95506c612236684e17ac4d123b26c173fd1e0c307fe6ed0d901123a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9abc49a4823e205546968065a8d5958e7f1f24831c98a3e08dde75fd5275b01
MD5 b1f5fa1dabadd0c0d9884a56ca9d5158
BLAKE2b-256 914e99d5b8ef9c93ccbbfef35b54c164eb53d76ebc98e7a00418cb0e8629bffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bbe16fc1fef360e8bf479d29cea3d59ec21b167d62d262e1eb60aefc5b8c7a1
MD5 a0230eabef6026295b2387480410457e
BLAKE2b-256 04a084d57fbf040e506d43a6a184656c6e621851d89cdaaf4c2238eeefb71c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e29ceda05561b987d271eb88161179e3e220e4d27ed7a0d049748988873f2bc4
MD5 f91dea0abea2b0c28e3ae1528976ceb2
BLAKE2b-256 ba250891c59a9815316c17d53a2732baa770d65d29f7139557f92b9c0c1ce400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa5b5582a3380931d99b73dca1ad17a95395dbdfaa89b11d93f8591ae491198d
MD5 7c8fb3ec970991b5125b67985eedff6f
BLAKE2b-256 d31b683de1216cc4efbc8fc406a5124ef7927e77326f57fe6e677b965309f160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b90c8be3ff0623fdb8e2087838af916b37801d5982c2d3b56a9446fc4288d860
MD5 98283ed86734726ab8aff8bb5ac8120c
BLAKE2b-256 d3414d667c7994259ffcc2c4892c51929dfe08e76490ba0520ff6eccbda1c486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc5dd072cce384396921d062a9ceadb15f2db937330eba35d1cd5efa286fbba4
MD5 981672fab036915f7f60a4d2577459eb
BLAKE2b-256 eb141c6a9a125ed9ebdc6673f5b304b20fff516b8da1df7ac942036e77a853db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f4e94dba573bf7ef2d1c696a6c71afb14f186d0309b085cc24fa365f8c46110
MD5 392d812ff25f5a0cc93c9e8277b2cd0c
BLAKE2b-256 c122d23377b11c1d5e7b52e36d605039bd9a4d3af3f83b274d14a69634a0fc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d3cfe6fc27b29f74417e2fb8690883d4a2501f860cc83809f6d16bb95e4e3b0
MD5 e52aca43e4b854cc8cbc210d68e403db
BLAKE2b-256 474f5f45e88bdd8c72ba89547e6ee26bb2f3f89ca6069f772b2f8bf050759b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a9467603d234a88e8df310b08fca6e156a6dd156a287c36596a40f34ba0db29
MD5 4dc28c73928604d4f818a23c442dd289
BLAKE2b-256 6040dfa7c1227426d82243bb3076fbc8f69992938585cf184877e3b12491b71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b286a32a326bf589dc568d88010b42188511a1a6aaac94bf2fbf650c9c0adfb
MD5 6e2d2653b8a942037af758594faa84ff
BLAKE2b-256 316ddd82b7b0ba9cba24398a9a6be820d7092871148d07177b88bea6e5a21873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a165cb05cf1af243691e6461def9430d8b27e4200669929b2eeb954f620a2a4
MD5 98f60736e4994ba18f46253e68840f18
BLAKE2b-256 7b2aedd81a275a4231b22601d2524c3c2aae94c7151dbfb6d24ceff81cd8f981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0abbcea1068e0ed3625d8eb443101ea5a5a1b48bf21fd2659a9ca4ca7143630a
MD5 36d394190d08ae8b225804630be5d289
BLAKE2b-256 426a372c2fe11d583c44636b6dd22bdd4984bfe5b8ea12a311841aceaf4ad304

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