topk-sdk


Nametopk-sdk JSON
Version 0.4.6 PyPI version JSON
download
home_pagehttps://topk.io
SummaryPython SDK for topk.io
upload_time2025-07-24 13:39:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords topk search vector search keyword bm25
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center" style="padding: 40px 0;">
  <img src="../assets/topk-logo-light.svg#gh-light-mode-only">
  <img src="../assets/topk-logo-dark.svg#gh-dark-mode-only">
</p>

# TopK Python SDK

**Full documentation is available at [docs.topk.io](https://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**:

```bash
pip install topk-sdk
```

## 2. Create an API Key

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

1. Go to the <a href="https://console.topk.io" target="_blank">TopK Console</a>.
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**

```python
from topk_sdk import Client

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

### **Define and Create a Collection**

```python
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**.

```python
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**:

```python
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")
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://topk.io",
    "name": "topk-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "topk, search, vector, search, keyword, bm25",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/87/25/9daaefc73db4d1856ca91d2f496970f239a5506e687f4199bcdeeecff067/topk_sdk-0.4.6.tar.gz",
    "platform": null,
    "description": "<p align=\"center\" style=\"padding: 40px 0;\">\n  <img src=\"../assets/topk-logo-light.svg#gh-light-mode-only\">\n  <img src=\"../assets/topk-logo-dark.svg#gh-dark-mode-only\">\n</p>\n\n# TopK Python SDK\n\n**Full documentation is available at [docs.topk.io](https://docs.topk.io).**\n\nThe **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**.\n\nTopK\u2019s **query language** is designed to be simple yet expressive, allowing you to search using **semantic similarity, keyword matching, and filters\u2014all in a single query**.\n\n## Features\n\n- **Automatic embeddings**\u2014no need for external vector models.\n- **Create and manage collections** with custom schemas.\n- **Perform hybrid search** using **semantic similarity, keyword search, and filters**.\n- **Upsert and delete documents** within collections.\n- **Automatic schema validation** and easy collection management.\n- **Intuitive Python API** for seamless integration.\n\n## 1. Install the SDK\n\nInstall the TopK SDK via **pip**:\n\n```bash\npip install topk-sdk\n```\n\n## 2. Create an API Key\n\nTo authenticate with TopK, you'll need an **API key**:\n\n1. Go to the <a href=\"https://console.topk.io\" target=\"_blank\">TopK Console</a>.\n2. Create an account and generate your API key.\n\n> **Keep your API key secure**\u2014you'll need it for authentication.\n\n## 3. Create a Collection\n\nCollections are the primary data structure in TopK. They store documents and enable queries.\n\n### **Initialize the Client**\n\n```python\nfrom topk_sdk import Client\n\nclient = Client(api_key=\"YOUR_TOPK_API_KEY\", region=\"aws-us-east-1-elastica\")\n```\n\n### **Define and Create a Collection**\n\n```python\nfrom topk_sdk.schema import text, semantic_index\n\nclient.collections().create(\n  \"books\",\n  schema={\n    \"title\": text().required().index(semantic_index()),  # Semantic search enabled on title\n  },\n)\n```\n\n> **Note:** Other fields can still be upserted even if they are not defined in the schema.\n\n## 4. Add Documents\n\nNow, add documents to the collection. **Each document must have an `_id` field**.\n\n```python\nclient.collection(\"books\").upsert(\n  [\n    {\"_id\": \"gatsby\", \"title\": \"The Great Gatsby\"},\n    {\"_id\": \"1984\", \"title\": \"1984\"},\n    {\"_id\": \"catcher\", \"title\": \"The Catcher in the Rye\"}\n  ],\n)\n```\n\n## 5. Run a Search Query\n\nNow, **retrieve books using semantic search**:\n\n```python\nfrom topk_sdk.query import select, field, fn\n\nresults = client.collection(\"books\").query(\n  select(\n    \"title\",\n    title_similarity=fn.semantic_similarity(\"title\", \"classic American novel\"), # Semantic search\n  )\n  .topk(field(\"title_similarity\"), 10) # Return top 10 most relevant results\n)\n```\n\n## 6. (Optional) Delete a Collection\n\nTo remove the entire collection:\n\n```\nclient.collections().delete(\"books\")\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python SDK for topk.io",
    "version": "0.4.6",
    "project_urls": {
        "Homepage": "https://topk.io",
        "documentation": "https://docs.topk.io",
        "repository": "https://github.com/topk-io/topk"
    },
    "split_keywords": [
        "topk",
        " search",
        " vector",
        " search",
        " keyword",
        " bm25"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2e0a563bcc73cda0204c7a5380f2eb8321833398854be45c686006c78ee9075",
                "md5": "3ab61ef7c50aabac99600acda4796dc6",
                "sha256": "a5466936bc7e618842bba060b931f30cdb6b6c2b4dc79c33c09d70d2b2bd7e74"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ab61ef7c50aabac99600acda4796dc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2479833,
            "upload_time": "2025-07-24T13:38:59",
            "upload_time_iso_8601": "2025-07-24T13:38:59.285330Z",
            "url": "https://files.pythonhosted.org/packages/d2/e0/a563bcc73cda0204c7a5380f2eb8321833398854be45c686006c78ee9075/topk_sdk-0.4.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29cbccdf2af7ad63e762b28890429fa47526f8c4031617424b5dd57afadc06b0",
                "md5": "71bc29c4ee01876c7e2515f130435c8a",
                "sha256": "a2ab147ef02a424d05df804b2d72951d1b8b104797373e13633e56fa3f7e377b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "71bc29c4ee01876c7e2515f130435c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2386267,
            "upload_time": "2025-07-24T13:38:52",
            "upload_time_iso_8601": "2025-07-24T13:38:52.570002Z",
            "url": "https://files.pythonhosted.org/packages/29/cb/ccdf2af7ad63e762b28890429fa47526f8c4031617424b5dd57afadc06b0/topk_sdk-0.4.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b3c1ea0089e510aa6c7bb5f846062ba1c6b8d61b92608446d8685fcb68158f5",
                "md5": "5844eb0d1cba074fc7c1438b65304e80",
                "sha256": "515a422a41cae3458ee6f2cba8b4ba6ccdc159482036955694ad115d0ee88023"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5844eb0d1cba074fc7c1438b65304e80",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2631754,
            "upload_time": "2025-07-24T13:38:08",
            "upload_time_iso_8601": "2025-07-24T13:38:08.970884Z",
            "url": "https://files.pythonhosted.org/packages/7b/3c/1ea0089e510aa6c7bb5f846062ba1c6b8d61b92608446d8685fcb68158f5/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05188dd92f33fa8840a2d339b3b023b5f00f64f0f00ea058121433b358341f45",
                "md5": "7487750a963ae4309941cacb36015478",
                "sha256": "e0a77f02fa3648282abb4a68fa049195a7febebf2f5e9f1618bf5272fae91769"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7487750a963ae4309941cacb36015478",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2466989,
            "upload_time": "2025-07-24T13:38:16",
            "upload_time_iso_8601": "2025-07-24T13:38:16.125657Z",
            "url": "https://files.pythonhosted.org/packages/05/18/8dd92f33fa8840a2d339b3b023b5f00f64f0f00ea058121433b358341f45/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a79e6e795442754badb14c48e35bc311daf0b1c54ccbdb49d173d86ecb894a87",
                "md5": "9c47dcd369308f50ce767657499af6e2",
                "sha256": "162674c25d2d0eb666bdc199f78437c00ab55ef6967a15c9068801e9e7fb53e5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9c47dcd369308f50ce767657499af6e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2663533,
            "upload_time": "2025-07-24T13:38:36",
            "upload_time_iso_8601": "2025-07-24T13:38:36.316388Z",
            "url": "https://files.pythonhosted.org/packages/a7/9e/6e795442754badb14c48e35bc311daf0b1c54ccbdb49d173d86ecb894a87/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0e43e73b9302cfd401b931ce2225a0bf85921d1ec488351a7a284f3e2886daf",
                "md5": "d47c1fcab8d7bb0eb2c83a921052ff77",
                "sha256": "fd968f60ec6e5ad8da0aec735f111dc9fa451b6a158fc1157c3447188534870c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d47c1fcab8d7bb0eb2c83a921052ff77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3232026,
            "upload_time": "2025-07-24T13:38:23",
            "upload_time_iso_8601": "2025-07-24T13:38:23.236682Z",
            "url": "https://files.pythonhosted.org/packages/c0/e4/3e73b9302cfd401b931ce2225a0bf85921d1ec488351a7a284f3e2886daf/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db438975eae997e3b7e06bbfc391811745f3b9b706b0bce076de88a46574439d",
                "md5": "7f1a5e89f02d5c898c2c498c3bea2ead",
                "sha256": "6d58e84c820e9b05ebb764ec16318e6dec7ee9d45afa4b4829b08c357f5fa933"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f1a5e89f02d5c898c2c498c3bea2ead",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2523205,
            "upload_time": "2025-07-24T13:38:29",
            "upload_time_iso_8601": "2025-07-24T13:38:29.607253Z",
            "url": "https://files.pythonhosted.org/packages/db/43/8975eae997e3b7e06bbfc391811745f3b9b706b0bce076de88a46574439d/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8edcde64f13d1700e68c2e9d8ac07476073c1b864cffbe0548a55922721614cd",
                "md5": "809cafdf1e6ca32d16d857cf81b9a375",
                "sha256": "1b30e7afa4711d3e4bfeca17a072ae0fa950cc363d64309e8f1824ccfc3343e9"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "809cafdf1e6ca32d16d857cf81b9a375",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2669020,
            "upload_time": "2025-07-24T13:38:42",
            "upload_time_iso_8601": "2025-07-24T13:38:42.486361Z",
            "url": "https://files.pythonhosted.org/packages/8e/dc/de64f13d1700e68c2e9d8ac07476073c1b864cffbe0548a55922721614cd/topk_sdk-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36509620eb6d3b8e51e8bea2e04c6e041d72abbe82eec551087ffa5d366084f9",
                "md5": "6733938bcd551f877b359b8d5e28fc63",
                "sha256": "53e081b38ce60e1f28d606fa7f2a8da249f3ae97e220a44f6d434d6b495ed0c1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6733938bcd551f877b359b8d5e28fc63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2798923,
            "upload_time": "2025-07-24T13:39:05",
            "upload_time_iso_8601": "2025-07-24T13:39:05.896659Z",
            "url": "https://files.pythonhosted.org/packages/36/50/9620eb6d3b8e51e8bea2e04c6e041d72abbe82eec551087ffa5d366084f9/topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f90148904c4f606983b3e8329ef4709418940d986a8da5c000435a971b5ed358",
                "md5": "e955ac88934aa2b7ec42d0673b9ad54f",
                "sha256": "eab327bea081cce5fb78dcc62b7418aeb986105d1cce8944a33a822f104221fe"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e955ac88934aa2b7ec42d0673b9ad54f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2689494,
            "upload_time": "2025-07-24T13:39:12",
            "upload_time_iso_8601": "2025-07-24T13:39:12.601008Z",
            "url": "https://files.pythonhosted.org/packages/f9/01/48904c4f606983b3e8329ef4709418940d986a8da5c000435a971b5ed358/topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a3d43cfc7de5e221643aabcc3ff38e8851234337d6e9b240e95c0e00fc2a173",
                "md5": "074cfadf41cdaf4d54aebf35d28dbf26",
                "sha256": "5610d47fb906ce8431b428d9e4356d91799c91030695724dac04c8e45cf6cadc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "074cfadf41cdaf4d54aebf35d28dbf26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2704288,
            "upload_time": "2025-07-24T13:39:19",
            "upload_time_iso_8601": "2025-07-24T13:39:19.498464Z",
            "url": "https://files.pythonhosted.org/packages/6a/3d/43cfc7de5e221643aabcc3ff38e8851234337d6e9b240e95c0e00fc2a173/topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "459a76d3e8d8abe72eac3e73ec2d7ae8b9a3365003e102f21f41c67e7bf5b241",
                "md5": "c2a038f43263ed8ac18b76b99e88d56a",
                "sha256": "ffd441b5f8c979840e09373b6a08133409463df53d6cea461d30bb48f1cd3340"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2a038f43263ed8ac18b76b99e88d56a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2844163,
            "upload_time": "2025-07-24T13:39:26",
            "upload_time_iso_8601": "2025-07-24T13:39:26.420036Z",
            "url": "https://files.pythonhosted.org/packages/45/9a/76d3e8d8abe72eac3e73ec2d7ae8b9a3365003e102f21f41c67e7bf5b241/topk_sdk-0.4.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2afebb6b4a6b5479e36b1dbb37bf90be94a932e42b1d9a0376ab1eebeddd393",
                "md5": "defc4ddada22ed00ff6c08e24d785958",
                "sha256": "62f41faac8c78997c191827a884234f1b33a63ffe827d17215c6e248fb4b5817"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "defc4ddada22ed00ff6c08e24d785958",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1778879,
            "upload_time": "2025-07-24T13:39:40",
            "upload_time_iso_8601": "2025-07-24T13:39:40.596320Z",
            "url": "https://files.pythonhosted.org/packages/b2/af/ebb6b4a6b5479e36b1dbb37bf90be94a932e42b1d9a0376ab1eebeddd393/topk_sdk-0.4.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0180de447dfed51fd6a93bbae9fd64c99610c1b63933a6af94ccf358a58a2a16",
                "md5": "ef08ec291f0556d6d04044472f7b7c33",
                "sha256": "4703dcc809999d81509ee5a6b8c190e1af60eddaca5032a44a3eb09ea7cfef03"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef08ec291f0556d6d04044472f7b7c33",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2118716,
            "upload_time": "2025-07-24T13:39:33",
            "upload_time_iso_8601": "2025-07-24T13:39:33.856442Z",
            "url": "https://files.pythonhosted.org/packages/01/80/de447dfed51fd6a93bbae9fd64c99610c1b63933a6af94ccf358a58a2a16/topk_sdk-0.4.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a05b63e68b12e84c80ac1e8c55b466451461ae4613e1502822b115e13588a04",
                "md5": "89854e829c2c57a5c9412aa1cdda8b3c",
                "sha256": "c97c1f1eb376611129d686564e28392c215723a43c2653ffed309bca70babdb5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89854e829c2c57a5c9412aa1cdda8b3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2483244,
            "upload_time": "2025-07-24T13:39:00",
            "upload_time_iso_8601": "2025-07-24T13:39:00.742753Z",
            "url": "https://files.pythonhosted.org/packages/4a/05/b63e68b12e84c80ac1e8c55b466451461ae4613e1502822b115e13588a04/topk_sdk-0.4.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc8b0175c671370809e363ac856d91aee012c29d2d02eab1404a50a2e57dcf3f",
                "md5": "16eca8d442f3222eabdbebdb84fb1880",
                "sha256": "c87d0b3ba48b106eeb8e9da1d98971e80bd79640add5741d7d2727274fca2958"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16eca8d442f3222eabdbebdb84fb1880",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2385002,
            "upload_time": "2025-07-24T13:38:53",
            "upload_time_iso_8601": "2025-07-24T13:38:53.742525Z",
            "url": "https://files.pythonhosted.org/packages/bc/8b/0175c671370809e363ac856d91aee012c29d2d02eab1404a50a2e57dcf3f/topk_sdk-0.4.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73d8335a7bee1d09cbf07acc12fa58c222693aca6500c2b4f9ba973d87dcac13",
                "md5": "56c3d5ac8d9a954c35d0dea211e6a329",
                "sha256": "a600178679c6e7d39cdb73bc11a3cccd9bbd9e16df1c1b3a6b4b16baafe77045"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56c3d5ac8d9a954c35d0dea211e6a329",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2629760,
            "upload_time": "2025-07-24T13:38:10",
            "upload_time_iso_8601": "2025-07-24T13:38:10.607661Z",
            "url": "https://files.pythonhosted.org/packages/73/d8/335a7bee1d09cbf07acc12fa58c222693aca6500c2b4f9ba973d87dcac13/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cedf28e01c13a8a5a34acc8f5101e1bccbe7c6e2fae10942d838e00353b7dd3",
                "md5": "cccc84ec3119d7aa383c52f7c95f5079",
                "sha256": "57a3b5169b8ad6963a079f40589c5c2a78d9153ee217b6910d680c2c38b7b0b2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cccc84ec3119d7aa383c52f7c95f5079",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2469302,
            "upload_time": "2025-07-24T13:38:17",
            "upload_time_iso_8601": "2025-07-24T13:38:17.260224Z",
            "url": "https://files.pythonhosted.org/packages/6c/ed/f28e01c13a8a5a34acc8f5101e1bccbe7c6e2fae10942d838e00353b7dd3/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa7d867dc18d6f501aa4dfea8aa9d22706df8b73dabebaf5f4ab317301d62bca",
                "md5": "cad9a734dee0e510ccd9381b200f8bc7",
                "sha256": "4fac74ca2bc95a4434a6b65de1f924a17a67d8e8450db82ef54bb5031098cdf7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cad9a734dee0e510ccd9381b200f8bc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2663818,
            "upload_time": "2025-07-24T13:38:37",
            "upload_time_iso_8601": "2025-07-24T13:38:37.529974Z",
            "url": "https://files.pythonhosted.org/packages/aa/7d/867dc18d6f501aa4dfea8aa9d22706df8b73dabebaf5f4ab317301d62bca/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d961981acd937e5973508cfa46fc4cac0e26d63e3e385bdf8bfb7034c741a926",
                "md5": "801d41dfddd9c64f889e4eab6c51855d",
                "sha256": "e1bfd0486bd5ec5e90534fcf8477afc962bb846d8e69426ed11035c0b27657df"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "801d41dfddd9c64f889e4eab6c51855d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3232362,
            "upload_time": "2025-07-24T13:38:24",
            "upload_time_iso_8601": "2025-07-24T13:38:24.558714Z",
            "url": "https://files.pythonhosted.org/packages/d9/61/981acd937e5973508cfa46fc4cac0e26d63e3e385bdf8bfb7034c741a926/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cded22a9f892310046a9855728790464415a18b993455bcf395e0fcf96ecef0",
                "md5": "d3a34921a1657aebde01c36a6d5693cc",
                "sha256": "cc47bec33f305753c4d94836ea49cffdf4c9d2ddd44bf815b000b9ab56d4d0c4"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d3a34921a1657aebde01c36a6d5693cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2522948,
            "upload_time": "2025-07-24T13:38:30",
            "upload_time_iso_8601": "2025-07-24T13:38:30.849293Z",
            "url": "https://files.pythonhosted.org/packages/9c/de/d22a9f892310046a9855728790464415a18b993455bcf395e0fcf96ecef0/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b9bf201054c305f8e1b55c8eb16304639008a4dc44c6e395908bc4ae5975028",
                "md5": "6d9d27e2e28c6c4d7a2ed3f7ebb361cb",
                "sha256": "69b219406983bdf15413caf8d9811bca84621409a3586baad4e479013e1e36b8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d9d27e2e28c6c4d7a2ed3f7ebb361cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2671050,
            "upload_time": "2025-07-24T13:38:47",
            "upload_time_iso_8601": "2025-07-24T13:38:47.436149Z",
            "url": "https://files.pythonhosted.org/packages/7b/9b/f201054c305f8e1b55c8eb16304639008a4dc44c6e395908bc4ae5975028/topk_sdk-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "916182dd7c5684c8c6eff34927e33495c47c30817d51ef973c2577c6b827531e",
                "md5": "bcacd21648a2cf11cc3e7b719b8e8e3a",
                "sha256": "82769350e78736d2511aca7d57531cfdd01fb2d1f36503cef934bb2c73f08d94"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcacd21648a2cf11cc3e7b719b8e8e3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2798289,
            "upload_time": "2025-07-24T13:39:07",
            "upload_time_iso_8601": "2025-07-24T13:39:07.487740Z",
            "url": "https://files.pythonhosted.org/packages/91/61/82dd7c5684c8c6eff34927e33495c47c30817d51ef973c2577c6b827531e/topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95188e75c533330455725803e8f783457a733c5b05cd83f9e4bcb4328be2a670",
                "md5": "d7efb27082308e54a5728f942d0ca571",
                "sha256": "944618d8022e5ab2e0a08354624a072f433b14e6e4a1d8959f2e74cc6fbbe6b6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d7efb27082308e54a5728f942d0ca571",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2690957,
            "upload_time": "2025-07-24T13:39:14",
            "upload_time_iso_8601": "2025-07-24T13:39:14.178895Z",
            "url": "https://files.pythonhosted.org/packages/95/18/8e75c533330455725803e8f783457a733c5b05cd83f9e4bcb4328be2a670/topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cdfc6d16bd0400bd2372f8cb190cd23dcda101f7cb06e87e94335bdbe2b80ed",
                "md5": "0703e974fd52bc87d696930081433ada",
                "sha256": "4360248cd9cd39bb78d05422e844c54cd7b7459ca9f8e18a5107348d0a72f08a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0703e974fd52bc87d696930081433ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2704679,
            "upload_time": "2025-07-24T13:39:20",
            "upload_time_iso_8601": "2025-07-24T13:39:20.795740Z",
            "url": "https://files.pythonhosted.org/packages/4c/df/c6d16bd0400bd2372f8cb190cd23dcda101f7cb06e87e94335bdbe2b80ed/topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c9ce80cdff614d7f333b2ddc0ef1089123d215fbfb481f5e30bb5fc8c0b0291",
                "md5": "d77a86e3b606c88073b73556a1aff556",
                "sha256": "36ccce63035f64cdfabdb2b5086928334eb6c681d92cb25d0a6feadb7200dd56"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d77a86e3b606c88073b73556a1aff556",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2845823,
            "upload_time": "2025-07-24T13:39:27",
            "upload_time_iso_8601": "2025-07-24T13:39:27.635308Z",
            "url": "https://files.pythonhosted.org/packages/8c/9c/e80cdff614d7f333b2ddc0ef1089123d215fbfb481f5e30bb5fc8c0b0291/topk_sdk-0.4.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76d9e9b161fe97b152f0a5c6253e5cd269795a6525c086862f78c31e5d0ff065",
                "md5": "6ab3312ea06888dd555f0673cd6d08de",
                "sha256": "4b8b6e0fbbc154278302fbfd0e1d5618ac6fe173a239dd60a95785d3afef2b4a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6ab3312ea06888dd555f0673cd6d08de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1778893,
            "upload_time": "2025-07-24T13:39:42",
            "upload_time_iso_8601": "2025-07-24T13:39:42.572595Z",
            "url": "https://files.pythonhosted.org/packages/76/d9/e9b161fe97b152f0a5c6253e5cd269795a6525c086862f78c31e5d0ff065/topk_sdk-0.4.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "816cdb0ca1ed7ff18c0fac82dadf7fea8cb73bcf4c271c03ab25407d668b6c50",
                "md5": "1f1426f19c787ead84328ce89afc0478",
                "sha256": "e34ccb1f13f043b3a4a83e485ba70b13393120efc392cabbfd10129dff0db033"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f1426f19c787ead84328ce89afc0478",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2118880,
            "upload_time": "2025-07-24T13:39:35",
            "upload_time_iso_8601": "2025-07-24T13:39:35.226263Z",
            "url": "https://files.pythonhosted.org/packages/81/6c/db0ca1ed7ff18c0fac82dadf7fea8cb73bcf4c271c03ab25407d668b6c50/topk_sdk-0.4.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dd92478ecaf1dcba98c09bea123d3979ede3eca339277e128165a18e3a30e0f",
                "md5": "dbe22c7ad4955eed59135b6fb621016a",
                "sha256": "fd34bc8ce195cc153a0c59dbb9ac6097971540bb7fa609ae0ffbd595d7c96aeb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbe22c7ad4955eed59135b6fb621016a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2465780,
            "upload_time": "2025-07-24T13:39:02",
            "upload_time_iso_8601": "2025-07-24T13:39:02.039173Z",
            "url": "https://files.pythonhosted.org/packages/6d/d9/2478ecaf1dcba98c09bea123d3979ede3eca339277e128165a18e3a30e0f/topk_sdk-0.4.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89222b3bca91fdbef17390b9e66ff12f53bb0ce9e96df4b57d60cd901e8fd969",
                "md5": "0e76398028c9e79c2119e2f0660e881e",
                "sha256": "c8c11dce7274b7ce96cc25cf967b11a4740c02d057b0ab756a59bb8b8b2635bb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e76398028c9e79c2119e2f0660e881e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2373796,
            "upload_time": "2025-07-24T13:38:55",
            "upload_time_iso_8601": "2025-07-24T13:38:55.661574Z",
            "url": "https://files.pythonhosted.org/packages/89/22/2b3bca91fdbef17390b9e66ff12f53bb0ce9e96df4b57d60cd901e8fd969/topk_sdk-0.4.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5364d0e2d47e12c82215906b73e9eda0bdb7c8721a0812b6b01ed9aef64eff9f",
                "md5": "09b31dadc474edb4e0a09c6fe45409db",
                "sha256": "a380e243edded9b74585405b913b7b02fd98ecedbbbd0ef91a3deb9cc0c6fa62"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09b31dadc474edb4e0a09c6fe45409db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2625361,
            "upload_time": "2025-07-24T13:38:11",
            "upload_time_iso_8601": "2025-07-24T13:38:11.989306Z",
            "url": "https://files.pythonhosted.org/packages/53/64/d0e2d47e12c82215906b73e9eda0bdb7c8721a0812b6b01ed9aef64eff9f/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef6178a312bcb7701d44ff604251261bcb1b841aa57e624d5c512f5f5fb6b568",
                "md5": "1a8e82951aeeeed565e1428f5f784b8b",
                "sha256": "90ad06725ba96b65f489b00d8e4e3584ed858b3aca8fcb138969350782292149"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1a8e82951aeeeed565e1428f5f784b8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2471983,
            "upload_time": "2025-07-24T13:38:18",
            "upload_time_iso_8601": "2025-07-24T13:38:18.479132Z",
            "url": "https://files.pythonhosted.org/packages/ef/61/78a312bcb7701d44ff604251261bcb1b841aa57e624d5c512f5f5fb6b568/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccb41db6e51c55543f69e462021b7715cf532c23dc35e806317d8c94d425c233",
                "md5": "5cbd16b0994ddaffaad1c9bd275140fa",
                "sha256": "a47aff22b5dc0aeec06550a7db0ebe4aed4a06d59597a5f974d7985fcaecbed1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5cbd16b0994ddaffaad1c9bd275140fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2672091,
            "upload_time": "2025-07-24T13:38:38",
            "upload_time_iso_8601": "2025-07-24T13:38:38.799078Z",
            "url": "https://files.pythonhosted.org/packages/cc/b4/1db6e51c55543f69e462021b7715cf532c23dc35e806317d8c94d425c233/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "065dcf7434d84eaaf65a5dde64c564d0ef32c218a70e0d32a1effa27ada3196a",
                "md5": "4465e48ffc6a7728cacb3f491fc2528d",
                "sha256": "916dc427291f21b4fc13d018b360558fd4edd0e72e976ebcfccf2b0bcdee1a7b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4465e48ffc6a7728cacb3f491fc2528d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3236063,
            "upload_time": "2025-07-24T13:38:25",
            "upload_time_iso_8601": "2025-07-24T13:38:25.854067Z",
            "url": "https://files.pythonhosted.org/packages/06/5d/cf7434d84eaaf65a5dde64c564d0ef32c218a70e0d32a1effa27ada3196a/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1af93223d984b439dd65eb0a84d0b61d994dbaf680b55d30956ee89988f36c3",
                "md5": "9f3d3b9ac8b7f86ba65d10c3d92c45b3",
                "sha256": "c5e16fbad40dcbfa91e744ba3b8f426fac67bf7b64b7d4fa9beedce6e7b1041e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9f3d3b9ac8b7f86ba65d10c3d92c45b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2526117,
            "upload_time": "2025-07-24T13:38:32",
            "upload_time_iso_8601": "2025-07-24T13:38:32.574854Z",
            "url": "https://files.pythonhosted.org/packages/b1/af/93223d984b439dd65eb0a84d0b61d994dbaf680b55d30956ee89988f36c3/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5813530dd92b6d69b12755faff1c9b3489801f5e2ff18ff8688b77c1068ffef3",
                "md5": "4b6b7c4df67c40181b0f1ebd9e9b5405",
                "sha256": "ac29353d3819d1d24280f8b7597d39f975b0f1bc734c90005cc7511e8701bd9f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b6b7c4df67c40181b0f1ebd9e9b5405",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2670745,
            "upload_time": "2025-07-24T13:38:48",
            "upload_time_iso_8601": "2025-07-24T13:38:48.718817Z",
            "url": "https://files.pythonhosted.org/packages/58/13/530dd92b6d69b12755faff1c9b3489801f5e2ff18ff8688b77c1068ffef3/topk_sdk-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "028e21be5afb1e80d9c08b8b43e84dbb27164091bc06c819b5a55cc1cb20597b",
                "md5": "a60f67cc842647d32b46e3380515ba41",
                "sha256": "4b400ce9c63b2b7b4ffb0af25657280d234fd2d15b7a04748ebc04359e75407f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a60f67cc842647d32b46e3380515ba41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2794390,
            "upload_time": "2025-07-24T13:39:08",
            "upload_time_iso_8601": "2025-07-24T13:39:08.712325Z",
            "url": "https://files.pythonhosted.org/packages/02/8e/21be5afb1e80d9c08b8b43e84dbb27164091bc06c819b5a55cc1cb20597b/topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "816de47a3f5ff618b1409bf0715c021258e399fc0eb2423a28e38cec3016bafa",
                "md5": "577bde17b55c78bcdb953a7e5c1d7328",
                "sha256": "2cc3390f0a1e1e358c38665bc4977445f2f903c77530437d8bfbc396127928e2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "577bde17b55c78bcdb953a7e5c1d7328",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2697361,
            "upload_time": "2025-07-24T13:39:15",
            "upload_time_iso_8601": "2025-07-24T13:39:15.413207Z",
            "url": "https://files.pythonhosted.org/packages/81/6d/e47a3f5ff618b1409bf0715c021258e399fc0eb2423a28e38cec3016bafa/topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4386f960d8eb87075bb1ee026a6200605a970b9be9c49256e17bd7e45de0aae",
                "md5": "806deeb6ce687d834f77835e96182647",
                "sha256": "24dffc4851186b10c79a1252f2ca82b6c1e0ffe6a82ddb78d44574e70eb4dae3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "806deeb6ce687d834f77835e96182647",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2712522,
            "upload_time": "2025-07-24T13:39:22",
            "upload_time_iso_8601": "2025-07-24T13:39:22.529149Z",
            "url": "https://files.pythonhosted.org/packages/d4/38/6f960d8eb87075bb1ee026a6200605a970b9be9c49256e17bd7e45de0aae/topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c91a2603a6e0af5ebee3fd3de50523535b0e3010e63a7cee2d9caf06b41968b0",
                "md5": "1eb06aeae0b9fce91cc3a6c26a30a2a4",
                "sha256": "e2f46185b437c7f48fc520b12e54d24b00857fc6b4d74fd42c198d586284f224"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1eb06aeae0b9fce91cc3a6c26a30a2a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2846006,
            "upload_time": "2025-07-24T13:39:29",
            "upload_time_iso_8601": "2025-07-24T13:39:29.020094Z",
            "url": "https://files.pythonhosted.org/packages/c9/1a/2603a6e0af5ebee3fd3de50523535b0e3010e63a7cee2d9caf06b41968b0/topk_sdk-0.4.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8bc5bc23e015020147725c3f74ba70c92ad6b041ec08bee2475b84337eebbdb",
                "md5": "079bb53abbcef6e1e5c28e4ebef2226c",
                "sha256": "14e1b4b2c02f096562953e641ed9189546d5d4ac699e0e81ce6d45a2ea361897"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "079bb53abbcef6e1e5c28e4ebef2226c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1780915,
            "upload_time": "2025-07-24T13:39:43",
            "upload_time_iso_8601": "2025-07-24T13:39:43.859591Z",
            "url": "https://files.pythonhosted.org/packages/e8/bc/5bc23e015020147725c3f74ba70c92ad6b041ec08bee2475b84337eebbdb/topk_sdk-0.4.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43a39e863bbfb5ef54606646b9ffeaf02cd298ce69de2181dba50e2b9b0977fa",
                "md5": "c04a0db1e9747d975f0f8bf4e9648f93",
                "sha256": "5dfed1ad1a127f8be04f2369626e2783df1ab1c17cd024caaddfa095225105eb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c04a0db1e9747d975f0f8bf4e9648f93",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2124772,
            "upload_time": "2025-07-24T13:39:36",
            "upload_time_iso_8601": "2025-07-24T13:39:36.513609Z",
            "url": "https://files.pythonhosted.org/packages/43/a3/9e863bbfb5ef54606646b9ffeaf02cd298ce69de2181dba50e2b9b0977fa/topk_sdk-0.4.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfe627ee34298d27fde0a6542b7d8411c97f1e641ba6d704bb4ff8a6e486b195",
                "md5": "74310797e0955b94f094b5f9d93ad31a",
                "sha256": "ad3db15dd9b7bf79e959a0edbcfe9f9af3419f3c098ef4f82104e3ea203c203a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74310797e0955b94f094b5f9d93ad31a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2465428,
            "upload_time": "2025-07-24T13:39:03",
            "upload_time_iso_8601": "2025-07-24T13:39:03.380959Z",
            "url": "https://files.pythonhosted.org/packages/df/e6/27ee34298d27fde0a6542b7d8411c97f1e641ba6d704bb4ff8a6e486b195/topk_sdk-0.4.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33bec286c0ec5f2414929ed35f2a3965818aa8f0eb323dc2a56c6617c3771680",
                "md5": "ebefaa4ce9af6cc9bac3f2c8654ddc3a",
                "sha256": "026dda262a2e612b6364351d58cc85cbaf3756cad5b0e7fd830e381914f0e7ff"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ebefaa4ce9af6cc9bac3f2c8654ddc3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2373034,
            "upload_time": "2025-07-24T13:38:56",
            "upload_time_iso_8601": "2025-07-24T13:38:56.900314Z",
            "url": "https://files.pythonhosted.org/packages/33/be/c286c0ec5f2414929ed35f2a3965818aa8f0eb323dc2a56c6617c3771680/topk_sdk-0.4.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52e9953c7f8ab7b8bd0a16deb50d735da5a37bdf439808081a3f0b3a4fb8698f",
                "md5": "fd1db76c8c9d51d2e0561c2a5ef2b98a",
                "sha256": "706b786f339fa503e7612ee9286660434d6485d95a0e54c2ffd2a2749f578059"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd1db76c8c9d51d2e0561c2a5ef2b98a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2625106,
            "upload_time": "2025-07-24T13:38:13",
            "upload_time_iso_8601": "2025-07-24T13:38:13.562798Z",
            "url": "https://files.pythonhosted.org/packages/52/e9/953c7f8ab7b8bd0a16deb50d735da5a37bdf439808081a3f0b3a4fb8698f/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82bc20235f9d89c9b51c87f4215b3ef6705eb93391a7b012bf776fe7ff7acae6",
                "md5": "7ff09b9ad7c53725c33cc4fddcbf8503",
                "sha256": "e6a0586b64da04d76490e5b5e7d6f7db55b0e64666f5891116e89d75796f8e49"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7ff09b9ad7c53725c33cc4fddcbf8503",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2471603,
            "upload_time": "2025-07-24T13:38:20",
            "upload_time_iso_8601": "2025-07-24T13:38:20.232540Z",
            "url": "https://files.pythonhosted.org/packages/82/bc/20235f9d89c9b51c87f4215b3ef6705eb93391a7b012bf776fe7ff7acae6/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83f886f675b9b87986e55df9b75c7c6d3b6c7a7b600be416741b62413927caaf",
                "md5": "3a50c6be41f6120b4611b5e0f7315894",
                "sha256": "b8389c85da8a0a748a400916293f266fa0dba051b934c6c8c8b42ff26582be7e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a50c6be41f6120b4611b5e0f7315894",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2670988,
            "upload_time": "2025-07-24T13:38:40",
            "upload_time_iso_8601": "2025-07-24T13:38:40.009930Z",
            "url": "https://files.pythonhosted.org/packages/83/f8/86f675b9b87986e55df9b75c7c6d3b6c7a7b600be416741b62413927caaf/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28a199b850025ddc2e991af58ffb0892b911f5c19b36a62d6e2a91d402387c39",
                "md5": "3e0a0f07164ca6332f21a44a7e5556fa",
                "sha256": "61d1852f81d34464f0e394fb459a39b771edaf1ae6580cc7c466d87a3667343e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3e0a0f07164ca6332f21a44a7e5556fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3236211,
            "upload_time": "2025-07-24T13:38:27",
            "upload_time_iso_8601": "2025-07-24T13:38:27.021637Z",
            "url": "https://files.pythonhosted.org/packages/28/a1/99b850025ddc2e991af58ffb0892b911f5c19b36a62d6e2a91d402387c39/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60946077d6bc489a4d536283477baa69ba10997778b9c256599c52931054c4b8",
                "md5": "29d83c14cb86b6c6826e13ca14aa93cc",
                "sha256": "66b39d9c18ca126dfc83e7cb7ec6c20b4d1d3f8587aeb2328c728dbb4402846e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "29d83c14cb86b6c6826e13ca14aa93cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2526813,
            "upload_time": "2025-07-24T13:38:33",
            "upload_time_iso_8601": "2025-07-24T13:38:33.773366Z",
            "url": "https://files.pythonhosted.org/packages/60/94/6077d6bc489a4d536283477baa69ba10997778b9c256599c52931054c4b8/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5138289b07b9a58cf8f0ad4848c043102f5bffec01653e02b60fc8f428148e95",
                "md5": "2b719821d7362e8d6ab9240dc07cd915",
                "sha256": "736e84022e39d775e5ff8dfda59e68270343db76e617aeb82b5a12cbf0546c40"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b719821d7362e8d6ab9240dc07cd915",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2670046,
            "upload_time": "2025-07-24T13:38:49",
            "upload_time_iso_8601": "2025-07-24T13:38:49.970277Z",
            "url": "https://files.pythonhosted.org/packages/51/38/289b07b9a58cf8f0ad4848c043102f5bffec01653e02b60fc8f428148e95/topk_sdk-0.4.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf4f25cfe80b74e444da5990deb7ce1b686ba56af49c19564e396c79d705e346",
                "md5": "1a0dc62ce19374fc824dc3b46b28c81d",
                "sha256": "9acc28b05173f23194a83ceeec23004df8de61f81069921389da7edd42c56a25"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a0dc62ce19374fc824dc3b46b28c81d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2793357,
            "upload_time": "2025-07-24T13:39:09",
            "upload_time_iso_8601": "2025-07-24T13:39:09.981618Z",
            "url": "https://files.pythonhosted.org/packages/cf/4f/25cfe80b74e444da5990deb7ce1b686ba56af49c19564e396c79d705e346/topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80309d3c936ce3561afc5d02f932f1c65d47db11d013df5dc1cdcef25865beff",
                "md5": "552e045106e19076c8c4fb75ec42a76f",
                "sha256": "1ef121b91202187a1c36b31ebd648d02a9e8ab6b7d8a6f00b2e467e3961c7cd9"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "552e045106e19076c8c4fb75ec42a76f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2697171,
            "upload_time": "2025-07-24T13:39:16",
            "upload_time_iso_8601": "2025-07-24T13:39:16.734759Z",
            "url": "https://files.pythonhosted.org/packages/80/30/9d3c936ce3561afc5d02f932f1c65d47db11d013df5dc1cdcef25865beff/topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83a72e01fc22081d49fcc110c16fe5241c38b0239239efa1a6a964deb1d5001b",
                "md5": "1802e0edbe283516303f58a9772329c8",
                "sha256": "65c60731a6fe86b26db32ebf8afe2ac7bc95ddaba86e8a54ab1a5d0a79c6e499"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1802e0edbe283516303f58a9772329c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2711427,
            "upload_time": "2025-07-24T13:39:23",
            "upload_time_iso_8601": "2025-07-24T13:39:23.800321Z",
            "url": "https://files.pythonhosted.org/packages/83/a7/2e01fc22081d49fcc110c16fe5241c38b0239239efa1a6a964deb1d5001b/topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c35f235e88dc53d1a36f3464fd87ee9c0a43c8f2e7f5217cd6fa44e09fa9dbe9",
                "md5": "89785a570238633bceb1a551878ed937",
                "sha256": "1afe4f40839c75696b528d18bc02156a27ac216485b8852c4392bc807af421fd"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89785a570238633bceb1a551878ed937",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2845898,
            "upload_time": "2025-07-24T13:39:30",
            "upload_time_iso_8601": "2025-07-24T13:39:30.390294Z",
            "url": "https://files.pythonhosted.org/packages/c3/5f/235e88dc53d1a36f3464fd87ee9c0a43c8f2e7f5217cd6fa44e09fa9dbe9/topk_sdk-0.4.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61de6b31339aa26807420bf02305625fc7118450fdff9fd975035d1aa87654f7",
                "md5": "fbf8010278dea9d7852744eb26a4f5c4",
                "sha256": "99dcfc4e3facb51be0eed5c79eaafdc595a69dafafb258076330d5c8be521d41"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "fbf8010278dea9d7852744eb26a4f5c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1780869,
            "upload_time": "2025-07-24T13:39:45",
            "upload_time_iso_8601": "2025-07-24T13:39:45.092674Z",
            "url": "https://files.pythonhosted.org/packages/61/de/6b31339aa26807420bf02305625fc7118450fdff9fd975035d1aa87654f7/topk_sdk-0.4.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cddaaeb298049759097f73e9a21444d2be17390dbe5302db78e850b7f3137ae",
                "md5": "74eb59f59df59102c2774621f17df759",
                "sha256": "e7cbc0f37a26d819e654c4eac546e514805cac27e5b4b4f17fc138bc9d824a37"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74eb59f59df59102c2774621f17df759",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2124501,
            "upload_time": "2025-07-24T13:39:38",
            "upload_time_iso_8601": "2025-07-24T13:39:38.037509Z",
            "url": "https://files.pythonhosted.org/packages/5c/dd/aaeb298049759097f73e9a21444d2be17390dbe5302db78e850b7f3137ae/topk_sdk-0.4.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30ae84a6af1ebf11ef12e783c55e718f22dff439d2a4d5660984e40abbbd922a",
                "md5": "79de69aed868a4cfbe51c289217237df",
                "sha256": "e7243f9f9e6b8bb64924328a3941a20b8f9452c070376d840a699c76f8c05da8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79de69aed868a4cfbe51c289217237df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2481146,
            "upload_time": "2025-07-24T13:39:04",
            "upload_time_iso_8601": "2025-07-24T13:39:04.624934Z",
            "url": "https://files.pythonhosted.org/packages/30/ae/84a6af1ebf11ef12e783c55e718f22dff439d2a4d5660984e40abbbd922a/topk_sdk-0.4.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e782fc8fc81b8e9239f003aa9389c1c8e922645906b1b12814d29d7a96d756b4",
                "md5": "20401ca748634d32776242e065927a05",
                "sha256": "2cf9db2f7dc8bc7191ecd40dcf47a9c3913ea8d86796e6041a53b1cd2034ca8c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "20401ca748634d32776242e065927a05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2386353,
            "upload_time": "2025-07-24T13:38:58",
            "upload_time_iso_8601": "2025-07-24T13:38:58.145583Z",
            "url": "https://files.pythonhosted.org/packages/e7/82/fc8fc81b8e9239f003aa9389c1c8e922645906b1b12814d29d7a96d756b4/topk_sdk-0.4.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ab1cbae30f93ecd2383d036e47e6c01d2458d5c24cfa290b2e133c5f72742d0",
                "md5": "6a9af3b09ea80c594d3c8d93a57eedd5",
                "sha256": "d85dd74852cf3ad3ba4e3a5fca10f28ef290f77f9dd00d70df25e39c9774c92c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a9af3b09ea80c594d3c8d93a57eedd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2632123,
            "upload_time": "2025-07-24T13:38:14",
            "upload_time_iso_8601": "2025-07-24T13:38:14.734461Z",
            "url": "https://files.pythonhosted.org/packages/6a/b1/cbae30f93ecd2383d036e47e6c01d2458d5c24cfa290b2e133c5f72742d0/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9a51c1a7a48bc3a6015b5c8849ed2a10fd97232e911795665a5751475ffae3a",
                "md5": "77650ec56d13491cbc533be5ea0a68e9",
                "sha256": "af2240affed131694107d1524c69ffe48f54328d8a177be0d9d8d5622881b2ae"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "77650ec56d13491cbc533be5ea0a68e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2467685,
            "upload_time": "2025-07-24T13:38:21",
            "upload_time_iso_8601": "2025-07-24T13:38:21.461498Z",
            "url": "https://files.pythonhosted.org/packages/c9/a5/1c1a7a48bc3a6015b5c8849ed2a10fd97232e911795665a5751475ffae3a/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1df70b561faad3dd9e929bed82a0961e536d2581d970f4273afde7ab9970f5c",
                "md5": "44cb5e43d5230ef13fd669b0159defeb",
                "sha256": "b56114b821511f3188f3c5caeed8d9c207124719bba700711510925db76ec980"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "44cb5e43d5230ef13fd669b0159defeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2663083,
            "upload_time": "2025-07-24T13:38:41",
            "upload_time_iso_8601": "2025-07-24T13:38:41.222831Z",
            "url": "https://files.pythonhosted.org/packages/a1/df/70b561faad3dd9e929bed82a0961e536d2581d970f4273afde7ab9970f5c/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a99572f32419dc544389580d9cb681ff9970d91c7e2cab4a7a64f3f000992af",
                "md5": "620ef788df909facb7b27f463b17a597",
                "sha256": "402d144213988fea66bbc7e3529e8aadfa4a7c78a36566adbfbab1766936b917"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "620ef788df909facb7b27f463b17a597",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3233708,
            "upload_time": "2025-07-24T13:38:28",
            "upload_time_iso_8601": "2025-07-24T13:38:28.366402Z",
            "url": "https://files.pythonhosted.org/packages/4a/99/572f32419dc544389580d9cb681ff9970d91c7e2cab4a7a64f3f000992af/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df1b697ea1dddcb399b39030ab71d4359a5ac29aeb3d8ad410409a12f185b013",
                "md5": "e9efcca24f5eed5db6439a23aa7fb452",
                "sha256": "b5dda63e698ef884438bb43ce7f58f747c3b41816f919255389e5922df11ff3e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e9efcca24f5eed5db6439a23aa7fb452",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2524246,
            "upload_time": "2025-07-24T13:38:35",
            "upload_time_iso_8601": "2025-07-24T13:38:35.038492Z",
            "url": "https://files.pythonhosted.org/packages/df/1b/697ea1dddcb399b39030ab71d4359a5ac29aeb3d8ad410409a12f185b013/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93642f29e6c1e8b6fe0190f67604fe23e9e382a4ac997612d33d187b3f5b98fe",
                "md5": "b04bee391d61f1ff01ecaa38b0c3359d",
                "sha256": "7f0bce17effbe488c174c4181fdeb71b6793edc03df859d2efb8b9601c57f19e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b04bee391d61f1ff01ecaa38b0c3359d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2670122,
            "upload_time": "2025-07-24T13:38:51",
            "upload_time_iso_8601": "2025-07-24T13:38:51.246535Z",
            "url": "https://files.pythonhosted.org/packages/93/64/2f29e6c1e8b6fe0190f67604fe23e9e382a4ac997612d33d187b3f5b98fe/topk_sdk-0.4.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bd063266c7a0bf3449aa210ea8854f50d061df8a22c0ce5f642f82e8671054b",
                "md5": "1c76fb5f8fc8f792207fadd554b0e1b8",
                "sha256": "bd091c14e0d2be5c50eead2768d23caafa4d7bb36118278aec417f998b3d0cca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c76fb5f8fc8f792207fadd554b0e1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2800508,
            "upload_time": "2025-07-24T13:39:11",
            "upload_time_iso_8601": "2025-07-24T13:39:11.286318Z",
            "url": "https://files.pythonhosted.org/packages/5b/d0/63266c7a0bf3449aa210ea8854f50d061df8a22c0ce5f642f82e8671054b/topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bd1b2fd7e4fef7aea584c25089214b215938762a21c98f96f934512b370edc9",
                "md5": "2c35542f5d6eaaa432cc3bd0b9ad1516",
                "sha256": "c95cff445b9add75b15015deffb9ac484961eb41418109eca67c139beadb3fa7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2c35542f5d6eaaa432cc3bd0b9ad1516",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2690666,
            "upload_time": "2025-07-24T13:39:18",
            "upload_time_iso_8601": "2025-07-24T13:39:18.154248Z",
            "url": "https://files.pythonhosted.org/packages/9b/d1/b2fd7e4fef7aea584c25089214b215938762a21c98f96f934512b370edc9/topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "894ce9b3f57e9d968431065ddaad0ecfd3819f9efc532bd801b89d26c3599af9",
                "md5": "7b95eb5799afe04431fe70c823cfa0ea",
                "sha256": "a59e066116b5ff56da51bc57f36b6a713260886ac445c96c3226ebdb7f07d0be"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7b95eb5799afe04431fe70c823cfa0ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2704201,
            "upload_time": "2025-07-24T13:39:25",
            "upload_time_iso_8601": "2025-07-24T13:39:25.144647Z",
            "url": "https://files.pythonhosted.org/packages/89/4c/e9b3f57e9d968431065ddaad0ecfd3819f9efc532bd801b89d26c3599af9/topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34d02fd13d2cf0df2e1ffb1bed7fdfedb507d0f8628eb6b0df5e7a64dddf4276",
                "md5": "0daf368f0a42fb5b25ab68583fd70bbc",
                "sha256": "93e9e4055bff3ad16b5aba0138fa694419bae8ac8f85e07615b04a829c89d3df"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0daf368f0a42fb5b25ab68583fd70bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2845376,
            "upload_time": "2025-07-24T13:39:31",
            "upload_time_iso_8601": "2025-07-24T13:39:31.732808Z",
            "url": "https://files.pythonhosted.org/packages/34/d0/2fd13d2cf0df2e1ffb1bed7fdfedb507d0f8628eb6b0df5e7a64dddf4276/topk_sdk-0.4.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c1a771f566927a4944495cf6a0e0643f7b5d6ac4a57c1fe03c1ef7b9b42c469",
                "md5": "d519391165d52ff19a31fb0c42a86921",
                "sha256": "2ad4f1c51e94571452b9d4b74e67c8e53127669680da0b797efd2fa5e6e6e80d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d519391165d52ff19a31fb0c42a86921",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1779219,
            "upload_time": "2025-07-24T13:39:46",
            "upload_time_iso_8601": "2025-07-24T13:39:46.567644Z",
            "url": "https://files.pythonhosted.org/packages/5c/1a/771f566927a4944495cf6a0e0643f7b5d6ac4a57c1fe03c1ef7b9b42c469/topk_sdk-0.4.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcf9c060e45d5c0800626a70df778d95a8654214e0dd9e2d1e453f6769952242",
                "md5": "caaa495194b123b36dba6416494e378d",
                "sha256": "e3b5a73de2cdb10e8468f9d1b9cd88044f921f298c2f08deea601ab2684419a6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "caaa495194b123b36dba6416494e378d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2119994,
            "upload_time": "2025-07-24T13:39:39",
            "upload_time_iso_8601": "2025-07-24T13:39:39.326290Z",
            "url": "https://files.pythonhosted.org/packages/fc/f9/c060e45d5c0800626a70df778d95a8654214e0dd9e2d1e453f6769952242/topk_sdk-0.4.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87259daaefc73db4d1856ca91d2f496970f239a5506e687f4199bcdeeecff067",
                "md5": "fccb57b1ff7dd12dd9dca730e5eb4503",
                "sha256": "cd729d0d0216d1d06dd56e7a0401fd39d34a0a1f27a0fba1035053a505beb725"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "fccb57b1ff7dd12dd9dca730e5eb4503",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 69952,
            "upload_time": "2025-07-24T13:39:32",
            "upload_time_iso_8601": "2025-07-24T13:39:32.959194Z",
            "url": "https://files.pythonhosted.org/packages/87/25/9daaefc73db4d1856ca91d2f496970f239a5506e687f4199bcdeeecff067/topk_sdk-0.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-24 13:39:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "topk-io",
    "github_project": "topk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "topk-sdk"
}
        
Elapsed time: 1.75439s