Skip to main content

Python SDK for topk.io

Project description

TopK Python SDK

Full documentation is available at docs.topk.io.

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

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

Features

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

1. Install the SDK

Install the TopK SDK via pip:

pip install topk-sdk

2. Create an API Key

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

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

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

3. Create a Collection

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

Initialize the Client

from topk_sdk import Client

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

Define and Create a Collection

from topk_sdk.schema import text, semantic_index

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

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

4. Add Documents

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

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

5. Run a Search Query

Now, retrieve books using semantic search:

from topk_sdk.query import select, fn

results = client.collection("books").query(
  select(
    "title",
    title_similarity=fn.semantic_similarity("title", "classic American novel"), # Semantic search
  )
  .topk(field("title_similarity"), 10) # Return top 10 most relevant results
)

6. (Optional) Delete a Collection

To remove the entire collection:

client.collections().delete("books")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

topk_sdk-0.3.5.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.3.5-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for topk_sdk-0.3.5.tar.gz
Algorithm Hash digest
SHA256 572cdee19d3c87db64f2a5d76bc7520389a1f97d960d8bcbfacce270aef7c37e
MD5 b3a7daa791918c8f2bbf97bda596e6f0
BLAKE2b-256 42ffd7eb4b862758bb02da02cd0423f916dab4158014e4ddb594fb69871b51d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5c6977ed77cb7da1fbf9af6af4de7ac2ba1b1f6843f0bbeaaf7c2fe83654885
MD5 5ec65eaad5da77c35034deacceb72b8d
BLAKE2b-256 cd0c7634e1c4061f7028dd1110ece0ac81ed63b9872d08974fa694ad9cc4ddc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f4599bfdcbdedd5026a1f1717a73b07b257d1228a2e708a79b75b06a8e6ee0b
MD5 e2049190aeb4353e4bafa87b53f6520f
BLAKE2b-256 c0f5f223dde455c81ab2fd2b21b4f328d0c23fff3001444e0a919fd1fdcac683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00754b09667de53810231204953067a3dd346c880fede59c8c0f367042f52652
MD5 d846d5a2b6c325eba6bf65c4af86527d
BLAKE2b-256 5060b86e364be7eca0ff3658e9bfc2571829919ddab7f9ce1c0939f5a663f594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52493bceabd9640c461eae93edda20ecb056fc42e29234b65372d805d7c37609
MD5 cab5cc100bcf53a52b183c874dfaeb88
BLAKE2b-256 77ac1c2874a366f0376ce2e3adbed1089ace2a45555c79986b293c14279f9489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3686d861fdeb109f650be575016f7e99e9794e6e03368f63b2a83ebb939abdc
MD5 fdf87edfbc727cf875e4c816503243c6
BLAKE2b-256 6d6c6492307e1937f10cc54d1e3c08a801dc6aa1416b8bb2cd94755db741fbec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24ea9225093aa614ca44e7dc43188087bb6d2a33d4f3fc14645897dd898306d6
MD5 0ec90f51c5c11450245e2a380f705bda
BLAKE2b-256 945e368b65d4428f83d8841f70f03596df6588ea7df8eebca427618710835f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d5e6158879266416347b2a0397f55780494fbd28e4b3877e7f9b63540853bd7
MD5 b6b40159545609b84d9d4f06be5cef5b
BLAKE2b-256 b488782e57ef7a715518c6331f34fc12dac2b52443f274a842cdcde64986cab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e3e57822c14b15ead1685b8e3b3fe2a550c8e047e9b15f5948b54b471e7a8bb
MD5 e0cea8ce9d214f32b11242f640353abe
BLAKE2b-256 2696df5243166b52b4478f4bc493ce8859170a9a18df545c84667e730c729153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d484b8027018381af77afbd50bd9932579a9fdb1c084800525115982e0e74a2
MD5 564fe773546294c6367996a40e8ea438
BLAKE2b-256 37cbb7bce3a359d2710f1efd9a2c9c156f7ba4d40b5b9e7d9648d66e34070028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb13dc7e329837770af2de9a9cc569184a89743534a24406e46653b0b178a0b9
MD5 787f94d5963f3290ec370ff3ec0f0956
BLAKE2b-256 c0806c66d5d1492475c75fdadc662f2ebaadbaf4fbecc7a2629df34bc1dd54f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5a85e3e7c90afba6ca8d974c748d43a4cd8dddb1d44a29af346eff6e8ceb7ba
MD5 22f7b2c19ad13fa7ab6c9e974d266371
BLAKE2b-256 319575e404fcb9a2240aa93f3a97bbee22e418c30602c4cb6bc727993ee7e15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ad2380346bc0936076b112203eba91f863ea901d48227ff11b270c4e8731867
MD5 8edafa922643cb323ad7fabfe0e85ac0
BLAKE2b-256 3936c3f1ef0e08e1880fee9413c8cca19e9fcaeee25e94d68881e4ac2519a2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3f799cd987c31f5605482cf8ff884729acea7b843054fbbba6cdb7c2a6ecb25
MD5 a4ba21f33067a8afe2b2f0221fcee160
BLAKE2b-256 1344941a59ab766976a873b5caafa5e05b0025b7db5e196d5e15b61c572fe28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecdd1f7227d74b553187fc6557643bc075464deaa38a8875b845efb592eece14
MD5 ebc2de86b9a399b697cdb5083919dbf3
BLAKE2b-256 daed8b1d9dbb1762d31d7134be25b665fe970b24c9caffabacbcba5a6defc85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e0170fa7d1b5d0da7eda611b1a002228fb32e783d75ef7ad3b4cd9e97d9b71d8
MD5 786c88f79b3f59e0e21f50f9f1ff0c59
BLAKE2b-256 65c61691f527913754044d59522749c67ce214cd63c2af15887c1507f299abbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef407970e6a0d1d9a53bb5b8f0a9ceba94136b8d59036d3b36317fae7b4d4b36
MD5 cc37f9b2947530b76c733ef47f44af0d
BLAKE2b-256 33cd8b8de7d26708bbfe6d9cd52c3e9233ac2d13636dd733b4883d9bbfb10695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcccf3af86aabfa33d7689349149bfb24b10cb321c7f5baac3ca16fd1e57aa93
MD5 ea550788c59a4312b45eda3e0111490b
BLAKE2b-256 d9e512872c3f807c8f43bf5ea697bd568e725be6efe04b72e8d046fcfb0a97cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c189f712a8c99aca33fac61699d0a2563b14d00df8b4583be1845611c90c4b86
MD5 88b9aad17747ec62c7926936924de331
BLAKE2b-256 055282e70d57e33a6d06ae8238e3cbf623c0cdde1681646fc2646f2de8f22fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55679f2a628e2ed0d084f806b4544081ab3e299b132c49d565a69d3f2799f7eb
MD5 eb6cbe7a62ffa6e82193008285c3f6a3
BLAKE2b-256 d43f171da9b1b411fd61fce8672ba02e93925f5e3179892b04d9f972e9ea6676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f69a7ec7789ffda395adc103a80405428d423f78af0de2b0c5e5e44fb283eb5
MD5 dc20ac032d25b4114e680403cfbc4953
BLAKE2b-256 5fab59ff222e3b8b2aa76457a6f7257b4640d24454b9fdd93cb9106d0d027db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f63c7dcc300ccdfc4952d740e3ca162b5759ac987449ab88edd23e9de6a456f
MD5 4a354cee497cd837f60e71935584ef2b
BLAKE2b-256 4fe328ae5953fa32d06d254c96e80c2f0ca882adf86d55fd6dab99d8cc4327c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0e659c62160c577d103888ec03e0ada799fe3bff771691dbb3be9a888dba878
MD5 b5101747efb6af610067a824d4b64400
BLAKE2b-256 119444a307e038103f0c010c737b3f102721d83d8ae1cfca5697d76a6ccd6640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc5a1ed1b06d279b370f27c506d3dd14dc575d37f9f75150d1c41d3d82fedd92
MD5 13c4b1d865a8b54914c36200a20f35ec
BLAKE2b-256 83e6f0932f3f97fde88f1359991abf281367d0495acfe89fc9d065f495d068eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58c6312c4845e133d07a087847a755b6fb1e6985fdc9f2a0b6e92e68bce3ac71
MD5 28600270cf06a9c7b79f521d35e44caa
BLAKE2b-256 4f8b0f8269d1ddaec9a70ec1eddaf5ae8aa41a16d80c7fabd2cbaed8e837aca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb66f38574f499e6d389c8e6614a67b81dd9c29f19df983eadbc3b3e179ba2ca
MD5 4ec2a0e493d4ec0bf24cf6645c889f76
BLAKE2b-256 03a09a4351c2cc555393838a402d15ca5594f965b5b4243a53ef6fbce8888c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfd47f11ae854dde3e8e66ea2403beb70cef4af5e0f75405b33bac53899ff93f
MD5 7ca1226ee1b02b7a8e3d19c0110ccd9c
BLAKE2b-256 17193de6eb51ba6011d7ca6d7c30c088c7a386c08392c3283bdcda287f74b820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982a5355724a436d46e9093309529816faddb08547e89bc35226826c007c857e
MD5 cba08799bb2719d02fa900bb369083c9
BLAKE2b-256 061b4ea91a8ef7330b74da0a0056e27f0116161e443d8f93d58e6b3db988e9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8c0063ddb27805b8e74bd77f924f9162ebcc2c6c39fd16ea993acd0c722c786
MD5 c4659feb67871023b307773567cd1360
BLAKE2b-256 a6aa5f7e2fa79743b73c8688ea773062f7c72df05676983cc622f00b863ef9f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.3.5-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.6

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 38bf5fbb75f1448e1b5a569190b3dc2a9943935e3c027f9cdfcbce8b08026095
MD5 01bc8ba69bf6ad32d62ff4cac612ed53
BLAKE2b-256 127cffa0bf34aaedc0780ebf4ca225a0a9c3dcffc7317ebee1e28ab3d49f5a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1464e407ee8efda435ee1314d05e585159ed7efeeef48ea7c6cc90d7447c327e
MD5 4d67ee07d5bf0c485ff24488ada5d0b8
BLAKE2b-256 8d4387652de314bbe4359a7047f1adc861ddadbd724345d5203f27f1e0738adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 caac6225691f005e113e6a0ec3d05733decccf98f67f1fd53aa0eb2863529307
MD5 700bcea57fe7f6738da05eb6fcf6684a
BLAKE2b-256 d130299189d6a43798e336c58768627e158f8d49f9d30e4d9658d033d9e8863e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ea807ad29f09f4c1cf46c7540b691684fbced31f41fed2bcdde61f29561271
MD5 c09ac0abf83e46f514acd09839f296bd
BLAKE2b-256 1eddc9d29da011ed8cc85c8ec3ffa3a5f2eecd2f6ae00f37a45104a4b1b8d3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e3ec09873b1754977e0556ffae8d68cf04441c43b931e9689c7fda82e808ee4
MD5 cb1ccd429d62981f7366bbec8bcde792
BLAKE2b-256 8acd76994570b5a206f53f5a7d5d1cb0f4a52b20be553debf01c52d7bf30f60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 890a7aeacec69aa2201845fd7e761a13d7849d72c2142e83f8c29e6ae3b4101f
MD5 539ed22d152158f2480831c191cf2340
BLAKE2b-256 9560a1868b97dea44a7217ed9a50191f0b225978d8675bd1bf3a57b5db9f52d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.3.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 461ba4440fb7e9adb44698797055a283be23e558347b9270b12c808e2616f54d
MD5 9c0f36dcfdcd615e6eec2c0251a40729
BLAKE2b-256 c56ef7ee1f2ecb611cab4c38d581c340a1e82404a2ffd54c92727e22388d6e6c

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