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.6.2.tar.gz (84.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.6.2-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.6.2-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

topk_sdk-0.6.2-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.6.2-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

topk_sdk-0.6.2-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.6.2-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.6.2-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.6.2-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.6.2-cp39-cp39-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.6.2-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.2-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file topk_sdk-0.6.2.tar.gz.

File metadata

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

File hashes

Hashes for topk_sdk-0.6.2.tar.gz
Algorithm Hash digest
SHA256 ff736d6649ac364ce259c94fe7d566c6aba613e280864ea9a96b724125deee13
MD5 cf0229ccd486b525a5c84144c08c5c67
BLAKE2b-256 ee48cf82f55eea7f07d5d0109f195daed7a0d10849aa67ee2300fb6b562e9fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 78fdf47971ea767b63227ad19457e6207047b3d92bd90179524b98ebe9235e38
MD5 0348e86bfb72602575f9c0aebcf8ee5f
BLAKE2b-256 3b272e22d6c636ba81d9fc58382ce8365137747d8561535a5d79e8b7e4c7e83a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 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.6.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b4b749d7a9f006f15ff4f6c986558382d40a301d2cd22c882f4b95a4c6ba1fc9
MD5 984bbf5aa992d61c423ad06e90d6e3bf
BLAKE2b-256 4db14d6508e3b1c138383476bf9e9ed235b2de8fae6c00e07a1c51baf1c333bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b76bb1844f2d152170493ff368c6caa212a66f22886d2d40372903d09933c842
MD5 6127e6c0c5c3755ba63cd702cd1590af
BLAKE2b-256 62a007fdce0afc2b8f591462217bc557a075a2db00f6bc92df40414401a66afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f972e128f471913c5242ea9a79e81ca8e18a405e3c6f372f6721558f927e2a3
MD5 940ba0e4231e323481b7380d7ffe9d65
BLAKE2b-256 3e2920bbb8d07189d6abb68971a4a003d25e99ce306432eb16c682e06c3a4954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 072382be55da5d867ce3bae135b312390825561c9c30c37ad9c65fdc872009b5
MD5 b2b251fba9a3286af904ff2e2eb03b7a
BLAKE2b-256 8f5a3ffbbb3cf72a04c99e276c28eae63c7117a523584dba9600e379b765086e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a3ca1198b920f928013f60a25a3f0bb61ab18588908c2cff3662b9c1447da1f
MD5 721b8e3abc5a2e29b444ce398bf47a7e
BLAKE2b-256 f3acb724b707f801a1baf6e9fb29ccb769b73d913257d456f0b6d2f1208a833c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27ac963e3f52c30efaac76ccc38b853276b44427ec48748b3d092bdd50c1cc02
MD5 ed53ca0c219bc1448c364b1de15822bf
BLAKE2b-256 e552008434533bf1dea81382471d395f8f2590476165d593b0c976194c0e6afe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7c2f5115d7e881384fc211f82b254e2ae45e23c6984bbd007744477ebd4237a
MD5 b9569d51865e4b8b87f7755d22794a4d
BLAKE2b-256 20cdbeee2ed57d582c6a4797a3a8d8c69b5789fec5d0af860a998d09500849c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2d4e99df806d43f29d93e6101be9cb79a040371aacb09da00f98821aa9459b8
MD5 fe1f00bb796a7fe9cacb63cef3e28758
BLAKE2b-256 64e6346dc71b9a8c0202bc954ed608ebfec050a3517d5ef79f1ea0e51ff682ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e814fb2a971321c07a0926a7e4290345921dd419c8cbfa42acad216986be6a5
MD5 9a57ac2c580e857922ea757ad25471f6
BLAKE2b-256 a924f11bc4f5435a18db9b30df1d96d4456679973b45660db489e078423eccc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1d95a0e15f4b660e4c6998dcb011e9b6ccc11131da502817ab014d878343929
MD5 cb9f22c6294440e5c2055f00c58613b4
BLAKE2b-256 2c7ac26d03dddc2bd65fab94901d134d48a92a9ca65e0cc2d5fef5c833ee30a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b827a33f0c6f065624f3057cbfd0bda4cad26e1615ae15c38f6546c60fcab45a
MD5 c2221529df6d2f98638ab2181fd64694
BLAKE2b-256 d7deb8b4f20d59a845a8206312064485ca1ff5502a66a51515fb340207ddd36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0f4100d88c8b7e94d9d3f355a1de02856b0b57e25a3fc51ddcc4bd6b9b69367
MD5 04dc22cec97e4c1fff5d19ecea4e292c
BLAKE2b-256 2cf31516977be73ef828016252ef23edd79336b640c5848a55ae3c4a5fba796e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a13359cd4ac35dc03abe3df888a816fb777011819551edbf97ac61d4e189bf3
MD5 251f2fb4a2f78ed81dacf66269f3e150
BLAKE2b-256 2a28cbef6771e7cdbd639d64a948c1aefa01473af2bc37e3af52a5bd8e5df097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2080376c5eea71ae3ad27e0d225a150e29dbf08850c6aa45391b9fc80f95b4ac
MD5 15f7ddd7f10142e22674c57800190bcd
BLAKE2b-256 70d79aea9cd83df817616291ec290ee50e5af96f52aef70a487b35288053fab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 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.6.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5930ebf9598450a7c5a8776cef03ec75cbbd2acce742743a0d84840ceea7be6a
MD5 77c3bc767410a580385dc673806a6f44
BLAKE2b-256 22c01f77f9051ee964bf09cbc46415b3652a13b40ce6f6d23b5e97b9f135b7ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f17397c73c390e9b5022b0f6a82d233cfa6e11aca1d56f47874ccd1d6cf688c
MD5 072d2f6527a8d05412cee232b3e14510
BLAKE2b-256 0a9e209269533231a0036730c702f07689b9f8966d73b1b903b440a0a2abf97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 544e3455842f7b36e88fe34766af66f0f6879280a72e17320a69dec56ec9c2de
MD5 9ccfac1a2218c4977ddecbaf73d42bd5
BLAKE2b-256 86a82e5fdb871781f9086c87b1104a009f192423e920463b07875cb62320aa4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd1db9743f3b2535c9d862448ec6305d85a57180c5c6ea6a75f6ef553fb90dc3
MD5 c6f8053a95a32d9c1f6199e42c6fd094
BLAKE2b-256 52f275de67ba027b1c382ac1844546b41fdb56f1905c36cdb7b6ea1d862bbda2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1360f640633e6feda1a39b61f969d23ca08b723a5d6ec3ff6f84beb8ba750272
MD5 349d896414bbca29fd9a5533867ab0d5
BLAKE2b-256 23e1cfcab9cf2e921abdbeffdbd3d6a127f5e7cc4d5995f5f690b0422179a86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a71dd75cb28a1679ec7ad3d6f9249f2ad5e127fa91d68efa29491e9be033bab
MD5 35f7a16e34f1d3b92c1b4ba294b9fb7e
BLAKE2b-256 c2cbb46029cac79a4fa86d2064cc9e0e2438ed46373617b214bc7d6dc2dd338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d60ab5f5baf6f3f49f83350afdfba0c21c725f51c3a65902bc1744a0d2e0dbdb
MD5 1f779f67bf94f2162eb1b98801ac6012
BLAKE2b-256 2402c55c52bfb6176c09317115b35a384dc0b00299cf8eec0c47dd2f238719db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4a7eb287fe6a3b0f3038d4d6d3808450ff8426a018a097238d850fd6d6bfa23
MD5 5feaf696fab6e3463af2770a7cf579cf
BLAKE2b-256 7a2e03af6d582b42e8d8f56004f4af6de2034f283a72449575da5865074bc864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65c9b1b668830b84c9c524fd93f6959d6b34c934e58c00c04f2092ba640a384c
MD5 8d005d648ea597ab90e44b8511f8185c
BLAKE2b-256 d3b9a8d211ffebe0be1fa2128efa40099a5653908361889de2564b784bdaf91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc5153f4b15a74a592925165653f8f75907cdb1c38cc0dfeb7333b6d1db6a9e7
MD5 9ea35ef844bec48df35bc0fac8fe3061
BLAKE2b-256 32f4309d8d43ab9355b9bfd55e04fd84ea5e9c920a1d25b9ebb549c2888fbc0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3cedaf6812516655771e63e1f94d8f48644e8d544616972a063e93362f9dc37
MD5 e12e31acbca9778f30855a4bcb17545f
BLAKE2b-256 894c445adce0edc05d0f4cdeef862641f1b8a7d78e804a800c3028c6940e145c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f06084404a8c975f34313c47be6c56c87858ff1d3afc05166c117515913e3f4
MD5 8a8568fc5c8340f91ca9aee791cce599
BLAKE2b-256 82ea7b39a01d74cc80e13264376e53d9e6341dfbf94a7d6e88b44ad2fdd48741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e214489a1cedfc845a710f65b2d0e8af7925d04a4eeb2842ea03a2464afaffa
MD5 dca471d3f8d9615b7a494889b741ff37
BLAKE2b-256 50532a20f70536de0dbe384fec5c5258e95e4a85f4822d8cfbd322026308ac72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 589b216e79a0d7af6cab107136faefee537927f3c87966aa5caae04a456ecfe9
MD5 8f3a9e931b08a01b388c3ec971e72af4
BLAKE2b-256 09ab4a8293b8b9908ccf66d7d5a98ab7bb616c9f5960a7c527c9b53ca78972fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 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.6.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a38692036ea92160507178b6e07cbf07e0e99d0a8aaf5667aa0847eb8e0da6ec
MD5 2a8c4710ee60acfd11bb5cf53c6cd7a9
BLAKE2b-256 260d74b7625f868536eee269bf1ae155c4945bed265f57364e05e796c12747eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d0f26547765154f4f4526c9e228f32a04893ccf521e5c2500f583ec028297ae
MD5 a9f9f05aba75fbfc90f6586fb04742f5
BLAKE2b-256 c2f410f4f0d3c4d6c5b14bf3099386f53fc8bdd414e89adec9671aba0555e862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30a5cd4d37e33c67afdb5a671270920ade3088611119fc5edafc9b48561ef02f
MD5 53878ecb60c84256cdcae41e3b2f2005
BLAKE2b-256 476c6617d6de8c94a46fc258e408182b6a9057e8bb77659dc08a50168392efb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4af35048257119551e99f5d70cdd4692231d433885118ccd823839b272ff1d8a
MD5 19f2251e4192dda8e3a4e61beaf2acc9
BLAKE2b-256 f872c6c5d3371179b3370f177ad0fb6649b1a02ea030b56f816ff8ef03e93b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db2e074355150afaf8f8cb44d118b8de95d3cea5b722fab49ca2a74e1b1174bc
MD5 c578a3a7c49d4574aef03172bf9f9483
BLAKE2b-256 4740011902679823a6354170727912063444970c62abe47b42fdf0b455cbc4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d1168a6604d4610e070da0e8c4e93f76da68dfe3eacbf1bd495b843c481a60d
MD5 61333ff58a0be3ed3f5a1058d031a986
BLAKE2b-256 dbddb44a4374c6624b2d9f529047e4715e74bd246ba840c4d3b5bda26420b5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dddc2bb095f1f6c39b4468a09cdbf7bd40e47f6e1608271c59a42fb365731f8
MD5 3ad66b577a793b8bc2c95be183aebba0
BLAKE2b-256 f4dbd29df9ba6cc0367ca40d9981ffc9358c0ce67c657926d2be5959553cc376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c15ded00ce1942076c307dd039c513c25c6bc3aa3d566bf397f65418c320d585
MD5 ac68ebac2574ffd6e698538ea7e53361
BLAKE2b-256 b50f0a32ce2a66f1c52c9d49417b14437f9d44fa415354456dcc248b395055e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7906709b052033dfe53548e77bda6b3e0c77ff3df6372f609823bc85b6ad5168
MD5 34f907a41d50bed23eb56c4e1d05ba4c
BLAKE2b-256 9d4899032bb9bcb80700fc0ed3d8c872a68ee001d5580700d5c486ab1b85046e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 023c0b284eec7b2a24b5867ddfe2eb7046c7f9166aec56ec064015240a6e5ecd
MD5 27ac1d9f08099a12b0fc102cef80020c
BLAKE2b-256 6511009848bdfd271db954a5a26eba4d06141c35fc9f2ffc53ca64d01acb3101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33facb836fd9bb5b96f020b688680bb50f1f025616e30d81fca98221bcf6ac94
MD5 3d58816570e8df69da62dc5a4fdab648
BLAKE2b-256 b1faa370ffeb0e91be3898847262199debf7b0c375d92462a25805b5d45e8384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd991730611045f1f59904f03758e2296df48628668360b6013cf10b6cf8fc0a
MD5 69f27d5c458f8bc5653fe3d65683db43
BLAKE2b-256 3d6d55b20eff6bd6fb706be67d20e0466e421ce9c0e7d843c5c7b4700735656c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23a04df7470a2357ee4d1a33ec20128b3e80cb729e3bdf3eaa65788588745186
MD5 cb7dcc55dd84da8902352421fa679fdb
BLAKE2b-256 d661da97ee5482a7e2afad971e4f5673c148bb1d0a69146bedd90663895cee6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9be8b58cd7ceb40e6904195f244b0ebf9d5f5c357d991994aeaae0d669565524
MD5 284666623ffecf945125c95700af0181
BLAKE2b-256 23e0dcea5419ab2acb44d13029902ea4d751a3a8bea0cb3fa959ffc17e985866

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 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.6.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9558a21175ba9a8937b732f6d3c61d0410da46476e3c3e591f7d914663ccc941
MD5 a66e350effa333e9e7bc020898e5fb9c
BLAKE2b-256 7b3faf6706fe04be2a039c14b4e850d83fba6d1de14e5f3b20e98b9e3aa24960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 052c669234456ad34afb8decc1ce1761d05af6c97792ae375092872231af2361
MD5 8d5f71ea2b4e3c2f11b2b3e027536085
BLAKE2b-256 8731cc13e496f953a8ab5da5248910d85412bf8fb87a164feeba8ab25463624e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09944e5aa28788a4ac7191e12b65da0c68da538838a075fc14848290fcb4088d
MD5 97521a8a91861bb05319ca09b462570d
BLAKE2b-256 ef56dc8cf646d78ee59e8242e979c20d75f63e0ab19891c723d494b9c0e2227d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b12cec940b6b36ae17256b73c5361c369cf83b631dd1491576896d307a6810f3
MD5 64feedadb1c88ce2f595675c608ba1cc
BLAKE2b-256 d43ee71fac423da766d4dc84962fd311ca5174100e642db97d7981855a8c47d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a28b76a741db276894010e7044cb397070d3651b984c2f981968d301996c8ffa
MD5 973d961c9a83bec4dd023f2ee3963b59
BLAKE2b-256 2c545e23d53f065ed622cc43bd73820542b294e720cb6d5a530b5ce37f81c225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44ebc742ea42409d50bac4c263e3b3fc514bad9982c761aeb82efb90a695a1ac
MD5 fed2a99bbe9a43ddd564f2b26ac15611
BLAKE2b-256 a3bf1399d492cafba97eaf3db6a902889c2ce933b6bf25d8837c67f84585a5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48c6e42852546bb4aed9948a396d6f3703404f2ebc404d9585908fbd1489414a
MD5 9e3c1314e016a1b1fd7a03784d5ec419
BLAKE2b-256 62c9db2cd2211852ee72ff739cb8e7aab8564215fc8ca5a3b84fb968d783bf21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cf863b05dde2e992f9dafcfbe2c05d6235b64b0e5216ad1716b804745dfcb95
MD5 a7e333d1ab56ec53328c854d2f493a87
BLAKE2b-256 e9682295f860780187b1efcbf1a569071ab70825401644ed1694cd2c13720945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94cc8ad4da1872bee543b36e26f3105d1f617e11a004c4820644d81d90b2fe4a
MD5 9e0ef22a4d1fe255b5942046636231d3
BLAKE2b-256 688087e2d6b1af81bfd5c569ef0579711bd80584225d50ad798b051ee569bed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92d4a5e17e80a87de00a41838ecaf96217f71a1a17f2d0d1ea77fda36ee3765c
MD5 7a6e2c4ae9277238f2a0fdf0ffb0c8a4
BLAKE2b-256 549ed875f8f94c10327af7c6c6c46edb12cf5d7fe67a324fe1158f98f0365554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fad3be015592c3b75f476d2fbd4378374216b7d25a95d25ac4bfbb662960d11
MD5 7e0debae6a0af5a4887f088158a83d3f
BLAKE2b-256 0f273842e95089b8ae85d70a6ab9d9676f54c4fc9fe57293805b949741b7c4dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 941c34bd57d29810d85fff6771fc5d9174420c61488c53f559e7da8187eca5aa
MD5 fada6936d7955f3d570328d9c72e12e3
BLAKE2b-256 da64087785cc94df74b370c0beda439a66db306e76b10d885a03f2e12dcd8731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52f4c6cd9b4a032d342fade207e61631cc44e230bd722f71552f08d8405489f7
MD5 54c8a58aa02751402b8529a534d18d74
BLAKE2b-256 b6edeb92bc6adb5f8c86749b87ae4eeb6044372a342b1e8280c96407c3f26655

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28f58af4a44772619be668cc4520be4e3adcc435a64b07f39f29d88a9a3c5094
MD5 1e1e29551c4f0a7c750458a2518dbf2d
BLAKE2b-256 c8480088cb3a5fc9cdde50dc56b026bc886078dc3728bd359e35c7b301614bff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 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.6.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aae36a66dc700309ba736d91ebe81bf7bb71265067d0138917798a1432dfe92c
MD5 30d9f7d53de6e4d18fc2e98ce53e2444
BLAKE2b-256 879c76e05a72154c22df5cc7bdc6d23fc19334524d0ebdb66833870d2926f653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7cdd469d437d8c6b2c4de4c5e4eacaf29cfe39d0b2351427082cda979592c45
MD5 d15d64ca2235d1dc52d516ef1b739587
BLAKE2b-256 e2381ea438947de5266d5545e901a8a65a45ce99292589c4bbac0ab4a8efdaf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a794697ffc40a3384a878e3deafb8c513f03d5ca9d530c8a5cfa52b7c193bc9
MD5 836e7822e99d94150706bfebc7c8b905
BLAKE2b-256 2f991a4337afbedfbecb3f6d5c8d4c648445ecd54e35b4b2db5ffddafe18117f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdcc4910b6b299060d8e9d8d1369279d8f004c0f7d223cccc257c7375202074b
MD5 442176920f1cf9a9e75fec2c8045b4a9
BLAKE2b-256 97a92c51ed516012941d9a28701250b1489832be0c10fa3160fe76700c21e57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ec91235cde3b0e89e01c5b1a2a90488abbdd6434d4cf57e73a22aa47958a81f
MD5 c7187d5c898a058c02c891832e479244
BLAKE2b-256 0879e501e41bd0b6a32a954e348ddbd7cc11e2291f338cb78ec549787c1e34d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79e3da99111455574f8217678e3e3909e92deae472b18d3644004d826ba786ec
MD5 624fafaf93ecc1e01b2d4c48ffab7f13
BLAKE2b-256 8724ce3dde02a2b372e568eda82b592d95433a48e2af8aee692f0f8c5df58066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a08ed73963e40dabe69082dd5a3a0bfcd44a6ee17f2e5c95b56b48b7594ad3a6
MD5 e459e1693e3d7e732ee5400c20658641
BLAKE2b-256 fea0aadd7cb6bdf281141752b0234a21399efcae5b6c92479dbcebf58f5172d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81797f8f847e832990681483e94245faaf786e288eee0eb872d6dcd3a69d273d
MD5 e8ff6450ead0c9a631bd4dc9818bf6ee
BLAKE2b-256 6e037f727d11dcae4aad24475718cf7886142329b567351419655487ab9e3167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 213110b8fd2a49c17cc1bfe85dcffa6b6a30b93f86eb4318ba15d3f55373df1d
MD5 c97d1f12a13a9c913a2f25b4257cbb6a
BLAKE2b-256 48828779e819e6daeb1b1481b09aa2a7e452aeff1d413a9c7e3c91fa9f1943b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2afc019b9c96a1f3854522b7cf465e7a3d6d2fd8d7158dd412a9e34a8b1994db
MD5 94b7d74109de8033fd6598de595d5b7d
BLAKE2b-256 6c8a6b417d3df787b3587125bca0d92b15f38a398af1f1ffaa0d243218a9d2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f715159c0babf929d48af7ee9e0e26a38ba975b16071f910bb536a148ae7f8e1
MD5 1b40ab0fdadef912486dc4758e49965f
BLAKE2b-256 50827de29e6acb19051c53ef472d91a681d96b72a58ba04f6df5bb65e6285743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50ad6d9c09a9d6f3f833f99ed716bffc00fcbc516a887783149eda4c43332a59
MD5 648b2d5eab0041321ff7110dedbe53ca
BLAKE2b-256 6e98940bc8d6b19f58a5337faf827c9ca92fa8b0373dcc3c52c2b21564297fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d0a288b6dba9b1bd4176cdfa6142fae4830e6731c41839589121cdd0e3884e9
MD5 f50cfad40dd9499c5eca9891ac9d1de0
BLAKE2b-256 c27cf34eec9c134dacbf40982282d0845b03821f6a3b857e43ca5830174de875

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