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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.4.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5849d615de08124b7c3100d19db24ca5d455d3b3489e2954a29efcac44f0e5c8
MD5 6361ad1a80c1089fc8b55a99d2699680
BLAKE2b-256 61b9de621b2c4ee6bff715131ecc9056d3209235ee0032cc5b408147da584e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df620eefa4e67e8f1055a7d00d79b6c8e2a6c5882887bc3aa94edf7894474795
MD5 37a2330c27e8af9a38aceee113cc9554
BLAKE2b-256 65559ce02a93c4ec09d13011358e3a754d513966a22fcebb0f1ede0c17c56831

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3861dff5066fdd011359ffbe6cdb434659004c5f3ee730e578b46c3333d694d6
MD5 e3d87395d43cdea997f4c3aca8c183c1
BLAKE2b-256 e22da2ba8239131e6c7a58baac8f618ea19691f7e648a40aabab5af81097e4a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01adcec9ef79937cd0fadb2cffeee18724d32053278246a2aa9ce0345b3fc895
MD5 4b1968a48bcb642cc6d6d9bd2fadbaf5
BLAKE2b-256 aed12f7eff5b22a4ab38d877f0d22942ba86543343ecd72987abc3623c92316f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8440a93b3038724f5e0b249c613bee0d835da8d3008bb57081a65568f44fb4e1
MD5 f056197e72c10d263085b3390562c7f5
BLAKE2b-256 2e2e9c1026a0faaf9744c7de92bbd2c328058143333df37e23aec571ba83a366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05527851e069774c5a400fec49799d67ba0540ef22519cf060775c437845bf03
MD5 e227a4c12adbd1d54a1e9516a6e40f9c
BLAKE2b-256 6d53ca95e991c485f87c74714007cd49563b4f10011408c837fa741970cd6f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b63871c6d368c42576b32a68d6497b7e158dc24d782e1946a58e5b99784d3e
MD5 1e7565d22f095495444e1c801f285a5d
BLAKE2b-256 090938eacfae2287ab201c0209c080f58a2837df5c009e7274ea3a8e8ee2a22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a7bc19ee866af736c91e4e4c11f330d2d4403af597818e77527decd71f6aab7
MD5 670bb4b273479f611fcb2623177c7841
BLAKE2b-256 7a51004c091535ad7a118b22a5cdad3bfbe6d2d4fbb449c29f5150781977441f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a668f5cad5219721cc3041841ae8df773f50ad265f08b487399d05997f62a8c3
MD5 312d22b0d482b98f39f5ba1249fd2a3c
BLAKE2b-256 740dc34dd38fee2e2e708a91ad2c4bccbcff790e95de65e70aa7ac0cd8c63351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 038238e262fd56643c939beb514b42c3c0fd478b2625227cdb404a107fd73402
MD5 a33caeb89821cf57e6488917613cf55c
BLAKE2b-256 7afdbef691df8c5c2880473c466d9f0d3ab34ffa71294a330286c5b5897df48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3def521d24c1860d2679ffb16890bab076828b51f6369dcd61d10f225ccc91a
MD5 5c932d8665b1d765603b52d02ec7c927
BLAKE2b-256 d0a661b6bd153147495189db21dda3fbf4abc430a95e1940a56166c26adc559e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3af20ba6cc245008a34795689d98e73537c0d721f19737a11a2a50456bd6a4db
MD5 4857c4834dc040b4b550af243abf6f6c
BLAKE2b-256 a0e0a9b5f2c88e67dcc39f27e9b25aba1e258d1cd916a90bd2da7a4f1b381645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd9e31c275da2d6a05ac2b17ed7346fe3d33afa0d4a00de8c793a747f9ed22ea
MD5 837603c0abb2bb3b76676c7e05d2ca4d
BLAKE2b-256 da58790efcb1b5412dacabe846516b7eef7cb683c5979677145690f06fa1d675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93dea606814ef159d80ea6a84d706ef0dabb8f13857b8e2b3c0207ce52c4582d
MD5 3649445662fea8b457561ba9836dd53e
BLAKE2b-256 e29ef83eabcbbec3148a54aace810f2503a56430dbb3b240873b1bf858a45390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65726aaa2fccfd48fa2b21acf2f840d7709b98adf7353dea63ed9aaff7ab6471
MD5 c7cb6a05d60a9a2f1b38a933cb656b17
BLAKE2b-256 f8a50ca577de4e5ce3a1328d4ec9c4a1d669f17e4c42c5b3cd9fd6ca5e76fb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6723c614732a6d74e299e51c6e90f18d005aaadd978171d3488cf68df880bc4f
MD5 7e35d31ca045db7cb129619e61942b4f
BLAKE2b-256 a1e741d48cf2ca61ec3ac8f4e27cc33d8f21658bbc412d140c0f0474f4f94f40

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c9a33747f42a98f5c92dc9d8e9a98f4f1f054d720e401f28bc388b1a4c275587
MD5 1d052b2a18dec8e06896430f0de97348
BLAKE2b-256 16ea1364eb0d6a1d790b07acbdb540bba68597cd7acc96ff599312608f581949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ca486c219aec0b27d8b1c9f054c66d98d927dc2800d5c959ea8dd7da1403a10
MD5 5d9c0b69a77b15c1ff7110ca1cb89497
BLAKE2b-256 6b5e5102b9454fe90ad5d76f443eb3a13f458ceef1c7781f378b0c2b205ce4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f4d2a06d77e0d998beb69dfcdf0352baa39c9f61f66e75d73d72b9b04ae9769
MD5 ca1d86d02e5dde3b8679ad8707cee4a3
BLAKE2b-256 c22513f98561df437eceba64c73e24ce73b40462d6bb44f0ea5148b65e12df52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 233c28434c01af5adb985625a7a7b74b621e6c1e0c4043bc1ac308dfa91b6b16
MD5 91501bc97d8f51246e39983eaf40a497
BLAKE2b-256 abae1588f141cd54bd8cf425074c573d7c1e2eb1bd991f697cdf0da8c7a73fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c30f2f5bc4028ad5ecdb8c2ece707d0902ea5cc71a9fbf81e14d389d43517c50
MD5 5c4c4709cbde398ae080c10eeb32f081
BLAKE2b-256 cf4fba52ca0ccda9af3234febc41f167c1dc9f21fdc5454ae461c174ce45603a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6adae1a0ea9860be5c39203980e183f016a263d4ee3efbb0036c67dbd1438bc6
MD5 3278a4c9f7e34bb4f193d2c54be8d0a1
BLAKE2b-256 5ff8e946e385b8ad0166e2d9ae37e3f7a35c43edc4b2328e1627f629395ed329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 498606abc3f1e00fe7caf3395d372f23325ec848e73aca8620d8ddbd423891d3
MD5 02954022d1f95df3dc1736208e79fa7e
BLAKE2b-256 315a9c803056f7649ed3632d23153f93d8c22c12589dd5111fe3032ef4f31c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adf5d75322d32c9b2895e7166092719b413974a8dea1cf59d4d63cb061f23e2c
MD5 4778450f1521117e7bc17856f9018dba
BLAKE2b-256 df7f8a0ce477b63011850108cf515b2bccd115245102b9cb46255e410b18cf82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef1cd545c9679fe979638fdf7a0bf7a8d171de07730b5c4422cc892eed1ec6eb
MD5 4331cc8a2b244e7b45a6b69245e8629f
BLAKE2b-256 63504d2b2cc0d760f930433b0f2528e3cf97b11c66f5c8e1e249d76cfff4ffe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60b5aa44bde9eed903df0d9b54ec38563a0166eb74eb6bc32988ca05435986a5
MD5 e834f225d1b70845fdd287d890d987d1
BLAKE2b-256 fc8fe92cee99698bf3f2b905817e43e4363c4f65750ab84be1291620b6e2a1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6094872bd0b8c5435cc6e99cb1020ce8eb39c4a0a27a9fa35131d2663c529f5b
MD5 f6ed372ade76132b2df3c518761c2c62
BLAKE2b-256 da8fe14f13fb8f7d9d50bd98cc1e7f798fca7cb6d5556f28a95e74886c5c12ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3922a54933ee522f5326fdd55dfb7e2bc74d27b2aaf488da5980b9589d43eedb
MD5 f9734e14c9630383f9d8c920b4d13bb0
BLAKE2b-256 5171310d8ae5a4bf2a74d5803f532fcb87a2846b13d3eccd9d7220b3184b976c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b6f1861b8b17094ae4a2015c85c6c141ba39df510dff88d494bc0c93e5668ac
MD5 5de3165c180399e00844579e5a83d3c3
BLAKE2b-256 4a510bda4f12502bcd79119fda8daac595d7aeb73ec1901453f5fe76b7b3be70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d64782cff073787206f638761b395ec7bfbfdab42f1322d101a72fa211305df
MD5 7ceb25058c00bf141c53ca04de499c4c
BLAKE2b-256 388ca1ea38a6309f48083839258e9d457b4f53eb744713a0bbc1cfaf9f8572f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1367e10e2cb2e5c9ff1136d8c32ce68efda266ce2aed43ec9b3328007d641fec
MD5 76f9d5a8c4232d100b4361c92c7af6c2
BLAKE2b-256 ed03109b1156f7fc136911f93c78a4d385ffc1f8fe74e463f5a869699493605c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd623304070eab75d6cb2c383647519b4dfb121699370fa35315c5b32f953d52
MD5 d70c188191160e2158a28c70e94b8672
BLAKE2b-256 baf02e3c4c700872d1d1d848cc1a2c9b4b5fa60e182c4708176685cbc4249d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f97dd2064a6402c42d582302be7533b782184821c5053956ce53223c1afc2a1e
MD5 19ed0b164af4352db421e1bae44f3ceb
BLAKE2b-256 3cb18e006e10904a7794b013673be7ef060a9d8b9a547ec663aa9726c008025b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59d1fd9e846236bfd43ae11a1a39228d9708dca466bbe49f919cb8367e8cf112
MD5 2bf0801bc684d06a67230f83d7a72dd5
BLAKE2b-256 ef5bd60976710404beff0b653c7d7c2ba5bb3268a6082faf59f4f91057addb4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe54afe2da53806ded0543d9d735545d1c81b610576d5b2f174c2c7279ac5bcc
MD5 797daca01a49e4e394a12f7afa026cc1
BLAKE2b-256 7cc7f7a1a76e6dc3e45f2a34ed929da9ba9e6b2504ac340701c7f996a94a63dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9d1f5ff0fcef333cbd110c1be8a12ca55ce947925fe8daa54a5f8c668d74a55
MD5 f404c659bac0cf5454b50e62f5623989
BLAKE2b-256 f2712d4c3ba062e66a432743ef5699b55a41b5f0cfd9eb7573f7493cac4abc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98b0f77eaebf4efe5a429cf84b27b6125b7b8be3e6d1b88e135d7bc02fcdfd85
MD5 d169a113cdc915ba335f47bc6e4dcbb9
BLAKE2b-256 6d6d5c350d05b6b4f83cf6cd752e06975ff46c51322549ce7eb57716cd7b462b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd4f261c37a381fec0c7f37c651d6a67252a1cd7e8552513030385363bfba678
MD5 1135bd9a76af9d5e7b3bdb1f40d21278
BLAKE2b-256 5d2181dcfa2be4f210161c2fb432b95ebc6b86b2ac17f7569c87937bee732348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66c9a8ba6003586f7928bdbbfa1f584a5337fe0dd70db8add618f76fb3699c19
MD5 69f8f284bc2b60fd4b26a086bd56aaf8
BLAKE2b-256 44571abcddce0c868cc630e92af9bfc6d86962d1ff65db7559fa85deb86a8776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f82b9fa5ab56d392e25b83205146bd6f705b5f7980055920300135856a2c8af6
MD5 74f5a9667e3074a4af2de40c0dea101d
BLAKE2b-256 156b6a12ef22e4713431cdd2bccae22ed91f6abddd0719a1579d8b068b056466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7cf13232c4dbd361eb9a2eb5d3f8026d0c4ac3cc861f2ee75759568a513c2e1
MD5 90414e6a41ca0e81daf9ba075d9068f0
BLAKE2b-256 7d9e68703bceb71cd3998366dfbb887fd0d28506cd97295969d416cbfb00dd20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34793adbd6776d4874cb9dd23e6faeb6c56793db8ee17f23dfb6a8ed7decb553
MD5 dbff94600081b1ab66000cb3e5f6d7ed
BLAKE2b-256 3cd75bf5ea01ef21252fe4e8d64a3b1e874a961f7cec4986bb667a85fa2ec7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a6217935cc8833a5c77681f64fbeb89017def7f1a2ef2a60af10667e0d88709
MD5 c0364688d799f533dc2f982ec082f08c
BLAKE2b-256 62ab488b21b9e89ea23d7469b8c23a91d7faac8470d641a259334ce9e645cfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fdf8bd5e37e87f37c2c408053058a9bdb64f2f004978520f4b5f1ab66f2df481
MD5 d217e269817e6f901eab87dc96e0722d
BLAKE2b-256 3651d1541c239b070d227f6030583b15db919021b8ac351ab3928c5362cfc6e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fdd97ad6c72586ab571dff8ee2f7782b66431908e6a5df42a7f326b401f93e7a
MD5 2337d3adee9153892f35ca0cdf1c4811
BLAKE2b-256 20b9b2cc83ca27b130be94d176d73bac44d59a9eda8afb86126c90a1beb4574d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3993369967183c7a5d2f0a129d89d8e295957f58a2ec8cad1b781c395828b62e
MD5 34fc66e7e0609f57a80bfd1e87f96473
BLAKE2b-256 315998bae14bcc3129b10bcdb9b18a6822a3f0c0b6dc25c658d590f6dde1a482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b72c34c4f34bb6e6c2738a5705dd22ab9ba50eb255a4b868fc41c04aaac95a48
MD5 69c2ee8e671d31cb42864d536e6b0eac
BLAKE2b-256 0f911fad4687c0f06c6f652b809fbe1963f2c7793d9b64a93282a050ca3cc415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5e50380fdcfef9535afa8f9b81ddb37bdeef7b3ed48cb8d33268f2167bec24a
MD5 4db10b2b5d49928d195fe480ab74b4c8
BLAKE2b-256 65bad183ab6e7b64ae8a1396d066c1a585bb33f5b4604350069b78635c8c8e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b74916e42a0f8e94c0e42321d279d819b15c850bd47359322ea0a4405c82884f
MD5 2682a2296e8238feefdeb6c595af06df
BLAKE2b-256 85f5886cc7703563a10fed64a20d4a934a5d702ebd7d0af387ae877e6b5c227f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39c04ccbacbf0f74d2048895b84163d26dcf0c9201859f46954377b71d5cc2c7
MD5 9e6a41e91cfd040673409666e3f483a0
BLAKE2b-256 717af95b299aaf01f81adab8f6fe2d55d304c5e27fa770db0837fb1a2c563791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6012c00948ac2032cb71efe3778c65ac2f90b5f978c568710a4e5362d14129a1
MD5 69fd2fc6b01386a97f0ccc383624f048
BLAKE2b-256 37d8c79a7a7065fde2680e7bc9c8cd0990c9f5a484171b0b9a41664644125f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ae56093e9ab17065e9421c71bdf83d83460a2387cf196b9acc6056e3b5a6b0d
MD5 5ffc8ac4b010cda5e6c4852b6665a0e5
BLAKE2b-256 43ced7dab1665d29526edc2214ce3b01ea2ebdae76236c49fa9e060178fe035b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 503a57502f22438a4b2130deb0b3115f71f3687d21e134a2cec3f0e8784891cd
MD5 b1e5c50087d49cda30b53cab9e82ca93
BLAKE2b-256 9267235b1c44fda54db22e90bb5ad9ae7e3e5a9200e252b871116431a3fab422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27ff276d9aba8a983a6425e768a12606eec7d361c1e33dadfdc6312b7e3203b9
MD5 6730703863362b19a396dcfe46ae3fe2
BLAKE2b-256 91175989362b0afad09b6c16816706a7cacdb0699ed01c469d3bfcd29825bb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cc4ad23e07c93435379a822a8a86b82780d89225a54078603a533af039abcdd
MD5 499aa2dd9414fc3f9a8e984392841999
BLAKE2b-256 630df606fa0d4a566ebacc3eafbba02a40614a7fb4e74b9aa4dc50fa0149d283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44b21e74d8bd28c30fa1a5fcf30af1ffade339a8ff34157e9d11f29604962e8c
MD5 fc59d97384cb7b721899f6837715c977
BLAKE2b-256 1cef0c759bad367d9769674ceb59b4071c79cabe026c0612caeba45e1ff0584f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d6ea0ebd07f5d43525cdb97b9b1dfbd7052a8690703d7e135086af50f892779
MD5 c5971f56132dbb3538c3be32b0c9cde6
BLAKE2b-256 7f676f6bc98d0f3c87a8f6e2aa42b1d6b6ac6025568014ab10b91a875d7fd6a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0936250f432c490486f784447e1624c86663b7ce57cc5cbf2a6ea86899454dc4
MD5 a15aeb361268bf65d76c05af7c4b3be8
BLAKE2b-256 d49a65075289207b80f5fbe9e25f72cf8d6c92498680edecf5168a2f31ced7ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5dc30749490b5fd181a1c714f779739f4e5b4dedb8191cbafdfe2a63524067a5
MD5 cd633ddd2df2bdce350cb5bc11224c8a
BLAKE2b-256 9054c56bf03adb99e290f03c6e567658e5b676d06e417fb21cb32ee0c7ac93a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8c179e3d72b1c92451337b021b92b19230908b5899e5140d8993a69013e2305
MD5 caa4df9259bff738521f57c327386b8e
BLAKE2b-256 cbc42a1fb0bc018da1e0413cd9039a43e6b0d275f3bdd5f91b43d070879a6be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c197d851c24cdc887bac6df051238c471acfecf69c64f675a13ea2366dee2da
MD5 4ed68d739dab70ee0c4eb05f2c3cac72
BLAKE2b-256 6af5bdf1fe4fdfba3f86341aecf84e963b06baedc66a33d5f4a812634430052b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db308b5145023ebe71910c56db93b55dfdfcf0f5e5a097cc12cc36e57e1e9482
MD5 5c00d5fe302e74d65b3fbf829fdacb03
BLAKE2b-256 d745d811b176903753fa05e82e94e0cb1f91a0ddeccf5b19c7cbac9c05f8f67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93bac60b8521b714a52fa97bce30b9834cfbe9db4f21e40c29d1bfb720160c78
MD5 82f6575b709517b69d33a43f0a1cfc04
BLAKE2b-256 65c881c16530f9dfaabfb748ea444a025c3e198ecc07b11f158fac6faae80388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79799d9ebdd81502c28d7a45efdec06e54c875575adabee3b28d467501157742
MD5 a60387071778a2ac6ec959a948ca0d48
BLAKE2b-256 abf5b522fa17e4c149d1ec2e6987d22a7d7690e7d39797069d23ce92c1de371e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a61ca26cc9bea2814e7f24ca5be469a1192284276866832efb7c2f30cab558b
MD5 8b246bbe309928cb01537fe4979be1e5
BLAKE2b-256 47e7746c33cf9cecc140d34e5d9214e4f6e7837513f45d091f96ac6e5e21326c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2c952f34605e4058629fb830e77de623edfe293c65d6ba3234a7af065c6f4b5
MD5 d11131c63bf51c968e3810157ecac7f4
BLAKE2b-256 db32de07be777c855a41f2069f6daeec6628df7172faffc12b8b9c9dfea5fdb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 056f742da612dcc235c95764a77308dd1fb96543f1b43b73cfb9aa24374229ec
MD5 6a91db0c1e72aa430fdc531c3c5a5511
BLAKE2b-256 8857e7e0ade9149a46423929fa0e6a43b00e1bbdea6f577549e1bd9a8208cbf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16686e32386db4cb127d9dfa633352f528ca4d30b76052c3a86901a0729e8398
MD5 eec4e5c2475e22485bbcdbb4fe96da33
BLAKE2b-256 aa14291937c02aa5e0cd4404567a97a1025239660e8807bbbb4ec55b20d346ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b02574634cbcd8e244c430bc55d3a8314abfebad6ba03452ee039a7ff28f3a
MD5 a445af92ae7e1996f49a43e71ad50a18
BLAKE2b-256 82ee0593470721d365c78246e665effca4cc3017c0cdbdd49e945adbbccfb67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4039ea21ed5878ed7aef60f6cd93c257b1cbd84120a9176bfefe6c1ad33e1fd4
MD5 493e60cb9fa34904012cb8e2eb42ba44
BLAKE2b-256 f0f1c624986eaf632f02ca859f69eac15da73aeb5e27e80d43e6c3a1ea5ad544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fba7d9c0c04a2b8a27b764798ba7970702dc68ac106f624b9a640a43684ef51
MD5 419e6c090c6b192909943060f9c17c81
BLAKE2b-256 4a0430fbb7a397520d5d7614f125a0b151b22145a412d46db0d9ae25b52e8451

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