topk-sdk


Nametopk-sdk JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://topk.io
SummaryPython SDK for topk.io
upload_time2025-09-10 16:44:59
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/6d/0d/9bb69bfbff1957efa679dff0ce166be6ccb72712ee7d8f9102318ed09bbe/topk_sdk-0.6.0.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.6.0",
    "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": "87e7a109e7abc3ee71bf7000d4a91c37ddf05a166c47ea489175ba35085274b7",
                "md5": "be6fc0d5c23478cf45e3bd5c879405fc",
                "sha256": "c8ce20c8b6206a2bc5677a3945dcd5a2029da5adc42fe4b1ba9604b102b5913a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be6fc0d5c23478cf45e3bd5c879405fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2823307,
            "upload_time": "2025-09-10T16:44:15",
            "upload_time_iso_8601": "2025-09-10T16:44:15.582360Z",
            "url": "https://files.pythonhosted.org/packages/87/e7/a109e7abc3ee71bf7000d4a91c37ddf05a166c47ea489175ba35085274b7/topk_sdk-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c9562cf15ce105417229a1a5a325849e8282649def8d8eb33cc31287f1f1c4c",
                "md5": "4f295f12ceaaa7219fb30bc6d8aeffb7",
                "sha256": "c2257cf7ae4c603c052e730c249a201460f7da9e79e1e71f95c33d0f85b05a79"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4f295f12ceaaa7219fb30bc6d8aeffb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2718996,
            "upload_time": "2025-09-10T16:44:06",
            "upload_time_iso_8601": "2025-09-10T16:44:06.383077Z",
            "url": "https://files.pythonhosted.org/packages/8c/95/62cf15ce105417229a1a5a325849e8282649def8d8eb33cc31287f1f1c4c/topk_sdk-0.6.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8a42ff9f972b1bf163cf9091e6b5df82a1b6dcb8ce9f971593006a718c689f4",
                "md5": "7830a894eaf04ab7aaf81c46216785a3",
                "sha256": "eb392e250f6bf11fa638a4f3fb1bab7f5fe62c81b12515cd8741bbd8346eff0a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7830a894eaf04ab7aaf81c46216785a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3007794,
            "upload_time": "2025-09-10T16:43:13",
            "upload_time_iso_8601": "2025-09-10T16:43:13.621698Z",
            "url": "https://files.pythonhosted.org/packages/a8/a4/2ff9f972b1bf163cf9091e6b5df82a1b6dcb8ce9f971593006a718c689f4/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "196c0af3c03a568344cc59101dc236a2f06c3e3a7e7238a59e7a5d0787c83ce0",
                "md5": "1d2d32ce7db06d3aa18691ab68fa4051",
                "sha256": "0d6303dac2cddd5b241076ad678eb9b8bf9d0bd3c0430cd378e7e184327374d6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1d2d32ce7db06d3aa18691ab68fa4051",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2798391,
            "upload_time": "2025-09-10T16:43:23",
            "upload_time_iso_8601": "2025-09-10T16:43:23.610460Z",
            "url": "https://files.pythonhosted.org/packages/19/6c/0af3c03a568344cc59101dc236a2f06c3e3a7e7238a59e7a5d0787c83ce0/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fe50f133b5771ca17ea3fbf1a45873fff908c373a8d9bf12193bbfd1394eba6",
                "md5": "aa3e039f4faec711db8e72efd80e25a7",
                "sha256": "4a77b92227725a66f0ec3d58665488ba892bf41e2e4f3c1d8f0dffec505af310"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aa3e039f4faec711db8e72efd80e25a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3065284,
            "upload_time": "2025-09-10T16:43:49",
            "upload_time_iso_8601": "2025-09-10T16:43:49.455795Z",
            "url": "https://files.pythonhosted.org/packages/5f/e5/0f133b5771ca17ea3fbf1a45873fff908c373a8d9bf12193bbfd1394eba6/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e8ec0efa5753461702ed7763eebcf220833443e80ab9c857e260d433fb54367",
                "md5": "f91ca549cbf2e0d0b7efe2b8dfd2ae57",
                "sha256": "0ff02881a9d0ad24b934da1307b3e412ae1d51ef25845a0e3d2cea42d8b139aa"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f91ca549cbf2e0d0b7efe2b8dfd2ae57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3614448,
            "upload_time": "2025-09-10T16:43:31",
            "upload_time_iso_8601": "2025-09-10T16:43:31.735412Z",
            "url": "https://files.pythonhosted.org/packages/4e/8e/c0efa5753461702ed7763eebcf220833443e80ab9c857e260d433fb54367/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cedc1a1c1100e3f4dd8fb34909f76a962422cfe711aa45596592a9be4d4e7a8f",
                "md5": "bde2651176fb590db0b4e611d992f554",
                "sha256": "6d2844254414305604158650ae52570c92bacf52a1f348dd162c0a111a7f9bb1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bde2651176fb590db0b4e611d992f554",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2895826,
            "upload_time": "2025-09-10T16:43:40",
            "upload_time_iso_8601": "2025-09-10T16:43:40.456229Z",
            "url": "https://files.pythonhosted.org/packages/ce/dc/1a1c1100e3f4dd8fb34909f76a962422cfe711aa45596592a9be4d4e7a8f/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9b4c03031c5cc5a572fbf569337f9e87e69385e5ef59e900a213d75f6d66df5",
                "md5": "9e587731cb7c99cfae6a291294bdfb2b",
                "sha256": "800fa0ccbb6c28071f64f193a881045ac6ec213db12cae14b5a68c2180b3ba88"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e587731cb7c99cfae6a291294bdfb2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3048655,
            "upload_time": "2025-09-10T16:43:58",
            "upload_time_iso_8601": "2025-09-10T16:43:58.264199Z",
            "url": "https://files.pythonhosted.org/packages/a9/b4/c03031c5cc5a572fbf569337f9e87e69385e5ef59e900a213d75f6d66df5/topk_sdk-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69eacd27c9d3bedaae10bca5ad5d01a40b0dd89d589ca371143a65df6a1a2b8e",
                "md5": "d035984214a8f8555f357e10369c29c3",
                "sha256": "af85bb4e7f88fce79a2f757dc24dd81a08f1d7920e05e21a1696eb34ae8518b4"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d035984214a8f8555f357e10369c29c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3169232,
            "upload_time": "2025-09-10T16:44:24",
            "upload_time_iso_8601": "2025-09-10T16:44:24.099720Z",
            "url": "https://files.pythonhosted.org/packages/69/ea/cd27c9d3bedaae10bca5ad5d01a40b0dd89d589ca371143a65df6a1a2b8e/topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81ae47575a0a44bc760f51afcf5ff12528d76d66f5fcf70f4dbe7037c270d653",
                "md5": "8cd7c1f8644142f3dba9d1054b51d21f",
                "sha256": "98693ca87697a6a0f24b499de92c29e899b90e78fe04c55fd0b1ea8a96d23428"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8cd7c1f8644142f3dba9d1054b51d21f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3022810,
            "upload_time": "2025-09-10T16:44:32",
            "upload_time_iso_8601": "2025-09-10T16:44:32.631366Z",
            "url": "https://files.pythonhosted.org/packages/81/ae/47575a0a44bc760f51afcf5ff12528d76d66f5fcf70f4dbe7037c270d653/topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7873f44d7e8660f5c30c70c3b9bac446433c9c25870f95b3da5dd6a37ee75fa8",
                "md5": "9efcde1c205e4be8797e13408772f0c6",
                "sha256": "8c9ded6b86132f19ef5df95d7e52946366904214d393d2a11b7c27afd76bccd2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9efcde1c205e4be8797e13408772f0c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3085712,
            "upload_time": "2025-09-10T16:44:41",
            "upload_time_iso_8601": "2025-09-10T16:44:41.394619Z",
            "url": "https://files.pythonhosted.org/packages/78/73/f44d7e8660f5c30c70c3b9bac446433c9c25870f95b3da5dd6a37ee75fa8/topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1105dd775bf9ab9e6cf8f205ec62dd4ab04941d425c3c11c5ed892b5eb5a0945",
                "md5": "4c6e13cba519ce4004d99b601b086985",
                "sha256": "837be01be6f27d6cb7dcb9ea2c091987c6b9d3ea245b1b53095a846800c34168"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c6e13cba519ce4004d99b601b086985",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3215697,
            "upload_time": "2025-09-10T16:44:51",
            "upload_time_iso_8601": "2025-09-10T16:44:51.095746Z",
            "url": "https://files.pythonhosted.org/packages/11/05/dd775bf9ab9e6cf8f205ec62dd4ab04941d425c3c11c5ed892b5eb5a0945/topk_sdk-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64e14ec64499762a56bfd186c6e14edd25ee0308a852a2317d129f567c4eb52a",
                "md5": "8bcb65e629b7746f6c2dffb43c6ca29d",
                "sha256": "af5acb311e66a9bd57c3183c5f05c1a45e3f200d5c00db96d14da0e2550f8af8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8bcb65e629b7746f6c2dffb43c6ca29d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2044428,
            "upload_time": "2025-09-10T16:45:10",
            "upload_time_iso_8601": "2025-09-10T16:45:10.451877Z",
            "url": "https://files.pythonhosted.org/packages/64/e1/4ec64499762a56bfd186c6e14edd25ee0308a852a2317d129f567c4eb52a/topk_sdk-0.6.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21c685d0d2d6f3a8fb9e9cf18506b44f51d390978803a902701d8f0ea964f019",
                "md5": "c550ee1fdcd9d4712a7f2b14dc2f16a0",
                "sha256": "6c20405f1e0620a45c679b103843f5be0d4b66f0c3f94086ddd3684ec4b1b909"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c550ee1fdcd9d4712a7f2b14dc2f16a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2445468,
            "upload_time": "2025-09-10T16:45:01",
            "upload_time_iso_8601": "2025-09-10T16:45:01.608282Z",
            "url": "https://files.pythonhosted.org/packages/21/c6/85d0d2d6f3a8fb9e9cf18506b44f51d390978803a902701d8f0ea964f019/topk_sdk-0.6.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1af5ebfc533f9e07d7ead1c16445f8cbec9e0f14852c03d97fc7943fd4765bf",
                "md5": "71b1982594947aed7672313d092a366b",
                "sha256": "e82284fcf5da0e2e447a5ce2d8bd44248971c132508e59420d8124b453bd1389"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71b1982594947aed7672313d092a366b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2822499,
            "upload_time": "2025-09-10T16:44:17",
            "upload_time_iso_8601": "2025-09-10T16:44:17.403416Z",
            "url": "https://files.pythonhosted.org/packages/e1/af/5ebfc533f9e07d7ead1c16445f8cbec9e0f14852c03d97fc7943fd4765bf/topk_sdk-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "340f62d47f176f605fc5295665e44452da46ab5881807088214cb4e48eaf4420",
                "md5": "670be021b551d8fb21c6f39d949b87ee",
                "sha256": "096044b9e6c3841a0b796fe54cc6454da22e280dbacb78794ec2f3684a1e0c16"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "670be021b551d8fb21c6f39d949b87ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2718506,
            "upload_time": "2025-09-10T16:44:08",
            "upload_time_iso_8601": "2025-09-10T16:44:08.402876Z",
            "url": "https://files.pythonhosted.org/packages/34/0f/62d47f176f605fc5295665e44452da46ab5881807088214cb4e48eaf4420/topk_sdk-0.6.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a0f12ad6cc3f910141c2353f19b363a197f9d7c61d1183ff414ce68ae18a88a",
                "md5": "a64142a21df1229dc228e793d6d0055c",
                "sha256": "bd986695549ad3d1ca4869f6fd9455ecfea32b5b05cbb565db3c9702c7987b32"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a64142a21df1229dc228e793d6d0055c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3007792,
            "upload_time": "2025-09-10T16:43:16",
            "upload_time_iso_8601": "2025-09-10T16:43:16.852883Z",
            "url": "https://files.pythonhosted.org/packages/9a/0f/12ad6cc3f910141c2353f19b363a197f9d7c61d1183ff414ce68ae18a88a/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "967c5662da0fede07075146fd5d67601f4ed35d14a3ee2a6c73dad533375f7e5",
                "md5": "74a716f8f6276399b1a6cb36cd67eeac",
                "sha256": "997b95421b04787cf2ed207b0abdb4c666c96154472785aafa2511c3963eb543"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "74a716f8f6276399b1a6cb36cd67eeac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2798068,
            "upload_time": "2025-09-10T16:43:25",
            "upload_time_iso_8601": "2025-09-10T16:43:25.353668Z",
            "url": "https://files.pythonhosted.org/packages/96/7c/5662da0fede07075146fd5d67601f4ed35d14a3ee2a6c73dad533375f7e5/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05ec50efa67e327e11270dfa5ad809b305bfb7da09e976502ba9d17bae4e2c29",
                "md5": "76918cb7c6f1cbae3f6d20c273ff64b4",
                "sha256": "5d15ab4db2644276e8b48a5645e2679c927654a80139c0ed3d003f1368f2a460"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "76918cb7c6f1cbae3f6d20c273ff64b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3065668,
            "upload_time": "2025-09-10T16:43:51",
            "upload_time_iso_8601": "2025-09-10T16:43:51.252023Z",
            "url": "https://files.pythonhosted.org/packages/05/ec/50efa67e327e11270dfa5ad809b305bfb7da09e976502ba9d17bae4e2c29/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce35a0163b20e9c93728e4fd1e5eee67ade4bb6340f3e56b5af7d44823b4f642",
                "md5": "5cb9e3efb953a9fd6bb58690ab7a885a",
                "sha256": "f331fd2f95ffc4f8a3adcb0296102be33d0b9523cc2ab357ac03806cc02cecb2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5cb9e3efb953a9fd6bb58690ab7a885a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3613952,
            "upload_time": "2025-09-10T16:43:33",
            "upload_time_iso_8601": "2025-09-10T16:43:33.301016Z",
            "url": "https://files.pythonhosted.org/packages/ce/35/a0163b20e9c93728e4fd1e5eee67ade4bb6340f3e56b5af7d44823b4f642/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c64e9f76c9c4b69b20e3ce311a7d5e2dc830bd71ce10eb7875b87ba5cb3b085",
                "md5": "43fa2443435e0b34de91ec3ba10c041a",
                "sha256": "748b7cfa3416e10a6dcd4015e661e793f87ee6e6fbafa5c9752d29f117a97a93"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "43fa2443435e0b34de91ec3ba10c041a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2893087,
            "upload_time": "2025-09-10T16:43:42",
            "upload_time_iso_8601": "2025-09-10T16:43:42.458363Z",
            "url": "https://files.pythonhosted.org/packages/2c/64/e9f76c9c4b69b20e3ce311a7d5e2dc830bd71ce10eb7875b87ba5cb3b085/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28c859c70d244f3300cd88adc84dc64c006a8ea44b1cd66c3addca736f467a73",
                "md5": "400116ace9d09931b1cf86b57854cdf4",
                "sha256": "0b6e5b46ba8819c30f287cc8f58d781c420f022bf28cba18c8ac3229c128cef6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "400116ace9d09931b1cf86b57854cdf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3048767,
            "upload_time": "2025-09-10T16:43:59",
            "upload_time_iso_8601": "2025-09-10T16:43:59.859893Z",
            "url": "https://files.pythonhosted.org/packages/28/c8/59c70d244f3300cd88adc84dc64c006a8ea44b1cd66c3addca736f467a73/topk_sdk-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1012eeb8fd3b4355bdf4ecbd9f67c35675b1b811184eb0ab51aa61f8e72e0309",
                "md5": "84583b2e9734c9c3c07ea694477d8d07",
                "sha256": "635b5db7336c91f77627bbd8ff3d34e3933cfc401abd29fe34f834586e255f4c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "84583b2e9734c9c3c07ea694477d8d07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3169854,
            "upload_time": "2025-09-10T16:44:25",
            "upload_time_iso_8601": "2025-09-10T16:44:25.875266Z",
            "url": "https://files.pythonhosted.org/packages/10/12/eeb8fd3b4355bdf4ecbd9f67c35675b1b811184eb0ab51aa61f8e72e0309/topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f92abf6d8656d4782b3730b5a1d1fd091de5966f08a708dea0e16e5a1c12276e",
                "md5": "0c6bde4e9fd0f3ecba1732287645b682",
                "sha256": "f1f6a10446bf7804a97d44c15e8eb3674640f5dc9452c4ef2812566af3478f4a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c6bde4e9fd0f3ecba1732287645b682",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3022476,
            "upload_time": "2025-09-10T16:44:34",
            "upload_time_iso_8601": "2025-09-10T16:44:34.222195Z",
            "url": "https://files.pythonhosted.org/packages/f9/2a/bf6d8656d4782b3730b5a1d1fd091de5966f08a708dea0e16e5a1c12276e/topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "defad99e0b3f9e9bcf1af34564a89d2f6e9ab24a89a4a346ed2c3126a3a45523",
                "md5": "bae9877d298631562a1f2320076b6eb0",
                "sha256": "5e3b316d89ffc0dff8b248bc6ca6630844db3686e1984ddb3f063fc5f5b854a9"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bae9877d298631562a1f2320076b6eb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3085460,
            "upload_time": "2025-09-10T16:44:43",
            "upload_time_iso_8601": "2025-09-10T16:44:43.607915Z",
            "url": "https://files.pythonhosted.org/packages/de/fa/d99e0b3f9e9bcf1af34564a89d2f6e9ab24a89a4a346ed2c3126a3a45523/topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "258cfd86d9505db7d8cdf26f00b48fd6e0fbba3acef995fecc500247e547df77",
                "md5": "63593e5c8582ed9ed308f80c12bf5aba",
                "sha256": "d1fd50e7eb5c1d5c6f3d8ca7242cfaf4e83c59f20811daa43c5173dfc5bfe3bc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63593e5c8582ed9ed308f80c12bf5aba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3215912,
            "upload_time": "2025-09-10T16:44:52",
            "upload_time_iso_8601": "2025-09-10T16:44:52.677742Z",
            "url": "https://files.pythonhosted.org/packages/25/8c/fd86d9505db7d8cdf26f00b48fd6e0fbba3acef995fecc500247e547df77/topk_sdk-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "848e06874dfdab9a9a2dcaa609af9dd4682834e7db918ac3bd3711b826849f92",
                "md5": "1c77b24ad459cc602402fae453191e9d",
                "sha256": "b62d9566a15d57d429fd725574e7877a9054462cd281a9d1a08a8aed7e6d88b5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1c77b24ad459cc602402fae453191e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2044233,
            "upload_time": "2025-09-10T16:45:13",
            "upload_time_iso_8601": "2025-09-10T16:45:13.354017Z",
            "url": "https://files.pythonhosted.org/packages/84/8e/06874dfdab9a9a2dcaa609af9dd4682834e7db918ac3bd3711b826849f92/topk_sdk-0.6.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48f875a2a58285108bdda2ecaf11625b255692563cd5061dbcae1c6c99f852f6",
                "md5": "a9206251a18f642fb772db1b6ae64aea",
                "sha256": "6ffc06e921a2490f53b5fb69e2890c379f12ce13d4adcc0d4ab4eff33cb037ca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9206251a18f642fb772db1b6ae64aea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2446276,
            "upload_time": "2025-09-10T16:45:03",
            "upload_time_iso_8601": "2025-09-10T16:45:03.453786Z",
            "url": "https://files.pythonhosted.org/packages/48/f8/75a2a58285108bdda2ecaf11625b255692563cd5061dbcae1c6c99f852f6/topk_sdk-0.6.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa90c473633d0c172b44d94050750d6ce3fd233c8dc9fde9514952874ff85fcc",
                "md5": "cd84711d2ab2f479ef7278c894b289c2",
                "sha256": "847c867654d61f4c8a936fa1b5eaee4ea0e2f73645d7458369b07998d22685e5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd84711d2ab2f479ef7278c894b289c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2805456,
            "upload_time": "2025-09-10T16:44:18",
            "upload_time_iso_8601": "2025-09-10T16:44:18.954707Z",
            "url": "https://files.pythonhosted.org/packages/aa/90/c473633d0c172b44d94050750d6ce3fd233c8dc9fde9514952874ff85fcc/topk_sdk-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cbfe05322b0152b541a3047d087ab0b522dc6928a96b0cac744cd360bea984d",
                "md5": "2333692027016baf28bf6800d130bc85",
                "sha256": "d4157cb7bcb763d95ebc79d4ff29003cca5c18c95f06c3233eba4f44283a7ac7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2333692027016baf28bf6800d130bc85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2708211,
            "upload_time": "2025-09-10T16:44:10",
            "upload_time_iso_8601": "2025-09-10T16:44:10.266064Z",
            "url": "https://files.pythonhosted.org/packages/4c/bf/e05322b0152b541a3047d087ab0b522dc6928a96b0cac744cd360bea984d/topk_sdk-0.6.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03c9d1ae23f6c6d994de4d773d3edc8ad39cc00a04f5cc807926f2fc9bec4065",
                "md5": "2afd41a4f6c55b8bc8b81f749532f21e",
                "sha256": "c497999c8c00008f6418cb50f656b01ed4533549cc57f0dc02386543b4c22615"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2afd41a4f6c55b8bc8b81f749532f21e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3002108,
            "upload_time": "2025-09-10T16:43:18",
            "upload_time_iso_8601": "2025-09-10T16:43:18.659225Z",
            "url": "https://files.pythonhosted.org/packages/03/c9/d1ae23f6c6d994de4d773d3edc8ad39cc00a04f5cc807926f2fc9bec4065/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "add65df829f41aca63a206f3d6ffc5f3c7e9183a1b211c796bce5b59a6d3ded6",
                "md5": "18478faedc1f62935cbbdc092d6fa133",
                "sha256": "e26845bf1c3b31dc5346f63676040c51ca4550b22437c02fe24ff16a9eb2aa5c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "18478faedc1f62935cbbdc092d6fa133",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2805801,
            "upload_time": "2025-09-10T16:43:26",
            "upload_time_iso_8601": "2025-09-10T16:43:26.906905Z",
            "url": "https://files.pythonhosted.org/packages/ad/d6/5df829f41aca63a206f3d6ffc5f3c7e9183a1b211c796bce5b59a6d3ded6/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5997eb787d4fe46db4eef76dfd66be0834d114c7f1145386b05d2758832778e",
                "md5": "79ac7cda11927617a5c016884719cf0f",
                "sha256": "84197a9e59741eaf121e00c0ca2eebf338d357651b9dbaf72e588a75f4b65265"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "79ac7cda11927617a5c016884719cf0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3073111,
            "upload_time": "2025-09-10T16:43:53",
            "upload_time_iso_8601": "2025-09-10T16:43:53.354790Z",
            "url": "https://files.pythonhosted.org/packages/e5/99/7eb787d4fe46db4eef76dfd66be0834d114c7f1145386b05d2758832778e/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcad494d4a7b51f4e8eec509761a37bdd14b3d018ac12c93e11e365967cd0f8a",
                "md5": "c870dd5b0646d7cf83200967cce949f9",
                "sha256": "2f2f538afcdb405b9be1fb15a266a5de090a2b1400100545e854e327d540a40d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c870dd5b0646d7cf83200967cce949f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3624733,
            "upload_time": "2025-09-10T16:43:35",
            "upload_time_iso_8601": "2025-09-10T16:43:35.161265Z",
            "url": "https://files.pythonhosted.org/packages/bc/ad/494d4a7b51f4e8eec509761a37bdd14b3d018ac12c93e11e365967cd0f8a/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d67b9e6fb4ee3f1a64c93dfa2fa8ecd165db5036db6cfd7b63e35ffd7b38313",
                "md5": "de6efe822ddffea1323acec5987b3658",
                "sha256": "8ee8ce0d79eb4ba0f35407b8d88abb1ca5077839075dca7677ebb4c754aceed1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "de6efe822ddffea1323acec5987b3658",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2897431,
            "upload_time": "2025-09-10T16:43:44",
            "upload_time_iso_8601": "2025-09-10T16:43:44.477835Z",
            "url": "https://files.pythonhosted.org/packages/2d/67/b9e6fb4ee3f1a64c93dfa2fa8ecd165db5036db6cfd7b63e35ffd7b38313/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "734e1a251290363f6f60173de5cf19e8f89b2fb2d44cde0618d04aa8898e590f",
                "md5": "f19d68ff6d6432bb7ddb60e998add563",
                "sha256": "ec3c22617545ba0fdda5411406d5d25dae21869e6dfe5d7e63aa3ab5abe714b4"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f19d68ff6d6432bb7ddb60e998add563",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3047899,
            "upload_time": "2025-09-10T16:44:01",
            "upload_time_iso_8601": "2025-09-10T16:44:01.370283Z",
            "url": "https://files.pythonhosted.org/packages/73/4e/1a251290363f6f60173de5cf19e8f89b2fb2d44cde0618d04aa8898e590f/topk_sdk-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b9122d5920af9b85b96297429734f4a250229c31fb2c4d6b71e8e4b129a6ebe",
                "md5": "efaea2d78edb10f37508cb98c04e6a23",
                "sha256": "f2634f29c9972dd439fd37816fc5399749d07eac6ec5144ad06641eaef6686bc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "efaea2d78edb10f37508cb98c04e6a23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3167025,
            "upload_time": "2025-09-10T16:44:27",
            "upload_time_iso_8601": "2025-09-10T16:44:27.519387Z",
            "url": "https://files.pythonhosted.org/packages/5b/91/22d5920af9b85b96297429734f4a250229c31fb2c4d6b71e8e4b129a6ebe/topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ce9adb4e6083d113a222d6429411808ef6f9e77b623d3d58caafb466945f65b",
                "md5": "5be759d7a00887ad32790406483061b0",
                "sha256": "8d21f9faa1499376b990c84472983c38bc50906264ee5fd8b17cb5d8bc4ad2e0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5be759d7a00887ad32790406483061b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3031403,
            "upload_time": "2025-09-10T16:44:35",
            "upload_time_iso_8601": "2025-09-10T16:44:35.799693Z",
            "url": "https://files.pythonhosted.org/packages/6c/e9/adb4e6083d113a222d6429411808ef6f9e77b623d3d58caafb466945f65b/topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfdb50b78abf6b777aaf5e29f9ee6aab3f22a478d4065163f10cdecb49f8588c",
                "md5": "f2cea7709f6a8676f541e12e44e05e4e",
                "sha256": "1375617cee394ecff94bc2a77cdffa7891f25e3d55ad5b441c0fcbab767b0d20"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f2cea7709f6a8676f541e12e44e05e4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3091106,
            "upload_time": "2025-09-10T16:44:45",
            "upload_time_iso_8601": "2025-09-10T16:44:45.820521Z",
            "url": "https://files.pythonhosted.org/packages/df/db/50b78abf6b777aaf5e29f9ee6aab3f22a478d4065163f10cdecb49f8588c/topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7cf8c1c0e1787acda1682afbb5ed1a44a9461967afab9d03107b2bac82942e5",
                "md5": "b7b1c53c5930902e20b3832dfe78dfc4",
                "sha256": "48448c9165537011e54d22c49d94f15a1631fb6166eacac7840b627197188cf1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7b1c53c5930902e20b3832dfe78dfc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3214469,
            "upload_time": "2025-09-10T16:44:54",
            "upload_time_iso_8601": "2025-09-10T16:44:54.408601Z",
            "url": "https://files.pythonhosted.org/packages/e7/cf/8c1c0e1787acda1682afbb5ed1a44a9461967afab9d03107b2bac82942e5/topk_sdk-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c93ffcc0783cc209807b136799e2d35e6544d83b9e9793c7abbf3dd7c83b5067",
                "md5": "7b37e9b23fe9949b56bf5811a9494117",
                "sha256": "5e3d500e739876fda9010abbd1e0269a942c7edc14d79c107e0528cdc8bb4b4c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "7b37e9b23fe9949b56bf5811a9494117",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2051098,
            "upload_time": "2025-09-10T16:45:17",
            "upload_time_iso_8601": "2025-09-10T16:45:17.352490Z",
            "url": "https://files.pythonhosted.org/packages/c9/3f/fcc0783cc209807b136799e2d35e6544d83b9e9793c7abbf3dd7c83b5067/topk_sdk-0.6.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8eb82478931f779d261309f4a7f37c0b1d3dfbcdf2aa71f9b5901f48ec44ede8",
                "md5": "f2fe7fd71c70aa046d4948857b46d9cf",
                "sha256": "d3e8e50718066832dc7595694f488da4bfb09eb977e91fa501d979db2d326dbc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2fe7fd71c70aa046d4948857b46d9cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2448682,
            "upload_time": "2025-09-10T16:45:05",
            "upload_time_iso_8601": "2025-09-10T16:45:05.282516Z",
            "url": "https://files.pythonhosted.org/packages/8e/b8/2478931f779d261309f4a7f37c0b1d3dfbcdf2aa71f9b5901f48ec44ede8/topk_sdk-0.6.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e83acb808ea1bab305b5c19117bea14d7bb18d4e95f0b6c85cc2f4d896840ac8",
                "md5": "c2d5a3b67a8b981769685b98a4c6297f",
                "sha256": "b26d94fd504d8eaaf684a07f96add73633a4947550ad0c7d529bc90271eb4604"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2d5a3b67a8b981769685b98a4c6297f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2805881,
            "upload_time": "2025-09-10T16:44:20",
            "upload_time_iso_8601": "2025-09-10T16:44:20.535319Z",
            "url": "https://files.pythonhosted.org/packages/e8/3a/cb808ea1bab305b5c19117bea14d7bb18d4e95f0b6c85cc2f4d896840ac8/topk_sdk-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aae442361f0f22200097850126e94527e72a84d72afed12bf70d8c217f709249",
                "md5": "cc44521d9b51dd8aed6d74b19d5bd7bb",
                "sha256": "697789003defd3351af0b2f8d3ab519774a5c2c43278f4fe8b3cb7ed8f3b5ea8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc44521d9b51dd8aed6d74b19d5bd7bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2708613,
            "upload_time": "2025-09-10T16:44:11",
            "upload_time_iso_8601": "2025-09-10T16:44:11.992417Z",
            "url": "https://files.pythonhosted.org/packages/aa/e4/42361f0f22200097850126e94527e72a84d72afed12bf70d8c217f709249/topk_sdk-0.6.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52e29783dd8040640395da3c6b392b9fdd546c997ab9485959deebf2f239c367",
                "md5": "ec5399bd276504f46614c31ed2519c7c",
                "sha256": "dc5465b57ea63f3642be1e92099d26093b0f58fe5272a0a9463ef18daf8b181a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec5399bd276504f46614c31ed2519c7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3001904,
            "upload_time": "2025-09-10T16:43:20",
            "upload_time_iso_8601": "2025-09-10T16:43:20.200011Z",
            "url": "https://files.pythonhosted.org/packages/52/e2/9783dd8040640395da3c6b392b9fdd546c997ab9485959deebf2f239c367/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41c53caef8277d23c21e23956431714d4b8e0d1f58e401fb6a5763bbe3e94e1f",
                "md5": "9722d847d9fd9e66f5b1ab9ffe182d21",
                "sha256": "6d8e5534fd15533dbb332e54db5c836201466457310e1755f3756eee36c0c8fb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9722d847d9fd9e66f5b1ab9ffe182d21",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2805598,
            "upload_time": "2025-09-10T16:43:28",
            "upload_time_iso_8601": "2025-09-10T16:43:28.621293Z",
            "url": "https://files.pythonhosted.org/packages/41/c5/3caef8277d23c21e23956431714d4b8e0d1f58e401fb6a5763bbe3e94e1f/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d0e5422e87698a538e128c22831bbd36bee6da214ff6c1366f2a22d7796e222",
                "md5": "81f634e670dcf24a11876e58dffe55a5",
                "sha256": "d7728f3ff8c769ff9dc965ffc1059d96c2b5d3100987b16bc998d47d3eadd8e8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "81f634e670dcf24a11876e58dffe55a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3071352,
            "upload_time": "2025-09-10T16:43:54",
            "upload_time_iso_8601": "2025-09-10T16:43:54.901785Z",
            "url": "https://files.pythonhosted.org/packages/4d/0e/5422e87698a538e128c22831bbd36bee6da214ff6c1366f2a22d7796e222/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab1193047cd38183eaadd324c0be612d2e5d75b7d2b96b3c41b5c823a6216940",
                "md5": "928d5cf94580a519775adbe03906f64c",
                "sha256": "46292129bb16e218e862fc26d24d86f5f9f2329c240e55d15377902781373e1f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "928d5cf94580a519775adbe03906f64c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3624654,
            "upload_time": "2025-09-10T16:43:37",
            "upload_time_iso_8601": "2025-09-10T16:43:37.089595Z",
            "url": "https://files.pythonhosted.org/packages/ab/11/93047cd38183eaadd324c0be612d2e5d75b7d2b96b3c41b5c823a6216940/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ac61ad9741c671f0e23dacecee06c81a08ba386362a23728b572292898d1708",
                "md5": "35cd02b2fa13f2050866c6a1017de233",
                "sha256": "9c4f8402e09f0d8aa4a5124526d20d0a0564ede467b76c34e75119d8a34a233f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "35cd02b2fa13f2050866c6a1017de233",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2896896,
            "upload_time": "2025-09-10T16:43:46",
            "upload_time_iso_8601": "2025-09-10T16:43:46.116961Z",
            "url": "https://files.pythonhosted.org/packages/2a/c6/1ad9741c671f0e23dacecee06c81a08ba386362a23728b572292898d1708/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0999b21c85a68ba222f44386471de59325087a695e225c7b8044b43e44e8b5fe",
                "md5": "6c8eb18fc6c64011b1b27e3dc0d98bf9",
                "sha256": "d81d529e814dead902c770a71ca9f19ddb5b0e856f50a6126ea85f5cb80784a6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c8eb18fc6c64011b1b27e3dc0d98bf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3047746,
            "upload_time": "2025-09-10T16:44:02",
            "upload_time_iso_8601": "2025-09-10T16:44:02.904705Z",
            "url": "https://files.pythonhosted.org/packages/09/99/b21c85a68ba222f44386471de59325087a695e225c7b8044b43e44e8b5fe/topk_sdk-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17a8cc67fde50fd71efc2228c0fe8a5795da5c96b871b1db016c7844f76744d7",
                "md5": "31310e7f03d324b3ad5397c222d00226",
                "sha256": "6288aa0d5bc08f49e4f6d59489f268f4f83a03b1f26f84f7b5a5d9c0664e1b8a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31310e7f03d324b3ad5397c222d00226",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3166664,
            "upload_time": "2025-09-10T16:44:29",
            "upload_time_iso_8601": "2025-09-10T16:44:29.146404Z",
            "url": "https://files.pythonhosted.org/packages/17/a8/cc67fde50fd71efc2228c0fe8a5795da5c96b871b1db016c7844f76744d7/topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e99d9c50a420b5eb4fadc2f5973150d82af15e969d463697a037b9d9ef4d4fd",
                "md5": "911bae87c5e79ab95c9f3dbf48084fe8",
                "sha256": "48c01d0e926361553a66eeaaedbe36221428c3c92c18b3345ea34d5ede35e010"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "911bae87c5e79ab95c9f3dbf48084fe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3031419,
            "upload_time": "2025-09-10T16:44:37",
            "upload_time_iso_8601": "2025-09-10T16:44:37.640203Z",
            "url": "https://files.pythonhosted.org/packages/6e/99/d9c50a420b5eb4fadc2f5973150d82af15e969d463697a037b9d9ef4d4fd/topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "724bcfd8ea429b3ce2b5d9cd1140ab9ab2c229bbfd5726fd7bd9f5476b5521c5",
                "md5": "7b101bbbc54e1b2581d3b3541ccf7e97",
                "sha256": "18b9277e8cdca94ef22f0c4bf660b116c162b93ff203a067dc8ddef0ebe9f252"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7b101bbbc54e1b2581d3b3541ccf7e97",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3089756,
            "upload_time": "2025-09-10T16:44:47",
            "upload_time_iso_8601": "2025-09-10T16:44:47.607036Z",
            "url": "https://files.pythonhosted.org/packages/72/4b/cfd8ea429b3ce2b5d9cd1140ab9ab2c229bbfd5726fd7bd9f5476b5521c5/topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2030c3c2b8ac1e55fea35ef4a84594231b814665b212c136c7b11771c54f1a7f",
                "md5": "c0e034cfafcd2233001ad517391e75dc",
                "sha256": "dfe48e1a72f083c004d78b4e47b8bfff9c77cc128d025b608f80f6b9f854dfb1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0e034cfafcd2233001ad517391e75dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3213993,
            "upload_time": "2025-09-10T16:44:56",
            "upload_time_iso_8601": "2025-09-10T16:44:56.047935Z",
            "url": "https://files.pythonhosted.org/packages/20/30/c3c2b8ac1e55fea35ef4a84594231b814665b212c136c7b11771c54f1a7f/topk_sdk-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "486392cc881861b282635d013ab905985fae4ac8947c706b1df0a17ab275fd7b",
                "md5": "a971de0ac5ef54a25d639fb66e6e4fd4",
                "sha256": "b1476cc524964b703fdf0fddf9e4b3fe284cba58fa131e350393479090171a87"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a971de0ac5ef54a25d639fb66e6e4fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2051141,
            "upload_time": "2025-09-10T16:45:19",
            "upload_time_iso_8601": "2025-09-10T16:45:19.026364Z",
            "url": "https://files.pythonhosted.org/packages/48/63/92cc881861b282635d013ab905985fae4ac8947c706b1df0a17ab275fd7b/topk_sdk-0.6.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "004da83654e3da7d43490acad4443ac5a88732d97999f65494e3d6d911c46af4",
                "md5": "d9b7cde7252bf4e4b0b394efdd84a84e",
                "sha256": "7f7c2bbcd29eadfbfac7a3ccf485b48f0d4d5c75e93c0eb77b3d4cbe76514d1b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9b7cde7252bf4e4b0b394efdd84a84e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2448206,
            "upload_time": "2025-09-10T16:45:06",
            "upload_time_iso_8601": "2025-09-10T16:45:06.955826Z",
            "url": "https://files.pythonhosted.org/packages/00/4d/a83654e3da7d43490acad4443ac5a88732d97999f65494e3d6d911c46af4/topk_sdk-0.6.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3517b04fae40273e90bf304db749f4026a407f16121c21c2b9ee0c7f70db2642",
                "md5": "8429e28450b1ee99d25c2db19e83e064",
                "sha256": "bf80692ffa91068c2bf5674546fcf168c1c552845f65ce6dd103799c77c44f2f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8429e28450b1ee99d25c2db19e83e064",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2824710,
            "upload_time": "2025-09-10T16:44:22",
            "upload_time_iso_8601": "2025-09-10T16:44:22.423045Z",
            "url": "https://files.pythonhosted.org/packages/35/17/b04fae40273e90bf304db749f4026a407f16121c21c2b9ee0c7f70db2642/topk_sdk-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf9b78cdb0f3468b7824bdf7e028681eec32bdcf79ef80a066b672fb359fd985",
                "md5": "10aef3b035c696eebcf7cede26ed3ef6",
                "sha256": "41770443b49abb0e7ba9ad0fc4a12a19a9794c3be5eaba9326b73738beee91fb"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "10aef3b035c696eebcf7cede26ed3ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2719966,
            "upload_time": "2025-09-10T16:44:13",
            "upload_time_iso_8601": "2025-09-10T16:44:13.964191Z",
            "url": "https://files.pythonhosted.org/packages/bf/9b/78cdb0f3468b7824bdf7e028681eec32bdcf79ef80a066b672fb359fd985/topk_sdk-0.6.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30ec6ddfc598310665c4fdb40830c8b5a6e8058d61588e723b359ecf416742d6",
                "md5": "8ae8d1b1c221d333fa1613bd47d0f6ce",
                "sha256": "9413069ca7b3e627bce039771f73c7ac7d4a4c688112a2527ce2c78a3506a68b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ae8d1b1c221d333fa1613bd47d0f6ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3008672,
            "upload_time": "2025-09-10T16:43:22",
            "upload_time_iso_8601": "2025-09-10T16:43:22.031542Z",
            "url": "https://files.pythonhosted.org/packages/30/ec/6ddfc598310665c4fdb40830c8b5a6e8058d61588e723b359ecf416742d6/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8120179d4ef2041c438e4151fad52f298d81fd894675d4e305e359fa2d2b2ba1",
                "md5": "d641faba7d82748e8e4f3bf80b2a3474",
                "sha256": "de489010e95fb6e02b2e83268ef428d40d5c0cc988d06732ae2543999a369cef"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d641faba7d82748e8e4f3bf80b2a3474",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2799857,
            "upload_time": "2025-09-10T16:43:30",
            "upload_time_iso_8601": "2025-09-10T16:43:30.153139Z",
            "url": "https://files.pythonhosted.org/packages/81/20/179d4ef2041c438e4151fad52f298d81fd894675d4e305e359fa2d2b2ba1/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a1f5bd0265eeb7073868292fa8acc9d878919c9454fa089b35b1ee41503be0f",
                "md5": "78eec0b311f3fa13967fa5d6116e4900",
                "sha256": "ab32fd9681c5839468439e5973a9d6492c2dbcc73dcb2e67fcf71d3e5f3a011a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78eec0b311f3fa13967fa5d6116e4900",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3067172,
            "upload_time": "2025-09-10T16:43:56",
            "upload_time_iso_8601": "2025-09-10T16:43:56.746966Z",
            "url": "https://files.pythonhosted.org/packages/2a/1f/5bd0265eeb7073868292fa8acc9d878919c9454fa089b35b1ee41503be0f/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ade92998531c7ab3a96041fc081d730d85bdf1eb8d564ab7436f711e466319cc",
                "md5": "f0e2367f67b3016e4f1f0293f8d7fa00",
                "sha256": "071b39cf124a0175f1fb1d527611997a8f306f5f58e8c67764cb4d3cf32c2d0e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f0e2367f67b3016e4f1f0293f8d7fa00",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3613528,
            "upload_time": "2025-09-10T16:43:38",
            "upload_time_iso_8601": "2025-09-10T16:43:38.627795Z",
            "url": "https://files.pythonhosted.org/packages/ad/e9/2998531c7ab3a96041fc081d730d85bdf1eb8d564ab7436f711e466319cc/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "364c14070e81698fb8e84a691165186b8b4e68f3dd5f1f14a905d78a81b03162",
                "md5": "c0fd19b7d77b5f0aa6a6089b761d7868",
                "sha256": "79436e89c1cb54c7bfc6c1b3aeab849b734b1c13a2200c2b47e301b7bed113c2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c0fd19b7d77b5f0aa6a6089b761d7868",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2896816,
            "upload_time": "2025-09-10T16:43:47",
            "upload_time_iso_8601": "2025-09-10T16:43:47.648187Z",
            "url": "https://files.pythonhosted.org/packages/36/4c/14070e81698fb8e84a691165186b8b4e68f3dd5f1f14a905d78a81b03162/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d25218e5e408093b2baaf7f60e7db62d8bc09c486810bf54e4e6454d8e4416b",
                "md5": "101a32330e0058f479487702666e7a6b",
                "sha256": "2267d8c481d1aeaac5127903c3474e8b2b8d70dd3aff3a7b53d7f9c9e6c244a5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "101a32330e0058f479487702666e7a6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3049386,
            "upload_time": "2025-09-10T16:44:04",
            "upload_time_iso_8601": "2025-09-10T16:44:04.586821Z",
            "url": "https://files.pythonhosted.org/packages/4d/25/218e5e408093b2baaf7f60e7db62d8bc09c486810bf54e4e6454d8e4416b/topk_sdk-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7bd3fcffcaaf78fc41af4db2ead03119999bbd42fb5859b7f769f1a6a536f6a",
                "md5": "ce8a551ac99bc772c4b708574eabe30e",
                "sha256": "a0c45bfdf89f95dd40c844f71e3242b7cc5be6d1415bfadf88307235c49fd6d1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ce8a551ac99bc772c4b708574eabe30e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3170812,
            "upload_time": "2025-09-10T16:44:30",
            "upload_time_iso_8601": "2025-09-10T16:44:30.818936Z",
            "url": "https://files.pythonhosted.org/packages/e7/bd/3fcffcaaf78fc41af4db2ead03119999bbd42fb5859b7f769f1a6a536f6a/topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83ec2952125a8e962d2ee7b0787c8d9efb34ed66b11a46d69b13a039448ff87a",
                "md5": "ea9bb3f67e342b171de9904e6de58557",
                "sha256": "58d2bf3e4fcbff0a51635760e881710b3e117c42964ccef75c7b53f75032fe04"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ea9bb3f67e342b171de9904e6de58557",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3023895,
            "upload_time": "2025-09-10T16:44:39",
            "upload_time_iso_8601": "2025-09-10T16:44:39.189408Z",
            "url": "https://files.pythonhosted.org/packages/83/ec/2952125a8e962d2ee7b0787c8d9efb34ed66b11a46d69b13a039448ff87a/topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f9e8d012091a32386dc1336450989ceeff748ede56e255bff43d8ee5daa5865",
                "md5": "eb3b8ad6f529e62831ccf64991a9cc98",
                "sha256": "b9d56785e2e903dfb9c9fc0d4fc2ab1761f94b0f5eebfd9abd63411aa88718a3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "eb3b8ad6f529e62831ccf64991a9cc98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3086932,
            "upload_time": "2025-09-10T16:44:49",
            "upload_time_iso_8601": "2025-09-10T16:44:49.493356Z",
            "url": "https://files.pythonhosted.org/packages/2f/9e/8d012091a32386dc1336450989ceeff748ede56e255bff43d8ee5daa5865/topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bdd1499e3df9dda403ce9e2928f4c7ce8bb06cac8d3f37ffe3e7b147c1b83f2",
                "md5": "ecdce662c82c438d3cbd76af61f4665e",
                "sha256": "5fd92e474e51f974ab4c4708c881bdab11c39a1f32cb85d37031df9f34bf6000"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecdce662c82c438d3cbd76af61f4665e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3217034,
            "upload_time": "2025-09-10T16:44:57",
            "upload_time_iso_8601": "2025-09-10T16:44:57.746173Z",
            "url": "https://files.pythonhosted.org/packages/8b/dd/1499e3df9dda403ce9e2928f4c7ce8bb06cac8d3f37ffe3e7b147c1b83f2/topk_sdk-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d752035a8d57ea925a5f3cafe1906d54352531ceb1659304e10ab00d6fc657d",
                "md5": "bf3009e5d96a96aca8cdc00b4313857b",
                "sha256": "563d9c8f92d68e821a9c143e180ba2520f54930d3b2c36f653e99369bc8c8a11"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "bf3009e5d96a96aca8cdc00b4313857b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2045031,
            "upload_time": "2025-09-10T16:45:20",
            "upload_time_iso_8601": "2025-09-10T16:45:20.638050Z",
            "url": "https://files.pythonhosted.org/packages/6d/75/2035a8d57ea925a5f3cafe1906d54352531ceb1659304e10ab00d6fc657d/topk_sdk-0.6.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f927d972f5161b3a72ee02eda85fda491d83720b49bc4214f7a3a8032231208f",
                "md5": "7c18f4f3f64455cc67c257e8d22f3f70",
                "sha256": "3706c871c2b1ed9fcbd9c6e5aaa355799fc4dfb749b401acf624845772909afc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7c18f4f3f64455cc67c257e8d22f3f70",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2446133,
            "upload_time": "2025-09-10T16:45:08",
            "upload_time_iso_8601": "2025-09-10T16:45:08.873205Z",
            "url": "https://files.pythonhosted.org/packages/f9/27/d972f5161b3a72ee02eda85fda491d83720b49bc4214f7a3a8032231208f/topk_sdk-0.6.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d0d9bb69bfbff1957efa679dff0ce166be6ccb72712ee7d8f9102318ed09bbe",
                "md5": "b417a291f17ba363b5bf5f17ba7a473b",
                "sha256": "5227828d82408b171a1e1ef0477f5c51c2b2bd5a86641dd525681b62efcfbc14"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b417a291f17ba363b5bf5f17ba7a473b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 82985,
            "upload_time": "2025-09-10T16:44:59",
            "upload_time_iso_8601": "2025-09-10T16:44:59.156663Z",
            "url": "https://files.pythonhosted.org/packages/6d/0d/9bb69bfbff1957efa679dff0ce166be6ccb72712ee7d8f9102318ed09bbe/topk_sdk-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-10 16:44:59",
    "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.00534s