nacos-sdk-rust-binding-py


Namenacos-sdk-rust-binding-py JSON
Version 0.3.6 PyPI version JSON
download
home_pageNone
Summarynacos-sdk-rust binding for Python.
upload_time2024-04-21 02:02:56
maintainerNone
docs_urlNone
authorCheirshCai <785427346@qq.com>
requires_python>=3.7
licenseApache-2.0
keywords nacos ffi pyo3 binding python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # nacos-sdk-rust-binding-py
nacos-sdk-rust binding for Python with PyO3.

Tip: nacos-sdk-python 仓库暂未提供 2.x gRPC 交互模式,为了能升级它,故而通过 ffi 方式调用 nacos-sdk-rust

## Installation

```bash
pip install nacos-sdk-rust-binding-py
```

- project package see https://pypi.org/project/nacos-sdk-rust-binding-py

## Usage

**使用样例请看仓库内的 examples 目录**
- Block api: [examples/naming.py](examples/naming.py) / [examples/config.py](examples/config.py)
- Async api: [examples/async_naming.py](examples/async_naming.py) / [examples/async_config.py](examples/async_config.py)

**其它设置**

环境变量 `NACOS_CLIENT_LOGGER_LEVEL=INFO` 可设置日志打印级别,默认 INFO
- 客户端日志请在目录 `$HOME/logs/nacos/` 查看

环境变量 `NACOS_CLIENT_COMMON_THREAD_CORES=4` 可设置客户端核心线程数,默认是 CPU 数目 1

环境变量 `ENV_NACOS_CLIENT_NAMING_PUSH_EMPTY_PROTECTION=false` 可关闭 Naming 防推空保护,默认 true

