Skip to main content

Python SDK for topk.io

Project description

TopK

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

Uploaded CPython 3.13Windows x86-64

topk_sdk-0.6.7-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.7-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.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

topk_sdk-0.6.7-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.7-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

topk_sdk-0.6.7-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.7-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.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

topk_sdk-0.6.7-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.7-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

topk_sdk-0.6.7-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

topk_sdk-0.6.7-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.7-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.7-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.7-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.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.7-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

topk_sdk-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

topk_sdk-0.6.7-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

topk_sdk-0.6.7-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.7-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.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.7-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

topk_sdk-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

topk_sdk-0.6.7-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86-64

topk_sdk-0.6.7-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

topk_sdk-0.6.7-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.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

topk_sdk-0.6.7-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

topk_sdk-0.6.7-cp39-cp39-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for topk_sdk-0.6.7.tar.gz
Algorithm Hash digest
SHA256 425e66f7f09f1d6a7fd9dbb408ceb98cf1f214995c94ddea8af19eb7707fcea5
MD5 95036fa7ddd6f403e8c60991198b2502
BLAKE2b-256 179c79eb05d95188abd9c80ee35d22e300893d94d0e86b041db7b9a7707a16c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9e7ddc3c64abcc4138d76fbeb351102b952501f15e775d9080afa913f65d1b8
MD5 8d0fe5023b17e86e88de4e47947c8005
BLAKE2b-256 31e111994f6e2488e42a28951904d7980e34dacd37a7e49ae938a0f0db64f69a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7d42a2a222c80de202349fdb73140cf1f1aefd281b8a11a82803a36c46aa1fc4
MD5 b517c790e00b54b328c1db55ca8744f6
BLAKE2b-256 074d9a68443efe896d44357a3e07108476ccd8c3021a8746fe477ed9946a9ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d83c1ce7d5c5775f0b034d85db85d9f1c3deb28cf74c85ecd1fd4f3a9800625
MD5 7f78c50e86d83c3a81f1e80e0037601d
BLAKE2b-256 d2a7541e5c3f8186d8d2bf97cdeecaef8c6dea80d5ccac59f6aad491b9edea9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb609fb933f2af410340ea74100e5391ad33835f03f99bf062eb4ee4264a3967
MD5 2843a4abef2ea34fa9ac5fb7417a8bbc
BLAKE2b-256 603c9954adb11deb9d217798002d25fccbf6d59e47145d3218676d36ad210e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 053806f45ac2a1a2cf1e9dea1eb4230db8170c32490ea051f7e41bd0ccaecb6a
MD5 d38596eb18ceb5adf65848287ce758cf
BLAKE2b-256 7c1ceef978221bddf3635b754d3fd44a3a7106d0471758eb7e59a253eb31cfc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 380ce153faae8af6a759b3ba0c02bbbdd9e8e58e034ecbc5f5000bd1fee65d45
MD5 16479ae28d7c6256fa954c625f5926f9
BLAKE2b-256 c24ad2fab71231446fffeddeb06629a1634fe71f7e2cd45f88d3d21b42c6d36c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0535a1abb24e46b1ed0c1baca591522c1943d15e2fe6c14faf355772cedded24
MD5 e6de42de08b647b7e94a470d5ecf69fd
BLAKE2b-256 9b17d93d8057f7cd37cc6f236d403ab76e131614c71a5fbe47c52cbf8cd39003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b8f37d49a9d6b7fe097cb6fc6625982449b02a2a3e539a3a7706ffed7fc6d2d
MD5 1ae07484067eda7bf8f2c5de92cddad1
BLAKE2b-256 c45d95673f14b1d4dc036a0d1f0bf53292f8983851f980cf97c3c3d8eeb5d350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58cf60307286c21cc1cf969c92265e5ec112376fa25b3ea8d32f36034260ed0f
MD5 a7ada70d3f6a7227653aa853fcde2071
BLAKE2b-256 8b82290cbc48c73f44a84b9d85560bdb9b4cde2880cdf30539b638f0492872b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55733e148389ba98d44291f2fdf4b39c7a7fbc7289d11c8823ff103acc078d12
MD5 3cef8108286ecfc44738b4ff6ee630ac
BLAKE2b-256 e086fcf4d82a0f7aadcb482cd6568310c15bca8dc4090507932491564859b6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 259473e79244f70ec09002d803586feaa8a37920a4b441d43f244dcb19e7c2cd
MD5 efb0ae776e645703f1bab07767b952c9
BLAKE2b-256 3f352a9463ff2799fdbcbd6eee0785711c580fff1b81dd74a44c76c4c6f726f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b59f466a48c8ab5989da7f305b6566870df80d8634e62fe2337275aa87b70555
MD5 0adb98bab185f3829ef052d4e1689c70
BLAKE2b-256 8818bdf315198d6db9ab7a5ce1c6da398d31c6bc0794994ecb85d5bffa24a6bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9bdb20fad5f745cb4422ff760e2de85cc15b55d9f3515a0844e9795e82d7490
MD5 9c800bdf6e8e77f5bb562fd4bf9118c1
BLAKE2b-256 03c03f7f57b3b1a530232ca4a8e9cc161b4e263cf135cf89443c072053ce2670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 175668f203bb77b3befe56b05bb98856b634e06fc5a847c4502eba561ea3b390
MD5 941e42f61059f42c8653d1026bfeae4b
BLAKE2b-256 5c2eed01a61de1c76223d68818e80f35210e5c7fc73e1d0cbe50c035d1b6791e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bae20616214ce8e3a6e4a3fe82f48326797d24d7a0e09e0bf33ccfcee3fb01c
MD5 f4e98a2becf84bf331faec7cd74fe65f
BLAKE2b-256 063cf03d0957e1a4f3222510222e724bc9dfac42846243495053dd4b801759da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3ac4f41ef96ec9246246831d06328d21fb4b801332fc1594176cd21f24aedf0f
MD5 d3d1d64a6746a3ade8065ed920e5760c
BLAKE2b-256 f36382529d9233a9f9344f6cb7e41e9ee0f5204637a3d0598d39468de7f08377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e477585e001cb65ec9596f677d310db94b95e671499ccc0e943d3ea0c8f43b64
MD5 37490784a98480eb86596d0a7ef90f4f
BLAKE2b-256 330e16acf7929d5a96e39d14113c3d1bb0477c0ca4eb93d37c4ef6db2339e0be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0b09c2eb6a5c20544a33b2738428a188ab5f45945e6bc27295cd721328e248b
MD5 8c7583f569980e20aded4a62e484518b
BLAKE2b-256 2bfefafa2d86cc27b22c2ed539e4501672eb016525501e54d8b81fc94fc6115d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edcdb45a54c7687f602bcd0e7b79e1a71cd30b1b34d7a75d4035d97fe2539834
MD5 d471f46447d03ce8a9e7ae8043e11939
BLAKE2b-256 31c7e9be94447191626c2f2f187bfcba25e097b4967b852b5c69dc7278c23d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7f61a0e7a7015068bc0c43a2d36020cf7306c4961f2aeac4ac28518a4d80f2b
MD5 e6169ea170ee53c19ec9d6a1dc32bd0d
BLAKE2b-256 72fc15000cac002960e90760deabe176f3d9da8556d15f4055364ac1d07e7b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 160c7eabd51d56c18baed6d93e348bc0b5ed39a69aff5ab04c46989ed4324875
MD5 ff0e63925b594690ebe52e46346b9e4f
BLAKE2b-256 d6860384ac4a1a9ee496c5998a8d1a335973136042fa7b1b4b82108633ffaba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe3331fdeaca8b66866117ee8b544a3ea27c5177b698a3ed7acb327b07cb0161
MD5 4187301739bb3fb6bb6fe900930b964e
BLAKE2b-256 c75e2a0c7482db223ed481447893f39f0fa8278909bd56a53222f5640d3f47e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 900ae26891d685d931af0b463e6fa79e6cb3e5c3132f9dfaaa07ba959c70ea3b
MD5 057e35e0dcc7030ac82864b5a254a798
BLAKE2b-256 c3c4fa87861c364a197a5104fa3579498d7912c1b70446778dbb80a559fed3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5e6f8caf56d00061e7f7520d33ab2cbb9c89a6bd251b08d185156c88ca547ba
MD5 b85f937b8e8d896f5016d1835265cbdf
BLAKE2b-256 8281523fc05b57509306701a9a937a67be881f2268ed5074a5d45d3270319a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d594b95389fa859d60d9841d21ed1c556b22117d00c60345e138f36964e62c2e
MD5 e0569406058c541dda1160bf63e47445
BLAKE2b-256 6af139429effb912c18d89e55768f15d16abdd61e4ec1e02aa8ffd8608162eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f4c9c94b2e81b126d0383e333cf9989497bb7849a06ce878bee49d4589458a4
MD5 b3ee25b63dad349f749dfdc5eaf0482b
BLAKE2b-256 5a8860435bb20a82636dd24c7916a7b588b0c286304d0b8f252786cacdff57c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41ce261369e4a931c7fccd2bc6a20f756f70413cadf957f15ef39fffa1c38a30
MD5 cad07af8a49778650487c9dd7609edbb
BLAKE2b-256 811342206691370d08b46bb158bafe2c0899aca147e609580b08061095fef7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b2d17c8973d697f5d9632a8aa1153ea94d6471a71e26e089af11821582f7e7a
MD5 8ff13c70c5ceffa8db86760586f07d10
BLAKE2b-256 a14fbd4ab4d2079f1e21fb094949ec08483f0939aa07b8043f7d2a8db7849956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9cc6329775dad8d712d1444497f87d84697ab5334bfbc1fd164c3e13e6add537
MD5 e14efdbbb4c52f74450b0678237ec996
BLAKE2b-256 625c0b6364018f139a7533030a19397798f16dc29d47f3ae90a43330db1625c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 88b3432e8d03fc651a91d9c14ab8c0272061e2b65dddb650a7d33527abfbdecb
MD5 5ba64b2b79629b56a41dfc8c61f729a2
BLAKE2b-256 370fbda5659fec047d5e88306a8c9c0fe398267c7bbb7d40a62c4e02da9afd3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c11e2f36e904c445047b843deb7dc9c1f3e5900f1ce5c258f503c06f8520659f
MD5 d427102114eedf3fdb0446956fc6493d
BLAKE2b-256 e9410878ebedac9d150e06142ba766a3f62cba5e04efe3da0db2c0d30abef7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb69c20e7c6eda08d3a3a846a6bf8fa9ab1b56677bad025ea65abd71423fa429
MD5 f07615c903b3cc2a7ed3627332a137f8
BLAKE2b-256 a17bc56f18763540ea181e0e878bcb11a2aadec34bb0792de1b716c410652406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f47ec8e537891e34c10382831b5343c15daa44099e1db474a845e73914cdaff9
MD5 4b966657751de6bd9ef9405cedc030b9
BLAKE2b-256 d67265fd8177ca05adf31519d2a4bc6c3d05b5eb2010fedb9e8ef0fb2d604fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55bcdb4c9241e681cd72b40f2d46ba43aaf476f9001a2264abdd01da3a694ff0
MD5 43277522adfb46705cef8d4dd7b80c7b
BLAKE2b-256 e145d77a58e79ecf866f11400c1e373007aa22c3560095ec82f14cb03f8911dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8f92af6600f629b729f5acae48b17750802f25baf43c386730ca56ca44f0a1d
MD5 3683dea1f07b639e349692a69db53c2b
BLAKE2b-256 69215253da52e715e887828658adc123c83dd5e1db66ed9386b3beb64e61aa18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43f3cc265e1cc5291371aaa3cfabd052a66a1be68edcc3df17653367d882cf6b
MD5 f97f9ac3543a364a0c5b77157083865e
BLAKE2b-256 aa19fb740792b1b467d7133f7a279d3f25ceb39e33f9f61bcbf2a44f17897ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06e9f50bb7718329bda78d17f89151c967ef8a1112b66324a8e95736f28cbad6
MD5 fb8fa03aff46b186891c70e9e73a6e12
BLAKE2b-256 f6136722411ef9325af429c45e8eeff60e5e3f96cb5a32de5d6261ee5ebbdbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a615c0ff6601e5d52b3501eea3fe4e61f766cbceaf31bd218431ca4c827332ef
MD5 9d8f25a34fe94e1aa20e08472da4cbf1
BLAKE2b-256 be7cd34f181e58350b69d5b7ba8f56d2da9525638ea623dda23af0cde2572ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10546b21e883388a00b85fc3fc36ebbb775f1d89cacbd81fc3cd642818f809be
MD5 81671aa25b5513ea0c45641742e7c061
BLAKE2b-256 8ce66afdd04e0d9b9e94ab6fd78b85f9518197cc997cfa7b49b5ab3bbbef15c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90ff51b1d7e0f3bc5b7040e6a7a8d7647e1403b849bb5939b0f6da3f9b9aa2b1
MD5 b16b4e505c5931d21e4b7a1ce137923e
BLAKE2b-256 c2eb543e1934a74482f95594b49fffa368ba40b1f7c684cd5edf6cfebddfe72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffce0a5dfdaf7792f1b3aaa6305771cc6fe0f0a5abd6ca999338c648b3aad65b
MD5 b512095bc883a324ca2daefc74902e9a
BLAKE2b-256 8d331762ae1918d84c4d0810280a87866e9fabd769f3438011c6e396f0723a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42d6280d3b1d3f4c15473d15c81f2895b08a7c20ee91c58d769a240ef1a997bc
MD5 1429e84e5cab0f062243171ed46bf81b
BLAKE2b-256 c70f5c98e92fbb784d1142431d06c49ee88df692f4d590c2fd7a08cde3fe9cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dbd3bf6629a49f533b2add701e905ab7d1834300730ef50a9050a66c64614dee
MD5 817e5c4125b523b9a84724ac3c4f81d3
BLAKE2b-256 895c076793fc7ca107327eb486925e6e9851c63ed952fcb4b9aa6bed887522c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1682bee69a45b0907fd5969a52a8cb685929428ec97048ccdaeaffd9a613fa8a
MD5 bacebc81def88ca537c07d4c6de9838c
BLAKE2b-256 f0d78772e5d4f713983302e699b6511711e892ddcf68e6d64973c27a01d53d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa3884775d0e72dc66108fdb89ba5d3e3f5d4ba119822e89d5553da84adf87fc
MD5 4f954ae17695cf67a5c7d87bc6599f1a
BLAKE2b-256 ecb74e2c293e019be3f0ff5d792cd25a0d682f512ba2a6eb4a2565e631e1d219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a49a54c23bf1a393b1e9e9bcfc4bd1d1acacd85013ffa78bf1cdb2be84ee3f8
MD5 3fdeb010275b995cbd59641de45378ce
BLAKE2b-256 6734eaa929e246d1b0b1743677662137ef0f66bf93583f7e1174b817b99e4c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 706252d6ae6fe62c28a271a7a1b7c78cec5ab28c87d9f8ec7bb2294a19519fac
MD5 ccec28f7cb3ef2b039578c98889cf558
BLAKE2b-256 43d3b80bb4ce7d56839a96bf7e11095388967cc3001b359b2cac568981f461a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 987c62cd5faf085582679469f34307f302b29ea42ef26f3ffff1503a1e2db6da
MD5 8a66916be9eb3c2e51aedc3b00f099e1
BLAKE2b-256 6f913d5ca25ae03e0a9773c0b3865615ab4f12ba92aab709784f78f503751d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1380d026623edc51d37aa16f6cd8680ddb1a992c33c10d01cfa6b71d91c6d50
MD5 d49772012d8eb503c68718b30c39f6a7
BLAKE2b-256 d91cdce4464a470a72edf0a85cf3055136db44e355955d6efc8d43f219aaad79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c656700700078592d55651309aac5501358e90f660b4dd35f2b41f2fde24e9fd
MD5 a53069ddc289f06b86252b0ace37fb54
BLAKE2b-256 f2a11e0aff4a6ab3c54410d955edcb7a9de8fc85729be79c97d7a5c8bef45b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f23a4eeddbaf41166c3133e4c85c36a737625385a21cef0fceda50866284d9f0
MD5 12eeffad45034fa3cf8861a6bfb35d1d
BLAKE2b-256 c3c307a6a5372614a7007e08aa2ed2261ec59f55d60b20171b078eaf19e49767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6ffd186a5b67a5349f7fd180ca8dffa905c3236a6d19e44b1c393171592f023
MD5 04e3d650e7b57388af0466d0dcfca82f
BLAKE2b-256 6d797a4f64bdb30035692e2758e381f0ab4734d2b7112dccd4daa5ad1b51b57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbb733727ebc5de1b69ae6b6de97a2b84495bdbf3eff0c1e803f790208411cf7
MD5 d5c0649ba0aa64e5b20c703461a9ab93
BLAKE2b-256 d384a631bb2c421dc54592b1920ea1863746b577e53ec9d88c31675d8483e96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1af6610aac608cb06983158981c8aae201c7d68d37a57e0883f96c051aa79153
MD5 a580cd4d4d7cc4189ce0a38b1b4d0337
BLAKE2b-256 059dc02bde2c9fb4f1aaf3f77f39739fc8228ead41d865309164ba9082ad2da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae14f770606d98dc0dc3c2ea84b70ebdaf9b855e4ee27877812be7c7d8630e1b
MD5 81adfa19a78b79c99ffea53c1128dd90
BLAKE2b-256 cf09a560ddbb3683d8eeaeb32e61dba58004b6c5f4103e16ee5834b4a858dd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c6de35bf73f49a8566e173e67efb74fc8ea44de19b4a4fc4e2f3d84b3d40f56
MD5 dbb377ee06fc9860e9de510da20115b3
BLAKE2b-256 d13f9c7d602f7589d6641bd13e49c6cc7ca9e496c3089f87e3a6e092c8fd2af9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.5 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be69cb7bd9b95f7b15847f17d0a6d91ce64862d671837cade2a38b2de3e458ee
MD5 6515fe6168747c204b960775872c6c27
BLAKE2b-256 5739b786671ecfdc13ef7042c1e9df05e2684b015eb7a71d06f782c593fba198

