topk-sdk


Nametopk-sdk JSON
Version 0.1.15 PyPI version JSON
download
home_pagehttps://topk.io
SummaryPython SDK for topk.io
upload_time2025-02-23 08:35:25
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.
            # TopK SDK

**Full documentation is available on [docs.topk.io](https://docs.topk.io).**

TopK SDK provides a Python API for managing collections, inserting and deleting documents, and running queries. Our query language is designed
to be simple and expressive, allowing you to search using keywords, vectors, filters in a single query.

## Features

- Create and manage collections with custom schemas.
- Perform keyword and vector-based searches with scoring and ranking.
- Upsert and delete documents in collections.
- Support for schema validation and collection listing.
- Pythonic API for seamless integration.

## Installation

Install the SDK using `pip`:

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

## Usage Examples
Create a client with your API key and region. If you don't have an API key yet, you can get one for free
from our [console](https://console.topk.io).

```python
from topk_sdk import Client

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

### 1. Create a Collection
First, you need to create a collection to store your documents. The example below creates a `books` collection with a
schema that includes a required `title` field with keyword index, a required `title_embedding` field with vector index,
and an optional `published_year` field with integer type.

```python
from topk_sdk.schema import text, int, f32_vector, vector_index, keyword_index

client.collections().create(
    "books",
    schema={
        # `title` field must be present and its value must be a string.
        "title": text()
          .required()
          .index(keyword_index()),

        # `title_embedding` field must be present and its value must be
        # a 1536-dimensional vector of floats.
        "title_embedding": f32_vector(1536)
            .required()
            .index(vector_index(metric="cosine")),

        # `published_year` is optional but if it is present, its value
        # must be an integer.
        "published_year": int()
    },
)
```

### 2. Upsert Documents
Now, you can upsert documents into the collection. `topk` will insert new documents and overwrite existing ones if they
have the same `_id`.

```python
import numpy as np

lsn = client.collection("books").upsert(
    [
        {
          "_id": "gatsby",
          "title": "The Great Gatsby",
          "title_embedding": np.random.rand(1536).tolist(),
          "published_year": 1925
        },
        {
          "_id": "1984",
          "title": "1984",
          "title_embedding": np.random.rand(1536).tolist(),
          "published_year": 1949
        },
        {
          "_id": "catcher",
          "title": "The Catcher in the Rye",
          "title_embedding": np.random.rand(1536).tolist(),
          "published_year": 1951
        }
    ],
)
```

### 3. Query Documents
Querying documents is what `topk` was built for. You can search documents using keywords, vectors and filters in a single
query. No need to manage multiple search systems and merge results from different queries.

```python
from topk_sdk.query import select, field, fn, match

results = client.collection("books").query(
    select(
      "title",
      vector_distance=fn.vector_distance("title_embedding", np.random.rand(1536).tolist()),
      text_score=fn.bm25_score(),
    )
    # Keyword search - filter books that contain keyword "catcher"
    .filter(match("catcher"))
    # Metadata search - filter books by published year
    .filter(field("published_year") > 1920)
    # Scoring - return top 10 results by calculating score as `vector_distance * 0.8 + text_score * 0.2`
    .top_k(field("vector_distance") * 0.8 + field("text_score") * 0.2, 10),

    # Pass the LSN to make sure the query is consistent with the writes.
    lsn=lsn,
)
```

### 4. Delete Documents
To delete documents from you collection, simply call the `delete` method and provide a list of `_id`s you want to delete.

```python
client.collection("books").delete(["1984"])
```

### 5. Delete a Collection
You can also delete the whole collection that will also delete all the documents in it.

```python
client.collections().delete("books")
```

## Testing

Run the test suite with `pytest`:

```bash
pytest
```


            

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/5a/cf/0e5d9818d939e0e7dbd00ec433d876180e1ec4ca3f5ef8ad68c29a97673e/topk_sdk-0.1.15.tar.gz",
    "platform": null,
    "description": "# TopK SDK\n\n**Full documentation is available on [docs.topk.io](https://docs.topk.io).**\n\nTopK SDK provides a Python API for managing collections, inserting and deleting documents, and running queries. Our query language is designed\nto be simple and expressive, allowing you to search using keywords, vectors, filters in a single query.\n\n## Features\n\n- Create and manage collections with custom schemas.\n- Perform keyword and vector-based searches with scoring and ranking.\n- Upsert and delete documents in collections.\n- Support for schema validation and collection listing.\n- Pythonic API for seamless integration.\n\n## Installation\n\nInstall the SDK using `pip`:\n\n```bash\npip install topk-sdk\n```\n\n## Usage Examples\nCreate a client with your API key and region. If you don't have an API key yet, you can get one for free\nfrom our [console](https://console.topk.io).\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### 1. Create a Collection\nFirst, you need to create a collection to store your documents. The example below creates a `books` collection with a\nschema that includes a required `title` field with keyword index, a required `title_embedding` field with vector index,\nand an optional `published_year` field with integer type.\n\n```python\nfrom topk_sdk.schema import text, int, f32_vector, vector_index, keyword_index\n\nclient.collections().create(\n    \"books\",\n    schema={\n        # `title` field must be present and its value must be a string.\n        \"title\": text()\n          .required()\n          .index(keyword_index()),\n\n        # `title_embedding` field must be present and its value must be\n        # a 1536-dimensional vector of floats.\n        \"title_embedding\": f32_vector(1536)\n            .required()\n            .index(vector_index(metric=\"cosine\")),\n\n        # `published_year` is optional but if it is present, its value\n        # must be an integer.\n        \"published_year\": int()\n    },\n)\n```\n\n### 2. Upsert Documents\nNow, you can upsert documents into the collection. `topk` will insert new documents and overwrite existing ones if they\nhave the same `_id`.\n\n```python\nimport numpy as np\n\nlsn = client.collection(\"books\").upsert(\n    [\n        {\n          \"_id\": \"gatsby\",\n          \"title\": \"The Great Gatsby\",\n          \"title_embedding\": np.random.rand(1536).tolist(),\n          \"published_year\": 1925\n        },\n        {\n          \"_id\": \"1984\",\n          \"title\": \"1984\",\n          \"title_embedding\": np.random.rand(1536).tolist(),\n          \"published_year\": 1949\n        },\n        {\n          \"_id\": \"catcher\",\n          \"title\": \"The Catcher in the Rye\",\n          \"title_embedding\": np.random.rand(1536).tolist(),\n          \"published_year\": 1951\n        }\n    ],\n)\n```\n\n### 3. Query Documents\nQuerying documents is what `topk` was built for. You can search documents using keywords, vectors and filters in a single\nquery. No need to manage multiple search systems and merge results from different queries.\n\n```python\nfrom topk_sdk.query import select, field, fn, match\n\nresults = client.collection(\"books\").query(\n    select(\n      \"title\",\n      vector_distance=fn.vector_distance(\"title_embedding\", np.random.rand(1536).tolist()),\n      text_score=fn.bm25_score(),\n    )\n    # Keyword search - filter books that contain keyword \"catcher\"\n    .filter(match(\"catcher\"))\n    # Metadata search - filter books by published year\n    .filter(field(\"published_year\") > 1920)\n    # Scoring - return top 10 results by calculating score as `vector_distance * 0.8 + text_score * 0.2`\n    .top_k(field(\"vector_distance\") * 0.8 + field(\"text_score\") * 0.2, 10),\n\n    # Pass the LSN to make sure the query is consistent with the writes.\n    lsn=lsn,\n)\n```\n\n### 4. Delete Documents\nTo delete documents from you collection, simply call the `delete` method and provide a list of `_id`s you want to delete.\n\n```python\nclient.collection(\"books\").delete([\"1984\"])\n```\n\n### 5. Delete a Collection\nYou can also delete the whole collection that will also delete all the documents in it.\n\n```python\nclient.collections().delete(\"books\")\n```\n\n## Testing\n\nRun the test suite with `pytest`:\n\n```bash\npytest\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python SDK for topk.io",
    "version": "0.1.15",
    "project_urls": {
        "Homepage": "https://topk.io",
        "documentation": "https://docs.topk.io",
        "repository": "https://github.com/fafolabs/topk-sdk"
    },
    "split_keywords": [
        "topk",
        " search",
        " vector",
        " search",
        " keyword",
        " bm25"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9cb84d82ed24c3e1788623c203ca159870c62cf40206895776c4670168aa274",
                "md5": "320b2c81b22d1ad6732c1d44abbfd420",
                "sha256": "073e637261e5197e6059e5028b33567f6aecb5d7abaecb9b0cbe76d61e1aa9e8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "320b2c81b22d1ad6732c1d44abbfd420",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2275741,
            "upload_time": "2025-02-23T08:34:42",
            "upload_time_iso_8601": "2025-02-23T08:34:42.515105Z",
            "url": "https://files.pythonhosted.org/packages/b9/cb/84d82ed24c3e1788623c203ca159870c62cf40206895776c4670168aa274/topk_sdk-0.1.15-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eea8ff32c4a374630169a1470870e845124802d9c4f45020701a85b7160ab398",
                "md5": "e6875657e0201514a78712801fc8a94b",
                "sha256": "9d7c9b01a7b74d8e748de10e9295bb078bd3eadf788d84f366dd8890df99e095"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6875657e0201514a78712801fc8a94b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2180146,
            "upload_time": "2025-02-23T08:34:33",
            "upload_time_iso_8601": "2025-02-23T08:34:33.009215Z",
            "url": "https://files.pythonhosted.org/packages/ee/a8/ff32c4a374630169a1470870e845124802d9c4f45020701a85b7160ab398/topk_sdk-0.1.15-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53f37e9cf65ed316ddc284e893d7297db06970e97da67c6f269a8216935dad2b",
                "md5": "19e6fdbb75215c5a80154ab88c705548",
                "sha256": "d4d9b0aead20d60d9fcd51c4729df3b2e9c541d2a10d51fedc2cfdefca51d2d3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19e6fdbb75215c5a80154ab88c705548",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2370807,
            "upload_time": "2025-02-23T08:33:29",
            "upload_time_iso_8601": "2025-02-23T08:33:29.718442Z",
            "url": "https://files.pythonhosted.org/packages/53/f3/7e9cf65ed316ddc284e893d7297db06970e97da67c6f269a8216935dad2b/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1968273b1c4d73d424db130420dcf351eea0af7c9da7bfdddc84f76cd717afaa",
                "md5": "3154593d90c320506369e8e44acf5add",
                "sha256": "c873398c269b986c8dc68ab4d94a53b6620212d6360b3fe53ac05960b66893c0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3154593d90c320506369e8e44acf5add",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2223849,
            "upload_time": "2025-02-23T08:33:40",
            "upload_time_iso_8601": "2025-02-23T08:33:40.188581Z",
            "url": "https://files.pythonhosted.org/packages/19/68/273b1c4d73d424db130420dcf351eea0af7c9da7bfdddc84f76cd717afaa/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f38afef0f59525c7d0de9dc2f7b55b45f38455092bf66d913a0480c27bb4746e",
                "md5": "b369cdfa01b4a59a75a066da5261cafc",
                "sha256": "37cb83e0d87145343b093d8205ac78cde1acca912f9ae8eadc7e3e043af4e7c7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b369cdfa01b4a59a75a066da5261cafc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2373606,
            "upload_time": "2025-02-23T08:34:12",
            "upload_time_iso_8601": "2025-02-23T08:34:12.445294Z",
            "url": "https://files.pythonhosted.org/packages/f3/8a/fef0f59525c7d0de9dc2f7b55b45f38455092bf66d913a0480c27bb4746e/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b497dc983fd8b85890354019327733935e18d105b4f2488a72bc291589bc67ea",
                "md5": "48c292c7c9498a82622bb7854204bc58",
                "sha256": "17031acd19373ec0c1fb255769da13e0cac441d6cd15b8a905da029ff31a60ec"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "48c292c7c9498a82622bb7854204bc58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2514832,
            "upload_time": "2025-02-23T08:33:50",
            "upload_time_iso_8601": "2025-02-23T08:33:50.844712Z",
            "url": "https://files.pythonhosted.org/packages/b4/97/dc983fd8b85890354019327733935e18d105b4f2488a72bc291589bc67ea/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "728b0de86b59c5b8dadba53f7ad569d5a4320a7d4465a994a65ca3ba79d59af5",
                "md5": "337e3e9a10386f9931e82436306edfc9",
                "sha256": "e64885ab2a519ead46eabf6c425a730788aa430974eb5b405c9a600f2ade948c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "337e3e9a10386f9931e82436306edfc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2495160,
            "upload_time": "2025-02-23T08:34:01",
            "upload_time_iso_8601": "2025-02-23T08:34:01.568896Z",
            "url": "https://files.pythonhosted.org/packages/72/8b/0de86b59c5b8dadba53f7ad569d5a4320a7d4465a994a65ca3ba79d59af5/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0b5074e27bd4bc269272bcef4288049a34e3219e8da08dfd693cb42d407e02f",
                "md5": "cdc142a6a19db6b67aa33ecfe42ed90d",
                "sha256": "31383cfd526a1866b2e124f8b64b80a13c3b2e017193339a78c9cc3c9a3cad94"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdc142a6a19db6b67aa33ecfe42ed90d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2409144,
            "upload_time": "2025-02-23T08:34:21",
            "upload_time_iso_8601": "2025-02-23T08:34:21.974226Z",
            "url": "https://files.pythonhosted.org/packages/f0/b5/074e27bd4bc269272bcef4288049a34e3219e8da08dfd693cb42d407e02f/topk_sdk-0.1.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8153305bc7d0432328d0c8a276f6eec460d134a4c49e93264a712238ff128fac",
                "md5": "fc96b3e8038ac0f07040851878cd96e7",
                "sha256": "1375c89ab19c7dfa03cdaa3ee6e3dbcdd009161923ff05fcac1c5983c31d5d33"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc96b3e8038ac0f07040851878cd96e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2547423,
            "upload_time": "2025-02-23T08:34:51",
            "upload_time_iso_8601": "2025-02-23T08:34:51.355160Z",
            "url": "https://files.pythonhosted.org/packages/81/53/305bc7d0432328d0c8a276f6eec460d134a4c49e93264a712238ff128fac/topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e7b5afd7666338e7474e9590b60a7bbf3e837fd30972c098b16df4ed03f3fbd",
                "md5": "c9af0030c72f2dfd24944b10744bc783",
                "sha256": "07a5ef3dcdd9a1c389c9c2fbe2326573262887a8367ac64b8f8278592514cd7f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c9af0030c72f2dfd24944b10744bc783",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2447264,
            "upload_time": "2025-02-23T08:35:00",
            "upload_time_iso_8601": "2025-02-23T08:35:00.147297Z",
            "url": "https://files.pythonhosted.org/packages/9e/7b/5afd7666338e7474e9590b60a7bbf3e837fd30972c098b16df4ed03f3fbd/topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "274c37da637672b2571aa04457a2dd580709dea8b4af028992187bdea5675fa2",
                "md5": "d8f41e98449921b544fbda315782ec80",
                "sha256": "b99c937c2b2e25cff42c37f40ac5e6a98ada8ebd07bc07e84b8fab9f54d7fe1e"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d8f41e98449921b544fbda315782ec80",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2438092,
            "upload_time": "2025-02-23T08:35:08",
            "upload_time_iso_8601": "2025-02-23T08:35:08.988700Z",
            "url": "https://files.pythonhosted.org/packages/27/4c/37da637672b2571aa04457a2dd580709dea8b4af028992187bdea5675fa2/topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c16e3738d33a499213e9d1835efdbe663c73b47600582b6c78070451e44cb65c",
                "md5": "41064b94bed18336c5b86e96855b4eff",
                "sha256": "e5053de727d312992985b8a835cb4bfde30c73de3f552c3a56b5d549c6c6385a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41064b94bed18336c5b86e96855b4eff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2584489,
            "upload_time": "2025-02-23T08:35:16",
            "upload_time_iso_8601": "2025-02-23T08:35:16.985209Z",
            "url": "https://files.pythonhosted.org/packages/c1/6e/3738d33a499213e9d1835efdbe663c73b47600582b6c78070451e44cb65c/topk_sdk-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e22ea75e5cdb8edfb1a58dca242060418bb4bd9fd595c4c1ba38ff6ae6389ab0",
                "md5": "540dbadc92132295dfe6eacd1fd8c13b",
                "sha256": "b039e05d1abf4c492a8e940c3fc71345b563f1e424e2dd091666712414fe9b6c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "540dbadc92132295dfe6eacd1fd8c13b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1639480,
            "upload_time": "2025-02-23T08:35:35",
            "upload_time_iso_8601": "2025-02-23T08:35:35.282416Z",
            "url": "https://files.pythonhosted.org/packages/e2/2e/a75e5cdb8edfb1a58dca242060418bb4bd9fd595c4c1ba38ff6ae6389ab0/topk_sdk-0.1.15-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "904a28f7d8b0bbfd99b1cdd7819486cd34cabd46cbe9318952ad0d5a5961825b",
                "md5": "e91ec85400752fb513ab0769b184c483",
                "sha256": "78835ee109d2e6234ff3941b33ba9e3ff0ff9ecb0d9842e80514774757d4e626"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e91ec85400752fb513ab0769b184c483",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1929378,
            "upload_time": "2025-02-23T08:35:26",
            "upload_time_iso_8601": "2025-02-23T08:35:26.770855Z",
            "url": "https://files.pythonhosted.org/packages/90/4a/28f7d8b0bbfd99b1cdd7819486cd34cabd46cbe9318952ad0d5a5961825b/topk_sdk-0.1.15-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2044e78b7d8b490c747c12719f8acd7884688326fa778127da53114f5de96995",
                "md5": "e85bedf8c3a96da42fa9a76ad1cb6231",
                "sha256": "6f31f2b5c77328e77ec811d274b2c81e307fa026da2d4c1199826d33ac223502"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e85bedf8c3a96da42fa9a76ad1cb6231",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2275742,
            "upload_time": "2025-02-23T08:34:44",
            "upload_time_iso_8601": "2025-02-23T08:34:44.682441Z",
            "url": "https://files.pythonhosted.org/packages/20/44/e78b7d8b490c747c12719f8acd7884688326fa778127da53114f5de96995/topk_sdk-0.1.15-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a002450324585c5ebed391104a47179a45f75a193431a74b9da5f17899af69ad",
                "md5": "254355e00fc08cd4d80827a9739dbb76",
                "sha256": "7b3a7c42c89ed2734854db059e4ab8f5235010192f9192065efd26ae2f60bd91"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "254355e00fc08cd4d80827a9739dbb76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2180296,
            "upload_time": "2025-02-23T08:34:34",
            "upload_time_iso_8601": "2025-02-23T08:34:34.417805Z",
            "url": "https://files.pythonhosted.org/packages/a0/02/450324585c5ebed391104a47179a45f75a193431a74b9da5f17899af69ad/topk_sdk-0.1.15-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06b3c62d6449daa9501f0925817ad77cc93b19c2c7630250a4f0049824e2cf64",
                "md5": "e30563dd126816cca0eb992ef937b056",
                "sha256": "d322175f9dc1cb5f9b0b5ba7e5b12d9d527baae4a5925f38bf78cb70bb2dc477"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e30563dd126816cca0eb992ef937b056",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2370828,
            "upload_time": "2025-02-23T08:33:31",
            "upload_time_iso_8601": "2025-02-23T08:33:31.659609Z",
            "url": "https://files.pythonhosted.org/packages/06/b3/c62d6449daa9501f0925817ad77cc93b19c2c7630250a4f0049824e2cf64/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1133899f980f4307ba8309c527f906906353ab4c42b09dcd974a9830995c1a28",
                "md5": "9f7b0994c40f50e821d0de3704b2b4c6",
                "sha256": "cba5cc7165c10da527eb9f0b2ed66b9eae388055ad41aa3d6b8fe4306ae7ec28"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9f7b0994c40f50e821d0de3704b2b4c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2224790,
            "upload_time": "2025-02-23T08:33:42",
            "upload_time_iso_8601": "2025-02-23T08:33:42.389327Z",
            "url": "https://files.pythonhosted.org/packages/11/33/899f980f4307ba8309c527f906906353ab4c42b09dcd974a9830995c1a28/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "717913881c9bfe60b6bc027777c8e18b4be5ad1252de4af9dd2d5d7a95c0371b",
                "md5": "6c8ae939f800061766943e8a4d6cc3fa",
                "sha256": "c291e090826481afb89a3d77bae08fe31ef761716dcc2d2a76a2cd3b6c6392bc"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6c8ae939f800061766943e8a4d6cc3fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2373927,
            "upload_time": "2025-02-23T08:34:13",
            "upload_time_iso_8601": "2025-02-23T08:34:13.885457Z",
            "url": "https://files.pythonhosted.org/packages/71/79/13881c9bfe60b6bc027777c8e18b4be5ad1252de4af9dd2d5d7a95c0371b/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaaa5772e48eef0bb44a67208bc6866935d0428e7ea501bf2dcae71abebfae4b",
                "md5": "726b18227ce3fa8274aaa5603f0207c1",
                "sha256": "8e98a31b4bdcf535842230cde7f3ff37f34c2b9b9e64b0ebe224c0c8aeb447cf"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "726b18227ce3fa8274aaa5603f0207c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2514565,
            "upload_time": "2025-02-23T08:33:52",
            "upload_time_iso_8601": "2025-02-23T08:33:52.947579Z",
            "url": "https://files.pythonhosted.org/packages/ea/aa/5772e48eef0bb44a67208bc6866935d0428e7ea501bf2dcae71abebfae4b/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db3e0a252462660c8359546d7642d895e2f09b0340312ae978ca2c1d11b95505",
                "md5": "894f762fe23eaa4c758e01525bdf99c5",
                "sha256": "b6fd52913877a686047e22dee48b7cd7231ae87dac20f06c57a83b8c7c2cf31a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "894f762fe23eaa4c758e01525bdf99c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2493992,
            "upload_time": "2025-02-23T08:34:04",
            "upload_time_iso_8601": "2025-02-23T08:34:04.485624Z",
            "url": "https://files.pythonhosted.org/packages/db/3e/0a252462660c8359546d7642d895e2f09b0340312ae978ca2c1d11b95505/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f449e7957a3f875536e0545a06818a24f991602c332e109ec43f2359a723835",
                "md5": "281f798e22be69bba1da8c345137b490",
                "sha256": "8428cdcdf13a716132b9c00c0080c94780244ffb2d5b0e122d6af1f5555f5da7"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "281f798e22be69bba1da8c345137b490",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2409323,
            "upload_time": "2025-02-23T08:34:23",
            "upload_time_iso_8601": "2025-02-23T08:34:23.892844Z",
            "url": "https://files.pythonhosted.org/packages/1f/44/9e7957a3f875536e0545a06818a24f991602c332e109ec43f2359a723835/topk_sdk-0.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99e30563905dfbe8ef0755dd2f669a64e1e3f53a0fcc956a8646e54860d7a6fe",
                "md5": "edd8b0e5494398a1365b16b98a950439",
                "sha256": "7942717b82c1481546f05fc18fe7f32ab15fe1ced1f3dfa0928d81cd7719da87"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "edd8b0e5494398a1365b16b98a950439",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2547403,
            "upload_time": "2025-02-23T08:34:52",
            "upload_time_iso_8601": "2025-02-23T08:34:52.794071Z",
            "url": "https://files.pythonhosted.org/packages/99/e3/0563905dfbe8ef0755dd2f669a64e1e3f53a0fcc956a8646e54860d7a6fe/topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "392b102ef5293b53754b635065304d8f44c310ddc47fe64e4ad2c212483460d7",
                "md5": "dadca34ee92431df211c5fe77a199254",
                "sha256": "95e85a2cc0406d33d0ee0a07dde29446168fe12cd8404c75c362c231de9d6d70"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "dadca34ee92431df211c5fe77a199254",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2448942,
            "upload_time": "2025-02-23T08:35:02",
            "upload_time_iso_8601": "2025-02-23T08:35:02.246498Z",
            "url": "https://files.pythonhosted.org/packages/39/2b/102ef5293b53754b635065304d8f44c310ddc47fe64e4ad2c212483460d7/topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1538ca0ddf5c16e18dc670519046df49b7fdd1efa0d92c23502658be4d2f4418",
                "md5": "875db6ee8d23c47aafd4ba511e288a52",
                "sha256": "797c60079a1ef8c130e14c3b2bc096e74f22ab48eb9a0eb817ea07cfdd8fd3f3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "875db6ee8d23c47aafd4ba511e288a52",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2438664,
            "upload_time": "2025-02-23T08:35:10",
            "upload_time_iso_8601": "2025-02-23T08:35:10.520677Z",
            "url": "https://files.pythonhosted.org/packages/15/38/ca0ddf5c16e18dc670519046df49b7fdd1efa0d92c23502658be4d2f4418/topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5df365596ba92969baa0be0bbf4bd5886574a4912962fe538e16530a9597ffed",
                "md5": "7abc341cc5d13e2714f6f579775b4dd7",
                "sha256": "99f7956671a30bae865b9e7c26455d1c2f8e876b5a11dcb903712c14cbdb7f51"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7abc341cc5d13e2714f6f579775b4dd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2584839,
            "upload_time": "2025-02-23T08:35:18",
            "upload_time_iso_8601": "2025-02-23T08:35:18.521458Z",
            "url": "https://files.pythonhosted.org/packages/5d/f3/65596ba92969baa0be0bbf4bd5886574a4912962fe538e16530a9597ffed/topk_sdk-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec13e5880b8a375052a4c0bd3bf6aef4d63d1c7966ab8c29f2fad04c75fa9a5b",
                "md5": "0907093131d4f29cf6eebd3c67fec905",
                "sha256": "824fb1a810d4f6beea4ab47a3a355578c6be76dc433def27c8d4b32d205d127b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0907093131d4f29cf6eebd3c67fec905",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1639565,
            "upload_time": "2025-02-23T08:35:36",
            "upload_time_iso_8601": "2025-02-23T08:35:36.751646Z",
            "url": "https://files.pythonhosted.org/packages/ec/13/e5880b8a375052a4c0bd3bf6aef4d63d1c7966ab8c29f2fad04c75fa9a5b/topk_sdk-0.1.15-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "230df21b47b9ead0f1547b063fa5829b864df3144b67a99206febc877f3c3e7f",
                "md5": "3d27d284db017d7bb9a18b65cd352728",
                "sha256": "a26d616507f04e8aa28967ce43e8ac96526cd6b9a933f404c58928721f153b10"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d27d284db017d7bb9a18b65cd352728",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1929622,
            "upload_time": "2025-02-23T08:35:28",
            "upload_time_iso_8601": "2025-02-23T08:35:28.785920Z",
            "url": "https://files.pythonhosted.org/packages/23/0d/f21b47b9ead0f1547b063fa5829b864df3144b67a99206febc877f3c3e7f/topk_sdk-0.1.15-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a3619b9bc9042e3840d1949bb51092f1be662dffab9f1889d14da14c37e4caf",
                "md5": "af87fbee2bc31027ceb7d6c3e13c0586",
                "sha256": "5e75b90ebaff744f382aa287da1e2b29563f813f41bf02619c9c9413621864c9"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af87fbee2bc31027ceb7d6c3e13c0586",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2259098,
            "upload_time": "2025-02-23T08:34:46",
            "upload_time_iso_8601": "2025-02-23T08:34:46.217746Z",
            "url": "https://files.pythonhosted.org/packages/6a/36/19b9bc9042e3840d1949bb51092f1be662dffab9f1889d14da14c37e4caf/topk_sdk-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "514a2dc7c299b9c5d4ebc39290f357340de85ea0091b1e2efc4fc4a2057c88ab",
                "md5": "ebd7a147092747dc8a51a4920f8837fa",
                "sha256": "25f00373d50ddc1072859e2819afc4984027b32b141e92a8e47da1cf774e3bd3"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ebd7a147092747dc8a51a4920f8837fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2168491,
            "upload_time": "2025-02-23T08:34:36",
            "upload_time_iso_8601": "2025-02-23T08:34:36.509367Z",
            "url": "https://files.pythonhosted.org/packages/51/4a/2dc7c299b9c5d4ebc39290f357340de85ea0091b1e2efc4fc4a2057c88ab/topk_sdk-0.1.15-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "466de69616aa83e8a8e6963fc3ab3a0117a490ef9a21b622831e2846b5bacc0b",
                "md5": "8e9b0c2de8add131bc50d807a896aaeb",
                "sha256": "eb0e58a62a8be4991b678ecb6ef7492ae1d0afd8ef7729efc8b1fecee21dc3d1"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e9b0c2de8add131bc50d807a896aaeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2371843,
            "upload_time": "2025-02-23T08:33:34",
            "upload_time_iso_8601": "2025-02-23T08:33:34.584849Z",
            "url": "https://files.pythonhosted.org/packages/46/6d/e69616aa83e8a8e6963fc3ab3a0117a490ef9a21b622831e2846b5bacc0b/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50b2351e1915743a2f0287dc7ba91be7d8d56c8693502f52758aa7b612186058",
                "md5": "d071ef10ce62941d440535cb545a0cdf",
                "sha256": "4df049b25db46d6f969f52571a3ce21860abb1789404eacfac54dcbbc0e05b72"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d071ef10ce62941d440535cb545a0cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2227948,
            "upload_time": "2025-02-23T08:33:44",
            "upload_time_iso_8601": "2025-02-23T08:33:44.514508Z",
            "url": "https://files.pythonhosted.org/packages/50/b2/351e1915743a2f0287dc7ba91be7d8d56c8693502f52758aa7b612186058/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c87dc14fedefc50deb2ee800d414dae090bf706f318362c5f761f8d54aa925e",
                "md5": "e6df3d12fa933cedb4bf04dedec8f97a",
                "sha256": "cb833686af7bb4967c41f2f4380abf2a9df04cba800d5933ffe5a11a98b83909"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e6df3d12fa933cedb4bf04dedec8f97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2376221,
            "upload_time": "2025-02-23T08:34:16",
            "upload_time_iso_8601": "2025-02-23T08:34:16.084364Z",
            "url": "https://files.pythonhosted.org/packages/0c/87/dc14fedefc50deb2ee800d414dae090bf706f318362c5f761f8d54aa925e/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "194f8fe4a73d0b9d4dade6a1faed3ff5a507211d28dfef8e3055c6b9df9538e3",
                "md5": "e23834b3d222bd9ae48cc4e5086e9e16",
                "sha256": "e7b855f711159bc36315c3f247eb1d1a7edfb2ee3acc9c1560ea181b044fc83d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e23834b3d222bd9ae48cc4e5086e9e16",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2516021,
            "upload_time": "2025-02-23T08:33:54",
            "upload_time_iso_8601": "2025-02-23T08:33:54.420204Z",
            "url": "https://files.pythonhosted.org/packages/19/4f/8fe4a73d0b9d4dade6a1faed3ff5a507211d28dfef8e3055c6b9df9538e3/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "358cdc7415aff04f2100bed0b46827b8cd456ced3136773593f34828908d6c81",
                "md5": "a99bc5f3dc396e37623c15a529967b5e",
                "sha256": "5141c798441d8a4c05df9a112387ca8139d9c21b8ad88ab7dbab974c6a5b8872"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a99bc5f3dc396e37623c15a529967b5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2485461,
            "upload_time": "2025-02-23T08:34:05",
            "upload_time_iso_8601": "2025-02-23T08:34:05.895242Z",
            "url": "https://files.pythonhosted.org/packages/35/8c/dc7415aff04f2100bed0b46827b8cd456ced3136773593f34828908d6c81/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "030e17edd4443ad256bbb156bac44e18fcae291d2d50d32ffac9d5f27617cecb",
                "md5": "2139bea49eb26d0f3c0906aa0fe90f44",
                "sha256": "657c61c8160aa624c93df91c04ec87b289f1184e737a9336c265d21bef3cdeca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2139bea49eb26d0f3c0906aa0fe90f44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2418180,
            "upload_time": "2025-02-23T08:34:25",
            "upload_time_iso_8601": "2025-02-23T08:34:25.358773Z",
            "url": "https://files.pythonhosted.org/packages/03/0e/17edd4443ad256bbb156bac44e18fcae291d2d50d32ffac9d5f27617cecb/topk_sdk-0.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e4c986529d732e264706642b668844d04ad33a1a50281b431e147c76946b045",
                "md5": "ab339b1f07772fdbd4b62594d449f76b",
                "sha256": "8c7459b4b212d3cc50f634991d79de502fd97db700d1730f7e0d0179b28964f6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ab339b1f07772fdbd4b62594d449f76b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2546917,
            "upload_time": "2025-02-23T08:34:55",
            "upload_time_iso_8601": "2025-02-23T08:34:55.005900Z",
            "url": "https://files.pythonhosted.org/packages/7e/4c/986529d732e264706642b668844d04ad33a1a50281b431e147c76946b045/topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4deeab6c1148f076f07936b531830de8fcce5c5a248b80950ac661b818e038d3",
                "md5": "00204f5a8f11cbd64b9ea5324494b87e",
                "sha256": "8c8def412b319fe60318f9b958f0374e7206c1fd31788dfd6525892a01573138"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "00204f5a8f11cbd64b9ea5324494b87e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2450329,
            "upload_time": "2025-02-23T08:35:03",
            "upload_time_iso_8601": "2025-02-23T08:35:03.745630Z",
            "url": "https://files.pythonhosted.org/packages/4d/ee/ab6c1148f076f07936b531830de8fcce5c5a248b80950ac661b818e038d3/topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f4c075737a7f6f0c5370c75501d1b003b28ae15aab8ef85260c143d0146a1e8",
                "md5": "a22cf0e4ca8c5c00f7a19ebfe1a2df70",
                "sha256": "b211cc402678535e7bd868e1080b37a1d19c671fbf7aa87480692e8ff9e3193c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a22cf0e4ca8c5c00f7a19ebfe1a2df70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2440412,
            "upload_time": "2025-02-23T08:35:12",
            "upload_time_iso_8601": "2025-02-23T08:35:12.086338Z",
            "url": "https://files.pythonhosted.org/packages/0f/4c/075737a7f6f0c5370c75501d1b003b28ae15aab8ef85260c143d0146a1e8/topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1d717f25a95f346fc7063d0e83f317c79a7f275e6bfa2951c8f8de085ddc08e",
                "md5": "36f383f68ab91a1bfc91822e9cfef4ed",
                "sha256": "fce65554383053f40046718fbccbe163201f4ac76b5c175f90d8201396827f0b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36f383f68ab91a1bfc91822e9cfef4ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2592014,
            "upload_time": "2025-02-23T08:35:20",
            "upload_time_iso_8601": "2025-02-23T08:35:20.249117Z",
            "url": "https://files.pythonhosted.org/packages/d1/d7/17f25a95f346fc7063d0e83f317c79a7f275e6bfa2951c8f8de085ddc08e/topk_sdk-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb74222cc82602e1b7acd1cb581d979a7ad0fd08cce0dff470ff02ab2ce65e3a",
                "md5": "a4aa8bedbc42035645764a77e0d936bb",
                "sha256": "371aeb05a68b25f25d5799199d90b10e1be712dd52e0e7c70d1b69d65e4db527"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "a4aa8bedbc42035645764a77e0d936bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1638823,
            "upload_time": "2025-02-23T08:35:38",
            "upload_time_iso_8601": "2025-02-23T08:35:38.209834Z",
            "url": "https://files.pythonhosted.org/packages/eb/74/222cc82602e1b7acd1cb581d979a7ad0fd08cce0dff470ff02ab2ce65e3a/topk_sdk-0.1.15-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c677b656a280e420a6c98f4a31a0c535c3945792cbbbb73c343e49f025f9fe2a",
                "md5": "4f990270360ce71b68e3a59d32540379",
                "sha256": "03e5c275ee9474cb54ca8bf76635eec7e9763cd0e65914e5061af6ea167b507c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f990270360ce71b68e3a59d32540379",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1931531,
            "upload_time": "2025-02-23T08:35:30",
            "upload_time_iso_8601": "2025-02-23T08:35:30.953243Z",
            "url": "https://files.pythonhosted.org/packages/c6/77/b656a280e420a6c98f4a31a0c535c3945792cbbbb73c343e49f025f9fe2a/topk_sdk-0.1.15-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bbfc4bd2b0aa76c3e9935c598d82a078cfea6239f56b3c6ea11a0d204ec889c",
                "md5": "c1214e2fffb868ab329907916a1dfc18",
                "sha256": "179078c22a938a3f1b57d0d118ef2cb9b1d1efa7f5f82d111191e9f4fa872b9b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1214e2fffb868ab329907916a1dfc18",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2258218,
            "upload_time": "2025-02-23T08:34:47",
            "upload_time_iso_8601": "2025-02-23T08:34:47.748075Z",
            "url": "https://files.pythonhosted.org/packages/5b/bf/c4bd2b0aa76c3e9935c598d82a078cfea6239f56b3c6ea11a0d204ec889c/topk_sdk-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5ceddc9d3ddae79b7883e6c8d5352c523fdf128327151ac75b9d893875629cd",
                "md5": "4dea1ea97ed7758a2f02017f7739eab3",
                "sha256": "5a1a06c450760ad4f11df890ce12a4d7bbe4510205ac0ef5361a5a75ec14eda5"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4dea1ea97ed7758a2f02017f7739eab3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2167769,
            "upload_time": "2025-02-23T08:34:39",
            "upload_time_iso_8601": "2025-02-23T08:34:39.069840Z",
            "url": "https://files.pythonhosted.org/packages/e5/ce/ddc9d3ddae79b7883e6c8d5352c523fdf128327151ac75b9d893875629cd/topk_sdk-0.1.15-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4a9ca18106a73cf96a5548e6b2b91dd8cbb9fa366474e92f0bcee39f7114d61",
                "md5": "c6549aad876622867e6a3b11bc9e7539",
                "sha256": "dcf607861a540818e11dd8f6b5e9e0b825ef172572a185669f50699f69b3d3af"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6549aad876622867e6a3b11bc9e7539",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2371765,
            "upload_time": "2025-02-23T08:33:36",
            "upload_time_iso_8601": "2025-02-23T08:33:36.649416Z",
            "url": "https://files.pythonhosted.org/packages/f4/a9/ca18106a73cf96a5548e6b2b91dd8cbb9fa366474e92f0bcee39f7114d61/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4fb9e6950b425b2c80324e1c7e3a94c8043b334f393916b9bac7438af884aae1",
                "md5": "3b22a48203695116d9ce6b00f1932ffa",
                "sha256": "680b4d99b1b229e6e0a2081871bdc70224807f757005f766d060b65c6ac85d04"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3b22a48203695116d9ce6b00f1932ffa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2227204,
            "upload_time": "2025-02-23T08:33:46",
            "upload_time_iso_8601": "2025-02-23T08:33:46.781042Z",
            "url": "https://files.pythonhosted.org/packages/4f/b9/e6950b425b2c80324e1c7e3a94c8043b334f393916b9bac7438af884aae1/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "770ea3b0f7f784875f7d91b76442efbacb838c0fa28307fe281ec7a0fc4ce437",
                "md5": "1140bd1114876b2cd5ac092f434963c0",
                "sha256": "4e528baa243de1ac1c2367d7c5a96976f4055589b05791a05dcf79052c3b86c6"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1140bd1114876b2cd5ac092f434963c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2375834,
            "upload_time": "2025-02-23T08:34:17",
            "upload_time_iso_8601": "2025-02-23T08:34:17.516994Z",
            "url": "https://files.pythonhosted.org/packages/77/0e/a3b0f7f784875f7d91b76442efbacb838c0fa28307fe281ec7a0fc4ce437/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21a199711be72721e279b3b4bfe06708bb96c12052d9607b604c9342841e6864",
                "md5": "5e7210718364b3e69f9bfa3c39dfb709",
                "sha256": "2e2087dc67f89c9ef045c683e7d16d36260d9a6f5d5f6802a017540a30491dc2"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5e7210718364b3e69f9bfa3c39dfb709",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2515467,
            "upload_time": "2025-02-23T08:33:56",
            "upload_time_iso_8601": "2025-02-23T08:33:56.844128Z",
            "url": "https://files.pythonhosted.org/packages/21/a1/99711be72721e279b3b4bfe06708bb96c12052d9607b604c9342841e6864/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adfc1189e43c4c74bab999c1cb10ff615b4b914632a51fc5bed96a4282b70191",
                "md5": "ee5610327b914af2dfde32595183b7b6",
                "sha256": "224cb267fa753220c8d151b13209bc315dc14f16c9ac34cbbb8076ab2c235d9b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ee5610327b914af2dfde32595183b7b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2484823,
            "upload_time": "2025-02-23T08:34:08",
            "upload_time_iso_8601": "2025-02-23T08:34:08.418689Z",
            "url": "https://files.pythonhosted.org/packages/ad/fc/1189e43c4c74bab999c1cb10ff615b4b914632a51fc5bed96a4282b70191/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bed9b7ef8b5376bbc50e7d7bcb306449f13ed9865d4a6fea38373cac1022f154",
                "md5": "3337e6ec297a7e870204d89d0177b9f9",
                "sha256": "987b6531a9697f8a5b2a8b5e49732bb2c8a8420f9d4a78ca727728797eff6884"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3337e6ec297a7e870204d89d0177b9f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2417173,
            "upload_time": "2025-02-23T08:34:28",
            "upload_time_iso_8601": "2025-02-23T08:34:28.583872Z",
            "url": "https://files.pythonhosted.org/packages/be/d9/b7ef8b5376bbc50e7d7bcb306449f13ed9865d4a6fea38373cac1022f154/topk_sdk-0.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b20c89f8ff8b4d73dcdc4737f0e8d67292c3f0cd09e34d70cc5480f40b239412",
                "md5": "cd8a5780b085cb5698c3cddec3db6bbf",
                "sha256": "d50526aafde841174b47f96a7b08c22ac90063df012fc4a0aee6854a4960690a"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd8a5780b085cb5698c3cddec3db6bbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2546728,
            "upload_time": "2025-02-23T08:34:56",
            "upload_time_iso_8601": "2025-02-23T08:34:56.654287Z",
            "url": "https://files.pythonhosted.org/packages/b2/0c/89f8ff8b4d73dcdc4737f0e8d67292c3f0cd09e34d70cc5480f40b239412/topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cd8a55cc7add5160da37bb1afa64bf46b52ecef4c53875c5dd4726eade988ce",
                "md5": "ffabeb60704df8090127c1238a2e8cda",
                "sha256": "e3ca06cce2b718292d55f20bfb0f3e518d92a4a5ec92d8a23e6f7a7dfb0b11ae"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ffabeb60704df8090127c1238a2e8cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2449990,
            "upload_time": "2025-02-23T08:35:05",
            "upload_time_iso_8601": "2025-02-23T08:35:05.188570Z",
            "url": "https://files.pythonhosted.org/packages/7c/d8/a55cc7add5160da37bb1afa64bf46b52ecef4c53875c5dd4726eade988ce/topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5df3d598b9bee6081c5ede227cea90a3ea869bc83c886fdb092fd83b1d10cde9",
                "md5": "421fd386521be65485565b4897f84d3c",
                "sha256": "b677c409849656fb4de00ba07ab82e7e8e3809069e22f2d2e84f561fa05b9b52"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "421fd386521be65485565b4897f84d3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2439840,
            "upload_time": "2025-02-23T08:35:13",
            "upload_time_iso_8601": "2025-02-23T08:35:13.657232Z",
            "url": "https://files.pythonhosted.org/packages/5d/f3/d598b9bee6081c5ede227cea90a3ea869bc83c886fdb092fd83b1d10cde9/topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c951a6c9dec7749564076afb951b8ed2ae897eff30e0626cdc6ea962d575515f",
                "md5": "2f0ede254112880376f3b220d60e111f",
                "sha256": "36ca8876dd90c539918e36eac64c5fe6ed9910fb5166a27a1ee3da605b6c6809"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f0ede254112880376f3b220d60e111f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2591163,
            "upload_time": "2025-02-23T08:35:22",
            "upload_time_iso_8601": "2025-02-23T08:35:22.758231Z",
            "url": "https://files.pythonhosted.org/packages/c9/51/a6c9dec7749564076afb951b8ed2ae897eff30e0626cdc6ea962d575515f/topk_sdk-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fdb50c7f691ac620a729594ea84bdd4961c5d0a9bdd90cdb5e5da9cac7fe6cc",
                "md5": "a1f2b5dce215fbc09be2238e9a4e1a20",
                "sha256": "685ebaab5828092b6cdee84bfd9d6ade3a84541635e4474c888804925eb9d155"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a1f2b5dce215fbc09be2238e9a4e1a20",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1638054,
            "upload_time": "2025-02-23T08:35:39",
            "upload_time_iso_8601": "2025-02-23T08:35:39.586358Z",
            "url": "https://files.pythonhosted.org/packages/8f/db/50c7f691ac620a729594ea84bdd4961c5d0a9bdd90cdb5e5da9cac7fe6cc/topk_sdk-0.1.15-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69342ed8c9905fa20bb3b2d62901034ff693afe3c5f1f65bcf5aa57cd5d7714d",
                "md5": "b67eef1c6f0620a3afcbbad013c27b6d",
                "sha256": "442aabea0244a3572d7d5cbbc7a658bbe9756c6cea241fa83063cec3b3d8c339"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b67eef1c6f0620a3afcbbad013c27b6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1930641,
            "upload_time": "2025-02-23T08:35:32",
            "upload_time_iso_8601": "2025-02-23T08:35:32.385548Z",
            "url": "https://files.pythonhosted.org/packages/69/34/2ed8c9905fa20bb3b2d62901034ff693afe3c5f1f65bcf5aa57cd5d7714d/topk_sdk-0.1.15-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9596c05a78a27a2237a7320c5d22dc0308658b4f722e90d44eb1eedbd7d644bd",
                "md5": "cab58ebb3e44c1ce8fc8e73ba71f749b",
                "sha256": "465889a1d6c046f5620f6b4bf1076f996808cca52064a4a91690e63562c0c774"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cab58ebb3e44c1ce8fc8e73ba71f749b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2276668,
            "upload_time": "2025-02-23T08:34:49",
            "upload_time_iso_8601": "2025-02-23T08:34:49.954980Z",
            "url": "https://files.pythonhosted.org/packages/95/96/c05a78a27a2237a7320c5d22dc0308658b4f722e90d44eb1eedbd7d644bd/topk_sdk-0.1.15-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aeb2488c01654112f68d21271fbd5239e2d5167504ae945b433cb6012c3b3e9a",
                "md5": "81c4868357b355be33a3a7b9f64c14bb",
                "sha256": "a2a801509acc8b1b5b5dc3b91c316bb59a9cc20c3aad7c4fc7b8284491fff3aa"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "81c4868357b355be33a3a7b9f64c14bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2181033,
            "upload_time": "2025-02-23T08:34:40",
            "upload_time_iso_8601": "2025-02-23T08:34:40.445035Z",
            "url": "https://files.pythonhosted.org/packages/ae/b2/488c01654112f68d21271fbd5239e2d5167504ae945b433cb6012c3b3e9a/topk_sdk-0.1.15-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "495da90431c24b03951a6af9db2ae8478b8feccb988e230f089d4611bf2ed76d",
                "md5": "6b4472bd795def1e6fe9cc56347c8190",
                "sha256": "b9a1414f33c12d992044bb7f440c67f03d27fe4c6487e13b0ef3ff4ab033bd29"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b4472bd795def1e6fe9cc56347c8190",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2371859,
            "upload_time": "2025-02-23T08:33:38",
            "upload_time_iso_8601": "2025-02-23T08:33:38.688063Z",
            "url": "https://files.pythonhosted.org/packages/49/5d/a90431c24b03951a6af9db2ae8478b8feccb988e230f089d4611bf2ed76d/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e45aba442c9090cc8d5f796880afafb169ca6d7a5c29bf30163cfb1dec5a89d1",
                "md5": "5eb2d687f68bda2daf947a1fd11373c1",
                "sha256": "8934f2e27e593d5242a4bb8860bb3fed9801eeef40045e9f694e72145429476b"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5eb2d687f68bda2daf947a1fd11373c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2224150,
            "upload_time": "2025-02-23T08:33:48",
            "upload_time_iso_8601": "2025-02-23T08:33:48.484915Z",
            "url": "https://files.pythonhosted.org/packages/e4/5a/ba442c9090cc8d5f796880afafb169ca6d7a5c29bf30163cfb1dec5a89d1/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f768472d59cd61e9d0444d0960c6e099387d058b62642e148d24adfd9a4a8482",
                "md5": "8def570ae640e7d9a5833bfe135386e4",
                "sha256": "8eb1b64bc32b454a0a19d31af61e024a202710cab9fa76bc599951ba5aa6df6f"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8def570ae640e7d9a5833bfe135386e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2374068,
            "upload_time": "2025-02-23T08:34:19",
            "upload_time_iso_8601": "2025-02-23T08:34:19.749759Z",
            "url": "https://files.pythonhosted.org/packages/f7/68/472d59cd61e9d0444d0960c6e099387d058b62642e148d24adfd9a4a8482/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bdea9b12afeae1fda6e70dd1f17716703450bf2a7fa3916ed4df2a91b2226cc",
                "md5": "cadf94480f70f5b0de4c6f3b25956cfa",
                "sha256": "9b0ba8bda4d866ab421414b47df024eb3a45264b091e379d6fe6608ac18c3e00"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cadf94480f70f5b0de4c6f3b25956cfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2515702,
            "upload_time": "2025-02-23T08:33:58",
            "upload_time_iso_8601": "2025-02-23T08:33:58.950726Z",
            "url": "https://files.pythonhosted.org/packages/5b/de/a9b12afeae1fda6e70dd1f17716703450bf2a7fa3916ed4df2a91b2226cc/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e3343967b9a57a89dc9882f8db47c5135ab05c99a757a0c6c9697dbef4ea930",
                "md5": "ccbdfd275938d54a0270906e20bbf322",
                "sha256": "fba7185f79b1f73d29abcc00adeaae71724bdf711b7f4fb7c154b0fbd1a6b167"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ccbdfd275938d54a0270906e20bbf322",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2496566,
            "upload_time": "2025-02-23T08:34:10",
            "upload_time_iso_8601": "2025-02-23T08:34:10.155937Z",
            "url": "https://files.pythonhosted.org/packages/1e/33/43967b9a57a89dc9882f8db47c5135ab05c99a757a0c6c9697dbef4ea930/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ce737f4f37444402b62cf2b17fad0c1d7ae1a4f9a0bbef4451cae2d523dee9d",
                "md5": "9b9e79152021445d347b41f3f11f6368",
                "sha256": "5e14046277b9a2df2626bd840e29a55c1371c53cf8536a1c7f602e970a989d9d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b9e79152021445d347b41f3f11f6368",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2410403,
            "upload_time": "2025-02-23T08:34:30",
            "upload_time_iso_8601": "2025-02-23T08:34:30.857345Z",
            "url": "https://files.pythonhosted.org/packages/8c/e7/37f4f37444402b62cf2b17fad0c1d7ae1a4f9a0bbef4451cae2d523dee9d/topk_sdk-0.1.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04a3e58e400200791bd3b5e3b2b32b2fc22361a9170b10144a6143da3ab82e14",
                "md5": "8e5d5ef1b411c042ae189203d2ad7c17",
                "sha256": "3f159a1a7780e9ced3c2e9e171f1b5610443171c296db29f955d7590d1db2a75"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e5d5ef1b411c042ae189203d2ad7c17",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2549286,
            "upload_time": "2025-02-23T08:34:58",
            "upload_time_iso_8601": "2025-02-23T08:34:58.385509Z",
            "url": "https://files.pythonhosted.org/packages/04/a3/e58e400200791bd3b5e3b2b32b2fc22361a9170b10144a6143da3ab82e14/topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b5fa5c4e0c9c62c9745c265771f81908ea6953310c4a133d6ca02f2b665e4d",
                "md5": "92de3682b6b2aabf14e15c129009ac66",
                "sha256": "9684ea24ab0bb4683ffd385080787f42e0a7ddfca0300aae097ccdcadb4ec5c8"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "92de3682b6b2aabf14e15c129009ac66",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2447521,
            "upload_time": "2025-02-23T08:35:07",
            "upload_time_iso_8601": "2025-02-23T08:35:07.446115Z",
            "url": "https://files.pythonhosted.org/packages/72/b5/fa5c4e0c9c62c9745c265771f81908ea6953310c4a133d6ca02f2b665e4d/topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c663b619a6bba95f27eabb8c3b20db1eaa0c37fbc0a1f2bfb5dc220651e2f36",
                "md5": "abab3bd7be62bc5ba3946a6d048f5d57",
                "sha256": "f1752480f323f31bd6b8c23ebb3e3be2953954408acb8373e7fbc9ed613fd4ca"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "abab3bd7be62bc5ba3946a6d048f5d57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2438993,
            "upload_time": "2025-02-23T08:35:15",
            "upload_time_iso_8601": "2025-02-23T08:35:15.357817Z",
            "url": "https://files.pythonhosted.org/packages/5c/66/3b619a6bba95f27eabb8c3b20db1eaa0c37fbc0a1f2bfb5dc220651e2f36/topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d25899a4c380f5ac1afe39eeeab1d37c5c218bac6b5429b8273a43ec62638ae4",
                "md5": "f1a493c333921c70ab235b8a50ebe584",
                "sha256": "31413ad8948199d430a982c90afde522648ac3280996b83b0ddfab60d08da3d0"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1a493c333921c70ab235b8a50ebe584",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2586270,
            "upload_time": "2025-02-23T08:35:24",
            "upload_time_iso_8601": "2025-02-23T08:35:24.244989Z",
            "url": "https://files.pythonhosted.org/packages/d2/58/99a4c380f5ac1afe39eeeab1d37c5c218bac6b5429b8273a43ec62638ae4/topk_sdk-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8fba1234cf3d624848fe8f4a78a51638d859f9f9f22fea595700a8cc6fb9fe4",
                "md5": "5efd93208d91644d7c119420e2a6de70",
                "sha256": "a79f4b0b6bd393dc474706303ffc683169d479e250cb1b9397ad64c5e6e40991"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "5efd93208d91644d7c119420e2a6de70",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1639755,
            "upload_time": "2025-02-23T08:35:41",
            "upload_time_iso_8601": "2025-02-23T08:35:41.037264Z",
            "url": "https://files.pythonhosted.org/packages/e8/fb/a1234cf3d624848fe8f4a78a51638d859f9f9f22fea595700a8cc6fb9fe4/topk_sdk-0.1.15-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bd04cb235de2bb74678de077b6f4e684d5b06f29525013d9604d84e1f3de31a",
                "md5": "bb2898f206f51d90d379f3e144c66907",
                "sha256": "58bc3d8c2ba9a59ea8ef09ed0f0c44315f7b96f021a90c2360a271eb2c9e4a0c"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb2898f206f51d90d379f3e144c66907",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1929626,
            "upload_time": "2025-02-23T08:35:33",
            "upload_time_iso_8601": "2025-02-23T08:35:33.811505Z",
            "url": "https://files.pythonhosted.org/packages/6b/d0/4cb235de2bb74678de077b6f4e684d5b06f29525013d9604d84e1f3de31a/topk_sdk-0.1.15-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5acf0e5d9818d939e0e7dbd00ec433d876180e1ec4ca3f5ef8ad68c29a97673e",
                "md5": "016acc5a340ab4e45c9abd264e82c05f",
                "sha256": "2a392758a6c9c1a7084df8f45aedc5f06bfed417b5a45111f6def68e1b36287d"
            },
            "downloads": -1,
            "filename": "topk_sdk-0.1.15.tar.gz",
            "has_sig": false,
            "md5_digest": "016acc5a340ab4e45c9abd264e82c05f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 173246,
            "upload_time": "2025-02-23T08:35:25",
            "upload_time_iso_8601": "2025-02-23T08:35:25.586281Z",
            "url": "https://files.pythonhosted.org/packages/5a/cf/0e5d9818d939e0e7dbd00ec433d876180e1ec4ca3f5ef8ad68c29a97673e/topk_sdk-0.1.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-23 08:35:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fafolabs",
    "github_project": "topk-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "topk-sdk"
}
        
Elapsed time: 2.34963s