更多环境变量请看 `nacos-sdk-rust` 的[文档说明](https://github.com/nacos-group/nacos-sdk-rust)

### Definition of ClientOptions

```python
class ClientOptions:
    # Server Addr, e.g. address:port[,address:port],...]
    #[pyo3(set, get)]
    server_addr: String,
    # Namespace/Tenant
    #[pyo3(set, get)]
    namespace: String,
    # AppName
    #[pyo3(set, get)]
    app_name: Option<String>,
    # Username for Auth
    #[pyo3(set, get)]
    username: Option<String>,
    # Password for Auth
    #[pyo3(set, get)]
    password: Option<String>,
    # naming push_empty_protection, default true
    #[pyo3(set, get)]
    naming_push_empty_protection: Option<bool>,
    # naming load_cache_at_start, default false
    #[pyo3(set, get)]
    naming_load_cache_at_start: Option<bool>,

    # Init
    def __init__(self, server_addr, namespace, app_name, username, password):
        self.server_addr = server_addr
        self.namespace = namespace
        self.app_name = app_name
        self.username = username
        self.password = password

```

### Definition of Config

```python
class NacosConfigResponse:
    # Namespace/Tenant
    # [pyo3(get)]
    namespace: String,
    # DataId
    # [pyo3(get)]
    data_id: String,
    # Group
    # [pyo3(get)]
    group: String,
    # Content
    # [pyo3(get)]
    content: String,
    # Content's Type; e.g. json,properties,xml,html,text,yaml
    # [pyo3(get)]
    content_type: String,
    # Content's md5
    # [pyo3(get)]
    md5: String,


class NacosConfigClient:
    # Init. If it fails, pay attention to err
    def __init__(self, client_options: ClientOptions):
        # inner logic xxx
        pass

    # Get config's content. If it fails, pay attention to err
    def get_config(self, data_id: String, group: String) -> String:
        pass

    # Get NacosConfigResponse. If it fails, pay attention to err
    def get_config_resp(self, data_id: String, group: String) -> NacosConfigResponse:
        pass

    # Publish config. If it fails, pay attention to err
    def publish_config(self, data_id: String, group: String, content: String) -> bool:
        pass

    # Remove config. If it fails, pay attention to err
    def remove_config(self, data_id: String, group: String) -> bool:
        pass

    # Add NacosConfigChangeListener callback func, which listen the config change. If it fails, pay attention to err
    def add_listener(self, data_id: String, group: String, listener: py_function):
        pass


```

### Definition of Naming

```python
class NacosServiceInstance:
    # Instance Id
    #[pyo3(set, get)]
    instance_id: Option<String>,
    # Ip
    #[pyo3(set, get)]
    ip: String,
    # Port
    #[pyo3(set, get)]
    port: i32,
    # Weight, default 1.0
    #[pyo3(set, get)]
    weight: Option<f64>,
    # Healthy or not, default true
    #[pyo3(set, get)]
    healthy: Option<bool>,
    # Enabled ot not, default true
    #[pyo3(set, get)]
    enabled: Option<bool>,
    # Ephemeral or not, default true
    #[pyo3(set, get)]
    ephemeral: Option<bool>,
    # Cluster Name, default 'DEFAULT'
    #[pyo3(set, get)]
    cluster_name: Option<String>,
    # Service Name
    #[pyo3(set, get)]
    service_name: Option<String>,
    # Metadata, default '{}'
    #[pyo3(set, get)]
    metadata: Option<std::collections::HashMap<String, String>>,

    # Init
    def __init__(self, ip, port, weight, healthy, enabled, ephemeral, cluster_name, service_name, metadata):
        # inner logic xxx
        pass


class NacosNamingClient:
    # Init. If it fails, pay attention to err
    def __init__(self, client_options: ClientOptions):
        # inner logic xxx
        pass

    # Register instance. If it fails, pay attention to err
    def register_instance(self, service_name: String, group: String, service_instance: NacosServiceInstance):
        pass

    # Deregister instance. If it fails, pay attention to err
    def deregister_instance(self, service_name: String, group: String, service_instance: NacosServiceInstance):
        pass

    # Batch register instance, improve interaction efficiency. If it fails, pay attention to err
    def batch_register_instance(self, service_name: String, group: String, service_instances: [NacosServiceInstance]):
        pass

    # Get all instances by service and group. default cluster=[], subscribe=true. If it fails, pay attention to err
    def get_all_instances(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>) -> [NacosServiceInstance]:
        pass

    # Select instances whether healthy or not. default cluster=[], subscribe=true, healthy=true. If it fails, pay attention to err
    def select_instances(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>, healthy: Option<bool>) -> [NacosServiceInstance]:
        pass

    # Select one healthy instance. default cluster=[], subscribe=true. If it fails, pay attention to err
    def select_one_healthy_instance(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>) -> NacosServiceInstance:
        pass

    # Add NacosNamingEventListener callback func, which listen the instance change. If it fails, pay attention to err
    def subscribe(self, service_name: String, group: String, clusters: Option<[String]>, listener: py_function) -> NacosServiceInstance:
        pass


```

## Development

Setup virtualenv:

```shell
python -m venv venv
```

Activate venv:

```shell
source venv/bin/activate
````

Install `maturin`:

```shell
pip install maturin[patchelf]
```

Build bindings:

```shell
maturin develop
```

Run some tests:

```shell
maturin develop -E test
behave tests
```

Build API docs:

```shell
maturin develop -E docs
pdoc nacos-sdk-rust-binding-py
```

# License
[Apache License Version 2.0](LICENSE)

# Acknowledgement
- binding for Python with [PyO3](https://github.com/PyO3/pyo3.git)
- binding the [nacos-sdk-rust](https://github.com/nacos-group/nacos-sdk-rust.git)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nacos-sdk-rust-binding-py",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "nacos, ffi, pyo3, binding, python",
    "author": "CheirshCai <785427346@qq.com>",
    "author_email": "CheirshCai <785427346@qq.com>",
    "download_url": "https://files.pythonhosted.org/packages/3e/63/9568e977c9be38d9bcec1a6101d90596b503a8e6a4616405c5871d911e25/nacos_sdk_rust_binding_py-0.3.6.tar.gz",
    "platform": null,
    "description": "# nacos-sdk-rust-binding-py\nnacos-sdk-rust binding for Python with PyO3.\n\nTip: nacos-sdk-python \u4ed3\u5e93\u6682\u672a\u63d0\u4f9b 2.x gRPC \u4ea4\u4e92\u6a21\u5f0f\uff0c\u4e3a\u4e86\u80fd\u5347\u7ea7\u5b83\uff0c\u6545\u800c\u901a\u8fc7 ffi \u65b9\u5f0f\u8c03\u7528 nacos-sdk-rust\n\n## Installation\n\n```bash\npip install nacos-sdk-rust-binding-py\n```\n\n- project package see https://pypi.org/project/nacos-sdk-rust-binding-py\n\n## Usage\n\n**\u4f7f\u7528\u6837\u4f8b\u8bf7\u770b\u4ed3\u5e93\u5185\u7684 examples \u76ee\u5f55**\n- Block api: [examples/naming.py](examples/naming.py) / [examples/config.py](examples/config.py)\n- Async api: [examples/async_naming.py](examples/async_naming.py) / [examples/async_config.py](examples/async_config.py)\n\n**\u5176\u5b83\u8bbe\u7f6e**\n\n\u73af\u5883\u53d8\u91cf `NACOS_CLIENT_LOGGER_LEVEL=INFO` \u53ef\u8bbe\u7f6e\u65e5\u5fd7\u6253\u5370\u7ea7\u522b\uff0c\u9ed8\u8ba4 INFO\n- \u5ba2\u6237\u7aef\u65e5\u5fd7\u8bf7\u5728\u76ee\u5f55 `$HOME/logs/nacos/` \u67e5\u770b\n\n\u73af\u5883\u53d8\u91cf `NACOS_CLIENT_COMMON_THREAD_CORES=4` \u53ef\u8bbe\u7f6e\u5ba2\u6237\u7aef\u6838\u5fc3\u7ebf\u7a0b\u6570\uff0c\u9ed8\u8ba4\u662f CPU \u6570\u76ee 1\n\n\u73af\u5883\u53d8\u91cf `ENV_NACOS_CLIENT_NAMING_PUSH_EMPTY_PROTECTION=false` \u53ef\u5173\u95ed Naming \u9632\u63a8\u7a7a\u4fdd\u62a4\uff0c\u9ed8\u8ba4 true\n\n\u66f4\u591a\u73af\u5883\u53d8\u91cf\u8bf7\u770b `nacos-sdk-rust` \u7684[\u6587\u6863\u8bf4\u660e](https://github.com/nacos-group/nacos-sdk-rust)\n\n### Definition of ClientOptions\n\n```python\nclass ClientOptions:\n    # Server Addr, e.g. address:port[,address:port],...]\n    #[pyo3(set, get)]\n    server_addr: String,\n    # Namespace/Tenant\n    #[pyo3(set, get)]\n    namespace: String,\n    # AppName\n    #[pyo3(set, get)]\n    app_name: Option<String>,\n    # Username for Auth\n    #[pyo3(set, get)]\n    username: Option<String>,\n    # Password for Auth\n    #[pyo3(set, get)]\n    password: Option<String>,\n    # naming push_empty_protection, default true\n    #[pyo3(set, get)]\n    naming_push_empty_protection: Option<bool>,\n    # naming load_cache_at_start, default false\n    #[pyo3(set, get)]\n    naming_load_cache_at_start: Option<bool>,\n\n    # Init\n    def __init__(self, server_addr, namespace, app_name, username, password):\n        self.server_addr = server_addr\n        self.namespace = namespace\n        self.app_name = app_name\n        self.username = username\n        self.password = password\n\n```\n\n### Definition of Config\n\n```python\nclass NacosConfigResponse:\n    # Namespace/Tenant\n    # [pyo3(get)]\n    namespace: String,\n    # DataId\n    # [pyo3(get)]\n    data_id: String,\n    # Group\n    # [pyo3(get)]\n    group: String,\n    # Content\n    # [pyo3(get)]\n    content: String,\n    # Content's Type; e.g. json,properties,xml,html,text,yaml\n    # [pyo3(get)]\n    content_type: String,\n    # Content's md5\n    # [pyo3(get)]\n    md5: String,\n\n\nclass NacosConfigClient:\n    # Init. If it fails, pay attention to err\n    def __init__(self, client_options: ClientOptions):\n        # inner logic xxx\n        pass\n\n    # Get config's content. If it fails, pay attention to err\n    def get_config(self, data_id: String, group: String) -> String:\n        pass\n\n    # Get NacosConfigResponse. If it fails, pay attention to err\n    def get_config_resp(self, data_id: String, group: String) -> NacosConfigResponse:\n        pass\n\n    # Publish config. If it fails, pay attention to err\n    def publish_config(self, data_id: String, group: String, content: String) -> bool:\n        pass\n\n    # Remove config. If it fails, pay attention to err\n    def remove_config(self, data_id: String, group: String) -> bool:\n        pass\n\n    # Add NacosConfigChangeListener callback func, which listen the config change. If it fails, pay attention to err\n    def add_listener(self, data_id: String, group: String, listener: py_function):\n        pass\n\n\n```\n\n### Definition of Naming\n\n```python\nclass NacosServiceInstance:\n    # Instance Id\n    #[pyo3(set, get)]\n    instance_id: Option<String>,\n    # Ip\n    #[pyo3(set, get)]\n    ip: String,\n    # Port\n    #[pyo3(set, get)]\n    port: i32,\n    # Weight, default 1.0\n    #[pyo3(set, get)]\n    weight: Option<f64>,\n    # Healthy or not, default true\n    #[pyo3(set, get)]\n    healthy: Option<bool>,\n    # Enabled ot not, default true\n    #[pyo3(set, get)]\n    enabled: Option<bool>,\n    # Ephemeral or not, default true\n    #[pyo3(set, get)]\n    ephemeral: Option<bool>,\n    # Cluster Name, default 'DEFAULT'\n    #[pyo3(set, get)]\n    cluster_name: Option<String>,\n    # Service Name\n    #[pyo3(set, get)]\n    service_name: Option<String>,\n    # Metadata, default '{}'\n    #[pyo3(set, get)]\n    metadata: Option<std::collections::HashMap<String, String>>,\n\n    # Init\n    def __init__(self, ip, port, weight, healthy, enabled, ephemeral, cluster_name, service_name, metadata):\n        # inner logic xxx\n        pass\n\n\nclass NacosNamingClient:\n    # Init. If it fails, pay attention to err\n    def __init__(self, client_options: ClientOptions):\n        # inner logic xxx\n        pass\n\n    # Register instance. If it fails, pay attention to err\n    def register_instance(self, service_name: String, group: String, service_instance: NacosServiceInstance):\n        pass\n\n    # Deregister instance. If it fails, pay attention to err\n    def deregister_instance(self, service_name: String, group: String, service_instance: NacosServiceInstance):\n        pass\n\n    # Batch register instance, improve interaction efficiency. If it fails, pay attention to err\n    def batch_register_instance(self, service_name: String, group: String, service_instances: [NacosServiceInstance]):\n        pass\n\n    # Get all instances by service and group. default cluster=[], subscribe=true. If it fails, pay attention to err\n    def get_all_instances(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>) -> [NacosServiceInstance]:\n        pass\n\n    # Select instances whether healthy or not. default cluster=[], subscribe=true, healthy=true. If it fails, pay attention to err\n    def select_instances(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>, healthy: Option<bool>) -> [NacosServiceInstance]:\n        pass\n\n    # Select one healthy instance. default cluster=[], subscribe=true. If it fails, pay attention to err\n    def select_one_healthy_instance(self, service_name: String, group: String, clusters: Option<[String]>, subscribe: Option<bool>) -> NacosServiceInstance:\n        pass\n\n    # Add NacosNamingEventListener callback func, which listen the instance change. If it fails, pay attention to err\n    def subscribe(self, service_name: String, group: String, clusters: Option<[String]>, listener: py_function) -> NacosServiceInstance:\n        pass\n\n\n```\n\n## Development\n\nSetup virtualenv:\n\n```shell\npython -m venv venv\n```\n\nActivate venv:\n\n```shell\nsource venv/bin/activate\n````\n\nInstall `maturin`:\n\n```shell\npip install maturin[patchelf]\n```\n\nBuild bindings:\n\n```shell\nmaturin develop\n```\n\nRun some tests:\n\n```shell\nmaturin develop -E test\nbehave tests\n```\n\nBuild API docs:\n\n```shell\nmaturin develop -E docs\npdoc nacos-sdk-rust-binding-py\n```\n\n# License\n[Apache License Version 2.0](LICENSE)\n\n# Acknowledgement\n- binding for Python with [PyO3](https://github.com/PyO3/pyo3.git)\n- binding the [nacos-sdk-rust](https://github.com/nacos-group/nacos-sdk-rust.git)\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "nacos-sdk-rust binding for Python.",
    "version": "0.3.6",
    "project_urls": {
        "Documentation": "https://github.com/opc-source/nacos-sdk-rust-binding-py.git",
        "Homepage": "https://github.com/opc-source/nacos-sdk-rust-binding-py.git",
        "Repository": "https://github.com/opc-source/nacos-sdk-rust-binding-py.git"
    },
    "split_keywords": [
        "nacos",
        " ffi",
        " pyo3",
        " binding",
        " python"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17f24648bdee7675d199e5abf5fc847a0c72d0fa192d13b4092f8837710f1abf",
                "md5": "970d2b74fd6bcf33144f7030d4ef6374",
                "sha256": "ac6e646105769aaaf037d2f86571b71fa721a796169fca0815ccd82bbeafbf4c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "970d2b74fd6bcf33144f7030d4ef6374",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3370157,
            "upload_time": "2024-04-21T02:00:27",
            "upload_time_iso_8601": "2024-04-21T02:00:27.998400Z",
            "url": "https://files.pythonhosted.org/packages/17/f2/4648bdee7675d199e5abf5fc847a0c72d0fa192d13b4092f8837710f1abf/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "044c0f5923e45ce457a8f234c1ace1f1ba9ceab5900db26653c857281d1f17b2",
                "md5": "679b5a932dac63b723d12a923ec9f214",
                "sha256": "811ead8a6c55d8273d31fada173f1ba22ac071f1117d8d8c617b0033e9b63f8d"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "679b5a932dac63b723d12a923ec9f214",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3302942,
            "upload_time": "2024-04-21T02:00:30",
            "upload_time_iso_8601": "2024-04-21T02:00:30.228818Z",
            "url": "https://files.pythonhosted.org/packages/04/4c/0f5923e45ce457a8f234c1ace1f1ba9ceab5900db26653c857281d1f17b2/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68dc55be0148511703557da0f9460364bc5682c027dcd764d693e059fe24bc54",
                "md5": "40527717de9be1b88528caf89236589c",
                "sha256": "e5a6a10780fcfddec7a299a24799206d33c6055df6ca73c7b948d2b52626335a"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "40527717de9be1b88528caf89236589c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4732224,
            "upload_time": "2024-04-21T02:00:31",
            "upload_time_iso_8601": "2024-04-21T02:00:31.903777Z",
            "url": "https://files.pythonhosted.org/packages/68/dc/55be0148511703557da0f9460364bc5682c027dcd764d693e059fe24bc54/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "584008f16adffbd46434f27fdec8d40819a104d7e452c511ec31774cb44d3044",
                "md5": "18a26c7b5b606df5ac5b0e79e0597812",
                "sha256": "f96622b431855a5851c2effcc7a7bda93ec8ebb2ad280dfed72709494b3eb87c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18a26c7b5b606df5ac5b0e79e0597812",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4595227,
            "upload_time": "2024-04-21T02:00:34",
            "upload_time_iso_8601": "2024-04-21T02:00:34.467243Z",
            "url": "https://files.pythonhosted.org/packages/58/40/08f16adffbd46434f27fdec8d40819a104d7e452c511ec31774cb44d3044/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "348d3e6ce8e5b4d734afc0cda616802679c17be6a9d4189be662ccd1133e32c4",
                "md5": "0126489cfc798dd5cb830fad536a6ceb",
                "sha256": "2c7ac0ef6be5153cc861679af43e91eb241fa8ad5f442c2886dbeb2ad0850cf3"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0126489cfc798dd5cb830fad536a6ceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4541124,
            "upload_time": "2024-04-21T02:00:36",
            "upload_time_iso_8601": "2024-04-21T02:00:36.914934Z",
            "url": "https://files.pythonhosted.org/packages/34/8d/3e6ce8e5b4d734afc0cda616802679c17be6a9d4189be662ccd1133e32c4/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72d813b0c25bbf4b7c152197b41d7cd1062061b0c7b364fbefc62c23c323e731",
                "md5": "b6195f10fec5423bd4aa0c8ebe81e270",
                "sha256": "f1220efd0a81a6c9a68c7c734b91b46c7aee86d3fb27f4754780f619fe17a7a9"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b6195f10fec5423bd4aa0c8ebe81e270",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4896414,
            "upload_time": "2024-04-21T02:00:39",
            "upload_time_iso_8601": "2024-04-21T02:00:39.105454Z",
            "url": "https://files.pythonhosted.org/packages/72/d8/13b0c25bbf4b7c152197b41d7cd1062061b0c7b364fbefc62c23c323e731/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb4e445006cb38aa25fbe1bd89fa1d86d94451465f5c69eee457cca8d211c1e4",
                "md5": "26232d16c70d91b6079535c2c26b505d",
                "sha256": "4f17f2b9cb40565700e3e441e3cb7257d09a6c32edaf0aaad97a91f1d7ae4082"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "26232d16c70d91b6079535c2c26b505d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4946647,
            "upload_time": "2024-04-21T02:00:41",
            "upload_time_iso_8601": "2024-04-21T02:00:41.395401Z",
            "url": "https://files.pythonhosted.org/packages/bb/4e/445006cb38aa25fbe1bd89fa1d86d94451465f5c69eee457cca8d211c1e4/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c016ee16e68e84a81dae36e50b9df55039a96250d05bb7980f16611d83563f7e",
                "md5": "7d08f677010213405d8763588a9defb5",
                "sha256": "bb8edc58a9931512ce4c0275a35f2f30386cd54de88a00e6cdbb286cfe0a9611"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d08f677010213405d8763588a9defb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4511141,
            "upload_time": "2024-04-21T02:00:43",
            "upload_time_iso_8601": "2024-04-21T02:00:43.635128Z",
            "url": "https://files.pythonhosted.org/packages/c0/16/ee16e68e84a81dae36e50b9df55039a96250d05bb7980f16611d83563f7e/nacos_sdk_rust_binding_py-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0dc5edd15c8fbb15fc17b4a200079f318cf6b11a484ba92d43441e2296447a3",
                "md5": "a6b2b18988b55ae19c85568905888ba1",
                "sha256": "3eeec777db0b51e0f89a217565768339533fc1a710472241c805065958bf3528"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a6b2b18988b55ae19c85568905888ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2814780,
            "upload_time": "2024-04-21T02:00:45",
            "upload_time_iso_8601": "2024-04-21T02:00:45.063786Z",
            "url": "https://files.pythonhosted.org/packages/c0/dc/5edd15c8fbb15fc17b4a200079f318cf6b11a484ba92d43441e2296447a3/nacos_sdk_rust_binding_py-0.3.6-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41c0d5645b8b6ab2a265b2d7be2c25be8f9903623ce046d14ddd4d9e84798ebd",
                "md5": "2f398d3c280311256e47783089e58925",
                "sha256": "533ed45a7b992f61ab486c231e431fcfbc0e1e4ff6a5971b55e42c0cb996d35e"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f398d3c280311256e47783089e58925",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3079264,
            "upload_time": "2024-04-21T02:00:46",
            "upload_time_iso_8601": "2024-04-21T02:00:46.518857Z",
            "url": "https://files.pythonhosted.org/packages/41/c0/d5645b8b6ab2a265b2d7be2c25be8f9903623ce046d14ddd4d9e84798ebd/nacos_sdk_rust_binding_py-0.3.6-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92ac938b47eee7380052a1f990630046be7e463e0210b049e7f761bb6c2b6ca7",
                "md5": "6c484c52eb2847876dfd500c0baf6470",
                "sha256": "ff5829f20a34f3d01c4f09c01bce73e5ef6f5f9ae0bf6f63bdb5a6a54e0a23dc"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c484c52eb2847876dfd500c0baf6470",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3370080,
            "upload_time": "2024-04-21T02:00:48",
            "upload_time_iso_8601": "2024-04-21T02:00:48.873186Z",
            "url": "https://files.pythonhosted.org/packages/92/ac/938b47eee7380052a1f990630046be7e463e0210b049e7f761bb6c2b6ca7/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d9528620f534ef8016f1ba3bb9b9e7bfb9ee2a47123168f03b4e25905a88300",
                "md5": "746511b1bb334a0c24df1190e682e7e0",
                "sha256": "0e3ce1e86a06490a32f6df1674683513bfdd9767ce358966a5641d460a467c38"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "746511b1bb334a0c24df1190e682e7e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3302991,
            "upload_time": "2024-04-21T02:00:51",
            "upload_time_iso_8601": "2024-04-21T02:00:51.010977Z",
            "url": "https://files.pythonhosted.org/packages/5d/95/28620f534ef8016f1ba3bb9b9e7bfb9ee2a47123168f03b4e25905a88300/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1816f6adb9f244c38b396ff113a185f1c7df6b629941dae313cd723281e64937",
                "md5": "3f1dd64ffaec5605f76b64291948493d",
                "sha256": "1a32d112caec3f1c623db222ff36373a603357702057b12f6fb7a73c5a662b39"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3f1dd64ffaec5605f76b64291948493d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4731848,
            "upload_time": "2024-04-21T02:00:53",
            "upload_time_iso_8601": "2024-04-21T02:00:53.179933Z",
            "url": "https://files.pythonhosted.org/packages/18/16/f6adb9f244c38b396ff113a185f1c7df6b629941dae313cd723281e64937/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d65394e55426b03e4c81ff7a5652e9e3e5c82d45696ffa51f82025c6a04d962c",
                "md5": "d71a0695b4c82466fde56eb8e488937b",
                "sha256": "d807179e27482e88eb899405aa296835c44e0ee13d20b5442693ad5c3b4004eb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d71a0695b4c82466fde56eb8e488937b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4594802,
            "upload_time": "2024-04-21T02:00:55",
            "upload_time_iso_8601": "2024-04-21T02:00:55.310683Z",
            "url": "https://files.pythonhosted.org/packages/d6/53/94e55426b03e4c81ff7a5652e9e3e5c82d45696ffa51f82025c6a04d962c/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b4c2e73e58162e0dad68ac265af5b710fc8105111f20635f5ef0cfca723c936",
                "md5": "d57cd3f6bfbe650073cd4349bf018133",
                "sha256": "e49c3835701d37f2430c7c50a469b9afac29f297ec78d08727edc24c77878044"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d57cd3f6bfbe650073cd4349bf018133",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4541021,
            "upload_time": "2024-04-21T02:00:57",
            "upload_time_iso_8601": "2024-04-21T02:00:57.417238Z",
            "url": "https://files.pythonhosted.org/packages/0b/4c/2e73e58162e0dad68ac265af5b710fc8105111f20635f5ef0cfca723c936/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f26a68c2a0df59530ac55adfd6120edf2602bcaee0f6957ff49b55550bd499ea",
                "md5": "ed802acf0fafed80ad7ac51915726e1b",
                "sha256": "00dbca325ecf8510a1d67dd5a70de8b804c332d80e7451c485332e6cbfa6a463"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ed802acf0fafed80ad7ac51915726e1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4896758,
            "upload_time": "2024-04-21T02:00:59",
            "upload_time_iso_8601": "2024-04-21T02:00:59.075465Z",
            "url": "https://files.pythonhosted.org/packages/f2/6a/68c2a0df59530ac55adfd6120edf2602bcaee0f6957ff49b55550bd499ea/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c93c31f43866d836d3a38d448d0398a44e92963ae4ed443c82591533dcd86ead",
                "md5": "0b5bfa6e1f90673d4c027f08c32bd243",
                "sha256": "47003f3a43f16ac747d8d28d4383304e73466b0b496c86c7f8801e011675e43f"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0b5bfa6e1f90673d4c027f08c32bd243",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4946924,
            "upload_time": "2024-04-21T02:01:01",
            "upload_time_iso_8601": "2024-04-21T02:01:01.355021Z",
            "url": "https://files.pythonhosted.org/packages/c9/3c/31f43866d836d3a38d448d0398a44e92963ae4ed443c82591533dcd86ead/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bd4e163fbe2642bd9cae9a07f4f6c85afb07a0bb093e516b11aba03bc8b33e2",
                "md5": "a76035e0bfc7bb76589ab519ff741a39",
                "sha256": "f07f12a508b44762e8bd69f4d2631d040b6585d5c9a5ccaa39e5d26b3b50047c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a76035e0bfc7bb76589ab519ff741a39",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4511437,
            "upload_time": "2024-04-21T02:01:03",
            "upload_time_iso_8601": "2024-04-21T02:01:03.022106Z",
            "url": "https://files.pythonhosted.org/packages/6b/d4/e163fbe2642bd9cae9a07f4f6c85afb07a0bb093e516b11aba03bc8b33e2/nacos_sdk_rust_binding_py-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9fc399f9bad1e3960829d2c5618365085c3ac56cfe744136340787ffab34e8f",
                "md5": "24c6b3c552826e903e8070cac57b1119",
                "sha256": "fde7bb3501f05af47b9eb0e4ea6fd814d2dc9f5898a5b540c45a3f2926bebbbb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "24c6b3c552826e903e8070cac57b1119",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2814799,
            "upload_time": "2024-04-21T02:01:04",
            "upload_time_iso_8601": "2024-04-21T02:01:04.817101Z",
            "url": "https://files.pythonhosted.org/packages/f9/fc/399f9bad1e3960829d2c5618365085c3ac56cfe744136340787ffab34e8f/nacos_sdk_rust_binding_py-0.3.6-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec4be6377fe914128774e1f8620dcf0610df6f6549d66c111f18b99c2b1773d0",
                "md5": "513722c785824a7cbe0393512e92eab4",
                "sha256": "5a80d575c12f99ab476b5a07180e1309b5bd4fa7b99705a5ed5babe0a275a6e1"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "513722c785824a7cbe0393512e92eab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3079271,
            "upload_time": "2024-04-21T02:01:07",
            "upload_time_iso_8601": "2024-04-21T02:01:07.035508Z",
            "url": "https://files.pythonhosted.org/packages/ec/4b/e6377fe914128774e1f8620dcf0610df6f6549d66c111f18b99c2b1773d0/nacos_sdk_rust_binding_py-0.3.6-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fea5b2ed3dfbe94a3b281f92e71f9462343686c54c32b6a5f7b02894e3b1641",
                "md5": "71f3648f79a899c520a9fcd2d8a53c25",
                "sha256": "d42a13374d17daf0601572d966bb3dd1a1866b5c9102b2ea87731c57788078b6"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71f3648f79a899c520a9fcd2d8a53c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3368017,
            "upload_time": "2024-04-21T02:01:08",
            "upload_time_iso_8601": "2024-04-21T02:01:08.817194Z",
            "url": "https://files.pythonhosted.org/packages/9f/ea/5b2ed3dfbe94a3b281f92e71f9462343686c54c32b6a5f7b02894e3b1641/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a51e9b313052cc93a007706a154b13fe286b51add05bee2c04a2c78855d45524",
                "md5": "52b1436bab4c9de8f9a414824c95cbb5",
                "sha256": "6d93b60222409aeacf33ca5f36a881671506faff270748ea6ca890de177d7456"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "52b1436bab4c9de8f9a414824c95cbb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3297419,
            "upload_time": "2024-04-21T02:01:10",
            "upload_time_iso_8601": "2024-04-21T02:01:10.489555Z",
            "url": "https://files.pythonhosted.org/packages/a5/1e/9b313052cc93a007706a154b13fe286b51add05bee2c04a2c78855d45524/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efb24c0dc39e4caf9522dc07818433b2f62348574c8ad197cca9c2bd2d910824",
                "md5": "87540bd622a5afa305500a959a681d3a",
                "sha256": "839c330d8717f3d1c2f63e721a398ac075cd5215aaafd9372641f164f1a7ad1e"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "87540bd622a5afa305500a959a681d3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4730657,
            "upload_time": "2024-04-21T02:01:12",
            "upload_time_iso_8601": "2024-04-21T02:01:12.777891Z",
            "url": "https://files.pythonhosted.org/packages/ef/b2/4c0dc39e4caf9522dc07818433b2f62348574c8ad197cca9c2bd2d910824/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5471de0f7df1f5202d01777112c52e74114bbb77c15077e8d1ce879a09efbcf",
                "md5": "9cdb378dca7032216dcaaa0ce77340c5",
                "sha256": "bf6324a0a1ab8c108953292abeb6ac57bb867d79cb4837d0b8e5a3c4e375178c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9cdb378dca7032216dcaaa0ce77340c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4590234,
            "upload_time": "2024-04-21T02:01:14",
            "upload_time_iso_8601": "2024-04-21T02:01:14.448297Z",
            "url": "https://files.pythonhosted.org/packages/b5/47/1de0f7df1f5202d01777112c52e74114bbb77c15077e8d1ce879a09efbcf/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f740cb2702d639b84324f93f3d7c9775103aac835a2289dca05ad5c0f942766",
                "md5": "81a7cb316fc87f1d2ad50959b47a0e81",
                "sha256": "85690e8f26764f31aa36146d3137fffc24254628018d1772f0712cc58faa4da5"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "81a7cb316fc87f1d2ad50959b47a0e81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4539106,
            "upload_time": "2024-04-21T02:01:16",
            "upload_time_iso_8601": "2024-04-21T02:01:16.712332Z",
            "url": "https://files.pythonhosted.org/packages/6f/74/0cb2702d639b84324f93f3d7c9775103aac835a2289dca05ad5c0f942766/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66e1660e61d22c189d4f7b9bffa2187de1a510cf3299f37f6eb437650415d2fc",
                "md5": "f6220bcd3da1606f5f00616e39ad8020",
                "sha256": "c1b53e50c6b023324619867a5c1a20d3da3a79d426e12f274e8d25720c0b6ab3"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f6220bcd3da1606f5f00616e39ad8020",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4894429,
            "upload_time": "2024-04-21T02:01:18",
            "upload_time_iso_8601": "2024-04-21T02:01:18.945108Z",
            "url": "https://files.pythonhosted.org/packages/66/e1/660e61d22c189d4f7b9bffa2187de1a510cf3299f37f6eb437650415d2fc/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1dce49673b43d461ad943e2a93170249052f0c50d6045e481bcc16289cf6c3bf",
                "md5": "800110e4cdd47c47599b242bd282ce3a",
                "sha256": "d99e1a05f6a0facc585f5225efa0a849d577d2a2515c2c332d0d15c9a31b084c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "800110e4cdd47c47599b242bd282ce3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4929787,
            "upload_time": "2024-04-21T02:01:20",
            "upload_time_iso_8601": "2024-04-21T02:01:20.668782Z",
            "url": "https://files.pythonhosted.org/packages/1d/ce/49673b43d461ad943e2a93170249052f0c50d6045e481bcc16289cf6c3bf/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "807b4c2ff68cb0248cbfa214a6d6605de3a3c2af95e23f38a8ca6fb1b1cec8f2",
                "md5": "e3030c1ed67dd3a6f0a35bd572813ade",
                "sha256": "b282de28eb4dd511239b48049b8c7bb2d84b285a8cf8f1ff6b737770afbea8de"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3030c1ed67dd3a6f0a35bd572813ade",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4506344,
            "upload_time": "2024-04-21T02:01:22",
            "upload_time_iso_8601": "2024-04-21T02:01:22.499462Z",
            "url": "https://files.pythonhosted.org/packages/80/7b/4c2ff68cb0248cbfa214a6d6605de3a3c2af95e23f38a8ca6fb1b1cec8f2/nacos_sdk_rust_binding_py-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05dc1bb9d09c56220aad153d45881d4e2e888afd16a334a22c8829d33944864b",
                "md5": "2e34f154bac3e4e6e07e5b996e27725c",
                "sha256": "4fa096eeb8a1676ea3612e2a473eb64d2d8a3436a8e8f3777c2a504456e901cf"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2e34f154bac3e4e6e07e5b996e27725c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2815443,
            "upload_time": "2024-04-21T02:01:24",
            "upload_time_iso_8601": "2024-04-21T02:01:24.445483Z",
            "url": "https://files.pythonhosted.org/packages/05/dc/1bb9d09c56220aad153d45881d4e2e888afd16a334a22c8829d33944864b/nacos_sdk_rust_binding_py-0.3.6-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d69c4d34eb6e60e90bf58b1fe39ce6bb614d40872721ee2bd02e7cba1226837f",
                "md5": "6cd45e359aef20e69baccbe3c6f3779b",
                "sha256": "0fb9cd46e518b47f6864017c28b29150643dc38c98531e392c7981cb33777384"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6cd45e359aef20e69baccbe3c6f3779b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3082661,
            "upload_time": "2024-04-21T02:01:25",
            "upload_time_iso_8601": "2024-04-21T02:01:25.986652Z",
            "url": "https://files.pythonhosted.org/packages/d6/9c/4d34eb6e60e90bf58b1fe39ce6bb614d40872721ee2bd02e7cba1226837f/nacos_sdk_rust_binding_py-0.3.6-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73f560830e045e8d7f2de3b4ec87422440bd82686e417cd2749390ac5aa278ce",
                "md5": "4eca8860f7d6dcb01c7fcee65e771fe9",
                "sha256": "f10ee16237bec32e82d11e3c9e0f353a93ea1fe7801e6aa91ad531aaa4dd0898"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "4eca8860f7d6dcb01c7fcee65e771fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4733476,
            "upload_time": "2024-04-21T02:01:28",
            "upload_time_iso_8601": "2024-04-21T02:01:28.207985Z",
            "url": "https://files.pythonhosted.org/packages/73/f5/60830e045e8d7f2de3b4ec87422440bd82686e417cd2749390ac5aa278ce/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbc138a8ccea53830c266206121bc960594968dd6b9baa778a02f33aa3461569",
                "md5": "d39b3fb1b056a4ea41e4f653eee9c402",
                "sha256": "15a9fa7e7e6e5481c9161526557f7d6cfba8571066cc09f7b01510395034db02"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d39b3fb1b056a4ea41e4f653eee9c402",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4595483,
            "upload_time": "2024-04-21T02:01:29",
            "upload_time_iso_8601": "2024-04-21T02:01:29.888094Z",
            "url": "https://files.pythonhosted.org/packages/bb/c1/38a8ccea53830c266206121bc960594968dd6b9baa778a02f33aa3461569/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cad807b4f15da4048a205d02d872e79c7c098e15498009ff62801e75fc2d8b5",
                "md5": "626735488b97088ce3c839798b03b206",
                "sha256": "38eb87e2597d4729aaec3a0707ba05fb211ae929cdc506d7861cd250bafd3788"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "626735488b97088ce3c839798b03b206",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4546324,
            "upload_time": "2024-04-21T02:01:31",
            "upload_time_iso_8601": "2024-04-21T02:01:31.574712Z",
            "url": "https://files.pythonhosted.org/packages/1c/ad/807b4f15da4048a205d02d872e79c7c098e15498009ff62801e75fc2d8b5/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "538fa8b1e77e687e551cc680e73bdcc0b82430e36d667ec8cc8dc275b3124674",
                "md5": "1554741ba252082e2a3d514f2ec142f7",
                "sha256": "7431a1e64696c8a355af87864f4d23f8908f6fa576bdc0847bd2f98996842e7a"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1554741ba252082e2a3d514f2ec142f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4895538,
            "upload_time": "2024-04-21T02:01:33",
            "upload_time_iso_8601": "2024-04-21T02:01:33.349024Z",
            "url": "https://files.pythonhosted.org/packages/53/8f/a8b1e77e687e551cc680e73bdcc0b82430e36d667ec8cc8dc275b3124674/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55c4215ce70442744de62c33e291a273f527f153e774fd376e9399aa33af3784",
                "md5": "744751a38ad2e5e87bed51ef00f46e79",
                "sha256": "868dc0bd00e501bf7d7a71d8cb510c2e1403da92cda03b77ed920ca0e5058786"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "744751a38ad2e5e87bed51ef00f46e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4947407,
            "upload_time": "2024-04-21T02:01:35",
            "upload_time_iso_8601": "2024-04-21T02:01:35.201917Z",
            "url": "https://files.pythonhosted.org/packages/55/c4/215ce70442744de62c33e291a273f527f153e774fd376e9399aa33af3784/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60f420c1f9c13b1c4710e2dad3ed6ef3908a825c31d8e60a4162a2f6ade7ab8c",
                "md5": "a4f95432d76b89e4e78bdb104ec69723",
                "sha256": "b079eb6ce95d93c5d9c59beb576a19892378ca6cdac98664af501fb52f0063f7"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4f95432d76b89e4e78bdb104ec69723",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4513248,
            "upload_time": "2024-04-21T02:01:36",
            "upload_time_iso_8601": "2024-04-21T02:01:36.960672Z",
            "url": "https://files.pythonhosted.org/packages/60/f4/20c1f9c13b1c4710e2dad3ed6ef3908a825c31d8e60a4162a2f6ade7ab8c/nacos_sdk_rust_binding_py-0.3.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fa66edb11d72b4884611eb9e706386195bbf567f30d162a0e6dc734dce0e23a",
                "md5": "dd5472a0ca78c56da1f3e0a995918898",
                "sha256": "db5efa40866b333c8cac3b01b53bfafe5c48028f61f44f925e9d8b76c70e20b8"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "dd5472a0ca78c56da1f3e0a995918898",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2816554,
            "upload_time": "2024-04-21T02:01:39",
            "upload_time_iso_8601": "2024-04-21T02:01:39.171173Z",
            "url": "https://files.pythonhosted.org/packages/2f/a6/6edb11d72b4884611eb9e706386195bbf567f30d162a0e6dc734dce0e23a/nacos_sdk_rust_binding_py-0.3.6-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdd3f0ad20aabbd107b0140afe939f5ed24b0b4b6ce1eb5e29c59f9d62c440ca",
                "md5": "fc97266f48e89574df753ed0f477570b",
                "sha256": "f1bc1b428698d6a6b06dd5aa9ee92aa4476422b44cd173a6c639938a5a039194"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fc97266f48e89574df753ed0f477570b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3082830,
            "upload_time": "2024-04-21T02:01:41",
            "upload_time_iso_8601": "2024-04-21T02:01:41.549543Z",
            "url": "https://files.pythonhosted.org/packages/fd/d3/f0ad20aabbd107b0140afe939f5ed24b0b4b6ce1eb5e29c59f9d62c440ca/nacos_sdk_rust_binding_py-0.3.6-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bae8b22e4b5bcf3965f7cd6244ade95412129ce65bd4fc31d0a6a3c2a672822",
                "md5": "6d0d1653f7d25722d4ff05f69b34ea44",
                "sha256": "0a600fa95632adda1067eb80ca511234f0330581db3c6fd8a43cf77e67e97e1e"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "6d0d1653f7d25722d4ff05f69b34ea44",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4732849,
            "upload_time": "2024-04-21T02:01:43",
            "upload_time_iso_8601": "2024-04-21T02:01:43.184175Z",
            "url": "https://files.pythonhosted.org/packages/6b/ae/8b22e4b5bcf3965f7cd6244ade95412129ce65bd4fc31d0a6a3c2a672822/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23a164c5cc38c9a80bae1b05f6521882ecbe7884729fd525cceceb58fdf669a1",
                "md5": "91e949146a3f8c643e335f5da7912fe2",
                "sha256": "f7c49ec82059dc4c67f274dbb5a03a1dbc8aca58af1ec0d1586cf019be45e03d"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91e949146a3f8c643e335f5da7912fe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4596068,
            "upload_time": "2024-04-21T02:01:44",
            "upload_time_iso_8601": "2024-04-21T02:01:44.718253Z",
            "url": "https://files.pythonhosted.org/packages/23/a1/64c5cc38c9a80bae1b05f6521882ecbe7884729fd525cceceb58fdf669a1/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e1f020857512961e4b17bae20f63dbe64862c6858ab852fa952d7c1a124897f",
                "md5": "9fb0a2b647ea0243f07045fec97186e1",
                "sha256": "4fdc637fdc446b22e57a4ded2b4fe441d338392db3d48c23f1fafddf882b2614"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9fb0a2b647ea0243f07045fec97186e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4542554,
            "upload_time": "2024-04-21T02:01:46",
            "upload_time_iso_8601": "2024-04-21T02:01:46.455397Z",
            "url": "https://files.pythonhosted.org/packages/1e/1f/020857512961e4b17bae20f63dbe64862c6858ab852fa952d7c1a124897f/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc87778bacdd2a269c4739a9b987f5b5071ab4e6d6ae1557049084789baeae5c",
                "md5": "07222f3526707309b6d686d5ef827696",
                "sha256": "a75ba0ffb71a6ee6aaac0f1ed58851766cfd383e21f88163a3e4d1e89b070537"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "07222f3526707309b6d686d5ef827696",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4897103,
            "upload_time": "2024-04-21T02:01:48",
            "upload_time_iso_8601": "2024-04-21T02:01:48.023828Z",
            "url": "https://files.pythonhosted.org/packages/dc/87/778bacdd2a269c4739a9b987f5b5071ab4e6d6ae1557049084789baeae5c/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eade44e77c0a2fecc6af793b0bc3de5ac63f7fb97a0ca0ffc0453697b9d1576a",
                "md5": "f827e3e5f22702b751afb75651ad6030",
                "sha256": "86d833e07c65711a9afe562d9897bde436d8eab7682c90c8a342eebb4710d844"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f827e3e5f22702b751afb75651ad6030",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4947113,
            "upload_time": "2024-04-21T02:01:49",
            "upload_time_iso_8601": "2024-04-21T02:01:49.611191Z",
            "url": "https://files.pythonhosted.org/packages/ea/de/44e77c0a2fecc6af793b0bc3de5ac63f7fb97a0ca0ffc0453697b9d1576a/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83d2b57df3b80e06e148190c0a914d1d46b25e5aed8d23f9cf764ea52bbdfd26",
                "md5": "ebe80c0913b4c5927ec3d68cb4e89ebb",
                "sha256": "35fae28c563759e7e329542cc08e25eda3d84a045fd7fa535b8115f625ebbc34"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebe80c0913b4c5927ec3d68cb4e89ebb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4510799,
            "upload_time": "2024-04-21T02:01:51",
            "upload_time_iso_8601": "2024-04-21T02:01:51.063544Z",
            "url": "https://files.pythonhosted.org/packages/83/d2/b57df3b80e06e148190c0a914d1d46b25e5aed8d23f9cf764ea52bbdfd26/nacos_sdk_rust_binding_py-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78c5a263a66176c8d1e5fb4c8db663169ec722e032948b5c0e22d82e929cf5db",
                "md5": "c835e22bf5e19b6e3633da4707824796",
                "sha256": "2d361240b3f3cb00bf27a98ea6505c87b23c27023323ca25efa7f73a28a26b68"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c835e22bf5e19b6e3633da4707824796",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2816294,
            "upload_time": "2024-04-21T02:01:52",
            "upload_time_iso_8601": "2024-04-21T02:01:52.546384Z",
            "url": "https://files.pythonhosted.org/packages/78/c5/a263a66176c8d1e5fb4c8db663169ec722e032948b5c0e22d82e929cf5db/nacos_sdk_rust_binding_py-0.3.6-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fd21174b2c5650b57de45b96573256582bf64664c44f9900bd86f39f7eb4e93",
                "md5": "3fdcdb32cae32f3e4afae473affcad8f",
                "sha256": "837a627543fda4c29ac85939283d4aadab3a98d3c629adcd9997255bc1a17df9"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3fdcdb32cae32f3e4afae473affcad8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3079264,
            "upload_time": "2024-04-21T02:01:53",
            "upload_time_iso_8601": "2024-04-21T02:01:53.987388Z",
            "url": "https://files.pythonhosted.org/packages/8f/d2/1174b2c5650b57de45b96573256582bf64664c44f9900bd86f39f7eb4e93/nacos_sdk_rust_binding_py-0.3.6-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84265fc9cd65822e22cad66503471942b7c764edce5ed3b69f559bfa40261fae",
                "md5": "6b1ddb1e2d11bb6151553b544661ef06",
                "sha256": "2df96010002262cccf4eeba186f0bfc94beb2d197cf1fa399daccef0c704f645"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "6b1ddb1e2d11bb6151553b544661ef06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4732618,
            "upload_time": "2024-04-21T02:01:56",
            "upload_time_iso_8601": "2024-04-21T02:01:56.212372Z",
            "url": "https://files.pythonhosted.org/packages/84/26/5fc9cd65822e22cad66503471942b7c764edce5ed3b69f559bfa40261fae/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5681d6ccb9633648b4ad6fb69059b20149aced47b4f9138424fbf0e8180bba1f",
                "md5": "01723d6c9a007b39835ad58ce673cd45",
                "sha256": "aef51e68becc24fd498ffb4164eb9aefa03d71459c382aa6620200f6634db0eb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "01723d6c9a007b39835ad58ce673cd45",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4595626,
            "upload_time": "2024-04-21T02:01:57",
            "upload_time_iso_8601": "2024-04-21T02:01:57.903357Z",
            "url": "https://files.pythonhosted.org/packages/56/81/d6ccb9633648b4ad6fb69059b20149aced47b4f9138424fbf0e8180bba1f/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9d8afce0788a06405a808b8a8b1d12695804f4b2c9c0be042569f55d9a430e9",
                "md5": "8596149a8ef47e8cc46a4db2e530e065",
                "sha256": "361f16e05bb1bec2e11b1d092653cb68a1d2f06503dffa54e70c794cdfc03e13"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8596149a8ef47e8cc46a4db2e530e065",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4542078,
            "upload_time": "2024-04-21T02:02:00",
            "upload_time_iso_8601": "2024-04-21T02:02:00.375194Z",
            "url": "https://files.pythonhosted.org/packages/d9/d8/afce0788a06405a808b8a8b1d12695804f4b2c9c0be042569f55d9a430e9/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd7eaa92f512bf9b65a4678b7ea2b73d1b4bc9bcbeeec70d0724fc5c684930c5",
                "md5": "507c011ad90146c7ebac32b54215acd6",
                "sha256": "d051ad2b8a6971d88d2145950dd6068b04a7924684aa877266d5e680af36b8bd"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "507c011ad90146c7ebac32b54215acd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4896633,
            "upload_time": "2024-04-21T02:02:02",
            "upload_time_iso_8601": "2024-04-21T02:02:02.855318Z",
            "url": "https://files.pythonhosted.org/packages/cd/7e/aa92f512bf9b65a4678b7ea2b73d1b4bc9bcbeeec70d0724fc5c684930c5/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "282d669580fbd61d4c5b1e2431bb7fc77151d9e52f6f0b00a32795156ab9be49",
                "md5": "58e40bc059ad1da44635ff0c1db0affd",
                "sha256": "d30521da7b9bdae4b2a1f99d3e266c4fbbe4caac2d5ddd1b81b1060aed33409e"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "58e40bc059ad1da44635ff0c1db0affd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4946926,
            "upload_time": "2024-04-21T02:02:05",
            "upload_time_iso_8601": "2024-04-21T02:02:05.178794Z",
            "url": "https://files.pythonhosted.org/packages/28/2d/669580fbd61d4c5b1e2431bb7fc77151d9e52f6f0b00a32795156ab9be49/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba9d2523621497c2c89fb3d3dbd312bfe846ab51d82d4f1b767d42781d0ca879",
                "md5": "ab4700451d1a6c6b6becf777daba2d78",
                "sha256": "f50115a4c066ddc0c52af4d0988b2a7b9063f724b57054c4fa9c53540f0f8eb7"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab4700451d1a6c6b6becf777daba2d78",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4511158,
            "upload_time": "2024-04-21T02:02:07",
            "upload_time_iso_8601": "2024-04-21T02:02:07.015209Z",
            "url": "https://files.pythonhosted.org/packages/ba/9d/2523621497c2c89fb3d3dbd312bfe846ab51d82d4f1b767d42781d0ca879/nacos_sdk_rust_binding_py-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c06f318416eac9ef17406e5f2211f4b77b00e3e90976a56ecd6855d55d7c0d31",
                "md5": "390ce949dacda50a0d97397b9d3edb5b",
                "sha256": "8cac0db5101f1cd889c7f8f6d59742ddbd87487f8e768a2bc95634c3f2172fbb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "390ce949dacda50a0d97397b9d3edb5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2815024,
            "upload_time": "2024-04-21T02:02:08",
            "upload_time_iso_8601": "2024-04-21T02:02:08.656767Z",
            "url": "https://files.pythonhosted.org/packages/c0/6f/318416eac9ef17406e5f2211f4b77b00e3e90976a56ecd6855d55d7c0d31/nacos_sdk_rust_binding_py-0.3.6-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48d5bd413c1b8fddee97efbc941a65eaf08fc1dd754698ad77c5c2e105e52528",
                "md5": "1eeca45908cbba4ec62fac0eebc759fc",
                "sha256": "a862b17a30071105a31c6666319a9ef2b552ff87f34353761fe7a2c32c3b99b7"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1eeca45908cbba4ec62fac0eebc759fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3079225,
            "upload_time": "2024-04-21T02:02:10",
            "upload_time_iso_8601": "2024-04-21T02:02:10.457533Z",
            "url": "https://files.pythonhosted.org/packages/48/d5/bd413c1b8fddee97efbc941a65eaf08fc1dd754698ad77c5c2e105e52528/nacos_sdk_rust_binding_py-0.3.6-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf29579ca09cde2372a057d98f121db4ecf1737ce2b406a81c66e3bb11897420",
                "md5": "b1abef429f8f0b1dfd2c3b3e6496e46d",
                "sha256": "688bdb71b407bf53dc860fa05d4a5de24cd3193d5882be9351537773d7499240"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "b1abef429f8f0b1dfd2c3b3e6496e46d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4730636,
            "upload_time": "2024-04-21T02:02:13",
            "upload_time_iso_8601": "2024-04-21T02:02:13.049730Z",
            "url": "https://files.pythonhosted.org/packages/cf/29/579ca09cde2372a057d98f121db4ecf1737ce2b406a81c66e3bb11897420/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afeac0b2498f48257238578f301a4eb56a11e977e84e2b031d1c877d5cb91dce",
                "md5": "960795e344fe083d5c6c5117cf47480e",
                "sha256": "29d37f75ffb415132f47cce0388e401dd6e259e2e0b33c1caad8a910e7addbfb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "960795e344fe083d5c6c5117cf47480e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4594525,
            "upload_time": "2024-04-21T02:02:14",
            "upload_time_iso_8601": "2024-04-21T02:02:14.598482Z",
            "url": "https://files.pythonhosted.org/packages/af/ea/c0b2498f48257238578f301a4eb56a11e977e84e2b031d1c877d5cb91dce/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06ffd754e930acdea2d072e102f7d0b2ba5567cbeb7060d832322f8326e39db8",
                "md5": "4752f38c4001aeadbf4935b0f9f603b4",
                "sha256": "6634b7ba2670c06d269adcd693357c2ab148f1226dd001a674f268f4ea4b1f5f"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4752f38c4001aeadbf4935b0f9f603b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4547013,
            "upload_time": "2024-04-21T02:02:16",
            "upload_time_iso_8601": "2024-04-21T02:02:16.213150Z",
            "url": "https://files.pythonhosted.org/packages/06/ff/d754e930acdea2d072e102f7d0b2ba5567cbeb7060d832322f8326e39db8/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bccfd6535044a263a7f1d3450885791defa7e1a5aca4bfa25d39abae0c0fa0df",
                "md5": "cd1e996f6462d49cfe69df8d0dce97ae",
                "sha256": "a8763d6ecd3491ac8986b4f63b5de06091907f78899907d112cc16846a7422b7"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cd1e996f6462d49cfe69df8d0dce97ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4896290,
            "upload_time": "2024-04-21T02:02:17",
            "upload_time_iso_8601": "2024-04-21T02:02:17.847085Z",
            "url": "https://files.pythonhosted.org/packages/bc/cf/d6535044a263a7f1d3450885791defa7e1a5aca4bfa25d39abae0c0fa0df/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39fd5874ef3cd595a7f84cbede28dde6781e479577873c338d973a2303b564f8",
                "md5": "dca2abf84aaa0219425c44c7875035aa",
                "sha256": "c1c16add26b040347b3ee4d372411f41b02aac695429655476adef5d2afe1d48"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dca2abf84aaa0219425c44c7875035aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4944590,
            "upload_time": "2024-04-21T02:02:19",
            "upload_time_iso_8601": "2024-04-21T02:02:19.468581Z",
            "url": "https://files.pythonhosted.org/packages/39/fd/5874ef3cd595a7f84cbede28dde6781e479577873c338d973a2303b564f8/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3afa23f7df5f208a5773d30e6d5c67c17605537bc479fec115d53a6b1916374a",
                "md5": "4a81aa18fbe5f5a558d874748d59a2b4",
                "sha256": "8a4b495281ac073fb9a884890f589e0b01316450e50664d300d3d723d681396c"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a81aa18fbe5f5a558d874748d59a2b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 4506809,
            "upload_time": "2024-04-21T02:02:21",
            "upload_time_iso_8601": "2024-04-21T02:02:21.065951Z",
            "url": "https://files.pythonhosted.org/packages/3a/fa/23f7df5f208a5773d30e6d5c67c17605537bc479fec115d53a6b1916374a/nacos_sdk_rust_binding_py-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd0f8bc63061b6d1264f621bfbd00ae91e913ed648b6c9115e6ba980fbdbc976",
                "md5": "3fbe99eeb7ab5adcd79903aba4587698",
                "sha256": "e3348a77128459f9afc62bc6735b37edc2f63a98ff48f1d49ed9d40c8f2bc4fb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3fbe99eeb7ab5adcd79903aba4587698",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4733076,
            "upload_time": "2024-04-21T02:02:22",
            "upload_time_iso_8601": "2024-04-21T02:02:22.604370Z",
            "url": "https://files.pythonhosted.org/packages/bd/0f/8bc63061b6d1264f621bfbd00ae91e913ed648b6c9115e6ba980fbdbc976/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7593906ab4cec89cd778d13399036dc5257f1e832745071bf706b11235982178",
                "md5": "f8c92ff0984ef7990fdf85f9ed80e92a",
                "sha256": "daa935c6c062f138d235f6e3a0671f63a333f7b406d7bb215472160ed1a14565"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f8c92ff0984ef7990fdf85f9ed80e92a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4596456,
            "upload_time": "2024-04-21T02:02:25",
            "upload_time_iso_8601": "2024-04-21T02:02:25.440022Z",
            "url": "https://files.pythonhosted.org/packages/75/93/906ab4cec89cd778d13399036dc5257f1e832745071bf706b11235982178/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e37304d4e9cc0db8d4c6331132cb12b86c59bb14b38fa73c16db48a602e98b10",
                "md5": "679b9e4689a7186041aeda05708400a3",
                "sha256": "7eb2e393f74b4273a08f0eb09f3fa6154fc5d225662a18981ebce835c60ff619"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "679b9e4689a7186041aeda05708400a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4550185,
            "upload_time": "2024-04-21T02:02:27",
            "upload_time_iso_8601": "2024-04-21T02:02:27.406543Z",
            "url": "https://files.pythonhosted.org/packages/e3/73/04d4e9cc0db8d4c6331132cb12b86c59bb14b38fa73c16db48a602e98b10/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61dc8f7c270d5e232e7cf6654a855400f98772bb47ebe86f9c6879f9f9f801d6",
                "md5": "abd06f4d8c9aee2caf43defc0116cde4",
                "sha256": "fe9abe3170fa3c46f8c015497c663d8f322314b36320e1f19f29850c0bad1c56"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "abd06f4d8c9aee2caf43defc0116cde4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4898797,
            "upload_time": "2024-04-21T02:02:29",
            "upload_time_iso_8601": "2024-04-21T02:02:29.739833Z",
            "url": "https://files.pythonhosted.org/packages/61/dc/8f7c270d5e232e7cf6654a855400f98772bb47ebe86f9c6879f9f9f801d6/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4fed78133e5e9d68a29d04d0cc57ba014972aa33a026487da142aa38a85fb7f",
                "md5": "fae4ada817aaae58a135d23c58d7f8be",
                "sha256": "0c9d44407916df7481926df07445cb50bf3514d4d952675e5fabeba0737e7eae"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fae4ada817aaae58a135d23c58d7f8be",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4947204,
            "upload_time": "2024-04-21T02:02:32",
            "upload_time_iso_8601": "2024-04-21T02:02:32.069671Z",
            "url": "https://files.pythonhosted.org/packages/f4/fe/d78133e5e9d68a29d04d0cc57ba014972aa33a026487da142aa38a85fb7f/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3989f95fbea5644b45d7b039408a7290334381c7d4c4075e39f44bf1f550398f",
                "md5": "f11aa50665bc9561113b40a20f9cc8c4",
                "sha256": "dd89859f27f8186ce7a6975e77b4e3c3aff5d42cd1a36c9d1cfe5816b463c3d1"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f11aa50665bc9561113b40a20f9cc8c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 4511686,
            "upload_time": "2024-04-21T02:02:33",
            "upload_time_iso_8601": "2024-04-21T02:02:33.836306Z",
            "url": "https://files.pythonhosted.org/packages/39/89/f95fbea5644b45d7b039408a7290334381c7d4c4075e39f44bf1f550398f/nacos_sdk_rust_binding_py-0.3.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f48bcacc801ae6a408bd431a0463a3fa12a062c5e60a19224448cd6f6d109e20",
                "md5": "a3f6285969a35d964ee28480f5782148",
                "sha256": "88ff1bc8fa5156d79ceaf5984790fd8b8c1284ca4bff1de3eb57e1c51d1a9204"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "a3f6285969a35d964ee28480f5782148",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4730506,
            "upload_time": "2024-04-21T02:02:35",
            "upload_time_iso_8601": "2024-04-21T02:02:35.400977Z",
            "url": "https://files.pythonhosted.org/packages/f4/8b/cacc801ae6a408bd431a0463a3fa12a062c5e60a19224448cd6f6d109e20/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba233668e2e4ac44422ecd00ee391f3ddc0e84aefc0188eb0bbbc93e4ce194e1",
                "md5": "d1c66947451e80886990bf5746e3b05b",
                "sha256": "4354fbaeb44d190b7a01e611ef63cd2c7695d417509e22623548e0bc3d952ba0"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1c66947451e80886990bf5746e3b05b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4593702,
            "upload_time": "2024-04-21T02:02:36",
            "upload_time_iso_8601": "2024-04-21T02:02:36.987665Z",
            "url": "https://files.pythonhosted.org/packages/ba/23/3668e2e4ac44422ecd00ee391f3ddc0e84aefc0188eb0bbbc93e4ce194e1/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce43b14c8282af1d28c4ad5822d41b984b37af76c8db1fe298eddbb8c549b7ff",
                "md5": "bd65e869093b99c9749dd8ced4a488f7",
                "sha256": "f5d257d3018ff2d6ec572e97dd4234824f5a6e714821e32d6757af9c39c43fa8"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bd65e869093b99c9749dd8ced4a488f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4547099,
            "upload_time": "2024-04-21T02:02:38",
            "upload_time_iso_8601": "2024-04-21T02:02:38.541947Z",
            "url": "https://files.pythonhosted.org/packages/ce/43/b14c8282af1d28c4ad5822d41b984b37af76c8db1fe298eddbb8c549b7ff/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e6ede5902e03839716dd8dcd515738ee71536861b2992a019341302b4062456",
                "md5": "b0be959159c174a707fa950eb54525c8",
                "sha256": "45cd3ec2dc45d9f20425ce49db2795297c61fb1a34e09a39c0e3b139efcebb49"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b0be959159c174a707fa950eb54525c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4896657,
            "upload_time": "2024-04-21T02:02:40",
            "upload_time_iso_8601": "2024-04-21T02:02:40.396914Z",
            "url": "https://files.pythonhosted.org/packages/8e/6e/de5902e03839716dd8dcd515738ee71536861b2992a019341302b4062456/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4927edbb600f30b94a42ccfb2a576e1d3702c528811280f4f4e86db44b5bb5b",
                "md5": "698b9e216ae7e58924a406a87e825c37",
                "sha256": "90b12d31d0ac80a32350ab6bf3361ea8c00b16bc85112c404e2c1c657f6d8b56"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "698b9e216ae7e58924a406a87e825c37",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4944633,
            "upload_time": "2024-04-21T02:02:42",
            "upload_time_iso_8601": "2024-04-21T02:02:42.140079Z",
            "url": "https://files.pythonhosted.org/packages/e4/92/7edbb600f30b94a42ccfb2a576e1d3702c528811280f4f4e86db44b5bb5b/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd08bd32eff4846244a26891ee0a91a05b2b00feffcdcd0e68f81e14d387accd",
                "md5": "94987642b8691707172e2085b968472e",
                "sha256": "16d2dc58ee89a1e26b7b54821435acfca9dd48fb30d7691a75386e6d48e2e334"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94987642b8691707172e2085b968472e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 4506543,
            "upload_time": "2024-04-21T02:02:44",
            "upload_time_iso_8601": "2024-04-21T02:02:44.038641Z",
            "url": "https://files.pythonhosted.org/packages/cd/08/bd32eff4846244a26891ee0a91a05b2b00feffcdcd0e68f81e14d387accd/nacos_sdk_rust_binding_py-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14acc657c491ef09ea274fca7de1afc70c9f6cec24ca1aebd3380d86014a1ba0",
                "md5": "5e84d6be85095ad84133fa4187120c37",
                "sha256": "8ab1db453ea1fa0f4d6799e8020ef2ba06ff05d09a013e9620bc448cc52b4dc9"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "5e84d6be85095ad84133fa4187120c37",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4731113,
            "upload_time": "2024-04-21T02:02:45",
            "upload_time_iso_8601": "2024-04-21T02:02:45.745225Z",
            "url": "https://files.pythonhosted.org/packages/14/ac/c657c491ef09ea274fca7de1afc70c9f6cec24ca1aebd3380d86014a1ba0/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0d72ed5d5875b7e31a240307f99735555da66de38f14310fa4b65930fe487ff",
                "md5": "0fa8a13cf5542ecb1055d4c7511fd6e9",
                "sha256": "d76fa27b83b96dd4791e5a3fdf9de374d3c238e6d771ef6c9c32f0a76bfd30f9"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0fa8a13cf5542ecb1055d4c7511fd6e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4594075,
            "upload_time": "2024-04-21T02:02:47",
            "upload_time_iso_8601": "2024-04-21T02:02:47.333857Z",
            "url": "https://files.pythonhosted.org/packages/b0/d7/2ed5d5875b7e31a240307f99735555da66de38f14310fa4b65930fe487ff/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdb10cd371680036eaffd9939cd5c8fce0f791b5f1ce6d0fb284c2a3ffcaeeaf",
                "md5": "5f9e1c8dffdf55f9ee05730af55de03f",
                "sha256": "8456a73cf10e94445645b18a464a214d1647504404b9295d678b04daf0372556"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5f9e1c8dffdf55f9ee05730af55de03f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4546563,
            "upload_time": "2024-04-21T02:02:49",
            "upload_time_iso_8601": "2024-04-21T02:02:49.024957Z",
            "url": "https://files.pythonhosted.org/packages/fd/b1/0cd371680036eaffd9939cd5c8fce0f791b5f1ce6d0fb284c2a3ffcaeeaf/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3154c23e51171c648585fc5419eba9e86291d51a336f731370e2a8d6cb64851d",
                "md5": "d182eb28dd13503e287b0e50cb5023de",
                "sha256": "5b2f080d53411578775dd5cb850b1ec1134ffc50f1700241a7b59688b173e071"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d182eb28dd13503e287b0e50cb5023de",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4896446,
            "upload_time": "2024-04-21T02:02:51",
            "upload_time_iso_8601": "2024-04-21T02:02:51.314522Z",
            "url": "https://files.pythonhosted.org/packages/31/54/c23e51171c648585fc5419eba9e86291d51a336f731370e2a8d6cb64851d/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "471a9ff10837665eea2a4b84152959baaf27ad9f7751aaaa904055a206f1622a",
                "md5": "629ec40293f005520186394024d380ba",
                "sha256": "2a7ce77501ca2fb794096dc919ab435818e2716aa0b6e3bfed099a515858042b"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "629ec40293f005520186394024d380ba",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4944372,
            "upload_time": "2024-04-21T02:02:53",
            "upload_time_iso_8601": "2024-04-21T02:02:53.110948Z",
            "url": "https://files.pythonhosted.org/packages/47/1a/9ff10837665eea2a4b84152959baaf27ad9f7751aaaa904055a206f1622a/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5422f32f8fc2f50dfb6097aef5ec90fb71548ea06c970291825d3011758f1ce4",
                "md5": "d65b7f887622872bc5b7f134a6e0d28c",
                "sha256": "96cd481a58d6dff3d84953f8c1970a16980371b781bf2c54a5ff7c7e81ea6bbb"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d65b7f887622872bc5b7f134a6e0d28c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 4506703,
            "upload_time": "2024-04-21T02:02:54",
            "upload_time_iso_8601": "2024-04-21T02:02:54.819934Z",
            "url": "https://files.pythonhosted.org/packages/54/22/f32f8fc2f50dfb6097aef5ec90fb71548ea06c970291825d3011758f1ce4/nacos_sdk_rust_binding_py-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e639568e977c9be38d9bcec1a6101d90596b503a8e6a4616405c5871d911e25",
                "md5": "7490ccf234481b9b4cb31f9a345bfc48",
                "sha256": "019433014d68c65b8a4c541b452c565cc541ed8c9933ae15884a7cde737e68bd"
            },
            "downloads": -1,
            "filename": "nacos_sdk_rust_binding_py-0.3.6.tar.gz",
            "has_sig": false,
            "md5_digest": "7490ccf234481b9b4cb31f9a345bfc48",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 28943,
            "upload_time": "2024-04-21T02:02:56",
            "upload_time_iso_8601": "2024-04-21T02:02:56.844817Z",
            "url": "https://files.pythonhosted.org/packages/3e/63/9568e977c9be38d9bcec1a6101d90596b503a8e6a4616405c5871d911e25/nacos_sdk_rust_binding_py-0.3.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 02:02:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "opc-source",
    "github_project": "nacos-sdk-rust-binding-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nacos-sdk-rust-binding-py"
}
        
Elapsed time: 0.24402s