topk-sdk


Nametopk-sdk JSON
Version 0.7.1 PyPI version JSON
download
home_pagehttps://topk.io
SummaryPython SDK for topk.io
upload_time2025-11-04 14:27:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords topk search vector keyword bm25
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![TopK](https://qdmy0nqdjsamgtso.public.blob.vercel-storage.com/topk-logo-light.svg)

# 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, keyword, bm25",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/ea/6b/494103aab1a50cbda736e249e422a26818c745324f2a1d1c56ff6080f98e/topk_sdk-0.7.1.tar.gz",
    "platform": null,
    "description": "![TopK](https://qdmy0nqdjsamgtso.public.blob.vercel-storage.com/topk-logo-light.svg)\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.7.1",
    "project_urls": {
        "Homepage": "https://topk.io",
        "documentation": "https://docs.topk.io",
        "repository": "https://github.com/topk-io/topk"
    },
    "split_keywords": [
        "topk",
        " search",
        " vector",
        " keyword",
        " bm25"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52268042e584afafd3dae9971cfc7fc2099b869b33b1282260c3f70b6f952da5",
                "md5": "8e5ba0280af80abd4435efff9ea69e22",
                "sha256": "e358c613fff03846dd1155118c66e4ccab51032fb17dac3e2ce7d47d2ca59b1a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e5ba0280af80abd4435efff9ea69e22",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2917633,
            "upload_time": "2025-11-04T14:27:12",
            "upload_time_iso_8601": "2025-11-04T14:27:12.939167Z",
            "url": "https://files.pythonhosted.org/packages/52/26/8042e584afafd3dae9971cfc7fc2099b869b33b1282260c3f70b6f952da5/topk_sdk-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7065f8dda979975f4369df8ce3922380e2f8bd064ddaacdee76bd878e5b0001",
                "md5": "8e59b3d91f972ba7dc0c6e20a40c0131",
                "sha256": "7046b720cbb4582ce65c57e946e45b69ca12fddb5e08c4c2e8bc7575eaf85298"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8e59b3d91f972ba7dc0c6e20a40c0131",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2818991,
            "upload_time": "2025-11-04T14:27:05",
            "upload_time_iso_8601": "2025-11-04T14:27:05.897489Z",
            "url": "https://files.pythonhosted.org/packages/d7/06/5f8dda979975f4369df8ce3922380e2f8bd064ddaacdee76bd878e5b0001/topk_sdk-0.7.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c7f589eb4f6dd6d339ad218d14c5c74b4cabed27d13206fbc045b0db4b36503",
                "md5": "1419f25317f5224a4f2a805d71f3b3cb",
                "sha256": "a73675deae54a4f5e5acbd7dde006d55ef49a42a987b8a300f40a3642bfd21f8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1419f25317f5224a4f2a805d71f3b3cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3059247,
            "upload_time": "2025-11-04T14:26:23",
            "upload_time_iso_8601": "2025-11-04T14:26:23.826975Z",
            "url": "https://files.pythonhosted.org/packages/3c/7f/589eb4f6dd6d339ad218d14c5c74b4cabed27d13206fbc045b0db4b36503/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b49c6a760f3a50bffa6451daf91da38762d778fc84efcd8060e3fd151bda352e",
                "md5": "e41bbd3d553610998578ddc30f1109ea",
                "sha256": "de2172a0fa1355ba963518cf004806b31e8b743886a080b51a1ba9fde95ac229"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e41bbd3d553610998578ddc30f1109ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2851598,
            "upload_time": "2025-11-04T14:26:31",
            "upload_time_iso_8601": "2025-11-04T14:26:31.595870Z",
            "url": "https://files.pythonhosted.org/packages/b4/9c/6a760f3a50bffa6451daf91da38762d778fc84efcd8060e3fd151bda352e/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39e522b6dcb054459146c0379ec6160c5ba59a0accb6ed0f523cff268e4c4d56",
                "md5": "6dabdcd7fdd677cea4d5606899f3fe77",
                "sha256": "3b26b3620cff10c6af05cf28292db3607fc39b4d0b5746b0aa38a38297c2d3fa"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6dabdcd7fdd677cea4d5606899f3fe77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3123345,
            "upload_time": "2025-11-04T14:26:52",
            "upload_time_iso_8601": "2025-11-04T14:26:52.138411Z",
            "url": "https://files.pythonhosted.org/packages/39/e5/22b6dcb054459146c0379ec6160c5ba59a0accb6ed0f523cff268e4c4d56/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ea40376d9396e4067816eaff9824ddb02903c5b9d7262c7ec44fa6d21333447",
                "md5": "c9dbac08d0e00c4b5e4365bcc4c9a64d",
                "sha256": "96cc0940c1bafe7529b5779856355a66e168f6e1a28765e5d32f58b791ab5790"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c9dbac08d0e00c4b5e4365bcc4c9a64d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3673570,
            "upload_time": "2025-11-04T14:26:37",
            "upload_time_iso_8601": "2025-11-04T14:26:37.974838Z",
            "url": "https://files.pythonhosted.org/packages/3e/a4/0376d9396e4067816eaff9824ddb02903c5b9d7262c7ec44fa6d21333447/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fc6858b23c95959c91544ca850cfff65b3a58d1bc87bcd43155c4cca40b816d",
                "md5": "70191d1699f5b21e0f55eb07883dfbf0",
                "sha256": "e57b10d35195e19b2c4ce81dd2a3913f6630e7ba3f85cc16908fa63e01b6b117"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "70191d1699f5b21e0f55eb07883dfbf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2939860,
            "upload_time": "2025-11-04T14:26:44",
            "upload_time_iso_8601": "2025-11-04T14:26:44.651556Z",
            "url": "https://files.pythonhosted.org/packages/9f/c6/858b23c95959c91544ca850cfff65b3a58d1bc87bcd43155c4cca40b816d/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32aff469292cbdb5b633c51438a59491ba1d11d45db66e10592d4de2e67f1664",
                "md5": "8c0d93d913bfa5cb188063aa24e31684",
                "sha256": "532996d381893d229a86129ba12b160b4c7ff04aa9ea31a84e0b24b2c1e87458"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c0d93d913bfa5cb188063aa24e31684",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3058899,
            "upload_time": "2025-11-04T14:26:59",
            "upload_time_iso_8601": "2025-11-04T14:26:59.167458Z",
            "url": "https://files.pythonhosted.org/packages/32/af/f469292cbdb5b633c51438a59491ba1d11d45db66e10592d4de2e67f1664/topk_sdk-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5061c6e6616f08902bad39f53ba8d4adfaeca19daafe02104012a0d73a9f263",
                "md5": "fb65d987c195be07eb3568c683d08f7c",
                "sha256": "55236447a2db085da81dfcf2d7f4ea36e9e96aea2b43fcd2e7d9c65b3788b973"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fb65d987c195be07eb3568c683d08f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3238456,
            "upload_time": "2025-11-04T14:27:20",
            "upload_time_iso_8601": "2025-11-04T14:27:20.044653Z",
            "url": "https://files.pythonhosted.org/packages/e5/06/1c6e6616f08902bad39f53ba8d4adfaeca19daafe02104012a0d73a9f263/topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ae2f4b529f1bd8263e9fa0ffdc2411af1ae35f31d68369df9add87472faff6a",
                "md5": "1ae6331ab77d1462c3b6db20be73548a",
                "sha256": "72ed8a5ae68239f254b415454423f5986dbe8eed0412ae31e48382e757e7a5e2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1ae6331ab77d1462c3b6db20be73548a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3081402,
            "upload_time": "2025-11-04T14:27:27",
            "upload_time_iso_8601": "2025-11-04T14:27:27.394425Z",
            "url": "https://files.pythonhosted.org/packages/9a/e2/f4b529f1bd8263e9fa0ffdc2411af1ae35f31d68369df9add87472faff6a/topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fea89b1241b9cc4820c52e7a1d72f782d35a80ee02b33a3a3bc95b6aa9209d62",
                "md5": "2d4cf93f0f59506dbbf76e1de65862db",
                "sha256": "f8abd8db85841bc93d9383972a133e23b8c293af9b99dfacadc44792860b10e1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2d4cf93f0f59506dbbf76e1de65862db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3149902,
            "upload_time": "2025-11-04T14:27:33",
            "upload_time_iso_8601": "2025-11-04T14:27:33.954805Z",
            "url": "https://files.pythonhosted.org/packages/fe/a8/9b1241b9cc4820c52e7a1d72f782d35a80ee02b33a3a3bc95b6aa9209d62/topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5f14188398f49b0e35bdff5fb6c1af23393509d45ea91b1727e84d33db32abc",
                "md5": "c16b85157cb1e4d035b2ed7d8631e2e4",
                "sha256": "bf3307be38e006fc73e99136e80b1fcb96aa06d30879937e444fdf5e0db8d20d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c16b85157cb1e4d035b2ed7d8631e2e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3279113,
            "upload_time": "2025-11-04T14:27:40",
            "upload_time_iso_8601": "2025-11-04T14:27:40.668266Z",
            "url": "https://files.pythonhosted.org/packages/f5/f1/4188398f49b0e35bdff5fb6c1af23393509d45ea91b1727e84d33db32abc/topk_sdk-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a79de8016a10e2c5adb8220ea1e9ac122d307d23b671f8a168ec0f12d838353c",
                "md5": "d3d43f6d78f6f05ba84edf8419a57946",
                "sha256": "4b920ebc94a3e4511203e16e6aeb60f7c681964b2e3fcc226120147077abf5a8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d3d43f6d78f6f05ba84edf8419a57946",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2123439,
            "upload_time": "2025-11-04T14:27:56",
            "upload_time_iso_8601": "2025-11-04T14:27:56.418151Z",
            "url": "https://files.pythonhosted.org/packages/a7/9d/e8016a10e2c5adb8220ea1e9ac122d307d23b671f8a168ec0f12d838353c/topk_sdk-0.7.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c96d3ed7bebe28d2385dd41c0a7371e6f80b3bc8a3ce6971112ddba8fc51ca1",
                "md5": "134f40e0f4604a45b49a3f8f9bccb098",
                "sha256": "f1d73cf9694a1638abed32470734c1a5e3abd41d5aba1b040a05f29d782578a5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "134f40e0f4604a45b49a3f8f9bccb098",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2557097,
            "upload_time": "2025-11-04T14:27:49",
            "upload_time_iso_8601": "2025-11-04T14:27:49.791147Z",
            "url": "https://files.pythonhosted.org/packages/6c/96/d3ed7bebe28d2385dd41c0a7371e6f80b3bc8a3ce6971112ddba8fc51ca1/topk_sdk-0.7.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54959da1fb6dd31472695f3d2318e44a91a829bc0e1a34068f342a034009b80c",
                "md5": "a718ffe55f47d9c795dd0398e9fba73c",
                "sha256": "4a405e193ad4d16e3931cba09d215d82095404ab41d959e70822c10037598ffb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a718ffe55f47d9c795dd0398e9fba73c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2916701,
            "upload_time": "2025-11-04T14:27:14",
            "upload_time_iso_8601": "2025-11-04T14:27:14.213212Z",
            "url": "https://files.pythonhosted.org/packages/54/95/9da1fb6dd31472695f3d2318e44a91a829bc0e1a34068f342a034009b80c/topk_sdk-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63f6c9dda2fb606474d1af0d34fb4416dc20ae4ba49895e773396cf9c8e5e888",
                "md5": "790bb106ec0940fe2f03bc1699ce6b35",
                "sha256": "db8e394955361f6acc3b2096d4d2e8e1af31ac705ab3ad7be417c8ad5c2d39d6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "790bb106ec0940fe2f03bc1699ce6b35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2818890,
            "upload_time": "2025-11-04T14:27:07",
            "upload_time_iso_8601": "2025-11-04T14:27:07.526587Z",
            "url": "https://files.pythonhosted.org/packages/63/f6/c9dda2fb606474d1af0d34fb4416dc20ae4ba49895e773396cf9c8e5e888/topk_sdk-0.7.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef8adb6731ccc771ec642302f2bfc295585afe76be11b75be559c3ee3ef61b01",
                "md5": "7ef2ea2fa7dc1d9dcaccf9b834e4f8ba",
                "sha256": "43fda294e98343805e7aac2c484c30aecafcb531d50e3cbf96355a301f603a08"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ef2ea2fa7dc1d9dcaccf9b834e4f8ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3061188,
            "upload_time": "2025-11-04T14:26:26",
            "upload_time_iso_8601": "2025-11-04T14:26:26.564088Z",
            "url": "https://files.pythonhosted.org/packages/ef/8a/db6731ccc771ec642302f2bfc295585afe76be11b75be559c3ee3ef61b01/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "787254a3e104c1b44089e0aa2ddbe56bdebb9a29ce6069e915bb5b803b73628b",
                "md5": "611e0c7accd3f0b51a9a06a5d0b06b6a",
                "sha256": "554b0c3cd4678add2f45c21cc7df782fb8a94042fcdfeb73716f4e47705021ca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "611e0c7accd3f0b51a9a06a5d0b06b6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2861896,
            "upload_time": "2025-11-04T14:26:32",
            "upload_time_iso_8601": "2025-11-04T14:26:32.740000Z",
            "url": "https://files.pythonhosted.org/packages/78/72/54a3e104c1b44089e0aa2ddbe56bdebb9a29ce6069e915bb5b803b73628b/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79248384065ddf71337ccb9bb6ed4b0a2dd73f2a04c3c5fbf06006fd3cd881ff",
                "md5": "ce1ea976886684b629ab8a90cb3f7918",
                "sha256": "35f4a150f192d784408fe9cf49991197dd302b09247177e48d095036441312dd"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce1ea976886684b629ab8a90cb3f7918",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3123466,
            "upload_time": "2025-11-04T14:26:53",
            "upload_time_iso_8601": "2025-11-04T14:26:53.325457Z",
            "url": "https://files.pythonhosted.org/packages/79/24/8384065ddf71337ccb9bb6ed4b0a2dd73f2a04c3c5fbf06006fd3cd881ff/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc5ee824598d06d45d3900452cbed46866a58af401a10ab3acd9c22486f6b8c4",
                "md5": "8c99adb507b84ba5209bbfe445d14dc7",
                "sha256": "6eb1d3c43911b8afd7c868319a302bfecb7ba017b26e639ce8caf82501d0279f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8c99adb507b84ba5209bbfe445d14dc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3674004,
            "upload_time": "2025-11-04T14:26:39",
            "upload_time_iso_8601": "2025-11-04T14:26:39.333579Z",
            "url": "https://files.pythonhosted.org/packages/dc/5e/e824598d06d45d3900452cbed46866a58af401a10ab3acd9c22486f6b8c4/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "874f14dc14ff272fc1d90d25ab94e65d69f8c39622fe8a6b95f7d4a9bf664b19",
                "md5": "162f1fa02b99105bba4a9ca27b092fbf",
                "sha256": "6530f2eae29535145e7d102ecc9b7676668e876dfe8bac0c4fde9cd8dfb9f663"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "162f1fa02b99105bba4a9ca27b092fbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2938142,
            "upload_time": "2025-11-04T14:26:45",
            "upload_time_iso_8601": "2025-11-04T14:26:45.985297Z",
            "url": "https://files.pythonhosted.org/packages/87/4f/14dc14ff272fc1d90d25ab94e65d69f8c39622fe8a6b95f7d4a9bf664b19/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b8448ced0e4fbb6deb84a91df14ef9c812917f7a69aa3d505001c3add96e675",
                "md5": "a37bc778deee65577bf3570614bb0ea9",
                "sha256": "07666e2c432a85a6a8cf7ea097a66557ba2a9fa14382505d6e6dcaa5da3ac3ca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a37bc778deee65577bf3570614bb0ea9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3055787,
            "upload_time": "2025-11-04T14:27:00",
            "upload_time_iso_8601": "2025-11-04T14:27:00.403067Z",
            "url": "https://files.pythonhosted.org/packages/5b/84/48ced0e4fbb6deb84a91df14ef9c812917f7a69aa3d505001c3add96e675/topk_sdk-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21ad5e178974423701b51c56e7871f871fdfb2d9ee8816a0a0102019cd916e66",
                "md5": "a0f6605eb9a04affa45d3ce22efc0a3a",
                "sha256": "f9b4e5fcea612025050b344c824dfd9c951cad1ebf022675943e97fbf04f229d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a0f6605eb9a04affa45d3ce22efc0a3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3240721,
            "upload_time": "2025-11-04T14:27:21",
            "upload_time_iso_8601": "2025-11-04T14:27:21.597154Z",
            "url": "https://files.pythonhosted.org/packages/21/ad/5e178974423701b51c56e7871f871fdfb2d9ee8816a0a0102019cd916e66/topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc7bb9922ec1fdda7a4b87b64913f0331e9a920ebbd008d742b7a1a3dd8741e3",
                "md5": "b23a3856977aeae45a7f7465d04f0065",
                "sha256": "9b6709e912c6958d7b35c49a3aa75e45dd5fd969f34580bd726a29bee667542c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b23a3856977aeae45a7f7465d04f0065",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3089607,
            "upload_time": "2025-11-04T14:27:28",
            "upload_time_iso_8601": "2025-11-04T14:27:28.643981Z",
            "url": "https://files.pythonhosted.org/packages/bc/7b/b9922ec1fdda7a4b87b64913f0331e9a920ebbd008d742b7a1a3dd8741e3/topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adf12d139ae6285055a6f33ffe42c17955496f68935dfe025ff3e196441f0154",
                "md5": "f870c6ab1bb69be901109a5fd4b8389e",
                "sha256": "b701e5b7d41a3bfba356755fa5b1151f86843ad1688c22c88579d9420fe197b7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f870c6ab1bb69be901109a5fd4b8389e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3149836,
            "upload_time": "2025-11-04T14:27:35",
            "upload_time_iso_8601": "2025-11-04T14:27:35.266621Z",
            "url": "https://files.pythonhosted.org/packages/ad/f1/2d139ae6285055a6f33ffe42c17955496f68935dfe025ff3e196441f0154/topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4730e96c7b3b4f63fe76d2735c6dc9013df28d87f95944602b3245555bcd5d71",
                "md5": "d6544cf66036d490b575bba1236b6828",
                "sha256": "ac379f46d24ffec2104647d53d8e4814a8f98b2a2468eb60186b082096a5f658"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6544cf66036d490b575bba1236b6828",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3276883,
            "upload_time": "2025-11-04T14:27:42",
            "upload_time_iso_8601": "2025-11-04T14:27:42.330793Z",
            "url": "https://files.pythonhosted.org/packages/47/30/e96c7b3b4f63fe76d2735c6dc9013df28d87f95944602b3245555bcd5d71/topk_sdk-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcb3de38b11ea3ba9828a8d539dc85ff41c72d23b2f7fd6ed5311441d74a5d4f",
                "md5": "1e5cf6abe1cfbcfaa0e2c56d519c07c2",
                "sha256": "d61215c4151153762a32ff2321ce498cc99e66d5c7d4b7c26ee134636f7202d0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1e5cf6abe1cfbcfaa0e2c56d519c07c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2123102,
            "upload_time": "2025-11-04T14:27:57",
            "upload_time_iso_8601": "2025-11-04T14:27:57.930774Z",
            "url": "https://files.pythonhosted.org/packages/fc/b3/de38b11ea3ba9828a8d539dc85ff41c72d23b2f7fd6ed5311441d74a5d4f/topk_sdk-0.7.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "177d0043b152cdb5af101c16fb398e0636ed06ac4ebdaddf46317bad61aff109",
                "md5": "7bccceeca9ba7384f4621eeedddcbd09",
                "sha256": "d6df766f29a9d4211d39f9977be8c94cd5e3ab3dd7babe1b2ce74afcbaa980bc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7bccceeca9ba7384f4621eeedddcbd09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2557933,
            "upload_time": "2025-11-04T14:27:51",
            "upload_time_iso_8601": "2025-11-04T14:27:51.073898Z",
            "url": "https://files.pythonhosted.org/packages/17/7d/0043b152cdb5af101c16fb398e0636ed06ac4ebdaddf46317bad61aff109/topk_sdk-0.7.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "140bacbfbf01a1711e836386fae5a35035ab6ec12c26d99b42accc6e51680bba",
                "md5": "cd4065a5bd8c604d7b68911e298d88f9",
                "sha256": "3b8c0716fec8cf201ac47e5df8fb75b9e5b69c7deeb3b690c962b6a276b731f7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd4065a5bd8c604d7b68911e298d88f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2893834,
            "upload_time": "2025-11-04T14:27:15",
            "upload_time_iso_8601": "2025-11-04T14:27:15.562831Z",
            "url": "https://files.pythonhosted.org/packages/14/0b/acbfbf01a1711e836386fae5a35035ab6ec12c26d99b42accc6e51680bba/topk_sdk-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa7af7cd56eb9ae2d2c6d133f90bc04dcbccdee0f55cde8587a4472323e167c2",
                "md5": "a5bd1c7abcf1d80a00ea217a61b549f1",
                "sha256": "3545432f8df58798f5275f86fb21c30f76b6562960475b73d26e3c60cbba20cc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a5bd1c7abcf1d80a00ea217a61b549f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2798181,
            "upload_time": "2025-11-04T14:27:08",
            "upload_time_iso_8601": "2025-11-04T14:27:08.798062Z",
            "url": "https://files.pythonhosted.org/packages/fa/7a/f7cd56eb9ae2d2c6d133f90bc04dcbccdee0f55cde8587a4472323e167c2/topk_sdk-0.7.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b1a5df386e653acf86373c1a8e507172e4f1b6775d1e3bd08c16f22e515d68f",
                "md5": "c4b16c60e2aca8b1d1f6e5efcb275b0f",
                "sha256": "9273e9aecad2b40428f264a9d0511d3d122db8ccc0b4cc497c8d082437c0c526"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4b16c60e2aca8b1d1f6e5efcb275b0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3062258,
            "upload_time": "2025-11-04T14:26:27",
            "upload_time_iso_8601": "2025-11-04T14:26:27.922390Z",
            "url": "https://files.pythonhosted.org/packages/8b/1a/5df386e653acf86373c1a8e507172e4f1b6775d1e3bd08c16f22e515d68f/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87ba2efb8f83f678700c84f72e23631f1051df16d772b2e97471d5ce8e2a49f3",
                "md5": "2833d624d8479931bfa7196f93308800",
                "sha256": "5e312f793d0cbbe9a12764708bb211eea6d4642ca4102d2d8e5e84f34f2670da"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2833d624d8479931bfa7196f93308800",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2861125,
            "upload_time": "2025-11-04T14:26:33",
            "upload_time_iso_8601": "2025-11-04T14:26:33.936218Z",
            "url": "https://files.pythonhosted.org/packages/87/ba/2efb8f83f678700c84f72e23631f1051df16d772b2e97471d5ce8e2a49f3/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "255ff8cbed172e038999e0774a262a73bd889e762f048fd9fd5608c003ca83df",
                "md5": "e07f7194e82dca0008e3ff299b045605",
                "sha256": "2b6450b73c6dc7d59a1493a385e74dab5fadb161e95569f402f44989e6ecf15e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e07f7194e82dca0008e3ff299b045605",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3121981,
            "upload_time": "2025-11-04T14:26:54",
            "upload_time_iso_8601": "2025-11-04T14:26:54.575573Z",
            "url": "https://files.pythonhosted.org/packages/25/5f/f8cbed172e038999e0774a262a73bd889e762f048fd9fd5608c003ca83df/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e834ce17b11b96e58aa9a1f8bbbcbab611b58b01ab4a1444edee0250b9098bd4",
                "md5": "45027b5cf90437e86add8f7db41c32ff",
                "sha256": "92878a289579414c9f84d121b8c2a82026ff6869402d8e656591089c28cc05e1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "45027b5cf90437e86add8f7db41c32ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3671979,
            "upload_time": "2025-11-04T14:26:40",
            "upload_time_iso_8601": "2025-11-04T14:26:40.538813Z",
            "url": "https://files.pythonhosted.org/packages/e8/34/ce17b11b96e58aa9a1f8bbbcbab611b58b01ab4a1444edee0250b9098bd4/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bceae855beb2083c08f3c5259b7f3ba7d54dafb5d84b29bdeb6a36adebf93d3d",
                "md5": "946528d325696a78c59060689119a2ba",
                "sha256": "6e5d697eabda6c2ee60a75e9896907546a88fb996928b52fa71099a0504fd7cf"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "946528d325696a78c59060689119a2ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2953356,
            "upload_time": "2025-11-04T14:26:47",
            "upload_time_iso_8601": "2025-11-04T14:26:47.567858Z",
            "url": "https://files.pythonhosted.org/packages/bc/ea/e855beb2083c08f3c5259b7f3ba7d54dafb5d84b29bdeb6a36adebf93d3d/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a89018d8f10666200cfc6022a3765b43a7bd4b8692678efb34148267de72871",
                "md5": "ebcfbeb38c032a99792ec4bd7f4c22bb",
                "sha256": "0d39328c7a970d7f92c7dc04955dc9ba3b1a4f1d9c6b4095d3fe7d8fd03e370f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebcfbeb38c032a99792ec4bd7f4c22bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3062773,
            "upload_time": "2025-11-04T14:27:01",
            "upload_time_iso_8601": "2025-11-04T14:27:01.747851Z",
            "url": "https://files.pythonhosted.org/packages/1a/89/018d8f10666200cfc6022a3765b43a7bd4b8692678efb34148267de72871/topk_sdk-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "458ee90f6eee8b84762905d2a3ee936321a3a897a8e8f5027a384b52bd089554",
                "md5": "afc1fbbcff2f9da6396669e2c4679852",
                "sha256": "e8f293a9159728f98b872e0a4ea6d68e902f9fd60ee7a92a4bef658eb3ee73c6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afc1fbbcff2f9da6396669e2c4679852",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3241519,
            "upload_time": "2025-11-04T14:27:22",
            "upload_time_iso_8601": "2025-11-04T14:27:22.966512Z",
            "url": "https://files.pythonhosted.org/packages/45/8e/e90f6eee8b84762905d2a3ee936321a3a897a8e8f5027a384b52bd089554/topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0c20e4ddcf4e830bb80ab0c45997b4a6cea83475074c6c6534aaddf8ed71784",
                "md5": "1fc1eb7df891fb8c9b0affbf5d79aa75",
                "sha256": "ac9512a2e176cb49f6fed030b2706165fea7823f64f6603153784689aefa3885"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1fc1eb7df891fb8c9b0affbf5d79aa75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3088736,
            "upload_time": "2025-11-04T14:27:30",
            "upload_time_iso_8601": "2025-11-04T14:27:30.080057Z",
            "url": "https://files.pythonhosted.org/packages/a0/c2/0e4ddcf4e830bb80ab0c45997b4a6cea83475074c6c6534aaddf8ed71784/topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "931ca3197ccc8a17f8aa90c0e21985dc4befd8bfb71bdf2d4b1928157dc13659",
                "md5": "ddd7f732fbc0ba5435aeef092ba2277d",
                "sha256": "55dc2b1fae89b3407f67d5ecf828c761652faec46bdf3cae8e67a4e92c4ac99b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ddd7f732fbc0ba5435aeef092ba2277d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3146783,
            "upload_time": "2025-11-04T14:27:36",
            "upload_time_iso_8601": "2025-11-04T14:27:36.639555Z",
            "url": "https://files.pythonhosted.org/packages/93/1c/a3197ccc8a17f8aa90c0e21985dc4befd8bfb71bdf2d4b1928157dc13659/topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb874f22ba7826a1c1cdc55fcc992ce66fc6967aec2b2e6044be7ecb9f17f845",
                "md5": "bf857d49105de7874b8d81467f8cdd14",
                "sha256": "5a138e90d621fae3973b60df2f0043619f8369f7d8ef008b90c58a5ec915745f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf857d49105de7874b8d81467f8cdd14",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3281179,
            "upload_time": "2025-11-04T14:27:44",
            "upload_time_iso_8601": "2025-11-04T14:27:44.065731Z",
            "url": "https://files.pythonhosted.org/packages/cb/87/4f22ba7826a1c1cdc55fcc992ce66fc6967aec2b2e6044be7ecb9f17f845/topk_sdk-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adadbf6f41af986c5823e69290f141a88d419a3b915489af2f0e95b8eecc01c3",
                "md5": "574963dec4aa0fa01d38f88e9200111e",
                "sha256": "bb9737bb1750d13c8457e54000255f36026fee5b44674c961839de19047f9373"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "574963dec4aa0fa01d38f88e9200111e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2122908,
            "upload_time": "2025-11-04T14:27:59",
            "upload_time_iso_8601": "2025-11-04T14:27:59.185683Z",
            "url": "https://files.pythonhosted.org/packages/ad/ad/bf6f41af986c5823e69290f141a88d419a3b915489af2f0e95b8eecc01c3/topk_sdk-0.7.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d2b923855c68b0e8e9f171e200d297fea309de52037a9e43f22f97b3d08a9cc",
                "md5": "a092a590f25d4b378bbb348a4bf893ae",
                "sha256": "fce2ce7c86366161d931c7813fea137be541359c11efc170ed61fdca9b0e0403"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a092a590f25d4b378bbb348a4bf893ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2555361,
            "upload_time": "2025-11-04T14:27:52",
            "upload_time_iso_8601": "2025-11-04T14:27:52.395625Z",
            "url": "https://files.pythonhosted.org/packages/7d/2b/923855c68b0e8e9f171e200d297fea309de52037a9e43f22f97b3d08a9cc/topk_sdk-0.7.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3053cb721f43735a12068bf9202ffbcb77f709927e1f198e91c95d2f4a9da608",
                "md5": "bf30e8901c555bcbe898e61d7b7967b8",
                "sha256": "9514531c5441c7fd820057a8a40ad79cae0ce9216217471aae2e69e497ee35ca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf30e8901c555bcbe898e61d7b7967b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2893852,
            "upload_time": "2025-11-04T14:27:17",
            "upload_time_iso_8601": "2025-11-04T14:27:17.379491Z",
            "url": "https://files.pythonhosted.org/packages/30/53/cb721f43735a12068bf9202ffbcb77f709927e1f198e91c95d2f4a9da608/topk_sdk-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19d73d5717f6eb16a58f1473365f1c4859a61d207049228d4b2871c1a29d2e6f",
                "md5": "b6749bc700a66425361d3dfc14bb27b1",
                "sha256": "2760004b627cf6cea412f9642f76033cc52a0e56fb053c98bfc12bc02fd66540"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b6749bc700a66425361d3dfc14bb27b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2797844,
            "upload_time": "2025-11-04T14:27:10",
            "upload_time_iso_8601": "2025-11-04T14:27:10.267601Z",
            "url": "https://files.pythonhosted.org/packages/19/d7/3d5717f6eb16a58f1473365f1c4859a61d207049228d4b2871c1a29d2e6f/topk_sdk-0.7.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cb006510c9171dc8393ea4dfb589664111fdf9d4175fb16aefa4ccfd9d6521f",
                "md5": "91967d9c6f75aea0ca70c7fc5806a6fd",
                "sha256": "505b32f3dab9fdae00bd3ed06b4060367076eace789d34dce45ebc152edd1d18"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91967d9c6f75aea0ca70c7fc5806a6fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3061880,
            "upload_time": "2025-11-04T14:26:29",
            "upload_time_iso_8601": "2025-11-04T14:26:29.149269Z",
            "url": "https://files.pythonhosted.org/packages/2c/b0/06510c9171dc8393ea4dfb589664111fdf9d4175fb16aefa4ccfd9d6521f/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed87e3b1ba2c7752b2f600e664350c1e3e5116956d2fdd3796e3afc15cbf111c",
                "md5": "4e58ad84029707e0f259a794518988a0",
                "sha256": "03b849309c6bd4145b95e028847f90cd679f1ac320957ecd6b6fff279a1c0fcc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4e58ad84029707e0f259a794518988a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2860798,
            "upload_time": "2025-11-04T14:26:35",
            "upload_time_iso_8601": "2025-11-04T14:26:35.484445Z",
            "url": "https://files.pythonhosted.org/packages/ed/87/e3b1ba2c7752b2f600e664350c1e3e5116956d2fdd3796e3afc15cbf111c/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4722027c6943afe5d431af3491adaa195b32aefd405128332337eb1409d3d1bb",
                "md5": "59a3f6b948eb920ad3ac7171ea11de80",
                "sha256": "552fcd5ef9f62b8197311245be92c3b87e80919b86f36f1d0bf7073ca28c84f3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "59a3f6b948eb920ad3ac7171ea11de80",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3121420,
            "upload_time": "2025-11-04T14:26:56",
            "upload_time_iso_8601": "2025-11-04T14:26:56.175319Z",
            "url": "https://files.pythonhosted.org/packages/47/22/027c6943afe5d431af3491adaa195b32aefd405128332337eb1409d3d1bb/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc9496c8a521e53649ec3657d15269202f28ecc42ed0a3567c7bb8a8dff8e513",
                "md5": "42c335d95673bdeb00dc56450d788f48",
                "sha256": "e470b50712dee009d0ddb8cb9720a364a1ab67554e625747710b41b698640c51"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "42c335d95673bdeb00dc56450d788f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3670890,
            "upload_time": "2025-11-04T14:26:42",
            "upload_time_iso_8601": "2025-11-04T14:26:42.083322Z",
            "url": "https://files.pythonhosted.org/packages/cc/94/96c8a521e53649ec3657d15269202f28ecc42ed0a3567c7bb8a8dff8e513/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c3549af1b7fd5aa1f78f8b6f6bb30a353ddbd9ca34f660e8273e08787256069",
                "md5": "999e2ab993ca606f77b3954449137b3d",
                "sha256": "5989c7151a8aa042cc2ea9b3de5469e396415409672d3c2f17ef444022455fa0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "999e2ab993ca606f77b3954449137b3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2953125,
            "upload_time": "2025-11-04T14:26:48",
            "upload_time_iso_8601": "2025-11-04T14:26:48.791982Z",
            "url": "https://files.pythonhosted.org/packages/8c/35/49af1b7fd5aa1f78f8b6f6bb30a353ddbd9ca34f660e8273e08787256069/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a5180e5a25f3a92f3e35c3318b5b95b810c2c026b11edff29f90abb2e2fbdba",
                "md5": "fe76747bd33710a33dd58bf5720a7c48",
                "sha256": "d80e78cd6b757d77778a0dd185d5715367ef0f6a2339cd9064d4ea078ea36521"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe76747bd33710a33dd58bf5720a7c48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3062322,
            "upload_time": "2025-11-04T14:27:03",
            "upload_time_iso_8601": "2025-11-04T14:27:03.012664Z",
            "url": "https://files.pythonhosted.org/packages/2a/51/80e5a25f3a92f3e35c3318b5b95b810c2c026b11edff29f90abb2e2fbdba/topk_sdk-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "842a6bd411b06a2bd68c093dff2c1dd06dfe9deb2d0b029274c907426390c8e8",
                "md5": "d7ad710e7931eddcced04f45e2234caf",
                "sha256": "0ac75c5802ce09628dcd4f788fc80fd9800216cddada9cfdf9f8f1d802308efb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7ad710e7931eddcced04f45e2234caf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3241627,
            "upload_time": "2025-11-04T14:27:24",
            "upload_time_iso_8601": "2025-11-04T14:27:24.548744Z",
            "url": "https://files.pythonhosted.org/packages/84/2a/6bd411b06a2bd68c093dff2c1dd06dfe9deb2d0b029274c907426390c8e8/topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f12ee3747f2805b6dfeee9177bf4053fe05b86f650b7b681a9cf470a33f473cf",
                "md5": "bffbefb448b53bd947690749e063dac6",
                "sha256": "b447c345dc2768c962b5520891447408c16ae28ffeb27b35d46510b11b1ad58d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bffbefb448b53bd947690749e063dac6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3088306,
            "upload_time": "2025-11-04T14:27:31",
            "upload_time_iso_8601": "2025-11-04T14:27:31.309149Z",
            "url": "https://files.pythonhosted.org/packages/f1/2e/e3747f2805b6dfeee9177bf4053fe05b86f650b7b681a9cf470a33f473cf/topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df4cd4bafd22ce29bbf0b0ffdcb97fa9edfa7114f56449ec41354da137cf1ac4",
                "md5": "c0c5744122ab37b9a44e327363111494",
                "sha256": "f2fc1c2009cda41541c124e2716869e5427de0596e2e3f40365dfd429dfba875"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c0c5744122ab37b9a44e327363111494",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3146715,
            "upload_time": "2025-11-04T14:27:38",
            "upload_time_iso_8601": "2025-11-04T14:27:38.118485Z",
            "url": "https://files.pythonhosted.org/packages/df/4c/d4bafd22ce29bbf0b0ffdcb97fa9edfa7114f56449ec41354da137cf1ac4/topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e12694e82c45db79d33b30162c1a87414ca4eb2643a4c4f53e26355f4bdb5818",
                "md5": "8f075807f2cc3d93e1a4fb07a33b0e0a",
                "sha256": "5cd334e92a923ac460b99d6516ec0c863d8cf595dc92ccc420444c8c30612386"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f075807f2cc3d93e1a4fb07a33b0e0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3280438,
            "upload_time": "2025-11-04T14:27:45",
            "upload_time_iso_8601": "2025-11-04T14:27:45.391557Z",
            "url": "https://files.pythonhosted.org/packages/e1/26/94e82c45db79d33b30162c1a87414ca4eb2643a4c4f53e26355f4bdb5818/topk_sdk-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f51f4ce5998b08106bbc553b7f17dd79f400d3b0759a8094feecda862cc233c",
                "md5": "8aa36975f362ca21cc902859e2f4e2c4",
                "sha256": "76431dbc4193b8e80cabbeb3c65f0a94a1d053c8a0bb31b32f5b491588874855"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "8aa36975f362ca21cc902859e2f4e2c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2122679,
            "upload_time": "2025-11-04T14:28:01",
            "upload_time_iso_8601": "2025-11-04T14:28:01.000218Z",
            "url": "https://files.pythonhosted.org/packages/8f/51/f4ce5998b08106bbc553b7f17dd79f400d3b0759a8094feecda862cc233c/topk_sdk-0.7.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6b15bbb016ad6056ac9c3f89fc4a66be83587fcb2ceaa350106d24743126b7d",
                "md5": "cc0beebc75f4d266cbe32b2d467e43bb",
                "sha256": "0eb32aacfb7ad9f0ce03e1feab8397cb6ecd20719d49a05b2eb6f75863e07d35"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc0beebc75f4d266cbe32b2d467e43bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2555267,
            "upload_time": "2025-11-04T14:27:53",
            "upload_time_iso_8601": "2025-11-04T14:27:53.845275Z",
            "url": "https://files.pythonhosted.org/packages/b6/b1/5bbb016ad6056ac9c3f89fc4a66be83587fcb2ceaa350106d24743126b7d/topk_sdk-0.7.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c33f88da5738687d4d51998b403c009418987ea1d65cdacbf123ea6b3bb255ef",
                "md5": "237fabdadd2c0a825e81922283ed0799",
                "sha256": "c6d40297cc4bd8eb87c881d0708d4a329b5a91690feaaaaea4013b4bcfd8c613"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "237fabdadd2c0a825e81922283ed0799",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2918952,
            "upload_time": "2025-11-04T14:27:18",
            "upload_time_iso_8601": "2025-11-04T14:27:18.650474Z",
            "url": "https://files.pythonhosted.org/packages/c3/3f/88da5738687d4d51998b403c009418987ea1d65cdacbf123ea6b3bb255ef/topk_sdk-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c959b821df6fb04a8e7c45a3b00acee00b0ddcdace5edf64f45299059a42722",
                "md5": "773461d331229fdf04ac4155e94e30d4",
                "sha256": "d18a82e3dc05f16e670d85b19df55fb9e73c6d9cd795c7390de1494af97d2c14"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "773461d331229fdf04ac4155e94e30d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2819557,
            "upload_time": "2025-11-04T14:27:11",
            "upload_time_iso_8601": "2025-11-04T14:27:11.560736Z",
            "url": "https://files.pythonhosted.org/packages/6c/95/9b821df6fb04a8e7c45a3b00acee00b0ddcdace5edf64f45299059a42722/topk_sdk-0.7.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "272ecb6b1b4289e3b815c5c5459535504c68113a88169953ca3fc03ef3e4ff99",
                "md5": "d22b199dd44d613c79e2ce772f55cc50",
                "sha256": "3b6d5326579525cd2eb9ac7fd6e825ef71be8f02a42533f759b94751c72ea08d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d22b199dd44d613c79e2ce772f55cc50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3060936,
            "upload_time": "2025-11-04T14:26:30",
            "upload_time_iso_8601": "2025-11-04T14:26:30.472061Z",
            "url": "https://files.pythonhosted.org/packages/27/2e/cb6b1b4289e3b815c5c5459535504c68113a88169953ca3fc03ef3e4ff99/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8d3cfddcfe5770e2d9197324b5384fb43ca6cdc9bbdd31aa416eb2e2bbfb154",
                "md5": "6bdeacc6838542ef2caf5b6f79adb731",
                "sha256": "f7a37780a031f68b5b0e20969fe7c1e38230dd5c280966c8b7c99c00cc2dbd84"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6bdeacc6838542ef2caf5b6f79adb731",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2853459,
            "upload_time": "2025-11-04T14:26:36",
            "upload_time_iso_8601": "2025-11-04T14:26:36.749251Z",
            "url": "https://files.pythonhosted.org/packages/e8/d3/cfddcfe5770e2d9197324b5384fb43ca6cdc9bbdd31aa416eb2e2bbfb154/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7cb6b04a394234c9aa359bcbb8214793a28157290bec6d1bf4d699f27d3fbb8",
                "md5": "35fe680eef15d69c2362345798ee2fe9",
                "sha256": "1a397dea4184556f71c96e9e995b530d94083492f1b1517da901595e72c75d20"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "35fe680eef15d69c2362345798ee2fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3124532,
            "upload_time": "2025-11-04T14:26:57",
            "upload_time_iso_8601": "2025-11-04T14:26:57.348179Z",
            "url": "https://files.pythonhosted.org/packages/a7/cb/6b04a394234c9aa359bcbb8214793a28157290bec6d1bf4d699f27d3fbb8/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5250355128cadced3a5608dd9409d0937e90dd0342baaf602175631373b13f1",
                "md5": "ea5c987f3d01247ecaf02ee68e25e907",
                "sha256": "3e23d626cc1d687397bc5a27713d8e1fc0fad83d46cc1861e6fc2fdcfba340a5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ea5c987f3d01247ecaf02ee68e25e907",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3676576,
            "upload_time": "2025-11-04T14:26:43",
            "upload_time_iso_8601": "2025-11-04T14:26:43.467544Z",
            "url": "https://files.pythonhosted.org/packages/b5/25/0355128cadced3a5608dd9409d0937e90dd0342baaf602175631373b13f1/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1c831b773cb768ad35551e713049a2742668d76be9b20aec83f1a79faa4626f",
                "md5": "66c0245d55e6a0abac9a75e612dccebe",
                "sha256": "3f2c2363b2ccd0d20694c70634298c9106043b7161f278104b037efe46c2cc26"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "66c0245d55e6a0abac9a75e612dccebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2940593,
            "upload_time": "2025-11-04T14:26:50",
            "upload_time_iso_8601": "2025-11-04T14:26:50.519770Z",
            "url": "https://files.pythonhosted.org/packages/a1/c8/31b773cb768ad35551e713049a2742668d76be9b20aec83f1a79faa4626f/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "849554a1e02bc2bcc3e026caa6d6b1a237fadcb7f1b1a2f5ba9a9e4c1328bcdb",
                "md5": "1c30fedf383fdfeabbb1de9c6cdc9dc2",
                "sha256": "420fcd674cfe220027c94f110b459e4c4fc3f4b266e08526cdefca0b96f83bdb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c30fedf383fdfeabbb1de9c6cdc9dc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3059691,
            "upload_time": "2025-11-04T14:27:04",
            "upload_time_iso_8601": "2025-11-04T14:27:04.277419Z",
            "url": "https://files.pythonhosted.org/packages/84/95/54a1e02bc2bcc3e026caa6d6b1a237fadcb7f1b1a2f5ba9a9e4c1328bcdb/topk_sdk-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c098488b76a2309fb978c2175816f2858e96b8641e714985bcb8033a8cc6063",
                "md5": "642d06d6498523eb716392085cb768e4",
                "sha256": "893dbcdba0e75a219236cce503a7e8dcd45dd4e2b330a804eeb47bc1b40b9809"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "642d06d6498523eb716392085cb768e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3240157,
            "upload_time": "2025-11-04T14:27:26",
            "upload_time_iso_8601": "2025-11-04T14:27:26.134544Z",
            "url": "https://files.pythonhosted.org/packages/5c/09/8488b76a2309fb978c2175816f2858e96b8641e714985bcb8033a8cc6063/topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "402e42b74041a2e6d49bfba90c2da9703871507ffdaad24eccfebba49f8bd280",
                "md5": "2d0390517c29edc735332b42455b41f8",
                "sha256": "94074fbdc38b5ccdb9e37d26bbb115ac5d3193fadd979e3be873d70f454b3dd0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2d0390517c29edc735332b42455b41f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3082857,
            "upload_time": "2025-11-04T14:27:32",
            "upload_time_iso_8601": "2025-11-04T14:27:32.577943Z",
            "url": "https://files.pythonhosted.org/packages/40/2e/42b74041a2e6d49bfba90c2da9703871507ffdaad24eccfebba49f8bd280/topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9434a0f36c9bfd4bb99d871683a21d9cd5f99a363b83620b469e03a070921ca6",
                "md5": "34583ae833a4802ec14d72288df4a56f",
                "sha256": "de85b1a1b05a3d9f83b9dff1d299baac79e11d6ad840f4f687fab762654bfdf6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "34583ae833a4802ec14d72288df4a56f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3150768,
            "upload_time": "2025-11-04T14:27:39",
            "upload_time_iso_8601": "2025-11-04T14:27:39.441065Z",
            "url": "https://files.pythonhosted.org/packages/94/34/a0f36c9bfd4bb99d871683a21d9cd5f99a363b83620b469e03a070921ca6/topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27e01fc8a845370d2f223c865da55dd0b5e39de5fbe9e363b21495cc5ba84b03",
                "md5": "d7f4f1b18fa7105d443edf5f8e0b53e3",
                "sha256": "e89fa4bdf839cb1b5418940f61681eeb6b92532b3971dbcb77c95962576714bc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7f4f1b18fa7105d443edf5f8e0b53e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3281815,
            "upload_time": "2025-11-04T14:27:46",
            "upload_time_iso_8601": "2025-11-04T14:27:46.788971Z",
            "url": "https://files.pythonhosted.org/packages/27/e0/1fc8a845370d2f223c865da55dd0b5e39de5fbe9e363b21495cc5ba84b03/topk_sdk-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22efdd0ea99193200ef21c52e8db7d429969b8517c147042e14d2a7678fc92b4",
                "md5": "119c103ee5b2a10ab31f2adcb20299c0",
                "sha256": "097f0d0831fda93d2c616242fa148b9155a089c5bb02bba3675c34b7c5187369"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "119c103ee5b2a10ab31f2adcb20299c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2124240,
            "upload_time": "2025-11-04T14:28:02",
            "upload_time_iso_8601": "2025-11-04T14:28:02.404182Z",
            "url": "https://files.pythonhosted.org/packages/22/ef/dd0ea99193200ef21c52e8db7d429969b8517c147042e14d2a7678fc92b4/topk_sdk-0.7.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d010c537c3bc0045f2730371c9a55ea054f6aedb74b54b8c60977f12c549aed",
                "md5": "c7773e723f406012d7eb871a985426e9",
                "sha256": "3593a8a70e57d45438f252b54921a38b14f75c986df8d6cb60806e023deaf090"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7773e723f406012d7eb871a985426e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2557694,
            "upload_time": "2025-11-04T14:27:55",
            "upload_time_iso_8601": "2025-11-04T14:27:55.160904Z",
            "url": "https://files.pythonhosted.org/packages/5d/01/0c537c3bc0045f2730371c9a55ea054f6aedb74b54b8c60977f12c549aed/topk_sdk-0.7.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea6b494103aab1a50cbda736e249e422a26818c745324f2a1d1c56ff6080f98e",
                "md5": "36ab3c4e637fd9a7d0848063225eec54",
                "sha256": "de176b1ff164a30679f4d48d86fede1f1a9438e91649f11af98bf6315c001b3d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "36ab3c4e637fd9a7d0848063225eec54",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 108468,
            "upload_time": "2025-11-04T14:27:48",
            "upload_time_iso_8601": "2025-11-04T14:27:48.127441Z",
            "url": "https://files.pythonhosted.org/packages/ea/6b/494103aab1a50cbda736e249e422a26818c745324f2a1d1c56ff6080f98e/topk_sdk-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-04 14:27:48",
    "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: 2.53931s