See more details on using hashes here.

File details

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

File metadata

  • Download URL: topk_sdk-0.6.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6ca416f3c063b608f15c70a98fea5ece7194681eb3bc43b88054e819342d7d77
MD5 b2ba15874628e897fbe26b5d1fc8174c
BLAKE2b-256 e768132b4d83911da7b6522d6d9f9e0107d671da85196106ddb90d4bbe18a0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a09c04a0832bb08f97143839fd9f5aa364af026e2293d6871ba1c4ee6e80f28
MD5 be7fb5fdf1edcce8fdbca24fbe990d5b
BLAKE2b-256 38f20534f5d725fda17d02f6635c3ba82dc71b453b6b37f6e97be8d6111ba759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53c5d46f134bd5880c0999f24f61d90ab3ecd2d862ec0f51ce37f84c1e496617
MD5 cf200c73a19a7d46837c8a5a06d0d591
BLAKE2b-256 24dba0c0a55f12c51cb071eee41052a0447f0a274dcb1f667b8935fc2063d277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3383826fd068e11892cf37e70d208bfea7fba0fda234aeba0d9f1543e240c1f
MD5 94065a8d46b5474b2a58de28471334f4
BLAKE2b-256 80060b72ad0d43684beb722700e64deca9d79ece46349bc6a4df7a46e009fb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 675479e2609c48c1ff70259dbd056179e477527b474c1f30dcb2da04748573f4
MD5 70251a44aa9c7578c086da23ca43d9fb
BLAKE2b-256 9d25b5ffe2c63d4cc71b5c15ccf6fbeee41f851a54193519e26fb189a771d06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56fb668ed94f67192d7a1c1329267589e7a062fce4a259c35c77a5ab2110e2c7
MD5 c2aab8e5126afaf986cb9c2def40cc87
BLAKE2b-256 832209b584378ad78295dbacf2ae1ff29aee034e315eb4045fd39124523cc28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57e469e10406419a7584840adf28407a4398c2fb90764bd508bb4005298f4871
MD5 18ca5cd7a36f8fbd2098e714549b4635
BLAKE2b-256 9f53f2ad8952a33b51c5100f7b848d15584094ff2cffdaa9ad7a21c4e13c445e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a2266e4cd6df1922fc7c7d661fba1599eb3a000452242fedef8d9f03330af22
MD5 29dd67721f87ab10e6a280ee50b23524
BLAKE2b-256 a3163f0cc74c004aed7e8cdadfa7571c7df7776bab4efb0071bf9f1b14b7d413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e183e282761854e02d7f578af282bc392122eafe6202570dbe28e574122280d
MD5 44a5254f1e22ed06ef8305ca95a2b4c9
BLAKE2b-256 fb0ead37bea241c2c04ff9ca03291cd0e886172d08ce534a91824a6c7dc0e5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d99217278e78f189287ac75384d13dee5575f762cc0d5ffc23e952a33f8502a
MD5 d70437a10f8268b3c3fb15ee8b432515
BLAKE2b-256 b7a6ac8b90e843e5725342b447f4c60a1ab4da963bc3546d02b268ed0b85b59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b997ffa5ba0d7eec24f3b435ed29a13f92e0eb92d20eaa574548abb4a27a69d
MD5 41c05c5624e26899b6379402be5e0e82
BLAKE2b-256 e761b12819a0736bbaf791dc7c8d9125a4659edfed3e1530ff44388ccc3f5792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0fdacbdf585194313bfe9de4c229d1b383cee016a0cb8070150f7c032d92908
MD5 a21d492a68e2d9d8b71f39d40254a358
BLAKE2b-256 304f52df0c69025c0bae47f73bec98d72cfb907aaf48c93d6a2f2554a8470ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for topk_sdk-0.6.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24fcd4bb63ca497af682f33b492208052e20aa551d86261483ebf9a8c791dd51
MD5 60f7749dfa852a65d67aed60e578d6dc
BLAKE2b-256 fb1d07b371de061b5767477d50dbd89d52fcf0bf340e28a714fc22ecb435b383

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