deebot-client


Namedeebot-client JSON
Version 16.3.0 PyPI version JSON
download
home_pageNone
SummaryDeebot client library in python 3
upload_time2025-11-02 16:17:05
maintainerNone
docs_urlNone
authorNone
requires_python>=3.13.0
licenseNone
keywords home automation homeassistant vacuum robot deebot ecovacs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Client Library for Deebot devices (Vacuums)

[![PyPI - Downloads](https://img.shields.io/pypi/dw/deebot-client?style=for-the-badge)](https://pypi.org/project/deebot-client)
<a href="https://www.buymeacoffee.com/edenhaus" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-black.png" width="150px" height="35px" alt="Buy Me A Coffee" style="height: 35px !important;width: 150px !important;" ></a>

## IMPORTANT: Contribution only

This project is maintained in our spare time. Please be patient and respectful.

It's not related to Ecovacs or Deebot and we don't get any support from them.

As all is reverse engineered it might take some time to add new features and we can't guarantee that all features will be added.

Unfortunately some people think we are paid to do this and get angry if things don't work as they expect.
**As result of this, we decided that this project is in a contribution only mode.**

This means, if you want something to be supported/added, you have to provide a fix yourself, wait for someone else to fix it or pay someone to do it.
Members will still review and help on pull requests.

## Installation

If you have a recent version of Python 3, you should be able to
do `pip install deebot-client` to get the most recently released version of
this.

## Usage

To get started, you'll need to have already set up an EcoVacs account
using your smartphone.

You are welcome to try using this as a python library for other efforts.
A simple usage might go something like this:

```python
import aiohttp
import asyncio
import logging
import time

from deebot_client.api_client import ApiClient
from deebot_client.authentication import Authenticator, create_rest_config
from deebot_client.commands.json.clean import Clean, CleanAction
from deebot_client.events import BatteryEvent
from deebot_client.mqtt_client import MqttClient, create_mqtt_config
from deebot_client.util import md5
from deebot_client.device import Device

device_id = md5(str(time.time()))
account_id = "your email or phonenumber (cn)"
password_hash = md5("yourPassword")
country = "DE"


async def main():
  async with aiohttp.ClientSession() as session:
    logging.basicConfig(level=logging.DEBUG)
    rest_config = create_rest_config(session, device_id=device_id, alpha_2_country=country)

    authenticator = Authenticator(rest_config, account_id, password_hash)
    api_client = ApiClient(authenticator)

    devices_ = await api_client.get_devices()

    bot = Device(devices_.mqtt[0], authenticator)

    mqtt_config = create_mqtt_config(device_id=device_id, country=country)
    mqtt = MqttClient(mqtt_config, authenticator)
    await bot.initialize(mqtt)

    async def on_battery(event: BatteryEvent):
      # Do stuff on battery event
      if event.value == 100:
        # Battery full
        pass

    # Subscribe for events (more events available)
    bot.events.subscribe(BatteryEvent, on_battery)

    # Execute commands
    await bot.execute_command(Clean(CleanAction.START))
    await asyncio.sleep(900)  # Wait for...
    await bot.execute_command(Charge())


if __name__ == '__main__':
  loop = asyncio.get_event_loop()
  loop.create_task(main())
  loop.run_forever()
```

A more advanced example can be found [here](https://github.com/And3rsL/Deebot-for-Home-Assistant).

### Note for Windows users

This library cannot be used out of the box with Windows due a limitation in the requirement `aiomqtt`.
More information and a workaround can be found [here](https://github.com/sbtinstruments/aiomqtt#note-for-windows-users)

## Thanks

My heartfelt thanks to:

- [deebotozmo](https://github.com/And3rsL/Deebotozmo), After all, this is a debotozmo fork :)
- [sucks](https://github.com/wpietri/sucks), deebotozmo was forked from it :)
- [xmpppeek](https://www.beneaththewaves.net/Software/XMPPPeek.html), a great library for examining XMPP traffic flows (
  yes, your vacuum speaks Jabber!),
- [mitmproxy](https://mitmproxy.org/), a fantastic tool for analyzing HTTPS,
- [click](http://click.pocoo.org/), a wonderfully complete and thoughtful library for making Python command-line
  interfaces,
- [requests](http://docs.python-requests.org/en/master/), a polished Python library for HTTP requests,
- [Decompilers online](http://www.javadecompilers.com/apk), which was very helpful in figuring out what the Android app
  was up to,
- Albert Louw, who was kind enough to post code
  from [his own experiments](https://community.smartthings.com/t/ecovacs-deebot-n79/93410/33)
  with his device, and
- All the users who have given useful feedback and contributed code!


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "deebot-client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.13.0",
    "maintainer_email": null,
    "keywords": "home, automation, homeassistant, vacuum, robot, deebot, ecovacs",
    "author": null,
    "author_email": "Robert Resch <robert@resch.dev>",
    "download_url": "https://files.pythonhosted.org/packages/8a/0a/f2c03db14b5884e572216ca9ad1f50ad83f39e6026c261917fc80b598b4f/deebot_client-16.3.0.tar.gz",
    "platform": null,
    "description": "# Client Library for Deebot devices (Vacuums)\n\n[![PyPI - Downloads](https://img.shields.io/pypi/dw/deebot-client?style=for-the-badge)](https://pypi.org/project/deebot-client)\n<a href=\"https://www.buymeacoffee.com/edenhaus\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/default-black.png\" width=\"150px\" height=\"35px\" alt=\"Buy Me A Coffee\" style=\"height: 35px !important;width: 150px !important;\" ></a>\n\n## IMPORTANT: Contribution only\n\nThis project is maintained in our spare time. Please be patient and respectful.\n\nIt's not related to Ecovacs or Deebot and we don't get any support from them.\n\nAs all is reverse engineered it might take some time to add new features and we can't guarantee that all features will be added.\n\nUnfortunately some people think we are paid to do this and get angry if things don't work as they expect.\n**As result of this, we decided that this project is in a contribution only mode.**\n\nThis means, if you want something to be supported/added, you have to provide a fix yourself, wait for someone else to fix it or pay someone to do it.\nMembers will still review and help on pull requests.\n\n## Installation\n\nIf you have a recent version of Python 3, you should be able to\ndo `pip install deebot-client` to get the most recently released version of\nthis.\n\n## Usage\n\nTo get started, you'll need to have already set up an EcoVacs account\nusing your smartphone.\n\nYou are welcome to try using this as a python library for other efforts.\nA simple usage might go something like this:\n\n```python\nimport aiohttp\nimport asyncio\nimport logging\nimport time\n\nfrom deebot_client.api_client import ApiClient\nfrom deebot_client.authentication import Authenticator, create_rest_config\nfrom deebot_client.commands.json.clean import Clean, CleanAction\nfrom deebot_client.events import BatteryEvent\nfrom deebot_client.mqtt_client import MqttClient, create_mqtt_config\nfrom deebot_client.util import md5\nfrom deebot_client.device import Device\n\ndevice_id = md5(str(time.time()))\naccount_id = \"your email or phonenumber (cn)\"\npassword_hash = md5(\"yourPassword\")\ncountry = \"DE\"\n\n\nasync def main():\n  async with aiohttp.ClientSession() as session:\n    logging.basicConfig(level=logging.DEBUG)\n    rest_config = create_rest_config(session, device_id=device_id, alpha_2_country=country)\n\n    authenticator = Authenticator(rest_config, account_id, password_hash)\n    api_client = ApiClient(authenticator)\n\n    devices_ = await api_client.get_devices()\n\n    bot = Device(devices_.mqtt[0], authenticator)\n\n    mqtt_config = create_mqtt_config(device_id=device_id, country=country)\n    mqtt = MqttClient(mqtt_config, authenticator)\n    await bot.initialize(mqtt)\n\n    async def on_battery(event: BatteryEvent):\n      # Do stuff on battery event\n      if event.value == 100:\n        # Battery full\n        pass\n\n    # Subscribe for events (more events available)\n    bot.events.subscribe(BatteryEvent, on_battery)\n\n    # Execute commands\n    await bot.execute_command(Clean(CleanAction.START))\n    await asyncio.sleep(900)  # Wait for...\n    await bot.execute_command(Charge())\n\n\nif __name__ == '__main__':\n  loop = asyncio.get_event_loop()\n  loop.create_task(main())\n  loop.run_forever()\n```\n\nA more advanced example can be found [here](https://github.com/And3rsL/Deebot-for-Home-Assistant).\n\n### Note for Windows users\n\nThis library cannot be used out of the box with Windows due a limitation in the requirement `aiomqtt`.\nMore information and a workaround can be found [here](https://github.com/sbtinstruments/aiomqtt#note-for-windows-users)\n\n## Thanks\n\nMy heartfelt thanks to:\n\n- [deebotozmo](https://github.com/And3rsL/Deebotozmo), After all, this is a debotozmo fork :)\n- [sucks](https://github.com/wpietri/sucks), deebotozmo was forked from it :)\n- [xmpppeek](https://www.beneaththewaves.net/Software/XMPPPeek.html), a great library for examining XMPP traffic flows (\n  yes, your vacuum speaks Jabber!),\n- [mitmproxy](https://mitmproxy.org/), a fantastic tool for analyzing HTTPS,\n- [click](http://click.pocoo.org/), a wonderfully complete and thoughtful library for making Python command-line\n  interfaces,\n- [requests](http://docs.python-requests.org/en/master/), a polished Python library for HTTP requests,\n- [Decompilers online](http://www.javadecompilers.com/apk), which was very helpful in figuring out what the Android app\n  was up to,\n- Albert Louw, who was kind enough to post code\n  from [his own experiments](https://community.smartthings.com/t/ecovacs-deebot-n79/93410/33)\n  with his device, and\n- All the users who have given useful feedback and contributed code!\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Deebot client library in python 3",
    "version": "16.3.0",
    "project_urls": {
        "Bug Reports": "https://github.com/DeebotUniverse/client.py/issues",
        "Homepage": "https://deebot.readthedocs.io/",
        "Source Code": "https://github.com/DeebotUniverse/client.py"
    },
    "split_keywords": [
        "home",
        " automation",
        " homeassistant",
        " vacuum",
        " robot",
        " deebot",
        " ecovacs"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69b6e2f4600506694f82da778ad822710bcb31442811ccf2d6be885e5e4df0d5",
                "md5": "e6888b7260160fa6a6d508f9e17898e3",
                "sha256": "f7a77b721de2fcbacda80b5718c97612c830c770b5ba71cbf1dbbc49d3c46cd8"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6888b7260160fa6a6d508f9e17898e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1036723,
            "upload_time": "2025-11-02T16:16:35",
            "upload_time_iso_8601": "2025-11-02T16:16:35.581444Z",
            "url": "https://files.pythonhosted.org/packages/69/b6/e2f4600506694f82da778ad822710bcb31442811ccf2d6be885e5e4df0d5/deebot_client-16.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a812873075a9bfeb30523327d0446f529efbb680626a30494d365e872bf8754a",
                "md5": "24905191e39967a65e3ad1cb16e3d10d",
                "sha256": "a240bf75627db763235e52ffa7129392526823f78bcbafdf108a10d1f8dc69f5"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "24905191e39967a65e3ad1cb16e3d10d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 975007,
            "upload_time": "2025-11-02T16:16:38",
            "upload_time_iso_8601": "2025-11-02T16:16:38.090251Z",
            "url": "https://files.pythonhosted.org/packages/a8/12/873075a9bfeb30523327d0446f529efbb680626a30494d365e872bf8754a/deebot_client-16.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2179879b9cb2a6f6744c6decdbbcb6409c43dcbb1a2574f56d4d778b7603b3f3",
                "md5": "7d28f39e7c1974d2fd75645816ee3533",
                "sha256": "9b16ec1d2b499b5c0f0357836a71b63e35c3e9e16c95a673fb98be1066d07b05"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7d28f39e7c1974d2fd75645816ee3533",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1061686,
            "upload_time": "2025-11-02T16:16:40",
            "upload_time_iso_8601": "2025-11-02T16:16:40.165157Z",
            "url": "https://files.pythonhosted.org/packages/21/79/879b9cb2a6f6744c6decdbbcb6409c43dcbb1a2574f56d4d778b7603b3f3/deebot_client-16.3.0-cp313-cp313-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15156cd1a798c4398f92c596ef0370e7bb7cd929aeb56e82e2443efeab3ab2ac",
                "md5": "9293f31c2c9dd5a245078d601a15a0b8",
                "sha256": "c579c021d1c4bb77548fb121a924449b40a210ea0814676f811be0e42855cea5"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9293f31c2c9dd5a245078d601a15a0b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1117265,
            "upload_time": "2025-11-02T16:16:41",
            "upload_time_iso_8601": "2025-11-02T16:16:41.983860Z",
            "url": "https://files.pythonhosted.org/packages/15/15/6cd1a798c4398f92c596ef0370e7bb7cd929aeb56e82e2443efeab3ab2ac/deebot_client-16.3.0-cp313-cp313-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed82738b6d32e210741e520f4267fe351c824b74b8830193ccad654771aca73d",
                "md5": "3a42050e7fb07d30040068e4cf0f4178",
                "sha256": "6f123b88ca9afa59272f5ca2cc27dfbaa81e4c39bb90c6874976baa9fc822b47"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a42050e7fb07d30040068e4cf0f4178",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1239644,
            "upload_time": "2025-11-02T16:16:43",
            "upload_time_iso_8601": "2025-11-02T16:16:43.835149Z",
            "url": "https://files.pythonhosted.org/packages/ed/82/738b6d32e210741e520f4267fe351c824b74b8830193ccad654771aca73d/deebot_client-16.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0921d6ca2cbc839651213bc1cab06133e2b327be02bc8ef6a4c445f2c59f3074",
                "md5": "49baa930b4b147f74c93a90e96a46020",
                "sha256": "d9b0d34d8fc2f1e4059169909dab5f3909d4ce6e3fea35ad043ae9f3f7c0d367"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "49baa930b4b147f74c93a90e96a46020",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1311252,
            "upload_time": "2025-11-02T16:16:45",
            "upload_time_iso_8601": "2025-11-02T16:16:45.663392Z",
            "url": "https://files.pythonhosted.org/packages/09/21/d6ca2cbc839651213bc1cab06133e2b327be02bc8ef6a4c445f2c59f3074/deebot_client-16.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "799d4a4f3ee6f87c6921cb33fb40720c80797ae6fbeb9b330e93ed42f4f4cc5d",
                "md5": "8018351e5952dea27330bb6bf0f3031a",
                "sha256": "36689e26fd431909a996a5e5a53217368907a711797ea9d5662d43d3aed54b80"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8018351e5952dea27330bb6bf0f3031a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1334049,
            "upload_time": "2025-11-02T16:16:47",
            "upload_time_iso_8601": "2025-11-02T16:16:47.682942Z",
            "url": "https://files.pythonhosted.org/packages/79/9d/4a4f3ee6f87c6921cb33fb40720c80797ae6fbeb9b330e93ed42f4f4cc5d/deebot_client-16.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63327f0c113cd444543296e231aab758483c6996e606bdf69e8c8674ebb5ff8d",
                "md5": "8cc527b9e2aec7c7d56ea88d65e2ec00",
                "sha256": "8626cb1a40873bf775b8281a18027bc5c02798f2546c31b3b5673a52502893ba"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cc527b9e2aec7c7d56ea88d65e2ec00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 1285567,
            "upload_time": "2025-11-02T16:16:49",
            "upload_time_iso_8601": "2025-11-02T16:16:49.143239Z",
            "url": "https://files.pythonhosted.org/packages/63/32/7f0c113cd444543296e231aab758483c6996e606bdf69e8c8674ebb5ff8d/deebot_client-16.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cf6712e49dd44ee1ab0f21cb3d1b166b5e2795259bfee50e1bc60865b28525b",
                "md5": "c84417002a3893ff703541165e7a96a9",
                "sha256": "f18cb11f3429f520ba926feb10bf1fb59e92b7afb54ef453d8b06ce6dff30682"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c84417002a3893ff703541165e7a96a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.13.0",
            "size": 988106,
            "upload_time": "2025-11-02T16:16:51",
            "upload_time_iso_8601": "2025-11-02T16:16:51.096312Z",
            "url": "https://files.pythonhosted.org/packages/1c/f6/712e49dd44ee1ab0f21cb3d1b166b5e2795259bfee50e1bc60865b28525b/deebot_client-16.3.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e6098adf82af4e0aa66ee487a302d6f9d1eb9cc7f9b5757b765d8a1cc5d0617",
                "md5": "ea0cbe53f28b931ef857482994a07e2e",
                "sha256": "13b5b4a39dec46d125c286e3ec7c1f38f92acd2b690af403fe90ad7a799e3d9c"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea0cbe53f28b931ef857482994a07e2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 1035394,
            "upload_time": "2025-11-02T16:16:52",
            "upload_time_iso_8601": "2025-11-02T16:16:52.738452Z",
            "url": "https://files.pythonhosted.org/packages/4e/60/98adf82af4e0aa66ee487a302d6f9d1eb9cc7f9b5757b765d8a1cc5d0617/deebot_client-16.3.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2a455ad91c610d5a1c76b26a439291cc5aeda725b4fe904a512b7648de12741",
                "md5": "77a46861272afd06e35d7cf07d189ed3",
                "sha256": "4d049367ee59e3b2bab7ae7aa4ebabe37e6052805b170d6063af61212271c1ad"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "77a46861272afd06e35d7cf07d189ed3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 973650,
            "upload_time": "2025-11-02T16:16:54",
            "upload_time_iso_8601": "2025-11-02T16:16:54.530091Z",
            "url": "https://files.pythonhosted.org/packages/a2/a4/55ad91c610d5a1c76b26a439291cc5aeda725b4fe904a512b7648de12741/deebot_client-16.3.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a35fd910ac258e65aa5ef06c48ccdd729a1c58e4920f9ec9b12e8d18dcd56526",
                "md5": "bc2205f66de1ad34aa28b2ef125f238b",
                "sha256": "3a383d7a34f4616be83a5297219d0a06af9292bba593edd6d936d3878a2e3ad1"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bc2205f66de1ad34aa28b2ef125f238b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 1061200,
            "upload_time": "2025-11-02T16:16:56",
            "upload_time_iso_8601": "2025-11-02T16:16:56.043174Z",
            "url": "https://files.pythonhosted.org/packages/a3/5f/d910ac258e65aa5ef06c48ccdd729a1c58e4920f9ec9b12e8d18dcd56526/deebot_client-16.3.0-cp314-cp314-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "818ba2e8dca787eb5c3ceb4f81371a6ca174ecea45d46b05721e0b65aaa63f50",
                "md5": "395a1c26456137bb18547e15b1f5d2b1",
                "sha256": "cc2fe65785f698b67aa74175b11a09ad0c971a2394efc5e20474a34dc1ba159d"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "395a1c26456137bb18547e15b1f5d2b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 1116814,
            "upload_time": "2025-11-02T16:16:58",
            "upload_time_iso_8601": "2025-11-02T16:16:58.178079Z",
            "url": "https://files.pythonhosted.org/packages/81/8b/a2e8dca787eb5c3ceb4f81371a6ca174ecea45d46b05721e0b65aaa63f50/deebot_client-16.3.0-cp314-cp314-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2386d7c5d5e315d7dc8fdeae7a817bde330e609bab1e9f8785d83998936769cf",
                "md5": "1bfb6a2d40d69e86f529914e90d387be",
                "sha256": "e95451cc3244ec8128ca83a05ac61c8dc14edba09c0de4dca787d9116d11c647"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1bfb6a2d40d69e86f529914e90d387be",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 1239675,
            "upload_time": "2025-11-02T16:17:00",
            "upload_time_iso_8601": "2025-11-02T16:17:00.197903Z",
            "url": "https://files.pythonhosted.org/packages/23/86/d7c5d5e315d7dc8fdeae7a817bde330e609bab1e9f8785d83998936769cf/deebot_client-16.3.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40b429fbc8580278979f801d6f380d03ce4a76ca8115c03a264bca5eba8e8349",
                "md5": "13531f38fd572c23f21f379b3e5b9125",
                "sha256": "de30f4974dea36c9a8d4709ace052c06f1c9839a49ceb5589bb4dde6c187fba0"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13531f38fd572c23f21f379b3e5b9125",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 1285937,
            "upload_time": "2025-11-02T16:17:01",
            "upload_time_iso_8601": "2025-11-02T16:17:01.875729Z",
            "url": "https://files.pythonhosted.org/packages/40/b4/29fbc8580278979f801d6f380d03ce4a76ca8115c03a264bca5eba8e8349/deebot_client-16.3.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e946aaa2a31322dfe16114c5a92acf22f815a9c37bcd05b07e2685172a3d5081",
                "md5": "1ce62bec13204c94cc4a35dc7d8c307a",
                "sha256": "e0e9683b5c58c58cc816715ad31d876ffb031265ddb8d3678ec47d3b6b47a8e1"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1ce62bec13204c94cc4a35dc7d8c307a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.13.0",
            "size": 987669,
            "upload_time": "2025-11-02T16:17:03",
            "upload_time_iso_8601": "2025-11-02T16:17:03.544854Z",
            "url": "https://files.pythonhosted.org/packages/e9/46/aaa2a31322dfe16114c5a92acf22f815a9c37bcd05b07e2685172a3d5081/deebot_client-16.3.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a0af2c03db14b5884e572216ca9ad1f50ad83f39e6026c261917fc80b598b4f",
                "md5": "9b83a70f4ade334c09d6dd47b88f87fa",
                "sha256": "f3b361854f99647e81232894b991e94b8e270bbf28c32773cbb1e8e61aa8cd2d"
            },
            "downloads": -1,
            "filename": "deebot_client-16.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9b83a70f4ade334c09d6dd47b88f87fa",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.13.0",
            "size": 206976,
            "upload_time": "2025-11-02T16:17:05",
            "upload_time_iso_8601": "2025-11-02T16:17:05.305803Z",
            "url": "https://files.pythonhosted.org/packages/8a/0a/f2c03db14b5884e572216ca9ad1f50ad83f39e6026c261917fc80b598b4f/deebot_client-16.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-02 16:17:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DeebotUniverse",
    "github_project": "client.py",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "deebot-client"
}
        
Elapsed time: 0.74759s