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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.4.7-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.7-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.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.4.7-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.4.7-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.7-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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.4.7-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.4.7-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.7-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.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.7-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.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.4.7-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.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for topk_sdk-0.4.7.tar.gz
Algorithm Hash digest
SHA256 c6f81e38f360d6060bd6221b9fc21752408fe871cbd5a9b4b4fd0bd4aacb56e1
MD5 cf5a2da9f0b35ed4fd410ec7b82f73f0
BLAKE2b-256 51b9c0b18815e084f4eb2d735b59f1c48ebf99945f21bb9a2bc722bafc7715c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f5d3f0253b60b653f075661021da84736d49e3596ebe38061da184f1bbeea797
MD5 68f6e97fa24f654a1489da6143219792
BLAKE2b-256 de52bd765f5b1efcddd7ec3295c05f55e5887b87d688def7b252e3072c911cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 79e2745327af8084a0ce79ca3b8f0b1fde3117d5801e52467a5400f8e4916a15
MD5 1d60db4e29676dc40fdfa6b885958aeb
BLAKE2b-256 3fdec0adfe0d61446f5d9addba1381883adabba996edab24a1bcb6be23d905a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7450b5ea59e71043a9c8f5a1b1b09591eddb61673749abfc9806fa46929a1f31
MD5 46f695b408f0140ac56aa81094a20f8d
BLAKE2b-256 abcb4ef79f91c6d63b371dc98bcb58297507da9a3465d3e216ade3ff8f9a76bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40d1dba6bc806d0b27f3765923fd98e15be40e7d6190d10d410f51b2f6d2fd82
MD5 cf71cd5e40d13b9500247cfd2744b8df
BLAKE2b-256 0134b94810d419d702fc0247e9afaa173297c5119eb26fe254eb588541f44e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bebabfce4529951546e159e590663aef52043d375d4be4a943cc502baa9086c8
MD5 fc152df6aea3c76ea1017806ec7a81a4
BLAKE2b-256 4ecefecdb14a3274227a418054d71ba0d11047d6d5733fd87429efd219aa0d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 743c05e8acc943ef9c912d4b399c175a3dce80a3a069f419daa2c08138d3d273
MD5 6efb8a30e41c1ed5e7ad9d4056f88612
BLAKE2b-256 b5b8360adea655f8c96ba30b4a9a388dfd01fff67f89d5e63762ea99c002988e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fcd324cb7dd7a5580640578d63fecde9f882876ac0ecf4011879ef2a4758b8a
MD5 84a1d2f350418336d228f050ab5b1341
BLAKE2b-256 ae956aaf5eeeac40f81dd917624c2aee4c4113983fa93b428f29743b32f2eb89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e3a88b673e3dbe27a229094336e2f4bec36be0746c795c170464ac8262beadf
MD5 c70a7bc3b5f8ef4f5f0f236bb3138e64
BLAKE2b-256 9623a261a5aea8f0892950571244e0d04c077c4e1a185f0dae0fcabb240f083e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40283c804882626954f11d6784bae168d0fab28247e5de14397d13aa3ede03ca
MD5 08e92b4367cb1434903add09d9b9dcba
BLAKE2b-256 c935fa8385dfa9d3d377502a6cdd6c65fa02f6e13949958cd196cf32a6764ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cffa2c6b2713f8de1cf13dad64cf5616be21acfd0ccd196c368595fa1e6422c5
MD5 dd1b7517127c38a7d1d3ebc4ef10e8da
BLAKE2b-256 c138ec21d8ebbbd7ef075f5deec3cfa9961d37b4962edb978aeb5766665e11a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8bc7fa3f379d99ca7ba295657738b22b4a28a7beadb0faa120a8fa4ca459039
MD5 a6d1eb57af8a2c978c239a4fe0e6a6e4
BLAKE2b-256 58844e3a727a817321e5a7c7159e3c0035949be5bc1ff819e26d6b1a0c43c8c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76d5fc45bd3e9d3e308b5e87149630b9ed9caf44c2a3ba2acbfcd4da944903ea
MD5 124d65743ff264d93ebef9c9145b0f13
BLAKE2b-256 b15d77aa01717acb415a876c7ab5b3d9cc90b7c36fe9387edba8fc418490c8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ae8165eb221c383103b657575dcf7e846a483ebde0b9592a49899b42675527f
MD5 bece1eade2481f5282c1a78e0d5be129
BLAKE2b-256 ea3c0cffd51d3f348c461f05c7f8fa605cff09670ea588dd98dc9bf24e3a7747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04bd07cec1285a37e7b411fff1f1d58a3a6f195b0d585a9581d4d629c67433ba
MD5 890da681941f22962abafe62f285a065
BLAKE2b-256 67ac6bb31b6c3ffc28ac17d9cbfbd5981cb83998fa90f9936d6a8709adac4804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c23d8ed715f0920ea70cac54cfd5f1abf30e55cd046e6ba4c2b9a24ea389df36
MD5 266345b2b885f2b989c38c07df7025af
BLAKE2b-256 6e6c62de74fba13656e9dd9f1893baf5928591cd65221f8174d3e0f70904933f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 84879f5e3c732f4fc5aad00d5a529229d0dc3c5bcf5d841eff469b1c3a949f86
MD5 d720dc89c809d2dccff9b374628690dd
BLAKE2b-256 c307149b3e250b7ca548c76cca2f663a5c4eb902a504b2d80379c913b720af0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f63db86ea365c34d47d4d29860b3e6c0ac46137e2d0934acde94428c3443bac8
MD5 1365e301d6b1b795734bca4b1a70f647
BLAKE2b-256 8056eb02902c366c7b836fb5773f80f79dee9d3918b61fc96e9c40fff22c8f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abf566c16a23f4814dc83048bc6ee1be17506b0107cc2105f8773f592d47e09a
MD5 4419bc3f71dd5faddbd5b0175c569e03
BLAKE2b-256 a320b30a85e0771b0f4af2a5d1f3b0a36018c82c07a3eba4fe1ace88eb14adac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf9fd7d690a0967e4555b624aad44b60b27cd457327cf62c6fdb6c175fa20d0c
MD5 2816b860359ffc383db44cca70716740
BLAKE2b-256 04393f6eb71ea6e07d95ff7da96d6934cb8b612e72b5f63718c9f52149df27a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07e501a10747cea35919fa2f13b6880dfce659438087d508df728f1cbbd0fbad
MD5 06e39a38e84fda43b592082f5a896728
BLAKE2b-256 5d07066beb77668ff93d5eea7b74365d00b90ce1bc8f9635b7c60a753782d8e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d95622ab63355a564767ef12237194064c8d849a39d5b503069068797b363096
MD5 92197b5a01269c6ba7fb52decffd662a
BLAKE2b-256 1ab3cc9f075c1bf8e51ef187d18ff8296e14bbd02f76a8317417bd592ef171ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 164315b553253daf431684eb51104ba2d62ab86a682186a4de2f9a17ab0b5d47
MD5 e32bdcdec8c89c6c54d08789fc72f120
BLAKE2b-256 ae8d210476ea185625f024c49fb9ad56417fd92c268c04158057ae9459793379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab70c7d9055dbd4619d7d934676dc9c4513191cf2a2c87f7b275ca6a9ea57745
MD5 c56c31f16572ef2b97d05d9928b261cc
BLAKE2b-256 810eae1d275b3fd9c5bde7cbd4317cac49b16cadd7055f2df99111cda8e1af4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c1abd43ca1be4f44f9cd7e254b361e6c14d1dfcd6e700d2723ed56ea16ba051
MD5 41bf93e49f935f1edd176d68e7e6958d
BLAKE2b-256 158149fc96f4a53d9b61cdcb33fe1a815f929ad5970166c8b53896e38e51cc7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ded214e8f122240ace86c1a4ae92c6e9e25164a5edc88bb5faf7d2a8c7c475f
MD5 57667e6334c61638386415a84e762d4d
BLAKE2b-256 08fc913bb4f2786e5087f68af4b143ca396befea337915c0be176ff436bf3887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a31d716e34e12c76fe3b0e264cd9ccac3de9b23b35d3a89f4a51464bfeda1dc
MD5 182e07313766f9f4a68b3011ff7e6f50
BLAKE2b-256 ac0ed0d80190a907a8cfeebbfbb770059c0f56ee893d8bfa9c1605c67ac19a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f05305347c74afebe5aa8f83f76a084d7bf0be0346211ae8a6b452992f157f9f
MD5 d7dcf05956c34f80f9bd77e04f50aee3
BLAKE2b-256 fb063b64934e664749d9bcd4148aa753d11d3a471c10a7f47eccfe71bc6eddd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5aa0133672c21f4ca1b80997e32f472ef87386b21129e3f48731245ac99e485f
MD5 9635beab6e6490a2769bd91464f969aa
BLAKE2b-256 38bc6f2174e419034c33d051304c539ff7a95f161adcf33e55a3acf2a13ac0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53c8bf07142609d25109add994d150d4d714db3ecf5a75e52f2a3a00d5df7318
MD5 14460393528343033934fe4c2a69d701
BLAKE2b-256 51d33fa37ac7beb4d7af527f59eaf51bb111d79bbfabb9b7fcf94592a597be80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c973fdd7aef76a74c6c07ad6f1037650fd5d7ea6ba79dc9729adbe55e0172886
MD5 6aa6ddfd4b48ae97770652ad1ae8f93a
BLAKE2b-256 cba64bf2366f720c2199c790b1f333c329e7d5058925cda2759410041b1d7cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aecfb85ff772bf2b68c1458f412e6186402c6d620176bd0e2637a28b48fceb3f
MD5 03e066f051a072af95d37dfb9e8f4298
BLAKE2b-256 2a6f0cf3e7b43cf45340ea3158384149ea557d39519b0a5e283e0b99d406590f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8dae56fa7daa039977ad245b2c0503a53f0cac4fa0d1de19b035c9a049c3d96b
MD5 9cb2127cda1da627cf59c082798442f1
BLAKE2b-256 375c52d27a8ce36b7f7971e8962089b115176a18bc1278d8a05d6461167df813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47d1919f5ead96be36ebd630f8c94fa9c788648ed0974f9d6f8922d86ffc3fb2
MD5 08d2d954552a1c90a03470dcc82aae23
BLAKE2b-256 08ae38d1f94e478ae78bc7825edeab062d3e72c16469af3d448d532b44d978ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1834c9c1d9bd36ef08986e0a732cf8e13cf5e646be740726b841f3637b2eb695
MD5 9ff0647f5737390fc4ae987f2c6a0525
BLAKE2b-256 b56a9d8aa112e9046c7866bdcb47fbd0a9eb7edcc0ebe61b78a87cb9c3503c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 908762eacc63e4f0874f1f6939375161045131a01a00f9e20f7a2737bc25943c
MD5 1c8707455b0974442a9e84d37fb4c039
BLAKE2b-256 1a1cc0e37a1ef6b696e4e8bc02f5bf807425c5ec2f97a3cefad73c9c6e3e9d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72c148c86643e69f9cea3b01b1a62531a5b2fb016e3e5a8103440d3f1d49cdaf
MD5 bb9effe2cdb1aa814304bc6506d6b0a1
BLAKE2b-256 bcc0b763d7890389f31fd0c54dfc98ee42ac31ddbde90a752a9e184c46c76c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b37ebbb57c30edaabf2e0780916804843e0d089284134b4ec4a1b61bb7ea309
MD5 8a5b979ae459d506646af7fbc1151b67
BLAKE2b-256 20a83d166d19e54f8344c3b09dc8177cf1d54166118a8b8cebfdc2b0f4dc5c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 675e70b9b82dc718428dca44c37b016cc5a23f3595bc132c85a36ef32517734d
MD5 1834f60ab27e77ac38f5d0c6fdf3bd9e
BLAKE2b-256 e425604a22aa1c05545ac5fb03bcb915049270c67c4ab8cea07103dbada42ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ac778da0c3f08ddab782bc70bb885784b34e669a1d324ef460601b9cfa34073
MD5 7960999f9b5b4deed85d02467cb0e5b2
BLAKE2b-256 c0382c375aaf84949f1e6cf1e8921db34b5b7ef439e8d7a8ac08914ea0b173eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4494fafb6ef3222193c5b4fb0fc615abf5c09e790807c1dc0e77a52157546e78
MD5 068c3c739cffe63099cba5830d5d2c9b
BLAKE2b-256 1a7ea98d8517c062fb68ef970bc8748cdffb45b87b252a73a240a3acc1fa46ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc6f28e0f11f5c7996fda7bfec10db2d29eac8664040c9294b076f0422f777cd
MD5 3b7a5d61f3e57786cf25f83569ae5a2a
BLAKE2b-256 597fd1b917f0a80006d7524579eea04d5e7b4ef09cc599183bba3f101efb2ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebf07df72ec330095d7583e8fa9cb186d7bdc0b6b6804f46f6a9f925c3372285
MD5 b0b9a9653a17be9593f0490d01b71166
BLAKE2b-256 56101ca128d6699a236bbc96d394ea0c04f1b978228c16a127d06a59f9cbf555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c6bf1086ad8c7d76e085dfb37d46d446169fafa82ff275f4f46ec4f29ec218c3
MD5 286c4ae81369088d1489618b41371d49
BLAKE2b-256 97c180bdf9caa97c721b9c9d9c3b26c9863f91daa89b32c438f296580eb539a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f3b0b2ff4a14454fe55138ad6118c9ced98bd14d89fa5e3be3c4669ba8dc999d
MD5 4632b99d779fd067ad9ae7f54425f24e
BLAKE2b-256 6c6a9fcd7cc8a65dba4daba57d16afaa440a7e9496f1d450e775d13c7b99da66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be1ac362661cb5d26c6f1c6a575ab595269107bc9ef6dfff8a212bdf9ba9418e
MD5 1d289c024cbb36f2f67df118fc6be8a0
BLAKE2b-256 3a2a9ec0439bc5c4de301fd0017b6939fc139b45e7539792bdbc4272ffdc539d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ff57454a73288ed170f07773f1be4a0f75c3c201934b63962b93380d4d2f6d6
MD5 403e7e85b893315899d8899131f8c581
BLAKE2b-256 79a9648dea2fb74485dd57e13c4c1d2884c792aecd1ca553fca5cad1c731179a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e7e9535b6ab91918ac222f2bb2eda2b9e7bffce81aea353ec605b74fdc87242
MD5 a4d0630bcb1bc6a781e1311c152195a7
BLAKE2b-256 a77a05e4a9f443cf14b0f5664996b9ceaa22997a5bad13c765bdb6a77f6256e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37e6efe7304dbad16f139761146c27bd973312c7a3e3b2f68f3246128dc0899f
MD5 f5c34ffe00b05493eb7ac2f61a8b4c8c
BLAKE2b-256 6e6e700476471af56a0d30f020971a95d47d4f0be0bcac5009b56e0c9ed39f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6d8b94be7a085f518e69fd75db80fc645b2346a7a950e72c6c8603083d73b8
MD5 1668f209352f9b4037981e829222b90e
BLAKE2b-256 55c5c3d7a8c89ba01f95e5cf5d4b89856f84bbeefab641a2ca696e00ac2ed04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b0a85e7e8a3600909ed934f0d6d00290410082ac7e169383965218f1b6f35cd
MD5 f2d4166e7f595090872f9a6cc33f0314
BLAKE2b-256 87e2ca921931920962c9e7eb398f0981e79c933f80da8d71bc2ec0512b9738e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 439c12f6a448132c632941ec2df07316f337bf75e596f506628b60d5a7a84ff5
MD5 49e36997480365cea1704dfaf8c4cb10
BLAKE2b-256 c81042924eaccaff9d6e1dc2f598b25739598f0cae44a4082d1dbc21f95c68ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9baa6b27e6a0df35a8b42c758c0f99e3165931149bf832f1e27e502dfb029edb
MD5 44c4133a358dd3ee5a6148a963406970
BLAKE2b-256 b41ec86bebf1a444f46604ba04852b0c4857d501bd443436fa5d06797ad76e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1963964378d834bee491e7989eb923131a63675231c17f85fe2a6e80c2da7689
MD5 714be388818bffa0cf306de4674d0211
BLAKE2b-256 1c88122804871d98acc8c1cf8843f3591c2c77a74a8d6299f6b723289a81ca24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82fa4df04ee376ab2b3eb919348c6d4646c54c50dcb04304591f13692dc1e20a
MD5 e61c351c7d0ad40298e56cd15fbfe713
BLAKE2b-256 0654b90b09cb649f006079859598ac703af152bb96de72db03c36a01bc11c864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acd9629b8bc638767e8c6f307599d094766ccbe62d20bb9e63362c9e6e25100a
MD5 eddda838b641f7f4aeb802ff96ca1ab3
BLAKE2b-256 38c93004ec35b97dc46d38d720a92581fd3eb22b164620f8f2df174e9ff6cc9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a54ace2f2d96411e3baf454abcdc016db96239920a72436593b50fb3c98fdd66
MD5 69b012770d9f7c8b8317701347f5742f
BLAKE2b-256 4fce3078efd51ba40c42288dd85ecbb07a245ffe40b0315ad557ecc4fb546eef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 422e89f9b4b3a6f340a5786632e279840bd5a26354f07ffa999779f76c553727
MD5 b1759ef74614cf43c7cec20a9d71dbfc
BLAKE2b-256 badaede552b19d85d857048858c449d3f46ba60da198024aa22b83028d045a16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.4.7-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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cad73a409c75c05f97466c6dad3ba1a77efd6d7b44e2338980bb2470bf2c7429
MD5 3ff0d9fb1cb822273f669663e951c3da
BLAKE2b-256 35501babeacf6c5294562731e718e5acc3dea2d14ba06c1906cd61d83f8ea286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8235336dd30162c85896a159c23dfc93bc238f222d855935cad47ffb5344570
MD5 e8abefe9bbf37ae5e07620c14c3b83bf
BLAKE2b-256 a7ee264787612f1d95ffb23b6afb7d2392d0d96f91779ef0047558b44c914c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c39b49e75e2d7307b93a0572bea8bc266f6e7d3e438a65e111e1ee81a8634057
MD5 6535391101fe90ae7ff8c0be5b13425f
BLAKE2b-256 00a1c1342f47c4920b609c2956d09c348de45783adccc1be371d448fa4635fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 accb69c1568138fbab80373bffd6c584015badb4822820c350cd2e9955c99d75
MD5 47c88e1cddf67fbfbcfb81f1756d8f38
BLAKE2b-256 6cfcd31e81a417743582f43776bbf376aab7ffbafd3aa87e244183ebeb42c615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e53531bf17c2996116a26aba74a7550ec033b21eefb1cdc9bc77974b8480f8ae
MD5 a59f43a365842ee1e5257b3bef69b098
BLAKE2b-256 b73bbd73f642ccc0542ef2cd9c4b01cb32e921dd1fb86750d8f61b7f75a0abea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db29387250ef53fa864c1031c01b186c57391463d1b0158693e90fabc3024bea
MD5 9549e932ec63780667a345bfb99b623d
BLAKE2b-256 5d85110dbf0e65f4e86ca88e836c3094427060de1bd11cf04363c86b10f41164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c754ab73546420420c189bd730821cca0a9840293196e2e5f9a2a76d6d01709
MD5 1f6a37c7ce04b24f07cd85fcca63e959
BLAKE2b-256 f45d83d67e477d0b73aa8c511c88f8538d4337323ae65892056aaf0aa8e5e870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 411d2e80132eaf20c38f5d741cfcda27096ec5c912d7280451c75ffa6dc7bc0f
MD5 8b6baa4c39e8b5f383f1076e38ea2fa9
BLAKE2b-256 779e109dfb70b512e1c121bac7aa4bb8b2b795b9618b599889f71f186c8aaf47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ff059d66605c9520aa72cef9628297d9731d4573981096594694015f63e2e44
MD5 440681f2914d45acbecbea734ed9f7a6
BLAKE2b-256 9413343a8eba2564f463338cb7741e623f6984a5ff8e35dd11df8b2e45ee0cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d356afef39d39b06fb219f87b05098d119fd684d33639a2bcf55f8af489e873
MD5 80cb771efdf4ed83f1d10f6f3e7f4596
BLAKE2b-256 38ab6e0e53ab32238d85a55821fc99a1955ac71c93124c9be641a042dd6ec9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a06abf017780cc5fa64368634f87e31427a0cccd008162a459aa870bb8a140de
MD5 bee60a6ffc3eec2717d5d3e8dcca65a8
BLAKE2b-256 27630b8017386a07bc9e4dca4b015157e11146aa23b35d9cdf1e293feabfc8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0941df94429807591d3539dfba3f8709710a4837757f03cc7a7925358a979224
MD5 aab95768cc1c0887f83c0417348b1d9e
BLAKE2b-256 8760f26dd46237a5e38f9c5cd704ddd4ffe2b5a3632cb940495254a9ac187c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.4.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb181b66e32d2f7090ef5d735e39b206dfc5ff1fcd936fa1e57290c1eccb6e1b
MD5 2b17502de3da62493da9cc46ee833d68
BLAKE2b-256 8046695dec7716549574f1623df433cedc534f80fce7b9e5eb115abc61159cf2

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