Python SDK for topk.io
Project description
TopK SDK
Full documentation is available on docs.topk.io.
TopK SDK provides a Python API for managing collections, inserting and deleting documents, and running queries. Our query language is designed to be simple and expressive, allowing you to search using keywords, vectors, filters in a single query.
Features
- Create and manage collections with custom schemas.
- Perform keyword and vector-based searches with scoring and ranking.
- Upsert and delete documents in collections.
- Support for schema validation and collection listing.
- Pythonic API for seamless integration.
Installation
Install the SDK using pip:
pip install topk-sdk
Usage Examples
Create a client with your API key and region. If you don't have an API key yet, you can get one for free from our console.
from topk_sdk import Client
client = Client(api_key="YOUR_TOPK_API_KEY", region="aws-us-east-1-elastica")
1. Create a Collection
First, you need to create a collection to store your documents. The example below creates a books collection with a
schema that includes a required title field with keyword index, a required title_embedding field with vector index,
and an optional published_year field with integer type.
from topk_sdk.schema import text, int, f32_vector, vector_index, keyword_index
client.collections().create(
"books",
schema={
# `title` field must be present and its value must be a string.
"title": text()
.required()
.index(keyword_index()),
# `title_embedding` field must be present and its value must be
# a 1536-dimensional vector of floats.
"title_embedding": f32_vector(1536)
.required()
.index(vector_index(metric="cosine")),
# `published_year` is optional but if it is present, its value
# must be an integer.
"published_year": int()
},
)
2. Upsert Documents
Now, you can upsert documents into the collection. topk will insert new documents and overwrite existing ones if they
have the same _id.
import numpy as np
lsn = client.collection("books").upsert(
[
{
"_id": "gatsby",
"title": "The Great Gatsby",
"title_embedding": np.random.rand(1536).tolist(),
"published_year": 1925
},
{
"_id": "1984",
"title": "1984",
"title_embedding": np.random.rand(1536).tolist(),
"published_year": 1949
},
{
"_id": "catcher",
"title": "The Catcher in the Rye",
"title_embedding": np.random.rand(1536).tolist(),
"published_year": 1951
}
],
)
3. Query Documents
Querying documents is what topk was built for. You can search documents using keywords, vectors and filters in a single
query. No need to manage multiple search systems and merge results from different queries.
from topk_sdk.query import select, field, fn, match
results = client.collection("books").query(
select(
"title",
vector_distance=fn.vector_distance("title_embedding", np.random.rand(1536).tolist()),
text_score=fn.bm25_score(),
)
# Keyword search - filter books that contain keyword "catcher"
.filter(match("catcher"))
# Metadata search - filter books by published year
.filter(field("published_year") > 1920)
# Scoring - return top 10 results by calculating score as `vector_distance * 0.8 + text_score * 0.2`
.top_k(field("vector_distance") * 0.8 + field("text_score") * 0.2, 10),
# Pass the LSN to make sure the query is consistent with the writes.
lsn=lsn,
)
4. Delete Documents
To delete documents from you collection, simply call the delete method and provide a list of _ids you want to delete.
client.collection("books").delete(["1984"])
5. Delete a Collection
You can also delete the whole collection that will also delete all the documents in it.
client.collections().delete("books")
Testing
Run the test suite with pytest:
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file topk_sdk-0.1.16.tar.gz.
File metadata
- Download URL: topk_sdk-0.1.16.tar.gz
- Upload date:
- Size: 176.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab5c72dc2b388ffb561df0466c04b6475760506c5e455d87ee39132768090f74
|
|
| MD5 |
72f9f249b212d0412e32e5dd237155e3
|
|
| BLAKE2b-256 |
49b8bafec2a4ceed6b1d53eea85a357c1282ff13adf301afbca528c35c84c7b2
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9924d83eaa4f5d0d671cb24d2ed7573ed628d9b8851302689773426c5341f965
|
|
| MD5 |
3e3c549080c35ccb8084d21d48978b27
|
|
| BLAKE2b-256 |
03d2d566ff7cf8200091d1e283d0b4e078d6bcedc5db69beafaaba01dea4ab0c
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-win32.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0766346d75cee82003281dea853d855533763c372a0d2df94a8654de3489427
|
|
| MD5 |
be5d271e83aad24f23973a85b614f80c
|
|
| BLAKE2b-256 |
916c8dbd8b389c0ef7888af61bd93fa2433597c4f55ade83157a551c99b73412
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffb398665864e68587eb3d5565f3bf84e7c470ff518de8fabadc1de7395073c5
|
|
| MD5 |
a48b98e38d4954fd90ce52cd24ed7845
|
|
| BLAKE2b-256 |
5ceb267148411111e1ccaa2ba1fdfe6afa64a2abf5ac12b3fe1286300c3dbb8a
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
521bfc3ce14c6e32fbf144076651939507db02b74a2a9bf4c09bbd9d7c16f434
|
|
| MD5 |
650f4b729c55cc6d17a886e67246e2d5
|
|
| BLAKE2b-256 |
0bc90d591e2e4251700bbcac01318e77daa201a158d69a77f789d798b197b396
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
656f63be4dceffcf7d7f8c8e1006da24524aaa7c731a45892e2e8d8cf4629476
|
|
| MD5 |
8143255e4bfaa70af05313ff83e5c287
|
|
| BLAKE2b-256 |
31227f2b4fae070eeb6af3b000efdc2582b60f344d261402b5f0ccbd2d3ffd7d
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e7a2b3632ae935ae0ba7f5a93d5f3d4e9c8b39c2e00a5348bf1130831b43f16
|
|
| MD5 |
597c120d2fabaeec2e8520d12211e256
|
|
| BLAKE2b-256 |
8e058073bb172ccef1d67be342e18c508ee60c8d152d0ca354cfc2ced9f47d91
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9c86da02364a44e671f2cf7657a9913809081c14e44e9fa7ba6e4d43c430814
|
|
| MD5 |
eb4d5971109a454129403322904dc4ef
|
|
| BLAKE2b-256 |
479dbd80dcd3ecbb2ff4fcda8fefc5159fced9c11a919037c6115e018b647eb0
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0496212227938742078394225e994029afafa132b4c817cdbcf990606b1bcbfc
|
|
| MD5 |
fe3da80280af4fc3d1cd4dd319b27f95
|
|
| BLAKE2b-256 |
5126c828e20f7cd92969f0b1f3b6d8669832cdf76e0247f4bc783cb5c6ad4cfa
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca2bfe7d36ed160fdbc74d582a3dbf5d4bdd148a521af8466313efa66a568149
|
|
| MD5 |
19f3820e9ad10606cca6c9179516ee49
|
|
| BLAKE2b-256 |
8da94c756a4faaa2922c02776885aab40b7f2d83b2359dc48f9dbcc3de41d5a1
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25dd38cac8ca81a4b26c7b472b5f94debdd779c1cb46bb37d40540686b99bdef
|
|
| MD5 |
d567830cd3b27111dcdc060c7dedac32
|
|
| BLAKE2b-256 |
f573f4d39200d1c9e108b50d31a7a7247207aeb4f377300bad547e6e54c46b75
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a23a4ef42d2bcc301b733440c5de3f890ac811e494de886f062e3257a730e1f
|
|
| MD5 |
27b5446def9ca8cc355366daf78b6408
|
|
| BLAKE2b-256 |
1899975f85aeec9eed2aef0bde902ae9153bc57cd6cb46bd14f1b7a1bb7d1d1b
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e39ab0a428c1fccc50883b010a3424eb1da2d3c5527dbbe5c6d83f82873f65
|
|
| MD5 |
592d637eb4885526ce90370680ef80bb
|
|
| BLAKE2b-256 |
edb5fb93657073eb0ffe1cbfbc783aeba44e87ec5452a4896c9373a8ac4a19e7
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a8e7d14bacc132d8c1ecb2b242cb008d2363e7b5c03baf01ac958f33717dd3d
|
|
| MD5 |
f00f0cc6148524cd3a39715d9307787e
|
|
| BLAKE2b-256 |
8a8bada64229df5dde85140c69b84d7dd3aee55aa14410238dfc5576bfcba023
|
File details
Details for the file topk_sdk-0.1.16-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c31cd6ab54e18f8b0ba961725a69900bd365ea0d41ca72d3c51e6c51b2e3ea64
|
|
| MD5 |
6e463f3710e58cc26893f9125a638276
|
|
| BLAKE2b-256 |
4253112032c38683fc6a7453706724ce9e0248840698221fac541ef54c667e4e
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33dbc70258a905577131a0decceaeaa089493d55b9222ffc2b3d5812e23c9d36
|
|
| MD5 |
e750e8b57457446cb9a6aaeaa32ba251
|
|
| BLAKE2b-256 |
a168d4df11ec8618284a15224a863ae152267f7316bdff10256e304e973ee947
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-win32.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfa3ee255253ca1b3c457fd361a70146c2ba79fa155ffd42802f458b83dbf905
|
|
| MD5 |
7920cbf92d9eb51ec8a45f71ca71bbd5
|
|
| BLAKE2b-256 |
08a4f2f5b99f9472efcadc4aab142e298c4919b01b2004869e603e3f0c87de7e
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcd78cacf948bb83d52d67efbbbfcc3567475a072643191aabf67cc78376669d
|
|
| MD5 |
83faa3f19d0fa62ead726d37e70fd8c4
|
|
| BLAKE2b-256 |
8d89f36e4a22a503bec388451d7e8176787e7407203db9f6047f8aedb3bd1574
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f0abedb813ceb46d600e50da0e7c7865ef38a882d5ce09db2dde89abf8c7256
|
|
| MD5 |
0134e1614cb407ec69d1ea8bccfa5248
|
|
| BLAKE2b-256 |
fcfa818a41d8ac3d2d5c6e8c3178f8d026b6bb68aa9b7efbff1774342d907b5f
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3922145c2d378fe536d73bc1d6d015d62740f7335c8d7f76844adbd64bb9722f
|
|
| MD5 |
543a32f9857e85a187ff59092669119e
|
|
| BLAKE2b-256 |
20448ca2eb4c0c937b8d04b772c343941673cca0d9b66115138515d02de68f30
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2ebe02a8f92b272d3061b8b88d149f529037c39762b530a741c5720ca89b7fc
|
|
| MD5 |
1f8ad458d7571c7d1f5aad7fa38dee11
|
|
| BLAKE2b-256 |
1983c9c08d468b0b7cb30150e2f2a3e983492d2940a26469e0efb122bf01b2ef
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b19aa664359d7f4ab8887291776b334d568cb1241f3eba9b3aa8c3d4832c6106
|
|
| MD5 |
77f574e7d5c288a0723dfa9862bdd3d8
|
|
| BLAKE2b-256 |
7973a97f7e4bd9f801c3b722eb7d7c03b4e3fb5f790920f0f635c885baa9eb1f
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d41cfed323877543cff3c021759436bb560d480d973b5dc8d9a25a59d8f8b41
|
|
| MD5 |
453475ba547c7a4714d62b7264988d6d
|
|
| BLAKE2b-256 |
bd2018bea65453295a635c07b1dfd19c6cd3c4d914024318923724479c3c1746
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3b52f9767dea9ffed820f6f0b0fbd8552e5e9c503a2270ffb8b9804e3fb23cd
|
|
| MD5 |
90ce178017819f308dd78711135c2d2e
|
|
| BLAKE2b-256 |
c4685878425e416304d4598fbcf920ea125fd4f7a74c375c0c50f39a705d0a5b
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b32d18baa4873c64ad533e1329a374d61dcfe424ad0e89fbcf68a742617203b
|
|
| MD5 |
c7e02638010444d0439066b11bdc9065
|
|
| BLAKE2b-256 |
33c20bb28dae52debadcf38a2172389e713f119f03075d97be33975f3d4fbed3
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8bb63c09d204f63016695b7e2d5faf716dc82728f0564cb83063f1b4cebc285
|
|
| MD5 |
65eea82afc5058632d31cacbbe50d82b
|
|
| BLAKE2b-256 |
0a79e2407406901af0bb581c29ed9dddc2e5729ba76c69d97d96c3809d649ed8
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e03a32838b17a57fad714501b6d446e4e5948a9c8ec5b411560f8bf1cd04071
|
|
| MD5 |
9282ca59ba3ee9b6b742e416b77e9e4a
|
|
| BLAKE2b-256 |
3da39a69b3cf7f2dbecc8a9a4a59433860cd26ab135301849dfb38f600ff0a16
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e872b66b081b7d843ee224e787f789b9936c181c4a59ebfc4262178e9388209d
|
|
| MD5 |
a183ea394c1b59d6e6bcc1252609d5ee
|
|
| BLAKE2b-256 |
1a07a4474106ff897ccf7f2a154074935162befafb153f4245baa27d7b7e9e67
|
File details
Details for the file topk_sdk-0.1.16-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ac3cf74c896c45dfeb1e2bdbe9eba5e652f00b19a82081a9abb9bc2b4148400
|
|
| MD5 |
bc57e0a59c6f288cf5227f0e7812a43e
|
|
| BLAKE2b-256 |
17febbf13debed54ec56615cb837696fd4377c37a29a5334627dca07d0d8b9ab
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06f42bd98f159ecee5a85eac05544c942b033ba3506ad1ccc9cde36f6f1c00ed
|
|
| MD5 |
c3f38fbb1e5fbde8dcd9b193daa3c937
|
|
| BLAKE2b-256 |
d27edee068956af8ae926157bce68c6abdd0bd34394e22aa22aaa6ecd0a86882
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-win32.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5db9d0b2432d5cccbe162da56ad9f87a7382217ca90658036169406222893d0d
|
|
| MD5 |
99cbc81c8af44d55cce44162cd94f62d
|
|
| BLAKE2b-256 |
494832f977d4df219e95e9b90c6aefa3ceb86569b8a060c36ccf5faa9d334846
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b80685dd4fd4d7303f9cfd1e9a0cf23a46a3ff1e199678d0b7e38602f735fcd
|
|
| MD5 |
9fdc345a38ff333d4a62856690f1dbf4
|
|
| BLAKE2b-256 |
b99babdff8fbb1187480dc478794e35dcc7ce6fe6800d73e79cb5d02dd840c4c
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92b92491ed5cdae23b5caad1f349205bdfdd35f7c8e73a464842af274905b99f
|
|
| MD5 |
80449f7d10437dfc57c8d9d9bfb8c980
|
|
| BLAKE2b-256 |
6008c1f0093531359bf9432998ef73f7505bc4550d4a7af22d2e2efa2fd1f655
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bf666c559624525ee1b0ccc232044e773f6ea031103c8facfb5e8c9646b581f
|
|
| MD5 |
8c5f5d647f72df8ce34f376e06ab338e
|
|
| BLAKE2b-256 |
d4785fb5e32acf2c0f30d5334cde2c6aba1f83fc3decfa4721834864d53c0aec
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62ea1237f2b3454395ea45700c16a697292846d1050b47bc12721aef939b9a01
|
|
| MD5 |
26dcb7a9557ef4c5fdbd7e456c8de08f
|
|
| BLAKE2b-256 |
b81e695ee6d3da4a1c7272ebd6a8d1c0b6ad7d34df457995477be1219e1bba95
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5130db88c0ddb36279eefc17a2711e5d37d8e5529ec06d87e2b272af80caedd2
|
|
| MD5 |
8f3743d058452894fd3b42537ed4e34b
|
|
| BLAKE2b-256 |
34549a46774cf4c0b183ddde1f5ea1cf9b75d678a43952ba84cfcfa61cb9b54c
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3733a2f80542caaf1f21bae8c029751f27fecea2822f6fe48e28e529972027f
|
|
| MD5 |
985335f2cfc2caa1ee54a2aab501a301
|
|
| BLAKE2b-256 |
17fdd7b57450f1435323300c850e3dd2edc3818a55eab9b0f379d6034947a022
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f79aac8859b5e9ac30d84206051479df8353c83022f3446e5e61e2802229e9af
|
|
| MD5 |
4214f72cbacaf8715892ed62cf5ca9ab
|
|
| BLAKE2b-256 |
5775fe7315ffb34fb41b7e60d265d8b21a18066976de0a6fc7d798b66ecd36f8
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7085e155770c31b3074e829ace4b7816e0453b9d31a819b1277d0671b80ae4d1
|
|
| MD5 |
f8b9debdde174a25fda9e026495dfeda
|
|
| BLAKE2b-256 |
902761b988860244ebef8cc80345d213ef946171d802b4ec040bf697d3fa219c
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc12196b4dbf72a450572f23fecebdc0d0dd8dfc6138a85e9329cdd795a7d37e
|
|
| MD5 |
0a1741210edcf60f69bed8e55fab017f
|
|
| BLAKE2b-256 |
ffe3c5bba4b3c62b2db33d01afb641ef9134646f8e7f25223f2b66e4303ee1e8
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a5b28b21c684f025f612b45a3c278b217ac568151a339e3dc7c453a8260b828
|
|
| MD5 |
323cfff2389feaa9d02bde8f7cbd6e71
|
|
| BLAKE2b-256 |
3ad7ecbfcd6eb7a5e0d37a60ee1a93651e5347e055b5ddbcee6fc5b4a1de7334
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
462b4297a8ab0922ce75e3e9c288ce0d4a96ca17b9c7366c5a3d75e7e2ab7200
|
|
| MD5 |
e21798aba8d7fb0905bd0848e38de998
|
|
| BLAKE2b-256 |
a055581e7d9440daa22cce8f0195d9c7f027ee22bb7e3d2fb0dbc0d6f1031cbf
|
File details
Details for the file topk_sdk-0.1.16-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
406dbc06ce775bdb8bf41957c3af20160229f4b0a0665e76dc2ff63ac43b508c
|
|
| MD5 |
2b02f00f051b7af8122e85eb20a5c4f3
|
|
| BLAKE2b-256 |
a997493d58bf3b9633d5e5d3de127ee79030047d4c49c511f2f90a9530fd2de3
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5953d732ea0b2b2508761b1a6dbade100183e3c099a4952b3d90113c7adade66
|
|
| MD5 |
6e96bacef7d87568e6634893d169b9a4
|
|
| BLAKE2b-256 |
1736ae68c02f82b43d2125fc9b457eb3f1b6d57ce25608f81dfefc27e09c4ccc
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-win32.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2590504214d9f2e4c47655f87db4e22cd0c1c7cc9206160dd921d445e5c467e6
|
|
| MD5 |
019db049639df6a77ce447aa5095f9a2
|
|
| BLAKE2b-256 |
29b0f2205be8d278a7e443a4066b1234b9826376ab9437e535def2329ddc4dda
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1053ed6be2218af6d90c2b2649b397f0e86dc611529503b083991840a6a27ecc
|
|
| MD5 |
9feda34c94c459758b67af9140a33c13
|
|
| BLAKE2b-256 |
d94c0965838a5c68e9728caeed69532b296160fd99b2dea97bfa45384246a2af
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308dc0e592213536ddc09e8a454f67edd1fa01fb70d78abbf549ad0e3c2eb446
|
|
| MD5 |
6e0c2c473ef38ae76f221dad3ac36d92
|
|
| BLAKE2b-256 |
ff7380af24bedf58cba6f6b04063ae6e960fd918c5c8c6cf02451c5a3e513024
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2612c810bd37866a1e894263de217b14256f1290d25284972feff5b6bef1c491
|
|
| MD5 |
886baed5b219f11cadb1d4a709ea8799
|
|
| BLAKE2b-256 |
9e2446b61f7d957db7c60ddbb223d6845810ee2ba7a60a8e8f6a206b180d4256
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e5a9d52a160abbfef2510750225d8fc0510e944dfa91859c81c89e56b78955f
|
|
| MD5 |
ee13da0e267d57b47e76a11709e60b73
|
|
| BLAKE2b-256 |
40a42e72797cc0d189168fe514a6f6652aa18c7741f9e21a70a7d2dc9cddd4d9
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2e4f90a1b5ba0bc467f60610bf6787f389f36579cd324e4e7afd5f2514d9ef
|
|
| MD5 |
d863b7e7b5838012f74cf53b19a03036
|
|
| BLAKE2b-256 |
01b5fc88ed4de6650d051cdd3742e2d6704cd9e3900b600957bb16fea73d200a
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d93b9216ee927ba93772b996a61a9fd188d16bc1f77af43956954d6ab07cab39
|
|
| MD5 |
9a18526b8a68f6deadc48cf0e989b56e
|
|
| BLAKE2b-256 |
7c9b6b1dbd95301ebf3b9cf067481696ba57f473a61cb55912b7170eea1a55e0
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8bc06df6840affcef8db817fd3a606cf392c1014917fdbb17cbcc6e20df6463
|
|
| MD5 |
8b62718b5356d88130072f4e4add8979
|
|
| BLAKE2b-256 |
83efc898490e14784adba317e54d569dbfbecf44ccb434a59730b83b93b39e68
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d177095aa1564ceff6d11c8d0037994a5c256f4b78f3e1761a56cbbab835153f
|
|
| MD5 |
560838e0f6f27489f38a53c1f3fbf3a4
|
|
| BLAKE2b-256 |
77a364e0be3788a18ba63f143db02b283534a81b12439d229f66f3b4abe6a275
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
020a440bf0a2f0bbdfea1f791f96992f4a90a7dbf7948b5b198ad576891fd3c1
|
|
| MD5 |
7dc29b2f950a412acf5c2d8adc7f0c74
|
|
| BLAKE2b-256 |
4e95f4553e7c54e397ee4afcaf38392cfa57f182bfb0d7ed02c200c0315bc3f3
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05ff6722b556071db66f5fb733f5ae75fb5d28298ff04b4c5a6d7cbeb8e05249
|
|
| MD5 |
43d2010e2ea46cf71ac77dbbe0949327
|
|
| BLAKE2b-256 |
cad1291595645c41a702fa26ddfa27ece194321b90acded2136bd4ea74815793
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dae12c4ce6f66e6bb146dc53b09a3a13c6bb4c9396325e1791d29945cb161434
|
|
| MD5 |
b8b43c9d01966747c24bcf9ddd0f9d3b
|
|
| BLAKE2b-256 |
10e5063b8ef1b55edcd2d126cb76e3e026d64784233022bd4673f28e8fe7a63a
|
File details
Details for the file topk_sdk-0.1.16-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b4d59b65c344500b4fc17133ba1b1face3cfb26ca3def856ec8384b52129d23
|
|
| MD5 |
988d5b8fc483b93cb701e81af3c8b206
|
|
| BLAKE2b-256 |
0fcc9b2b5af3248b1b19b502e8b4428a863ffe577f50bddcac66d8730b189a06
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98a0bbe20bc97288f6a31be614808ddc2f7204223d8a1e75bee1ca51e48b36a4
|
|
| MD5 |
2cd5324400505880c81d91eea2eeb2a6
|
|
| BLAKE2b-256 |
8e9c172e8ffb5a07823e7e0c651e78f15d6744c768482b8eb73352210873718e
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-win32.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e7c6ca544593cfd0a0803f3e392c8a6c342edb153a8051c337d50da87e1403f
|
|
| MD5 |
56adf95d737b7e0529bbfa623729fab6
|
|
| BLAKE2b-256 |
97fc69ad1c51363abb51346434aa9d6f22d254db6a324cad909435d95e50be51
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be499604db440cee338ca267203f1758e12e591611ade85783b4ff7628fb7612
|
|
| MD5 |
cee4626b93dd4a153d9c05dd978fd0e9
|
|
| BLAKE2b-256 |
dad42d1d3750b41bfaa0dab22de99289cdaf59c22c48fe6aa0622f6452206ef0
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e810e7022113608090da44e730e921749eaafcf71bf9e30f681a0d9e78f7207a
|
|
| MD5 |
e37be63607e0d8dd52c2ec071f2572c7
|
|
| BLAKE2b-256 |
aa8ab64b8078330edf07b406c03542f8a01ce22be1a422161646d355ea5f4f70
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6ad7581bc513cfd5728e3964612fdc726e8ad1c95a6e5216eda9bf09b496beb
|
|
| MD5 |
36da1ae2526da0624f0e176d83ffc851
|
|
| BLAKE2b-256 |
e576fe041a0de548831b3c383eef61b6dca28c2f9833ab6f29e3a8ba676c1bf8
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2406138a36bacf8f6668e215f43b0aa30909e560e4e6e0ffc1ff1d268196490
|
|
| MD5 |
2c041baccaa72f351c309f7c9791aa6d
|
|
| BLAKE2b-256 |
9cd6185b1a5c0aacea0d9d136582ef39d04365a5a097edce84060ef5531e0d44
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d26f7560fa22b09b93ebf01cbf33006cb884d53aeefb9eaa2ffdc905a2e379c
|
|
| MD5 |
01959144e50aa7aed03a2147621dec82
|
|
| BLAKE2b-256 |
c9b6f8fed0319e8c7711f4877f95c57220eca0a28b9679db38f0e75135414982
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b3b2d646f6dd63bbf57a389de4214399663e4053c800aafaa8953b3de62e04a
|
|
| MD5 |
c2037b801edcdb14801cf3182c7fdac4
|
|
| BLAKE2b-256 |
5da62190eb6d4f6e9e6918e4e9f54c3ede63c4e4b2f51c833b9204f5fccb7c82
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9150e599ce5a07f78dd54d84962ff357d1cd5a84433b726387dab184add3a785
|
|
| MD5 |
c79734601102c6e05166566290945feb
|
|
| BLAKE2b-256 |
1612cef730e8e2309ef66640ae7403e2393508d4d4ce023b50bdcf00d03038e6
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43145d39158d316f53a0136b90d596f36f39f7bd80b0d4c6a0eb36e12ebe497d
|
|
| MD5 |
75b3f3187972ce7ea6ffc5fc4a4b48da
|
|
| BLAKE2b-256 |
cfe5e2b0251993ccf1f4eec37970bc97444172d8c31a2492e84f4905172e7095
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceddd46f8a3c7d41913a1185047658391978465b505709bfb03c4ae3d7a61afb
|
|
| MD5 |
e170415400db8f9688ca61565a0c96a4
|
|
| BLAKE2b-256 |
07c5312db9bbfc6e1bd7604db97f0edea4b8c7c1019a71b7454905ff1be2f6a3
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9229585187b68ee26d98f3dfd5187911e7f00486d427d3ba38143295ebe995f
|
|
| MD5 |
3440e3676b577bbd5fbbb179364e39b4
|
|
| BLAKE2b-256 |
a4df42b17797fbd6132d82b745d7332161b18bc315d28d7a8b8d804bd57cc9b6
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4608d16426e2e3eecd5a3260544ed97c6bf81a83a3f5db2502e21032d507f42
|
|
| MD5 |
396a30357c8fdceef07eb6a2f9aae3f6
|
|
| BLAKE2b-256 |
60257977a5dbabe0026140d9112c8feae8142bfc10b44649164d1df44f30623c
|
File details
Details for the file topk_sdk-0.1.16-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: topk_sdk-0.1.16-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4729e7dd8e2be2b1543d5371e600439457b515209206aef8a053babf8a713614
|
|
| MD5 |
e908dd066bc933d5d5f2f085adc11d8e
|
|
| BLAKE2b-256 |
635376a21106a959ceb4909ceac6bf8fa96a8cbdd7167b1e5fdd1c9a0ae7e6c5
|