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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.4.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.4.1-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.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.4.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.4.1-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.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.4.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.4.1-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.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

topk_sdk-0.4.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.4.1-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.1-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.4.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.4.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.4.1.tar.gz
Algorithm Hash digest
SHA256 774f249dfb41e8bd509e7ae561100a18563f1c7cbb1d1aa3278485414a6171ac
MD5 51b4b9d1924bee2d37ca246831aa7890
BLAKE2b-256 28a69fed5fe356cfefdb56df94242e139f3c157f877bf9871e08d14b0e7b0365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0802a4ecbe9cbbda2f7e596117acb9ce158c2d10bc07a13d31698bc01f48a636
MD5 e5e84dcae4e4298d0fc57121390633fb
BLAKE2b-256 f552c3bfad1a2215d144294fa67e86400f610af4e31bc2bf4c873d3dcad5533a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 80d76af57c91d53e45ecbd2e3f2527cc491ee529453d3580356c94ed8ab3c785
MD5 44d600eaad0be9fd7cb5040efde8894e
BLAKE2b-256 5a480868181e09713e0b504825824d47419c12a11b4b545f9d32345942b243c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 796762ff8a01b14dec3e82fc30eb1699d6d3ce29d3fef47b02baefd07cb09052
MD5 6466ebcf591cc42a5137c2d56ba2acae
BLAKE2b-256 41b51a5faf5b6b750ed25bde697bd5aa15d7e57e1bff2158c078a4751e0e91c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db3bed9a1879383ac8b8b036c67c63060031750299d7de13a5b1b6b5926d9145
MD5 5913450b9bda361842974d485bf18510
BLAKE2b-256 94e91e23610151c426d33521514e3862d46e32c534d3804f07bb7c41ff28b2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76b70e61d76f787800d092d8d902c461f49fe36ad8787dd5b7ddb562d0c88c52
MD5 7f3345394839df6a47251f1d19dec504
BLAKE2b-256 fa1b34d1f4e8c761811b718ce00f9b653a458098e54c99cefcc6e66e8177f74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7ac5904e20fb9cbcee749126de262ceffa0fe3675dc1babf761bd25cae329cd
MD5 fb9b3d994b63b63c95c4043eb5ad05a4
BLAKE2b-256 f90d3a68afb8e48beb69b5f6112ed6bb290b24004223287bc16b585dafc4c74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba29a2dbf18b9ecb45fb1fc2397bb95e504b903770cdd0009a562d3931d6fad8
MD5 8ca93ae8e97f4111f82e6f00035abb94
BLAKE2b-256 6bd46f9d9911477230e5429842edac3c1d7619a75b90071b0d607bb7f0d108fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06a2aa6582b18d2558c3c7b241732568086612ee8445f1e41c7b8955c105b54c
MD5 3ca23886cdefe137ce28edaeb6e5db76
BLAKE2b-256 f45263425d91c634b00e97bf57e574a2a51a2d8d3ad0ce3e3d363665997d0a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be603d787375ef1e40a2ac67495bd3d273a4187b11a26aa7ad849a90b8fad250
MD5 f3a8802cce6def746e3e6505f5a257c7
BLAKE2b-256 62a3bed24becc20df45513477f233c0b3bf54497e909648f6436d71510fd2b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07b8f3110dfb78cc6a0a6d272df07b2af68e256d7d8b65b73c35562e927ff052
MD5 23edfd3b3cbc8b672522aac51af17c25
BLAKE2b-256 41ccd1cbe9001d6e6fff2a4217631a736ff88c23cc38163b3c8f8194f60078db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8092ecbd9dbbb05f992a31e2d453ffbce5a59971f817fdd17adebbbce90fc2d5
MD5 573d20a0f143fc3ff22fecaccb5facf9
BLAKE2b-256 d952e2e4fb5ce3d0ad7f47d8b67f0c36552be596aba4687c22794a9f980becb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e1a12215b6d887438de914b597cc6fd2cdeaf19221b18eaad55dcfabe39625b
MD5 4cbcaff4e02b9117adfbcd9edbb4cc69
BLAKE2b-256 6fa92c355471eb7560d0ccfeabd31894e741d028b0ddafada104a4e2b939151f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f54d9888e94c43e80a2c9957c7996e38e940a63d3a02910139f3c5a24a8e573c
MD5 e57905a7bd0fb9bfc53cc053b2eed430
BLAKE2b-256 9b720519e1d2b132db9efd73f0f7715bb975fc22a6355cd23d8401088b5b0e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b585358a49839da140b13222713a176275953e158a1b4556fb77ce927d34deb5
MD5 4b9a65830dce6be0d9ec7059bca9fb02
BLAKE2b-256 003ad957d4e9e33e95304e31f7d4f1af55855c612ed5561395d47c4dac0fab7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 476df0f57ab771b3a94a31f32d20d7a86bfbfe70997127662857571829ba6eb3
MD5 082e1c1b10bb58a8ba7bb48dc5eb8d80
BLAKE2b-256 49b999521105faa91d9eb61b43f506d57dba1b7b430b1bc7c2953dcc3cfa11a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7a4d366f6eec75564df9ad42fd639e1f633a19ac93d768e249b2a95325ed2215
MD5 71f5ebef24ef7f066e34c4b1361f2bd9
BLAKE2b-256 2512d210f0f7aa75a8088c6133c06a2508aa7b6af1058807bd8041047c83a308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ffe4789012f0fb6f9bf948ad262984ecadbad2b3ecff2c1cb07ab8604157d9f
MD5 8c9cc6b2a721e0583b55f4a0f6f5dec6
BLAKE2b-256 cdabd6f9e367c112db91b728f23cbb8d2712cbe01140de402b0d41a7ffa91e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 362ca64dd2e5b3973eb4110e2a9bb42b18e0906f613d2e0f6392003d1246b19a
MD5 5f664b02eb17ee7e47d19bd6a49bb2c8
BLAKE2b-256 b6f0f34810d9f6abdbc7fde6703470ef2593875ae48214a6d716a8de3187f556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5dd7ef8712c58c543f3198952c4bd5cbe66dbb0ba351c90437e785cb76778b24
MD5 8e2bfd0df8be351a52d935ec4254941b
BLAKE2b-256 16d8ca750c9ba6e960a80d19014d5796976f91c3fc9ed273971ca7a344e5d982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a55a5ccc497fa923988d963877623bc98f196fbdc9b06656e1a37be775d3e8a
MD5 49873d3f3cece1381b98c3a2645d2897
BLAKE2b-256 9de5ad344ddf05eef5464bd07b0540e3b0d32374f04373636bc56ffb5b87755c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a902b518c14f8d617ff32c57f9c7ae2f74cbbc2677c1376a2602f41848da35c
MD5 6597633f319dd7e33ddba126b033f304
BLAKE2b-256 df66b43407c70fe36413efe01a7061fa94ae3cf90bc6d63bedaa5230ad3b101c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d89f8dd8bab1bd1c5a8e29f9fda09a741a871edcfea2fa1eea2397822788134
MD5 93d80324f9c9a1454f542aa384305d34
BLAKE2b-256 675cc79ad038010117bb6ab8e84e4bc10d4f0a860db02b798290a4ae2258e94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 766b60542d1880e87ce7b282074f1e2dd57d081356c9f1db14670cf232cba6d6
MD5 e43b9db2abfa6d5cdc707774b0ba2e94
BLAKE2b-256 a1f740082c13a2b3ed60b6b6664145671bcdb152dab0164d63c8eb22342daf3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e747d20e2ac646a3cb31488cf3b8c2ff0ad7fbe98b974f8bf9455c998d7ddd6
MD5 ac4866e49d66daa6bb39bf2d35d8725b
BLAKE2b-256 8ed56fca9c400eca61b08ed27d27e556e4cd523beb0e17353fe1638a38494478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f22784abe823ee3e01e7a0eec72164b4d7ebc4b0389a76122c63f58d717bad7d
MD5 6a79ccfa46e2d943e5bfe02ba650fa37
BLAKE2b-256 10cb27d8bdf66703bbac4848121cedfd101d436899d75eb4ab601f43eebe34f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46ced1647c096d2bfa87fb1bbf462240b3de0780916a1b7ccca1661580a6dc1b
MD5 cf36b3607a3ca264e3f92f80ae2e5396
BLAKE2b-256 971715dec70225614f6aa8d634db7ff8b3e6943c5d136f7d05860a23f5f2748c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb3136f454df8a1bbd0bfbe04dda1d11ca7c8a0dc38d8094ce6c97157456ca57
MD5 1d17dce3a74d3da46df28e6613764117
BLAKE2b-256 dd2c6e43fd1ed6fd013f3715172470aab1065867e795ba66cd1b1058324b642e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daca364109627461cee358116bb626d695ac8c09425ade119ab745cbe811edfd
MD5 ac70904d2ceb40f5f6c1fbdb30139f9f
BLAKE2b-256 890713d8485864622da42e904c7d3597f04c08110b81b906c45968bac9de3216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b13de3221dadaac03e489af26b18201fd10653cfd7cf338073c6d76dfb20f31
MD5 e0e28ec227a330c87cb864188b3d95b3
BLAKE2b-256 1a1ba955b463d742429de8114bdc86fc725bc8fa335ba81479c89a4cfea8224e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 57ee83029055bf0515754f3fcd6950b3c07d36fda43c725ae71c37c7effcc80a
MD5 4b9dfaaad1d4375acf07db9c555286d2
BLAKE2b-256 07b9ee2e422a3cd5b879fcf0336da88299136ccf5b231acc846d1c9ba61e3806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 611d4037bbe52527606ff728d541cb588bc8eb760eaee4c3f29a72263870c753
MD5 c1285ddb66536a77d7f2668404908320
BLAKE2b-256 d6f72368bc9dcf564fbe5f17788bb02bda47a03114b4acf2091c2dafa8d87d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1168d9fc1323c99f678a19c91bfe79b6c4c58c79c2ef39359debb1c5854c710b
MD5 a0b6f5859711695e0aef7190eb4b5e15
BLAKE2b-256 c55fffbcd4d91906ff31e7e73925d25437462db5f14b74d52522cf0f48e3c3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62563792738c6d392090322849f09ffdb5eafbfa3accb740a5cdecc05dd54922
MD5 333db1949a772fdd989fde8ddb720cfd
BLAKE2b-256 a681c8994318c35a52f373b9d25d3771e54d6e30feee573a46ab46464308cdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ac3d5e5a0b0e3eb5ec26bfc6d91c28b93a0d1bc8180d1aa98c35fcaf9db58ff
MD5 52e26a974a9f27d4a1d766f53d1f5491
BLAKE2b-256 9234488793f95845bbecafa4c06cf3a333304bfd2b915b4462f810d12b99174f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97372da353721b935b560831395c005d6f324fbc2f193ed9c6f9b40674fa898f
MD5 086d8115d75db6e6fa8278a92344d0fb
BLAKE2b-256 a866b8c00dee82270afb4a7825bc6c0f2102678e5e3528825a1932c5766801ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef8b3d0a799f8ae61e6dfc421e051c2b15c1146450b1edec5fc488c0be1ce8c5
MD5 ec25434682cc6f1848074fcee6f8028f
BLAKE2b-256 27508d02ddd58517437ab9cd6c59fb5423138e6b3e9f43d634701db91dd9dd01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 058dd80b20c689ae8dab12611800f3dbf52498f082cabbf9ac87af76c367d397
MD5 07c8995fe059b1ccecc07e1659d156ec
BLAKE2b-256 6332fdc2538a965ae8ef79e42e51c48ea713a088a0586e6d501dc2da9383d01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cba51dbf1765a9b9afb7f1a505645d7714d5f0cda303e536cd89b59dbb7f8de4
MD5 dadcc57fd15490c41f1202f243892620
BLAKE2b-256 20a99283412fbb0cb15e11ca383be66f244f2b75fa7271c39bc13221617ce334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f69635c9c7c5e457628edf573754dde52cfdcab9af7a8fd69fb9fe4b2c57136d
MD5 37c22505f930cee21bd8fb36392e420b
BLAKE2b-256 a157e638b4e514bc4a96ef752f09e8f75e9cae08a08b4e481f2ab0543f268f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66fb5f26e9312c7cc9cefbb40cb705357bdf8a5fb8b8193ddc5d2c5ebb62d8d6
MD5 9d9f51e8ee7a09ee67ab688c10bacbf1
BLAKE2b-256 c4a72a76c0c5184c37724af42f72e1e319d2b0fefb8e4bb7b9aa5c898f1e2b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a69025dff59c3a41b2a62e97062145f186d2d3edb70acae1e5be85cebc4ed515
MD5 054da6bdc0f08978148a8004d4fb3b8b
BLAKE2b-256 d4740eb70d49a034d1554cc38a1f0316e4dc3fc0d4c84927d590aeee7767bef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79798f142faf6335966f87720e64aad3e30ee1b918d5a8e174cca6348d6c5479
MD5 7886c4f0c57ebd764be230eba080456e
BLAKE2b-256 6f7b69bce5f1eb496cbaf9739b93a8ff609cd4ae63e00a87fac47a8fcdfd4597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f14f404087490580bfe27e07e5be8204a9d1de72950262ec67b0d3402826bd80
MD5 fd3ea9489d499e230e5cf6fca73df164
BLAKE2b-256 9fcee5a82cb16c0cc58ae63af037b3e929948d60cc4e7fae8525ed72ee01452c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6867332174f29ce13359597d873fc80699f1e4c1d2afe02dd25a40f8b0e83f8d
MD5 d9b8b64d60144dd03a9db98d434484c3
BLAKE2b-256 24e1f718b9d26b140e110b3e0c109b782aeb3adca690c12a6dfcae01ac3ce635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd2f0b3767839732707673aa62c48ee9a97d10344c75c13bc4c9f04eabc7b8b2
MD5 f682f80361d3b7b65dddf531f63085ee
BLAKE2b-256 5317102d14afe9c08d2f572b67a6efcddcd0828af87c5ab4d4890655f7731946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71551b6962a5fae253ba6689196b6a8a62895575ecf43d96f2ca278ab67d9410
MD5 ef42cdf6edf7113bdf17de4c764fddc8
BLAKE2b-256 1bd957a2997259cdf3440004966b69c74ff19dd38f2335b428c6a20205486725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e6ca88b7fbc553d7a994b73643218bc9e775fd5263416e8f91974b936f0db58
MD5 a29452a669d0ed5177fc0d69595f1804
BLAKE2b-256 6313f072432c70eb98202220ba31bbd8c0b9e3b3de3a2eab772dad311e855868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf11c6d0d1e07f692a3cd589ddebcf1e55fd4756e1441d342f2ead5338c24a9b
MD5 66ecc5ceebe4b0f602f49ba2478bb5c9
BLAKE2b-256 cf28b058b2aeaef8eecbb2ee9d2f4274fc73be206faa25bffc0b481d3784d000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3fe27bc841fabde35ef9465d52b626b1a7dab97d227dbc98118045aab55850
MD5 96d672efb79077b260c252a2e91c7ee7
BLAKE2b-256 e3821e5a93b68b9e439e9fb433e64dcea3e79574e7fec96a1d936bd613078233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 718dcc6c4343f91a43d3e3d8dd6e65124403988d0bf552445b3a7064281a1851
MD5 38518294c3e6911faab1645ebb45940c
BLAKE2b-256 18237fb115dc142304607224411e859220b92952a45d51c846a5acb05f970f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24e8d87b82a932324814c34b5ff1a2cab9b663ac506cd266517204e40fe5dc68
MD5 b2439c52952ab738bd4473f3d2fe8da9
BLAKE2b-256 9701dfea2534af067611e3e22808c94485c55efa715bb3985b556e0128cbb3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16b591c237da0d86f399b2009ffa9863ceb367a13b141594afc0e76d97bce5bf
MD5 36da99403ebc1bac3b3355638fb8793e
BLAKE2b-256 904cd8a7063c7f88b11816d5fc4d9ce4bdd949234007a2582f78898054e585b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6dedbba2205f30ffd038c0d4d28ed27ff7af32299e5570ef0043f9d3a2577c4
MD5 f3249bdabfdcdd689a71fe83a9c02cf8
BLAKE2b-256 99218a631af8193fcfb37084afb2a81f1dcdf40b9cba1448fd271d60aadacefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e7606f1b023d0b2883659957395806b0a43319541a8769b0dc48f111ebb420d
MD5 10d74e0c5a8c72d93240ffe6e60e4c1f
BLAKE2b-256 469b45311c8f18520c8eba79bf86d40e0ded10d3c615c374cc8766fa1d5d3a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff39943a4ff6f763f57a9f294b343b57d88d808d45a6c6248f42c7187a0d9a9
MD5 af9da753702540f955add3e5d3b3dfbd
BLAKE2b-256 2d2e8fbc6a05fc42730b71f440b448ba8a4d09ad57aaf470ff16783ba11dd491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6afddf85bb3be285c62d6b1dfce70be40dd237f8be4959226d7459237b37861a
MD5 2c3e379c1c25aed7aa7cde99678eae24
BLAKE2b-256 1b8fb26b79a1bc746b4905825f61a763b207523f5f9b03ddc6b0ba806843352c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5212984cdfdcd8820eceb29a9833d7ad04b76aef382ffc191a7304996f735c30
MD5 f7556e6c9748c663fc1265923e632ad4
BLAKE2b-256 7f6a646c16ca8f7bcdf6a28c1d802d26efd4685ffc56560c0397d35d5d34325b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f63086868792a49c5a6638f8c682c7611a8b63b4409084e4852161414d665200
MD5 159df9d2c77235ed6a29797684279973
BLAKE2b-256 12b785da39b4bd11d56a04038f92d529567fac7a8a1ac359602cedc22ab6b018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd56f1712a0cc584465236573cfbed3c02ae5c754beb3e33c5b090bc7f0b8b30
MD5 425becbce2009277ffe10c26b0b4b8ef
BLAKE2b-256 fa5099db94533085c49334802ed238b10e82b00853f9cbb2584166b1e20ab9ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c363906227dc2b5083373661d8a8c039c5ea9c0b0fa17c462a2bb14d2e91e46
MD5 b1c0211167d8e3041147028de892ab58
BLAKE2b-256 3b966f77071753a0c0a930f75fdacb58fa736faccc2ab468e45b1c045435de2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3aa09db1705a78006589283d555229c57ad4823ddb591326adc60b456a4d5dec
MD5 982ef8500786e46c49ba035dfce17bed
BLAKE2b-256 b832bc915e105e60f8367e885826e0bc430be3319e5c65617d577cdeef8a0e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4193c4d6fd04108399293b8d6d718528d068221153809dbe38abeb4541d8a191
MD5 56fbef761b805be6140d3beacda9ef41
BLAKE2b-256 5a21e20cf7e9efb8d0d69226423bb0e063fddb150d500ec025436d7ca27dfadd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6b57427f9565c7677f8a56dcf6ee6797332a4f5d35999daf6886c09db3ad63e
MD5 431ffd3f494c7ba73785840040bf4dea
BLAKE2b-256 1dc13fef0c052e7625e56ec624e46ef06388d44de744ddb3e7da95c3cf5ff39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 369f13646df809f6a3175c75bde57780d3c72dadfea407ba3488bfd08632df3f
MD5 f8968ca61aa4914eddae9ef57e09c8b8
BLAKE2b-256 803492fa7eeff50ec0a69f675b5c7c47031432635b54ca84f3bd13a75316ea1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b81a2bb4ea288a09cffcd7d1b37a9ededecba342afaac9f582f34a4b9045aded
MD5 7cdc2bc6146dc1d0387e254be2e1be89
BLAKE2b-256 019a76e42b4f629acfd3671af7e26d4db396850ad1a61bedf6f1410d4435cb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3662bf61c8086244fb7d714bd1b7d421e099909a0abcb9870e1ac085d8f5f95
MD5 78779f23b410fe3f4d384ac7120966a7
BLAKE2b-256 ed638a913d338de92af8b93487c42b50d5375c73339e7bcc340c2bb42c38e035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7c629fcec4ebe9d9d911d240387d4b7c973da4a2bd4ea9b9fd44f7e104cc65c
MD5 37f55df489cfac6941d906b6b720f223
BLAKE2b-256 84cbdda5e9b84c2518b30ec7acb39e512a627af46ff3f77ec4e82c2981dec754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c87da5f597647196ef89b271244870da24d37a051abd9df7bf2a2d4f2a981fac
MD5 0b38758df84001a9e47213df551673b9
BLAKE2b-256 be8da8aa8f7907b66d0208c8536823ae5a91e0405a81d7399fbeb879c441fa5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a763b9bb92bb8882f614d6cc44bc9845db54e761bc38fee44a3c37e335078c99
MD5 6f8def339f3fe1ab04741224ef142198
BLAKE2b-256 730abe59d77b917e087ab39830d089776b3c8c4c1529b13dea2c345e7a2938bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f05a20b3723b236eadb5bf1ccf7e19e1215a8c975d549518768f8ecefed0ed5
MD5 62be978390a5eb363dbc3802feb6fb3f
BLAKE2b-256 2c5afcd3aa5381385c7ea5dc0ab2289924ca34ce996f00c5a7d58ccd06b89590

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