Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, fn

results = client.collection("books").query(
  select(
    "title",
    title_similarity=fn.semantic_similarity("title", "classic American novel"), # Semantic search
  )
  .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.2.0.tar.gz (66.9 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.2.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.2.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.2.0-cp313-cp313-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.2.0-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.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.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.2.0-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.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.2.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.2.0-cp312-cp312-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.2.0-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.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.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.2.0-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.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

topk_sdk-0.2.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.2.0-cp311-cp311-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.2.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.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.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.2.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.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.2.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.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.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.2.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.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.2.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.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.2.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.2.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.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.2.0-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.2.0.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 9ad29908a70e68bed2d7ac37db9c59677a054dc65e56fc6871747dcdb71a13ce
MD5 0c2f8a228eccc674369e7923cce3cf1d
BLAKE2b-256 6d3522246e33706e168c8f769324829666c936135d7ef6ae8dd9f8e450326b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bbb7be8787e4852cd2d422ae977a7f226e519ee634f69c5a40ba3fe2fdf35f0d
MD5 dbdc2b2c356db6e0490aef4376faad1a
BLAKE2b-256 cd621dd92ac25ad6a47d699bfb5b8234f8c3b4b4f5c9c6d2555c7088e6d1b4e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 756b2b704a8cc850a80d1f0222ef8f2eb8d142996a2564fce194b3f41a018bca
MD5 d12c7ff930cae7db05d1cf329ce529de
BLAKE2b-256 5d80ae1cc08b28c41ce5e7496ee88e7228e2f38eca91079f07c6f93b733cbd8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73ec7553e3efebfd9f6e36e8038dcea559cf45df69ce1803f8a9d63891b8ef46
MD5 e2327375b12feee700593b3ed11fb973
BLAKE2b-256 c47b77640f9c39a0eaf6f7a2ec156c146184e7c4a88a9d86336c3985fc82b522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 027d998b7340e0a7745c836c71a1f246ba9ea6ac64dd9f883001ea60c4340282
MD5 d783a533b8a016776d51bc97492667a0
BLAKE2b-256 f30030d77cc72c474e77009501c291e110ea38b12450d45a18e7fe0c02b16fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2411d23ac0a7f90e5f5dee6df725178a4cbdde19068a81d5e65c6dde25aa1a88
MD5 28b96bc9e814c429a6c2081a510b7e0c
BLAKE2b-256 af701fe14106ba859e9f6949819fc00aaa241adae64cba2a24e4c869723021c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e9cda4c53ac6de4670820cd8bcb44afceb3f05d2820c61bab86a0e7dde34001
MD5 92bbd23613f5449573d3a3dae42e0b27
BLAKE2b-256 c05b9452be0e9092f3f6edcd16a22fcf12b9edd0c22aadd39d63c971c81ab2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 170c2d690016615cac430837d264cc154a8326144c925742fff9a84242a1b9c6
MD5 9fb9164206b686eb8e1eac558125f4b3
BLAKE2b-256 17f173447f66e42bede5aca7d857f523f2bea92edbc30d993cd5fa5dec3e8015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 094eef1885d84606cc6480fd33cfc3d9201014865d4d8e8ba29f93c1222307aa
MD5 097a4598c0e2aeb0c261007761bf0bd6
BLAKE2b-256 69dcc0bcc28c104754c67b2132e187f236f51c0d3a7853db609fd5d934732f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 219dd668dd5c88528b62f4d131b76fd7cf0d0c386fe630d4a577cfdfa94d0218
MD5 59c91eabee06a41dd0147212399b48d1
BLAKE2b-256 d76a9f1731e513c51d62b9e214ca3cf3351e4f44c314c6f7656736826dcbcb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f394715ee1a99fcc959415424b7ebbfc683653ece41a2a8598ad925673dea05
MD5 8baac01cc97b4b8c69bed06fd463133f
BLAKE2b-256 8e4d7818493df3a3aad46d56c4353805581bfc060d70ced83f36d02513bb4a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 523dfeac27f247adcc1ba59d534b122a77596e31a9a8fdb6305b164440a14760
MD5 9c13f47fefc68273453e1bfa51b9b35a
BLAKE2b-256 5202e91857621c5c9d4f8728e5b667289d07d5423c5a36bd4207d294808eb241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fb868fc87b5e58d3f3b551ba7f87cacbcbded75be3c7aecdaaeb09d8b26f161
MD5 331a6d754d27dd9c6b4f1623f2040435
BLAKE2b-256 d43ae99f5d7431abe6daa785a410b44621d1645e8cd74754423f6af9cc84ead4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68c4c27a6ab5853ff5a7100bb61e3eb0fd56c931c353585c7132bbcb076ca7ec
MD5 6dfcbb1fd2415515720297e045c6d737
BLAKE2b-256 5ac53636e083a51ae67e46e0fe68cd9ecd6929815f5388f7926cc6200d61f992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f48360df469a36f68152945016161e1131f1df71cfaaf6acefa7c7e267c7c6c3
MD5 e0cca182b8335485a65965ce03844940
BLAKE2b-256 068fa3b68394811b769b915be2e0a8754ac6ce512fb924e0643b711a9cd92c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bd0174667511d2cd80de02c6b12b82817e354c77c43afdd27f8be98c8273282
MD5 7310c6983f71da43a9221a302a57d240
BLAKE2b-256 2fb7d0ea3e18e090276a54c46cc94d822ab26236a31cc8f323c73400adb43356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 414d6d2663a4821cc85f3eefcd61d9b6494c584f3f6a9c11ba8a7d6b7e9a9ede
MD5 05181cd8064bad25a8096c65c8f223cc
BLAKE2b-256 48ec7a16ce4a1dfb9421601b8b2d4cbfa16d24ebd598b1b30694d429c45e5e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b400b1a356211e6b13ed4ac506ee48d13b640e1af7d01c8c24d8f5ade594af2
MD5 d98d9a3d31b3600b03ba3ff68dfc6002
BLAKE2b-256 daa4d3311bf172c97450fc9b9cefd4103241a445c8b6066e582b6f6ae93d33eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46b1467c6016a147fbc74f16642dad7510fbcbff8697136927439c07baada99b
MD5 c3bfdc1e4d480b00ef473a761aae40cd
BLAKE2b-256 029ba24f6a74c21c4df456bf1fa81da159b500a1fd7529b8e6463094acdbd826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d29b080fbdb63969b995173ad23dc53fa23b8d416ea3a89ccf210d033fe44e7
MD5 bf80042975c3cce09dc5a3cf3d851561
BLAKE2b-256 c66605fb45d9ff4b272175dd7cc6bcae4a6c793f0f85ac6798218595bc61d972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cba4385bdc6d2e7fb3fb1b46b59bbe13fcc72dd4bd1c0128e3328429a93b807d
MD5 97254db65eafbd915134f03504518257
BLAKE2b-256 3dc14bde343b8f22c91a555598f5e650da6274c5610e6ddb93b5d55540d941a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c546fa746cce0bbeab4845158c9248539b0a900dc593218d1e528007daa62fc
MD5 36ed9033a63fc50655b8f0d49b6e2c0c
BLAKE2b-256 5e2682088ece7d9a7de153be6918feaa7f3b40c1568b3f8892eb60eefdda7160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98cc90266459ec904e0fc4cd7f8ee3a1729427a5327641291ca390c33ac08257
MD5 507d95e58854dc3ff6c74f2b10d9ee87
BLAKE2b-256 cf42b3bac210180a0fc957f9a0250d857a5b8fddf89eb7dc5532a2b5c8881851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c721ec37a92ee483facc78fab2901e9bb2b777e2e05ed31b7a9429f9c28d9f9
MD5 2a8c98f957e6e3ceca95163bbdb5814e
BLAKE2b-256 fbae9604c5652fc85beb7b119d62dc89a2d1da5bf5cdad13927bc97dc72684a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba6caf792577a9fcbff0de5a6ee7900bc2b774916ea6cfc51397bcc96568ebbc
MD5 72997e85e11a255770e52b4450b4f650
BLAKE2b-256 dcd249f80ccd5a280f4f4cf364acb36632598dc9b5b82bff64a2032ea0ba2234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a39d1816c907bd09d84614d6cb44faa91c03a12eb15db02e3791e59e0dd073a5
MD5 acfaa69fb5bf835231774322a8f9eac5
BLAKE2b-256 46190ccd2ce5aa0e6c0c0503787598b3f530b9d19acefcbfaaba1afd48657ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 126dbcaa559d2278e6521b60989c4a2a55a756ae638afb7870914fe86a896ada
MD5 c6ebea598fb2471b52e5802a16bf5496
BLAKE2b-256 a36d81045a1530f9585b00214b43f786848fa61423be886ed1a56de71b2a5167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4af77d8833dcf31f5f8a76170f40cb54f8288f5a5a8e6dc542677eefaa21f21
MD5 2469dead264829145373870b12b75e9c
BLAKE2b-256 4359965630b0036f5190167a50961862ee2b410e104d39b987a38dc1737de8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c4bf624530c1b87ff2c2cd0edb25737e88e53aec19b6ce7292dcf08b050d1ca
MD5 567384965a9bb65d9488a9b088d2e687
BLAKE2b-256 88fc8b4aa6569d4ee64a011873b4bf88a103c2a3fcf14e88b5e8c07c7d0272e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6b75f2df2bb658b18eb7ca337415b3b0c3d9f3297baf4ba18526387f87acd2c
MD5 eff0bf74011831a3ec853547dc9440fe
BLAKE2b-256 83116cb5c5ec373983a25a4140292bb302d0ca173b8113acd258387282f5434d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39505d1fcc95734da03c42e15b9772e966960634e31b620bf6519a2223eddee5
MD5 3d1d46bda46414a69374acc804e6a812
BLAKE2b-256 ebf40141ca4f113be268e3b42eb2d2a5e24a5f3bcf39ad8b42de73bc44bb9772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dadb72b8a11af86ec2021072e6cdd29bff85ba8b1eb900ea822dbf8e2eee7fd
MD5 3930121424298a2a740b22beee8b1ae2
BLAKE2b-256 6ecb452fc6e07d0e528e1acf522f7b3b1d3838af74c65f52f0b0713a84a2a77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2fa0cf9cb21f70fd293fbada2c84b8deae62fa4ba2b204d4dc8db925eaf5a8a
MD5 1f5ad6f8c0740576dda6c16e02118da5
BLAKE2b-256 fb7fb7f1bc5711d942903875d396abe2589c9ea218f13f11a93ffbf3ee6eaffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 713030ae624bd0f1ba1c6503f06354852efa651f0c83fb246f539b3ff814a1c6
MD5 c5241d805eb341bf5c289dc62b7355e5
BLAKE2b-256 eb254073572b0ba895f6453c55a3403303630bdb912ff6228f3a49f4f4cac153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8204d449278433119c2a3fe6418710fdf571671939e7fc8bd5c38697e26a7a0
MD5 28c90a6445fb7c549a7f5b3a6a9f590c
BLAKE2b-256 895fc27e72aba1b0a14f8b068f63a001914fecf58be15590c7f535e93169c23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 668d8cf03699e80ba78bc755255e9ac117fc15de5f364986fb88329e4b169a87
MD5 5b0492f63f2f8c29b9fec60c259fb519
BLAKE2b-256 bdebceffc239740e4286041314f474590cb347483f410d00b10ff66252c9ef71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc39f08495f056390ae4e2e5267a52d686fee5fad541bbb6e461e109b757148d
MD5 3fac7d98f457f1cb768b8e1bb5452d18
BLAKE2b-256 f677b4b9de961d6288e566f50f2546b645219df268443a50e4676fcb19b4f5cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9946db2914b1cc81ac5ed594c69652f60ac00f1aff440b874ccdb2d87856e9df
MD5 c2b86594481a2015e24c1586aa5477fe
BLAKE2b-256 13dc64b917e79d378675ce2c4c0c341aea1c1003405c466a55ca445841ce8eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9f71062aa10f1b8734e3f01997748429782d725530b3fbbdf96d6edaf297b31
MD5 7efb165167e790c8f768e7dd5fe1f72c
BLAKE2b-256 f4cfdd2e67d3bb33b92452dd0051d2994b7424b34f6d6a44540c1b5869623b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6684d7dbdda7a215ae7323b33ae22a52c78d74542f797d9a7bf5e075aa250a7d
MD5 2d3b74012492c4ae86ae1a5345ec8362
BLAKE2b-256 f266a9560c32b2d0d78f974b30b6cff834a869cf387ad5048d3c2ea68be962cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d030fd731595da2815ace8a3fd4ebb9d4489e14a8ac34c2a0f9655eee6accba7
MD5 fa1203f5b151136f1539c32d02cf736f
BLAKE2b-256 7ea35379687da07ee83abe9e08e0a9b24802c7c62e922b378eb90a420981fe8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0410bbe457fcbea82281c88425de890c153c76afbf033bba64f880713a8bc433
MD5 47e4258a92b19bba9ab1c36132659fa4
BLAKE2b-256 d9cfd9dac733386c308e0c58e69a2c9dd7e5867f9615f07514f5f5a6487f94c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 697feecea916ff235243e5484f9bee242242ef3662a0785863cd91f18e6b439f
MD5 039e13c10233bb3da08417e917019f55
BLAKE2b-256 c8b2d0db87591a2f564509dcdde6e522db8c3796d5772a9061934464d8df28e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f5148501dd2b5f6205e98841ce31aa4789a28d3309b846bc82fedc16e4a6af1f
MD5 b56010b97d8144a964477d9f06027a04
BLAKE2b-256 58d2742eadaae2ec44294b6b3d30c2ddf7c554882b717eb6ee603ce852ae784e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 73721600400ad755373fedfde152e5533f321d2a4793a675f7185d02cb46cb24
MD5 c2b39ba96264b97a86762e532088a399
BLAKE2b-256 2fe6aa042edaa7f786d2dba0d6b6bc9a3be8a3fff74aebb441ddd883a0bb37c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72396196634f1563808514de0e4e954a07bc681734d9febb1fb11d421a9a7f50
MD5 96c894e7f563be066e6d159a0be4daba
BLAKE2b-256 5dde86ce5a5855baede1b836e8eb75240bb2a938d4b947e7475475a0184c8715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c37ce617ca873d05f037681ecf048cffdb5c5f6f8fa1722e889eb057d4809aba
MD5 c3fc43b3e9946dad16a0f92aca415e2c
BLAKE2b-256 ea1e89e5ccbba46d21326b9932b82b6eacbb3e2050239b17636594814c792fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae73f28aa5d0ca52cd919d26c767bb567859c6ff30119c16e9dbe429942ef075
MD5 4cb50c1f703d8faeb934421ae7c70ff0
BLAKE2b-256 03bc1c9b6d57739089e71b613606ac62748c86c9ed2b113e0dfb9dabc08e9e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1506c687930df0dc66554d9f857b3c409dfd810882bda5ff221d5a23d8b78ac7
MD5 eccfddc5a60af18f37d666b23b564db6
BLAKE2b-256 55f69a75d12708fea410d3da03bd573d15c512c75ac3d5b45c1df100094d223c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56b2c57e2ed269b6e66be7a83344b192534ba3fe00922f24e1ba77bfe6e1587f
MD5 01fedcfedc880256689ca325e1c4fe49
BLAKE2b-256 9ba6b93fb81f9e3e5938674e93092b163dd0fd17eae93807b97677e6e7756be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfceb3806da9e6b23835e671a4155acecb2e8e8c3d3a4824244f5eeee32168bb
MD5 8240244b4e777dca874316614a540f6d
BLAKE2b-256 a42e4b707ba84101e1891b4e44c3998a04501e6a5588367a361dc53b1b953faf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 faa31ff0b0546bdf1489c6e8852ba78aad06edf5392069bed10094f4da54a57e
MD5 5efe17450748b7eec8d805a8a9c6978f
BLAKE2b-256 053e0aa4f279cbea664627b4b59c1dc9942a0e54dd0ed2c5661aa06a6967ae7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 278d1ab15d45c7fe4692e544c747d6bb9b82712804d56dbaf6d774a4690838f3
MD5 21ad4952e8fa075aff00334b86003e68
BLAKE2b-256 3086403b8b5925244b06eee91b78ae3391bfecf2a8dbaf37593eb5f36734991c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afd5cc601dec71e7665deec47545cf12e89783d2b67153a3d8385bc355e0393d
MD5 5e7858191bf44b522e21e7193f482f4c
BLAKE2b-256 18fbe16a8d5dd54018cc82b49c056fced14bac2e05f2130f3f55fd9dc825a678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dbb0ffdc36a1b3e48d5e09f9b46740ac720b4939f90aca542b1c7c006c2de71
MD5 f697710569536885c961816e2118bf4b
BLAKE2b-256 de95ad9b3e14df9dcd2dd1e2c122df3d54b95fa6360a6f9a94f092a36fd9a7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57f9d596178bcfd1cb2bef6a5aac8f27d95317b0fbf1f9618446033f248e7d5
MD5 f024fb23b1b48c34b0cd587e2d65ae6e
BLAKE2b-256 cf2af422614db526f6ae794ae98a455845906628f7533ac8c688bd3e83e899b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10f6fbf12631ca64194dddcd1905d2c1955ff9b7db6b4f248f15fd7d22b4ca2c
MD5 06fe8740ee9a77bc5286926125df421c
BLAKE2b-256 0b33012c8bd2a3d0938a2369092715bef2ee379ff612a08fd503ce10d2b1f24d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5f6c5613920dd4b45e19b69443d7e9233f0ab187e594c3896dd7185b358176bb
MD5 0ac177291f5a8a7e75b21b48df5c44db
BLAKE2b-256 22031da38e3a395daf02b93997097fee3ce38f4c15bebc49fc90ed8ff8a329cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.2.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.8.3

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 80a92a26b84779ef2276bcecb2ebc588c516e4db89a49fb48bb0c6b909688257
MD5 6e0ba32fee2627284bd33215ba32076e
BLAKE2b-256 e70ce1c421f5d55449ab8df53e33d59be618fe501eed526244f997e9ba4689e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3d75e714e71d8095f508f12682a59548cc391e75fa9897fdd7899fd2937717
MD5 50b256e287a7e06726fb332ed1c46a4f
BLAKE2b-256 2dd6708093f03913785b57242941baaff6558da2c391e8372df6f373f100f8ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a8c8eb13076ea380577d19f947f547185134da427308e87f3dfd935778ed865
MD5 f10f0f27132340fe80c64fbcc8f94f29
BLAKE2b-256 437d454e05be2a22e9a1ddb7124cacbc9640eb661721d4130c0461506ddbc150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abdf78bfb72c9b46b31c19f730b727818436b121e951564baadf67139326980e
MD5 726592cb1bc86021a8b1142424657565
BLAKE2b-256 e534f1084fca723c20467ac9b2bac5e53ef6f987f0e0c5a1ed85f085a8e72600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eed2bc3223d225b48eac8e58bb690ea12a7816cbf8d971a216cf9f9b975997b
MD5 e7d2191f585c0ae433dd074765f06790
BLAKE2b-256 55bd9ba1d266a4bec056a74b5a9f272f11b08019352a8bfe003b2e9f02b2d1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b3101c7eccdd1e37a680318a612d9d81246a37a0978af91244e9c1e01ca6ecd
MD5 2fa8015d365dae8bcc49390a2e3bec71
BLAKE2b-256 f89733a29746f96aa7fbb10a696b610d5871fbc3fef69b7aa22d586110043d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2368f345d3bb514c16e95e0f32f443ee3c88ab38ab1c81303aa8a954435660a3
MD5 5a390c2c13d570c9c17364f67431c74d
BLAKE2b-256 d4205c828033c38016e30f7cc1f76d11692a9f36c177c211e48530442c654371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e485db195612bf7659effd362b56510c5e800b5aa21b0cabeaeb5050f3628626
MD5 86757a055cb8c7d34f52fa25bb61dbf3
BLAKE2b-256 10a102ceab03a573b8383c2a2c03c264f6081a0c03d536203332fea31c52602e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc4853540ca53e3fdbf7cc86c99a184fa4a37a5fc4980e317edd43f6eebc58fd
MD5 53931acc4a7a2e0d2250c3249d23b133
BLAKE2b-256 2cd265c5784d197b234d7f0f6fa05525e180338cb1349489760ab8e7ab76279f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcdafffc4ff2dbd273d7fbf5c57070d2c9341fdb1b8989bb1d6902beb9ceedb3
MD5 c4674f47ab9ba57396536103be5ee6da
BLAKE2b-256 eaf6ec5db2a77d41e236bbd28150eff893b3fd5a9f89e7aae40ae66167b76c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73f5e137e4cf428fd1d053d7b643a99613eb8f5d272e867d7cdf1bc60f8b8b9a
MD5 1bb189125ad59e8fe58ce4575ad3c72e
BLAKE2b-256 d6b2318d74445a2654f954668b11b3f4551cdba7799cff9689323413eec20e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead84dff31a9bd398fbe0bcd78126ff6b2262bb1af1856016dfbc553fa7b7b91
MD5 7bd0b7bf3679f482cd0778c90d7074ac
BLAKE2b-256 100a6a614231e4124c651132cd4fe938d3b5c96a63869a3fd4593e9167b9cc48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ded3d586c48d93c94aaf6b6208794efa705c47e2939c1175020fcaf8609f86c7
MD5 9911f61f7d19e7e6a5379aa3d7d6ed20
BLAKE2b-256 2417f9a5b5f70c55f4789d5ab6d77b7d9b250f71c823e3136782b4f3bcfe243c

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