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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.1.20-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.1.20-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.1.20-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.1.20-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.1.20-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.1.20-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.1.20-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.1.20-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-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.1.20-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for topk_sdk-0.1.20.tar.gz
Algorithm Hash digest
SHA256 505f8b8e4236b7aa46567f7ed348759331471c3957f869fffc4f21112cde2faf
MD5 59c8ad0cc1206f6a54137b7df9dc1bc0
BLAKE2b-256 b3f2327e56507a4747d0a15d52e7a66f4bbe346027b9f55392cd17c69da1dbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41d01ccdb5a7ab81423bf826f56ec54be8d40a5099a79ed0f315c15000e71e05
MD5 8a9773991be3a1521a11fec24a627d1a
BLAKE2b-256 3b6c31091db9c3446998002a1785acb5d9f36bd1bff628265311e52f6b943e21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.1.20-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.7 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.1.20-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9b6c98a292ff01051845b1e379cf289aa9f5f061873d8e659625f997f6fe6cb5
MD5 7a22d6d98e6740c33884cff49d1d6687
BLAKE2b-256 3ec3269cfefe066b9d65eceb050f521e9f764aac8eccb146f3229395be22a8cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01ab2fa45786765b06e46aaf47759cad2dc5e9813886917d842277bab16c0abe
MD5 2a7539e64b5942776b8b88ebccc3f748
BLAKE2b-256 5c6911a5e77bd5c1e828e73c919f59b0e906596e8c5a5912c3d70e92d027333c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95be716fc1c63031bf8cdb7c77b73e5b64465a3288bc4f070316843fa4ddd52f
MD5 0490d5dfbb9f583061b8388bf807e0df
BLAKE2b-256 91980890fa1584b897336366e2068db2c6d2fe40e6b89f5c3b69f779d55c2cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 051b957793ba06e2e322dbfd19725b183de9fc0ef6f35add02479517a21fa78e
MD5 7989897b827fbf2815b5eb26f1b508f6
BLAKE2b-256 4b80f12471b73eed68a9ec7e9bc0d7c8c071c62ad7cd2674e85fe3645ae9478a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a74d6f6f9b80da396adda29ae80c8372f8d70cd0b21af3ef5491846fa0e42060
MD5 a473f7bc4ee69344a7aab126409099b0
BLAKE2b-256 6b0732284d90e9613ecbcc46a29d7da70406ff3f790cfff5ccc0c1a88944e075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 837a767d50f5e414660ec7c05f0acd8410438b70d7170f60fe703a17c13cb28b
MD5 323cbd4096077eff583c90e1b787a6f6
BLAKE2b-256 eea6cda8c85c421d5c127598041144dc4c3f95cb8553f8961516d0f18de70fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 382d6bdae48b58823f97fc9f8e8810184c412e8518700985b23e5a9d50976f14
MD5 c861603e93ebc713bfac352d98546889
BLAKE2b-256 1fcbd17b8da3b13267f8fee7c80926c17ee1f80f1b32586543f6bb8522cb0df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c648255b19e7eab03c253bb70765510b487f55b4ea2a408ee807e10f7f0e09a9
MD5 0d2288ec7e039abdc488f65127a3c5e4
BLAKE2b-256 e6e8dc9fc7655c2491e235527c21182ec477b955be72a3618e346e0e7b84aa5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18059a6b079f454361b4961def0617d47119563a535a49396359e243c56f7635
MD5 050f2ac735f31a747bccbf2dcf3223be
BLAKE2b-256 d314fbb330d2ea8b0cbf3bbc1780a7110799fa57f9479cb2e5c96a13c471f5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8295e068751dceb17e02f532442d795cabb0a5f6ea999ea2c8eceb23623893b
MD5 6433cc89ce7afb7efbbff22b73f5e4f3
BLAKE2b-256 704dc19a7a17a25937a3e04b3a369717ce1c49b1395838b18b5c850e423c14a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bd8e3e841de6817a168d3cfd658b5176a07d8d43916f88bdcfd21439d84bf80
MD5 d56b269a5b2c7e9f58cfa8f11ee7fe9a
BLAKE2b-256 c6d7e8ff8f520f2142045c24964761632eb9b48bcd95ac2965112729f3a320ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29cfb03f041579d6d5756f392e3915e69a387f248d4f2fe7fcdf7421370990f0
MD5 e3ff81760469d0c2e1e662f1732791fc
BLAKE2b-256 cf57fe4eaed156057932fdf49558e97ba7f6e724dfbb6dd9b33bfd54bc37686c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 659ac47aa8df220703c6a73b1dfc7a61c7e8767cc81ffc9d0ad646a1c61f24d4
MD5 0d65da1556ccdd452b87fb75f3db9d68
BLAKE2b-256 90511c2e528b382d7d8bd2347d8e457a5a7a1b120b1328bd95aadda8a52080e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 555b22fe510a2862a558dbdd5b33416a93917221bb8acc4cd3ff177f43151b80
MD5 ad84ef5c4a0c5bfd5cf4304688c30329
BLAKE2b-256 9593676b683eb9dddefd4758334ea30668ca28956ba2e6669d9fd067d34ff1b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.1.20-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.7 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.1.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cddaa58629a6f9ca1595eb246ce652aec54efb0a16cea9619226fa1999fa48c4
MD5 4ddf63b5a5d16ccee1735aace9bf8051
BLAKE2b-256 d2b54c7ea5feb3626836b0e5ee047ab6664f10a61fa0948f5daa737ed5558411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e329e0e8961cc4312bbb0a4772bdf53901a3a0ba097e6b8c205137cb89157ca
MD5 ac2528089ef6baa7be24382c0cca7cb9
BLAKE2b-256 19615ac2e93ccd1f5b9beba34d5b01ac3e2f372f1fdb77477e2f242d3724f1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db731c3aee3f810fc95327e00dbe59ef2797fb4e0b1e0edf1d7a8dd66c57421c
MD5 bfb9e092bb398966ba996a0cf9bbca63
BLAKE2b-256 838c92d4fe1e8f7867ea3d7fbf439910a6e742d695b94175d087977211208d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd587df834152cc2d6d2ff79f52e1764d294f239e9b7f25dc51896361f29462f
MD5 adc22729ac875ccbcaef6d0c01808757
BLAKE2b-256 c6eb8ad6d0990f7003f66a0746e67780d9d9358cbf446fffe6b55bf6b5ab0852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02d1224cb34066d2641a75d971730c8068283e6b607fe01ca4049d6d42eaf004
MD5 e5125f5672d49c53fdebef7277c16fcc
BLAKE2b-256 3777cab90f3b339c9ccb69dcc1f54a16ed359e075f6634f52122de00ff57df58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e197552b588238b68eb5222f4a48b57718e86d7e3f0aedbb5d23944758a147ce
MD5 b55a70267255ded1b8355cec960ab26a
BLAKE2b-256 e26e7ab84e49ad5283eddfba9b243f030c8ff482e4aa0e050c42ae20eb1f006a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe01b5b0cbca43ab746f188210ae15fe1fe8c1827d9d2ec3f61cf3a026bd8aed
MD5 8e18ef5cc0d7897e9d0f1625acd6d6b1
BLAKE2b-256 58e62a85a4f1f7f85484d075dc1a5cfb09e555f0e73d1f22a795b15997b6bcc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f26a13b31a2f63aee8feb2ec3b896c806820e3f5ffe45aca3e09fa36e82c4c02
MD5 803e5bb8d0bff6e58b986b3fcd756151
BLAKE2b-256 cc396db00ac5ac0d39b82233ba5605501c246b1676866ecb180638831e071958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d776afc8a42f83ec72649e3c5a7f8457dea65791096a31348857154ba7a8147a
MD5 689a815e6556fc9bed040577e78f59d3
BLAKE2b-256 3a7e8499b5375ffe9fc55e11b5b9a0f28548bc892c5e7139c34fde5ec8ef2a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f7c0899ba3874b8bb9a4fcb85a6a362177849fc3ed7a2a5a03517d6f0d3a02b
MD5 3768ad142cb3a3005d8c03fac0b82203
BLAKE2b-256 7b4eb7d8d1ee79bbc118e11d7ffdb101920704ac83a2b84221563b1a9a31e712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d02f763377b145ceb3f0e518a015e55931510bc0f746dec2309876d16101bc56
MD5 87ac6f5d89162b82b9285928370dff6e
BLAKE2b-256 917f0ca7932dbebee8e3189a30d61370730d68279380985d2d5d284869773423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d7a5854ead8975f16b129e80af5ac1874a8d7b947c485834b21f91d39fbe005
MD5 776185c3d124756da63a237474bcfddc
BLAKE2b-256 4810d2502a0d0915dada46f43ce6befea5afde606813921396123a99374a633f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50f8c9f0a397692ebc973d792fa4dc46378c0dde51aec0bd6b50d29bd5a137dc
MD5 1f1a801a80a2eab20d8d6fda44f8e3a9
BLAKE2b-256 9a47671269f8b6199875688c1935f0574ca2305088040142030312469da0bdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39a1927cb489db5ce23180382f7ad731df49e93c67e1298679af1102d41aa44c
MD5 3415c20532cf5c2cb3f9d73d0ed39920
BLAKE2b-256 564ef0c9fcb15f6c907ffc7ceefcbd6824177f394efd88fad3526be54400670d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.1.20-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.7 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.1.20-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 13c9e4f41f7c47112891556946548b71a765a3432d96b42ea2e1671de90dd991
MD5 91dc35fb3664a475e9c611edf18be9c1
BLAKE2b-256 548d20f4a3d08e2d4698c5a2be5e8715236dba0cd872807d738b364b8f56f1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ea2e294efb29d1a62f043ab04cd9ba40b09d32b5dd78f2bf46cc73c69bccdf3
MD5 3c797dd3c6590218e0a4dfdaad43782d
BLAKE2b-256 e00297c325cd0148b9082fa2349a90b144523795ee876381fa30313294f64bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d3d00a8555eb18ea7da5f1fc7bff7b33c4b91ae03bd6302464bb83c6584c124
MD5 c1279fe4c28fb5d2572f26c902668983
BLAKE2b-256 490898e2c5cb78d40ca171293c466236a05d1757d0652ebca7e904cf454babc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fcf367f3a8d72bae84fb3f1c55c8abf51c75c98569d8e078d5d8fda2da1c578d
MD5 a1638259b0fcf431f639f6e9c0e6456b
BLAKE2b-256 54e366fbaab5eb9e315df6e9bb518a2d0db40c4663cc95accf172415fbb1c0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39e6d042846858a553b59ed83a0a059548818ab6239299b24323dbdc9a2571ea
MD5 592ca2e957b60252d0d5fa993e292241
BLAKE2b-256 3ff428fa804d7ef9160583023d01a38622fe27819c57b82353298d8bfb308c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4d3517bfb1efa2e831aa5b2931f50187709bf54ea242eac9bad880bb58415a4
MD5 714eb3c5c31f51bddc289d95f212e1e2
BLAKE2b-256 26f9277ec22bae4531a1ce4582f4a93363cf7c0832e2fa974cddb3069802632a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 affbd023558cf096dc62958bb029e9894c040264283f6854cd103658bc71fe15
MD5 c9d8df152c08c0c0c907cf383bf316a1
BLAKE2b-256 7a3bb92492106022db3581d9f83b93c0eed99221d8e3d2c729c55a19fb84ad44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d563fe22ef8eb8c1b8271605eb589425972a60256ef6a632d7b7fe83756f0843
MD5 c006fe1185d07e7e8a8becb43cafcb13
BLAKE2b-256 a75690c341fd13c87adf827b25a5af5adef0e6b9d296f5f04290b73d20cf9586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 073a721f60a20d64e2edaf83789a429764d342a94b31ed2cc6424580fc8a3b2b
MD5 5f0ceb7222561b8b327af90e8951bf04
BLAKE2b-256 c05326268a704ef97810f9e6638432f0e99125dd5de8a9fd6388fb43cd20afc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5185620ef093978e4c6ef52afbad210a387c9af1582728d3e88c4368bb0dc1e
MD5 e5eb95ea586cb7a978f743df79351cb3
BLAKE2b-256 647009b235eca05624a34af3bbe1fd2728ab2a4475354800bdbadf57632a04bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c2cc7412f0a9ad72a5e51fed9c9363e519d9c59d723e993463811afd901b4d2
MD5 69280f14b9f1dbce5027509febd1dbf4
BLAKE2b-256 f0f215b6f2deba74c58adf0bc4503d12ba0a101e8c77f634f63d03fbad77c1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c5514073c5f57555292336d2e6af4d615727c722daa2ceba47bffa25f66778f
MD5 d0e915199611da612ebbfc53a0469076
BLAKE2b-256 59f7b7e3a0be6d1d9160406636ad0cc0af5e217506142dfa3dcc92459824a73d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08c9c01b38123dc743d027c2ab364750fe2926753af0f9e3c9dad332461e8a9c
MD5 b66e6dd931c7d5cb5edad2425d6007a2
BLAKE2b-256 2ccb50bfe7e9e61495a7c189cbc4fa9efc33ce354cd5f409dfa57619119b4717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d9a574074c0cba3b6e66d0883a8ce1c1351cbf19e750b3b869b792873a77c74
MD5 c99579996cbe9adad79796bcc88c4ad1
BLAKE2b-256 552e914c1a766e14b6ed922554c56130cda28555ccbfc64fcf267a01510189ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.1.20-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.7 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.1.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af114970d3ff480bd6f909a8cfc822f5927fffa88ca5b5d8509a84deffc7956c
MD5 0f168fc292bf042645810913a581b2c4
BLAKE2b-256 01c4210eb056bc5e74fb35014ba85991bfb359c89b842ba00b35ecd97ee7a860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7e88d31325e7d56732cecd9eae6b88823e13c58d63deead7555b1f9c2deda24
MD5 e47f20caf196a0526a4927cd69a5176c
BLAKE2b-256 2ed93e3158a21aafca46e96be8522a61b0f092a5461c13e7969440c7d5336670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcf99bdbf63c59f567e26a5949c487704525eb1f605694dd818cc3120dd27bde
MD5 6c1d1585c3f1b940aee8ab2d65c74c95
BLAKE2b-256 196a5363b17b18627cbdb094520c64207b60c5c266397f27de044ccbf9df2365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2498c09ebb6dd60c9f05b48f9f45462fe927ec99c827c3b1e6c329b4071eb914
MD5 4c573a3f61d6914200a042d52afd5652
BLAKE2b-256 a4f00447040054e399eada08445e4b5787d322a7e38be94923f953b12eb05c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9089d265503f655ed85db20ad69fa1212105dcc3058589d8d9b81e23eb2f4afc
MD5 f82092687fd571684039c855b79fb82a
BLAKE2b-256 ad922421e3c69b75bbe1e63e10e8e8342d124bd375c3b8cfe7d9f12d11e55245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78a6a83949743305b4405f9d92305594142e115c16c2b7f5279c3a3e8183dd37
MD5 9ab09cff6bb46a3945bc6a479a135c88
BLAKE2b-256 76c59e83e9fdbc7df1419175b3bc66fb7542183f3fc1ccb41e66b5c5af9774c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4400a65969cffd1415a68b1042ad70bf15c14c913098c25469dc64539359d6ec
MD5 c6d0e5e4b748925390fa1b0371aeb9ec
BLAKE2b-256 329bba0014f4989db36a839a1243e8eaeda1b5c8deb5fc8dd7052a2f4129933c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f738ac9443f5c155b5d8570deb7a8002ac3f56bb9540bdad455f0250f4d95798
MD5 70a38e69fdd6687ffd5dd056fdd806aa
BLAKE2b-256 1368c27f288454d7b90e354ff864367bfc6491109e50a6c77ecb5bc250b60001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b3bc3919f5fe5324004099147f693423ceec5d7ad3bbfc28e8f67b4951e7566
MD5 d238cb810c516f22f7f94fc775400101
BLAKE2b-256 1c10a0785a7be99653e58cc3cb8c4b4bf2716e583e79210a58a9218a6180eb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c51860ef72bbb23489f5840ca8437e63cc367387d5010545f5ac29961816c5d4
MD5 da50ff3adc7888d6104cc1e8fe8f4d65
BLAKE2b-256 24ecbfd0fe1c1f7f62ab46678771887f8cd61c36c2950a5e61e5111c6aae9295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b931fd3c083698af0fc5c8522dafdcb4b8bc31392ac72a5c6aa8d0e0747028e
MD5 0b4ad3e27afe0ed3d52b739e10ccd6dc
BLAKE2b-256 a487ec7a50f24bad00060506570162fe438f51071a0f6b1d106cb02b10956621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 434b0d3122c5e3c41d013f29c4ec0dfd61b599feff0a25b274d8e106eaf87885
MD5 91341426d623a786153f264321ce6a21
BLAKE2b-256 d238653cd01a96ff04102b1210fc38c0111951a7127b76af5fc1694a3a432e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3812d95c207b973df4a66d9360fae05b94cbd53bee90eca7bcc92e6e4202b2fd
MD5 c1fe9bd7bfacece70f55addb579ee776
BLAKE2b-256 5f89064afc4373798129d391086abe2ad184838aaa45272270494b7f79223e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5dc97b03dd9b85a70274973eb31bfd5d99eca4919d8f23f2686a05215f6a280d
MD5 69e5784690d6b02379993dd939284e78
BLAKE2b-256 242ba2bee65b6e3fd38fb0801bafdc7a462262cad3fa0d4de4e644ce29ce83c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.1.20-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.7 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.1.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3afc7bd032aad6b17bf9b6464601400116de674d827829f74831d712bcfaac94
MD5 5935a82c84348c00a604d4c6ba1dc3af
BLAKE2b-256 827420f6adc8cbd33601ed6d5baea3c94cbb20021192bf33eafc8823a674dd51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a511370bce698cc2784dc2f005e2926e35e3c8fcf8558c3ded2bd0af1232a650
MD5 771a268d99a78f5d58416f2de96e568d
BLAKE2b-256 55dc76a3c2e6528fcbc3add4bffe4ee874ee705c989d5d4f228bcee19f0d3dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2b88af62b34ce5ae88e14095e105664c8c194f9b81aa36dfe93af5652492376
MD5 8455cb033834b03b95d1a78cc39d7c17
BLAKE2b-256 63b6abb31d88fcaa01cc942504d66dbf15a65b0f3deb12aaba4e4594b6827656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4479d4d87fdb462677048f7b79b46ef724b28143d4f651e8c6d4603aa3517caa
MD5 c69712f4f461cc5b17c29ec64e599257
BLAKE2b-256 19a38ac471a88068c885feaf2f5c5efb93044e7a6cfcfbd183902cea337adf8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15f0a3d01981a81fbe61b2f8534cb63240d045979ffc28e7eed5508ff800433f
MD5 74ef2e5eca0418d60c8aa18586eaf7e2
BLAKE2b-256 25d173aef1c1b2260a3c85bf404fe7472c33e6e713d273ea4c9b862081c73ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0891e5bd1e45b235d3996bd6268049a02f3cce8a35cd3a0f20257315f0f8e34
MD5 cc8066cd2cb3ca83c2a64b5a1032461f
BLAKE2b-256 f46079e98d2dd88820213012f2ba1c4620c764599c1c05ee72c05b9866bebffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 626741a5378032895c6837d8367d75a3eb2bc818f3159582a50b1c6f88ac5876
MD5 3b748385496ea71950b325537f1cb02c
BLAKE2b-256 5692b4462dfb0b1ab4aa4e2749786d5b1f0a2ff1fdcde0782b5e9fd97a5532fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5947d0691b570d55ce01764c6e027e53797807086536a2808c211dc49cb2c14
MD5 55a5a0d9a80c1f039429fc75dfa84b38
BLAKE2b-256 2393a075e35aa89146301e46b2e095899604f0850ce8cbcc590a7da5220b55ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d87fa3ef12113b3eb461f04ef7af4a8edd99cf6d202270803bffa124246d0e9
MD5 9614426478eb67138c98bbdf0345df19
BLAKE2b-256 f7a21045c00facc73b4d0777c2aef30ac25340e6e8181b942e393a9235aa5162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14d03b47e95b4e2030b742ec053cb9e6be9854cda3fe8f80411bc2821c699c82
MD5 998f8446b13f42d07e9698556c914559
BLAKE2b-256 991dadd75c5a4aae326a188f7d67ba6efa7f4bbcee5c10b53ce7fe0347751711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01af4c7b7cd3072ecd0006329ff57e0eab107b99eec11b1f1b257419ca4a3f4e
MD5 b297d7ac2b92798e64cbe957305a1dc9
BLAKE2b-256 d10893abed8c5cc2dfc8d90ef0eb7ffadc6ad1b6f1fa2c75d3ee83c6499c01ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f8e8d8b5c92a3c9433c22afbe16071c5c4d75adc551a23c22164fee4b61bb2
MD5 ad551eed63c02affbbb6dd34e6d2e8ba
BLAKE2b-256 7b97f68fe4ae0757318500f1fc6ed4896d177e62adc5ffdfc85127bd3dc2a065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.1.20-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faf64297296480f843c79194189bf53de1393c1a28db18451413bdec5f896d76
MD5 e723f13ea8f63bfce0ac46e4e4e70bf5
BLAKE2b-256 69d1053781cc998928a903dc0cb54d8d6a159d5f709db4ce502bcf60f98ded56

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