Skip to main content

Python SDK for topk.io

Project description

TopK

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, field, fn

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

6. (Optional) Delete a Collection

To remove the entire collection:

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

Project details


Download files

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

Source Distribution

topk_sdk-0.6.5.tar.gz (98.6 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.6.5-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.5-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.6.5-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.6.5-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.5-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.6.5-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.6.5-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.5-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.5-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.6.5-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.5-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.5-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.6.5-cp39-cp39-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.5-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.5-cp39-cp39-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.5.tar.gz
Algorithm Hash digest
SHA256 2fe491428b4995f091f38c565bebb03ce0fbcaa787fc084714548c4e322ef299
MD5 38a583f5e0b8b0785ce2f0bb7edf47c0
BLAKE2b-256 8e906630341e678bcfb2f734bbed255800c67c59a4811a229a0d5d3a49cf9e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b3a8613c1c1f3bb36092c7385287968b97d3e3104033b802e82b32b3b486d32
MD5 bac4754899495db661d1504647f0b295
BLAKE2b-256 4f993892c6c604449663bb2e191ec70d5f8d0465e6005a7eb742dcab16fef123

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 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.6.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19dd04132eaff50cadf0e39de4a7c0a5f659ccfd8dc6b43b2e7236e8456421a8
MD5 32c5414f037ab266c33058ad149dd707
BLAKE2b-256 5af5761a52fa61b8b024f9be23354842ac70ce6816f5b299d6a14258ff30c095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 954df5dd450647c9848e83277cb85f2f5cf9b637e01cf0092ac39105a033a0ae
MD5 15f9bf78731845ac5873001bc8d12a16
BLAKE2b-256 ddac1958b5a0b7cddd2dbdb810c17bfdf3d7314f3038e21b022c0deabb7ef345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a63088ca026569ddcc5d91c8c1b9e355f5b07d298aa05f1d61572ebf123700a
MD5 c2ca56de174f88cb8a8784a34ffe9454
BLAKE2b-256 789cec0918cad71d12f535437ff6d176cd604d703c5916f9598142e952d7f106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c11e3e9f8adfbf687de3b4e14b9fe0f727037d49e963650d8f6c80909a728645
MD5 4657b3e206fcb7cf676b3f4c1f6dc517
BLAKE2b-256 70414b52a5282f0af39585d5253f5d5a27ff7477a64cdb461c0aba12c18ef737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8f0666b20959113ed495e33b91a0f99117c6708662a85d2ba3b993e6be8b5c8
MD5 555160489412c05a7e0436d5aa420e7b
BLAKE2b-256 a18a892d73911fcb55e37e35efb9fb006f3145ba631056b0ae3ef1c7dad57f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae909cf022d8a2f84956f844ad062e462325df47668c0c63d1ba0adcc1072e7e
MD5 20897aa56855608e197074a7ca9ab922
BLAKE2b-256 dd0ee8e0bf19879119708250764f1945d818c77fe7b4bb40e07c6abf711c04b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4f90180df06f3d70537844735014e0f535a2a5ab4fdd30dda39aba587448e30
MD5 edc8ffffb04be799203fa6ba96042323
BLAKE2b-256 69a2630b050913b59c00a698749190ce1d40823b27ceb5964fb0356355fddff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f50d801c24685b04f346fdccf74561e1f72ec28c439cb1f7df12f2ea29bb5056
MD5 226449b5e0a62a4e8824674fd6e69ae5
BLAKE2b-256 e7409bb0fdd10301135a9c5fdb8eaed40e0d05a4034ce3dc91e614ac01212550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b1f9bf198847be9f7ad23f675f80803c999b3c102798db11eb37afa625de59d
MD5 87c2c6cdba31dc3d5cfee9a39d06ee6d
BLAKE2b-256 b93ad5f20fc3557dde74637c82ad94a9feb8006fb26317aa67b19575fa54c6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26ed55a9887241fcc659a50eb14fd37b7776932aff53e878e8c0c00b16730843
MD5 3e3bd02028a29c2197425596bd700444
BLAKE2b-256 86bee64cbb76497638ba086e86eec6ccca71b2332e45ee55ba647616f4943362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a836d53353840f9ddfd0733eea193514e61d44b42f61cebdf631fbb899d4d2e6
MD5 6bf6dfc544906ce80098478427741e7b
BLAKE2b-256 a00f6064c7795db83425b8056a007c1437724bc98c84050bb81f0ef2d4c79796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d98c030c271a8320ef3de2963cc38ee24c67196b19399cb950acb303120c30
MD5 839bc165b106d169f437983fef2ce4cc
BLAKE2b-256 619be0142851d06e4f23df7f60623c51a200b7278a82f84195d60cfbf81b2274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f90015e10436844682027e8db0064c9cb5b3558957b0a45925a7d12e4b21b1de
MD5 7bdb7dc1ae65d973ce1e581edf3e7711
BLAKE2b-256 46de5cd541c0d7af5b4f9141c87201003dc541aa79f8c3a4644ea0481ca3093c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c36816cb6b2080d775f485c8a180d87aac160b4d2d6cdaa00534eacea25007fc
MD5 694959ced28790dfa52d1337b5e06592
BLAKE2b-256 a215ad00ef72bcc8797749a06ee6a8f0875e701a1b93143f868a3a44ba1375be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 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.6.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dfbd082e8cbf5ead46b42f9b628e792f7f72a8a52ffbbce231e8a8ec9e576bdd
MD5 1cf2528e3abfc75e7e4e5bcd7460fb39
BLAKE2b-256 10ca9378ddcc24546609a79149acbe6e8fc22be9e03ce647201c32e9bc4ee5ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39d421b93ecf3138c51a77b90b048e02e735c69a1595e9ff97c73b79c4573c1c
MD5 5bf32087cfba97831c975e274061953e
BLAKE2b-256 f28e3c6189871cb57feaec997f1718a85e827cfce12f5e24c41aee2f7a160018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16b95cded936cf1b8bfd6df3cfb63380ac8bcb245bac483b854eec9f08082ce3
MD5 f6e764228a765df00f7716bf97382dbe
BLAKE2b-256 009ae4d165c2bb7cb93fc9d04122365a9c95232add46aca0107a753db0884216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97769727702163c2c1603a1974ef57c24518caad194819f20065f9278646bacd
MD5 1f60f2bf0f2ed41b6b14926aa58f3e96
BLAKE2b-256 25d846e6d54ae0237b0e5b2eafcb75735cce71cc945927b0bc9e2940f8ca89ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d50687e4d888c5542ee23326124006761df2ce5ad262336e4c32de59bc01df7e
MD5 311488dcb0c8bb3763eb5bdbf4786d23
BLAKE2b-256 2079d9f91531a7724a531e2eb4bf6ca33fe336b494a26186ed0cd0d965da5902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd8ad2396a72699c7a75639cc019f4229aefd267738d99874b2796f9c7b4e8da
MD5 a9660391fad3c46e0d0c8b833f9905c7
BLAKE2b-256 7eb0bbd88b639b1aab5757afd01cbdeb0a290906b8f20c6887c4a87737df3f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24b27a6f6375ebe4e645fb2015fc087f3cd73289660802d9ea340bd7bed70edd
MD5 5817d6a8da7d0e7e40e42d4e10ec546f
BLAKE2b-256 9e1bd58a8d19a5ff56867042aefd36d2248a7457674bdb03f1755e6d5424b2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49cc3810a5f3d0d99388b9f4a9cc837bbd348d015cd694351e1a653e76bd0890
MD5 03d37de693751441f233d6bc496fb4b5
BLAKE2b-256 c2ccf59d5961c3ec8f8ae02cd1af65979e6620e98141e5bc28a81e761868a2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 352e8cd394d5b0e74ebe0fe3d6f5c3cea6a3e9927d4387e998f5e48102d0879e
MD5 58823c7902c140afed54b9904daa123c
BLAKE2b-256 ce6dc78a10e7a62e950a842774db021bc31ffc79ac0b04679eec91f06f25b9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49d3f4750aaf00131abf73d16a9092f52f3cdffb84ed3e91a046eb60ff4ba077
MD5 f24a2b7fd6735c7e18a4d69c3f17b130
BLAKE2b-256 b63b41702d042dfce79f11fcc5b6eabf9ac85f1fb5e631d307a49673f690334a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 404a3411d24ccc1cbde78cdaa3ab96ac76d89e8a27630192a2cc22e62181f154
MD5 c34242ca6cab47154da1b8330c775de3
BLAKE2b-256 da1f1eae15404fd866f7228a09a98d4bdea072ef067e1687f299afda45959455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75ffb20eb2199563eb60876839808ba7508ed061cfab6caad0cd9d137467ee51
MD5 5a441058db836631c363bb2fe473e1d6
BLAKE2b-256 73d66a37570a95ff28b5c80b83e14cf49c456b755ebce44b914502cf6f9cb0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1bf757c10f58da8b44db53b60d024819bf0ea441c2929d4b0cf544e18acaf38
MD5 6ced27ae966baa0290a61d78236ee833
BLAKE2b-256 e85067c1595db98a4795f8274eaf6bbcaf0bcdd015fee43905967db7ea2de139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36c84273422ff5fd3aad0099006f68e18f743da59ff4fed871540c5228139d18
MD5 1b7e46d345edd0acfd16d9c7f21f361a
BLAKE2b-256 c9b1e520aa599dc31995ca53f6f9c57e5c5b4c1efbaa2195648fdf1a7eef56c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8df526d52596936ee98630e88b9284e0e26ac265f201874d4727c029c84e38c9
MD5 5b28f0458c46673cfa64cf601c87d0dc
BLAKE2b-256 5aab1a12bc091dbe44af4ef06f6363f33917166e981933ba94a5556e516d82e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3522c4b58f05bbcebaf4ee20643fb8243c4528cda2c96104251e70f8bec8433b
MD5 015e80d03a69c2ace903a78401587af8
BLAKE2b-256 8b3dfefbed1e439bb0b8c161e6e332da3b943ea421e157f9d7aa57e96d1817d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65c76990ad675b3010b7053689a74590c5e9150f5322eeb3fe5daadcc63dc23f
MD5 e47a8421105af3381a681280c4825800
BLAKE2b-256 074989a2b7e19614169a76c55f8207dacc2845a8f06b122cad0fe364eace16fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b006fa152e976a6f06686de113343dd9cea75717ab9d1f994afb01d5838586ac
MD5 28549bf582fc14a470b264d17e2834ef
BLAKE2b-256 63eb2b1417ca67b909aff4ce77ffe0ef388662690ce5f82e9d6ef9c3b2957a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c2fd995e4ad3a1e10ad103d4cbd9aca3055a7b7a1104014953e1917808e713f
MD5 9684a3bef57e461511fbfc8f027a4f56
BLAKE2b-256 d37d5b6a6d06e7a8dfcdc27753a7e006a787f17b1d33177187f3cda34941c389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09707e2ccd51e042675252754a65c939f57100777be1367da5eee87ce873eb31
MD5 279e325061dad0c17a199154c65fb37a
BLAKE2b-256 ec6a4ffd2de7244bd223d5db2f56b2169fa65515f41c202215f438f17591045c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15cbe28bb64cfbd7bf2d68d1cabb1213008cfc8a575f50718fcb28a633a281fe
MD5 bcc1a5c78626ce329338c64a4bc3326d
BLAKE2b-256 81277a84bf9b650b1bb94184540c8c0a093b645287f821b275f7f1dea683b30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a8f1593214bccbef7833bb1dbd9aa3d3267997099c66f5f71435f971ca5d03a
MD5 026b77f1b1175322a960300807327be1
BLAKE2b-256 3d03387aff7ebcb8205b3ffc2087753757156c7bd7a4ce63a9eae00afb88faee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75f51b1921c542c993c971ba221af0aeace9cc6d2a634ef0a9670dd1936ab4e9
MD5 baf9199d6ef8dddef4e8dcc249b833fa
BLAKE2b-256 d439a6c6a4bcae7d8b54fb861ced290695b4bf9e585bef512b2e51c4d3216b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ae7fbb9565b0a3ee05a44967aec2f8f61e2ac564232b83874ae5719a339dd66
MD5 bc947e30ef9d033619b6f3e4cc6bb3ae
BLAKE2b-256 567092ba5aa52999457e95ef69f9bd7fd52ac03b4d713261ac69079f0bf4a671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0900ed4cb687c3ffc0cdedc5c2e38db0b623b5ed8fac36f092a1a009edcdb683
MD5 6690a1ae54457a5711d3e8202b68bf3a
BLAKE2b-256 6bf21a717445d6dda15a5dd2f9d5364b27d82661ae3cf871103283f809d491cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48a211f43f4f4be929a38f31fb4c5d55d42788e524d203b3af915b1678931359
MD5 95b0c5fd3b4812a5ea354e1eca40648d
BLAKE2b-256 626872c2cae991cf9d74f574e8b23d0a3cc15aaff9384859eaf72c851c6fc9c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6063a71e3ded8a1c5348848450ffb10fe552a9fedcf4f2ee673aaff8f962e8d
MD5 17bd7f7966494ec780304cf3dc18e479
BLAKE2b-256 569462d49435b18053fb45d3bf44914fbd5fd198987916214f64f13d59f10f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a4b08d86a47f11e175adf27f775712e6b50dc4754bb66481f38cf0c018e8b9c
MD5 b8c682c4fcee1178fc922d58d49182cb
BLAKE2b-256 05792688ff21be17e69d8a0384a47d6ec21436e5b7af37b0980f23455a4af3e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5de482cb5fedfe7d0d454a05f007b942c4271eb405263bae7cfb023791368264
MD5 1a9ef60ea6fbf7bea9df5d36c0331197
BLAKE2b-256 ded1bba0e6a8fb2ab814b925a66678fe39e8161ed94caeac89293cf57f695b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 092c1d4c75a97132d4cc3df475810ee4200dcf707caf27214df33bd59133be3c
MD5 d2e7713cf1196a9eb6ea0ba6c9039650
BLAKE2b-256 ef1c1576908db0e4cc0fcd99e93df9bff58581e2141acb8f1deca9309e539669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbd2ce8b13ae585dd43aaeedda69fb709dab0a1362b0eb3e55af6724ff88b6f9
MD5 2c0f3264c3f7417ba0ec166a5948df9a
BLAKE2b-256 c557c68e73cd2b5f0c43d8246d7802f3062d73fa1d1e0f79d2c282e19fae91ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce25b47affa10fbf7600aab932b7fa2d2502415e6556fcac56aa81162048c622
MD5 2eec8cd4b4ca21e70980cebc1752063d
BLAKE2b-256 203e3adb7134a46d6023202f875cf04102d8328d56873cb94e99f6954a518a8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0116436b276893ed668a32e0845bafcd4e5ce950e1e973273da2dddce40f162
MD5 6ecbb1cdcef1f58ddfa5acd1663d9cef
BLAKE2b-256 6205aae2dc1569e216a5c2508f4a7255ddcf575c8a6294f7ecb5d42ba082f073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acc483521440d1e7f5d1f42798eacc4fd1716fcb660774a19f54176fa666cf0e
MD5 21fbcacc0f101ea2113a9bb8e0b92ac2
BLAKE2b-256 294f22d92075e9fa77bc624edd03bb3174f7077dc14bfeb1371a82c84a6dc5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ffc893259c3d446ac91b36a952e5c225d86a5f2445b68a79e34a1733b5e37f3
MD5 2603f2fa29d2b7c68416bf2abc6b4ae7
BLAKE2b-256 e95b060430821c00c57b7319db748ef6768ac241a67ad3227b79df4782f746f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9c00bd7497e25a6e813d096f5c941e18aea8c4071316a8a12dd9ab897e36406
MD5 9e65677ae1fa8c565a8b274caa7d3537
BLAKE2b-256 ffe88f83133911adc64fc8d7129aa18fe22ba5ffdd92e10cd8656f4be0863911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bd5134ae2f9523d2f1598f41bec10587bd124d79edc9d312d83df7cf2b3c43f
MD5 42cb0ec07e48f29b7d39c41e07816048
BLAKE2b-256 5ec1d566ab13c06cb83be7d2f1559c3498cc9e24efae7589222b24070577736e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 991c36ad9da3a5a0b676f51a04a49d7e965375c0f8683e002aec97eabb026afd
MD5 f80a1ee3659cf71a8e0f268e8aaedd2f
BLAKE2b-256 f5cb9db53f8713f0b278278fd06133028995d550d5871add48d08bacf9e0b1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 729f0be8012706bb4a7671e2aa2da713cd3ae4dfcbdade4b1e0de777b6319f85
MD5 7679be84b8e1d7373ccf0aacec6df847
BLAKE2b-256 37046a65c4e92e3277dc53c1b3b0a03ffc388d8e458777ebb2af37c1b7e16fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e9c7b58321fa0b381250c64321a1db26c3d1ec4d40f7997e5d802927fa86c9f
MD5 02a112a0fb1aad1f02098df2a3172db4
BLAKE2b-256 de8e00961bd1b2f170f612b4d3f6a53f94f57c1ebb3d6606c0dc433ec5dc4a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f838cc89dcc377cf7d670eedc0dd7bbbff60389d04d3e48824fa2cc5ff801c2
MD5 ec5467cae5c1f867810d94935f5743ec
BLAKE2b-256 d0a269c85e94df87e6697a88bb74f9edfa990eadc839255c6e38079b2648874e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.6.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 970386226c6bbd46e515e819ecd75a6c8cf9e1d1d566e243e235e249778e0706
MD5 0d16db3c82e5d001180f6308acedda37
BLAKE2b-256 59ecc34f09a43bbacbd7b2151065f27b0c1fd572e1eb70bed5a612374001f200

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e90e216d023ee618ef06e82c1e884696a2213253b8867e9ff8e6bcc92e0a33a6
MD5 2fa1fb6f1fd5e1eabab477ab44c495bd
BLAKE2b-256 0b0656f387950e0ae9ff3865b3767afb1e0cf0b871c462e7beadd10f7965229f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb091ef4bf5bba56998152c547da5776979543cb0d7157641e136c67cf1267fb
MD5 b3afe3b75290f45d2bb440322ce504c4
BLAKE2b-256 b6fb435c8a2ee55509c406770f53059730f44cf4d5ea87d464b0069d0defde6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 888965e54097fd3d7a31f0b60a5add73467199bc357d9af0dd25fc1da7317769
MD5 7297d7fcc2157179d7f8c4805136cc80
BLAKE2b-256 95fa579f683d8f3633b8f0591a5c98d9dfed6f2e273c651175c7c9a623d23584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eedd6e284d5b9b2a8e3269941efbcd86fd185b966a1c10caf9e2c21f7063c520
MD5 bf9951532ee12ab254bb0d9cf5660977
BLAKE2b-256 be0fc20201f5adef302d2b78b642f5191387417040b78ab2c9c47ac6c3b3aea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49d66e74961b2cb03b983bf6c57b7a00e464e8f0cf02d8ecf917cb2f9a20d7e0
MD5 729e6ea52464b3a2dfeafd2993e092c5
BLAKE2b-256 5fb1019a40b2d19e42261343283449944e4edd403250539d250108edd107dff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b90e434a284f686527b02b51a168e5aa51cbf4e12a972563092a28480ecd3f6
MD5 1b1961c01952e6b43543f22880c2fca8
BLAKE2b-256 bf5d9a378d4ae9e02c5e766d150dacc988e2ffc75236dabea902a987cebca5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9933d278cea1898b82682850b7e6ce31e9961e6f29dd761f5e83dee808475660
MD5 c8080e1be4ccd354d847c17797a3697d
BLAKE2b-256 493d45c4cda09b685da2dc9ed67b5000234e67430d4b44c0a71477a85446f3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0654b6285ff8383f89b1132b0171cb841a2429bc8dc36f7d6f96329b5621ae67
MD5 a4fbcca19864194776b978ecec65529e
BLAKE2b-256 9904e9138e29d27de68a6e0d0402c2da7326e46275e2fde04e7365b83d46b5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d50eb433e6e1219c1a311dfe4d4922d12991ceb049ad7c06d4332b52a3ec47e
MD5 3910c0416ba6d0309ab3e32271c92e2f
BLAKE2b-256 733ceca65f4964b0df32bf262a9cc87f91d3f89319ea2702c6707d0a4f844ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fddc9d5dbf212e102208c8eceef9e67f7ea949cacc6488cd39f92b1b3dcde3b2
MD5 af7a843683e4fd9a35b944a64ae7dc91
BLAKE2b-256 4d3dd7ed0a5e901f8577a31109955417c2b789649e2b209854d35262b1d17a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d98aa6c5ed89bd35ad2f2902a5076ba938a6c467d6e7bcd451af18b9a49057e
MD5 aad9d3e1a5bdea271aa34ef7dd34f892
BLAKE2b-256 c287afeb72611b8b00947c75c84f07c9ef924ec32567cc0637e011d4c24dc809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c87acfd06166f81b3642ad5368da7bb7d3acec57cee7eeeaaee6fd1ba53e5e7
MD5 43fcf88ec32ee257936001fa717d6f72
BLAKE2b-256 de72bb1b5384bf0437e41de1e65bd06574f4b60504887f7cb055377bf7b14995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea6edb365e1f0309b5c74cb240a71e25644f1251ced021784f52f843b1336b3
MD5 37dc8a056e9577f70c7469776ee76d7d
BLAKE2b-256 6ac3ef3cb92ba77fd7678ec1576f066f7647afc4b3f79b4b674304c4054a619d

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