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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.3.7-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.3.7-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.3.7-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.3.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.3.7-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.3.7-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.3.7-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.3.7-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.3.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.3.7-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.3.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.3.7-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.3.7-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.3.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.3.7-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.3.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.3.7-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.3.7-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.3.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.3.7-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.3.7-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.3.7-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.3.7-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.3.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.3.7-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for topk_sdk-0.3.7.tar.gz
Algorithm Hash digest
SHA256 430bb1507b0fe82b29e559bde21a0b33021ce05a673beb022b6f42d50ff2a251
MD5 d839f302cf2fda601bebd62217fe8e0c
BLAKE2b-256 458d74a3d55c1d9c7175c365f5afce8054878655adf527eea4f0f9d49cd5048f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 530c6ec4f510bf3563e8dc09a08ce5e0ba95ba1a2c07e56666311bd29a045f64
MD5 ace1f937e17b80730645aed0d4c31f38
BLAKE2b-256 0dfa4132ffd1c43f22a77084465c13eb81cec446b45f6b32580b0a308afb7af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 944bc43f91d31493c80e6f6afd0c72bbda4aea5c869eb6c1cdc9a83fe7d27fc1
MD5 46200c985a426671279c9220cceb0db7
BLAKE2b-256 e034d367480155230b230d7cd66b68c8ca4c2670b4e9fd8b3c6895635f0162fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55cdf3589f6437376376a2a2fa5048f0f6e2a92f5a89c39890d8898bff6b39d1
MD5 cef5c20a79db5edadc9e2f4fee26a6fa
BLAKE2b-256 e9ba931e538c5495119950f7e0862e628bbcb0b9fec8e1e20afd708b413ca78b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3875a9de9d05caa314a25b934aac259abf16d08be3c39f6cf51b2a936fbbb539
MD5 10dc970338b4939cd120de4a6c17f978
BLAKE2b-256 d1f303d59ca6521e07dbd05dd2c59350cae12c294a88014969f096c583241670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baee8e90e33eb3eceddb9a138aae233fdf67e4e840e2ec0c1959d229492efc08
MD5 744140630f2b21295b936348a864d231
BLAKE2b-256 d614a43ffd244df6f475152c147e10ccbd17c9d21b554e1a7ad6a58b2fefa1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb6bf2275ff25fdd2ee2f458bd789141a0d3ebccba1b752fc005f66e9ef9a518
MD5 3a7875679efb1e3e001e06e59014cfe5
BLAKE2b-256 7bf280ad841592bc584c2ebf466b0424e67953a89584e7d0617a1827bc7a768a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 477e78d1f6c3666358c6cfe99bc92094f2b3eafd3abd0d116871d5911087fe6c
MD5 6424a84232c8bafb6de47b5bd30e746c
BLAKE2b-256 e147fac414b86a88ba101b6d46b3d5baa344f89941cd768dd7d3224f932893dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45f9f365a7ed16a40a3cab96377bf268f4e84624225b95fb1be1353c53ded9dd
MD5 366e838e925e6de7228b6439f9562513
BLAKE2b-256 d66e2c3bdd4331c65a695e30de98d18efb65604fe53c1a0dba3ea2dbba822d0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fc7543740501d111bae917fa3e58785c09b072434c035dd9bfbf05479ce9ed4
MD5 0d2dbcf634da7c3ac44047069933a230
BLAKE2b-256 0a8f0b45c6e5ae2bba1ff7a5a4f697ebf60387233c5d1b72777694b95afb810c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abf5f64c41f9ad75eea26dbe681c16da1782f85d4d8e904fbea64d7f5fb80a86
MD5 59a90b89e4e92e1a3f58d3a1220e9800
BLAKE2b-256 2f2f492468c6cd39a34379a8e604e5f2b31fba6f1e5cc2d5677bf559445e16c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a766aa07fe350921baa1174925a525a3e75d977fe11e97f31dd2ab60ff1ad11d
MD5 c74ed5fbaba4896e24fb28a137396366
BLAKE2b-256 f89370d3a76f618a11a864913a236b46794fac6c62bb8e3184ebcf907c9432ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c94b9e0155fad21d3178e8326b234d8284d3a280cc1144136aa45e545642598f
MD5 c4898ed585f0299e20f3e6f6f52bb14e
BLAKE2b-256 4c2eeba51d5de883e906d55419ba93d79100d455f8b5d47ec7fa8b0dd36c3da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a840613dfb7d7b4d8af765ffe91cab0e24ec6e67041f108a03e2f7c6af71ae5e
MD5 e43d766be8f866e43469fae3e8499c6a
BLAKE2b-256 53743ffa21cef48e238e8bf53703e44190c1d4e7e1a8e4e085c158380722527f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6790e8d941a5ddf2b1f0fae7ea247e8e2f21c7fbb589d4ddf360e7ef312f76d
MD5 7714c0ffad004c9c7b0102e00ea251cd
BLAKE2b-256 7891c1bfe1b76f761e3bf5c5bfb6efd2b270ea1cba3a16596f6f9d7089a1adaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 817905d9e34c7898cd6b5df5641b47701633a3fad95576b95735c8eeb556ba36
MD5 14c83315276cde8081fcbecce4ce42bf
BLAKE2b-256 39400e457657e1cd324cb69f168b0f160bb4e51b9cd5a6eb974057af3d6ad093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7f8d0d8d64d2676174948ffe06bf72de47023d973ad0a372ccb5c8e6e7bd99
MD5 6ca435747871c06a2cb672d13628a23d
BLAKE2b-256 bbea9aa3c197085b8a4532b5f982b995775bcc65e13d2ec7f94e95d4134363d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2293c6a41909a4d37e83b0de163f8be02746733a43bab579bf83cd6fa5a54cb
MD5 42f711f067265a661049dc74ae68fbd9
BLAKE2b-256 dd8beee95d407f64fe0870930c4909ca4146ab886d2f48fda4b653e2d48e7282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 016923015e8ac2032eccef4fe72579dccb5cbb6107ba43cc0dad29ec47a971f6
MD5 f3f4b9998379026901b4f1718ea5ae1a
BLAKE2b-256 42499e457ff06efd8e88e47c3a2b6c39633792919b695f097d76cf5d0c5e815d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4f581ca2fa00f48774e383311fcb39d29dd2fbcf40dd982c658e1ebaf7575f4
MD5 81c36e2ff38a5d39f46f30be928ca969
BLAKE2b-256 b78474c804d39e0395dfa49232930df749f4adb566c1be3a20cf0ad8c5c9b6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08a0b683ab3022b854728f77313316de197dcde235b0a344bbd8118b22af8b25
MD5 d35d610e357532533692f9274575b10d
BLAKE2b-256 1b54109f5598e12568ab5c7d6b34eaa5a6bcdbbf05135049349e37f9f8684f25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cb3aaed67c4167faf6c216b3ca70a430bc13faa63d07d140ac1d89250e57d03
MD5 794f3dc21b4be81576fda35455fbca21
BLAKE2b-256 72fb8639f89df81cb93ce246987f78bf246a9c560c7ab13adb771fb24f8c95ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8dd08e0c19e98c2a5e7768612a5e2f4b72ee51de472b3b82129cfbb90cf87e77
MD5 ab24fb969a7c1968a52a06bfaf940fb8
BLAKE2b-256 af15adc62fe06418ccfc59d7296f57bd1b50114264286a2fc8945ae773fc5f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 600de4b10bd64ee6b2b3bee3fbf79789fb80f789ac46bafcfef55568c6377cc5
MD5 ed4fe27ad4d53f472545bdb9863d0aa6
BLAKE2b-256 b701a707e2950492094002f9d507384b9332308f01ddd8d6e6785f9b55fd45fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c6494abf7e160231d448ac3e36ae9009a8fd46df1eb40dd65ca1bc02852736e
MD5 91200f7d06df3bb2a74136e920a006ce
BLAKE2b-256 54ef1c1408ec9680daa60bfced9ca10a6a0efb8f48d9bb69bb587b94d610180c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdd1479e7f542e86fa91c8ac09beb5b5d2ef8c6ff69f9156ffe46771e07baeb9
MD5 0b1844a9ebeb196ef843e3de9c031041
BLAKE2b-256 a58f2e6cfbe0d5e03e1fbd5f376ba5082a936598a84e156034f8304673d0ffc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d51a422b4bf58e8d8683ada194fd4cd79fc54c50e8d4febd320d336be836bbf0
MD5 af60b69006311186922b12a53f2374c0
BLAKE2b-256 f1314fe3d74d34143a2f925e09ec64d3881d68a30d543fbc3582cead0439aaa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cacd6ec8c99d54c30da1afe88c6ddb38999f3dd1e9ed18d848a5737f21bdfbc3
MD5 4db9802c96a47bcdcecf841a450f0ef1
BLAKE2b-256 231d9d77872dcfe10d63c2b7dd7d68046f6f10e997bb34c2f499244897509e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1e1c5d098dc9973589b49e15635dd0476d91dc439d5bdd10caa70d5d008a49c
MD5 f31083b4498f9f34f36290f9b42923b1
BLAKE2b-256 67f94c560229291929602a186d15920586f6a51ad3d9166e7d7580eb535b199b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.3.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.8.7

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3328342b404538623d1751b8cabb9612aa97cb7fa8c88a8405c79c8ad841ef53
MD5 45c8000a3223231d1ab2c77a52dcb9e7
BLAKE2b-256 71fef6f77aa136ea566172894d5be7d42e2968bbee7129a54faa8fd68b215daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da709be382abdde1d58fd5fee02d2602aebfa703bbbef23ada40e1d21c3f0e54
MD5 0ed7f74a1ad7c3e68e0abe20d5cd741f
BLAKE2b-256 c2273f5d0c1384f776beee3b9e6d695e601daaaffcc7821c73bbc6b5ad084056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09699e4868c861d8c77b47e88f124c390d3dba4b9127eecc7e669a9a82304dbf
MD5 186882a2c3c38f504cbca075096f697c
BLAKE2b-256 929e20beb91f39e0abbb351864c0b4f2b0a5b01af5b6c47bf511a6a51be016d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fc4a579e9faa3694dc934f05311c42719fc73aaefe2e78031986b98de8a7bb6
MD5 a6098690bf5fb361730307ce70504873
BLAKE2b-256 33bd235281eea607d3926ba85011ed78c3a51d9156178feb9b236672bec26b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47f453fe7f5b31221d671edd2dfec5958e0609fe8a00feec423eef3c2dfec1d0
MD5 9e6eec9bcc672e8cf9d66acb1e98e0d9
BLAKE2b-256 3de99ccc9854cae6c419bb4050f33a71c53d2ec5a8fe86ab1f680b4e7954778a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c334b74dfaaf219c00a5f9bdff945f2156494231786034cb3a5920fde9b14323
MD5 ba42403e3482d67b57e3bd9c80c89063
BLAKE2b-256 41fa2c7f6443692eece139a9351c5d14d0c5c074509b8e8a1beb2cd2fd6f6711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76daaaeb84c3f691fcb6066649846f5103e014c11a9844171fcd2d78fd2b6aa9
MD5 8068d55919e81be173356ba429f33fd0
BLAKE2b-256 02e2fbb1105faa9b510208aa5b222d0f0b1decc19af6b66fea05286b04d3e7e5

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