1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
|
# pyvesync [](https://pypi.python.org/pypi/pyvesync) [](https://dev.azure.com/webdjoe/pyvesync/_build/latest?definitionId=4&branchName=master) [](https://github.com/Naereen/badges/) [](https://pypi.python.org/pypi/ansicolortags/) <!-- omit in toc -->
pyvesync is a library to manage VeSync compatible [smart home devices](#supported-devices)
<a href="https://webdjoe.github.io/pyvesync/latest"><img src="./docs/assets/docs.svg"></a>
**Check out the new [pyvesync documentation](https://webdjoe.github.io/pyvesync/) for usage and full API details.**
## Supported Product Types
1. Outlets
2. Switches
3. Fans
4. Air Purifiers
5. Humidifiers
6. Bulbs
7. Air Fryers
8. Thermostats
See the [supported devices](https://webdjoe.github.io/pyvesync/latest/supported_devices/) page for a complete list of supported devices and device types.
## What's new in pyvesync 3.0
**BREAKING CHANGES** - The release of pyvesync 3.0 comes with many improvements and new features, but as a result there are many breaking changes. The structure has been completely refactored, so please read through the README and thoroughly test before deploying.
The goal is to standardize the library across all devices to allow easier and consistent maintainability moving forward. The original library was created 8 years ago for supporting only a few outlets, it was not designed for supporting 20+ different devices.
Some of the changes are:
- Asynchronous network requests with aiohttp.
- Strong typing of all network requests and responses.
- Created base classes for all devices for easier `isinstance` checks.
- Separated the instantiated devices to a `DeviceContainer` class that acts as a mutable set with convenience methods.
- Standardized the API for all device to follow a common naming convention. No more devices with different names for the same functionality.
- Implemented custom exceptions and error (code) handling for API responses.
- `const` module to hold all library constants
- Built the `DeviceMap` class to hold the mapping and features of devices.
- COMING SOON: Use API to pull device modes and operating features.
See [pyvesync V3](https://webdjoe.github.io/pyvesync/latest/pyvesync3/) for more information on the changes.
### Asynchronous operation
Library is now asynchronous, using aiohttp as a replacement for requests. The `pyvesync.VeSync` class is an asynchronous context manager. A `aiohttp.ClientSession` can be passed or created internally.
```python
import asyncio
import aiohttp
from pyvesync.vesync import VeSync
async def main():
async with VeSync(
username="user",
password="password",
country_code="US", # Optional - country Code to select correct server
session=session, # Optional - aiohttp.ClientSession
time_zone="America/New_York", # Optional - Timezone, defaults to America/New_York
redact=True # Optional - Redact sensitive information from logs
) as manager:
# Redact mode is enabled by default, set to False to disable
manager.redact = False
# To print request & response content for all API calls enable verbose mode
manager.verbose = True
# To print logs to file
manager.log_to_file("pyvesync.log")
await manager.login()
if not manager.enabled:
print("Not logged in.")
return
await manager.get_devices() # Instantiates supported devices in device list, automatically called by login, only needed if you would like updates
await manager.update() # Updates the state of all devices
# manager.devices is a DeviceContainer object
# manager.devices.outlets is a list of VeSyncOutlet objects
# manager.devices.switches is a list of VeSyncSwitch objects
# manager.devices.fans is a list of VeSyncFan objects
# manager.devices.bulbs is a list of VeSyncBulb objects
# manager.devices.humidifiers is a list of VeSyncHumid objects
# manager.devices.air_purifiers is a list of VeSyncAir objects
# manager.devices.air_fryers is a list of VeSyncAirFryer objects
# manager.devices.thermostats is a list of VeSyncThermostat objects
for outlet in manager.devices.outlets:
# The outlet object contain all action methods and static device attributes
await outlet.update()
await outlet.turn_off()
outlet.display() # Print static device information, name, type, CID, etc.
# State of object held in `device.state` attribute
print(outlet.state)
state_json = outlet.dumps() # Returns JSON string of device state
state_bytes = orjson.dumps(outlet.state) # Returns bytes of device state
# to view the response information of the last API call
print(outlet.last_response)
# Prints a ResponseInfo object containing error code,
# and other response information
# Or use your own session
session = aiohttp.ClientSession()
async def main():
async with VeSync("user", "password", session=session):
await manager.login()
await manager.update()
if __name__ == "__main__":
asyncio.run(main())
```
If using `async with` is not ideal, the `__aenter__()` and `__aexit__()` methods need to be called manually:
```python
manager = VeSync(user, password)
await manager.__aenter__()
...
await manager.__aexit__(None, None, None)
```
pvesync will close the `ClientSession` that was created by the library on `__aexit__`. If a session is passed in as an argument, the library does not close it. If a session is passed in and not closed, aiohttp will generate an error on exit:
```text
2025-02-16 14:41:07 - ERROR - asyncio - Unclosed client session
2025-02-16 14:41:07 - ERROR - asyncio - Unclosed connector
```
### VeSync Class Signature
The VeSync signature is:
```python
VeSync(
username: str,
password: str,
country_code: str = DEFAULT_COUNTRY_CODE, # US
session: ClientSession | None = None,
time_zone: str = DEFAULT_TZ # America/New_York,
redact: bool = True,
)
```
### Product Types
There is a new nomenclature for product types that defines the device class. The
`device.product_type` attribute defines the product type based on the VeSync API. The product type is used to determine the device class and module. The currently supported product types are:
1. `outlet` - Outlet devices
2. `switch` - Wall switches
3. `fan` - Fans (not air purifiers or humidifiers)
4. `purifier` - Air purifiers (not humidifiers)
5. `humidifier` - Humidifiers (not air purifiers)
6. `bulb` - Light bulbs (not dimmers or switches)
7. `airfryer` - Air fryers
See [Supported Devices](#supported-devices) for a complete list of supported devices and models.
### Custom Exceptions
Exceptions are no longer caught by the library and must be handled by the user. Exceptions are raised by server errors and aiohttp connection errors.
Errors that occur at the aiohttp level are raised automatically and propogated to the user. That means exceptions raised by aiohttp that inherit from `aiohttp.ClientError` are propogated.
When the connection to the VeSync API succeeds but returns an error code that prevents the library from functioning a custom exception inherrited from `pyvesync.logs.VeSyncError` is raised.
Custom Exceptions raised by all API calls:
- `pyvesync.logs.VeSyncServerError` - The API connected and returned a code indicated there is a server-side error.
- `pyvesync.logs.VeSyncRateLimitError` - The API's rate limit has been exceeded.
- `pyvesync.logs.VeSyncAPIStatusCodeError` - The API returned a non-200 status code.
- `pyvesync.logs.VeSyncAPIResponseError` - The response from the API was not in an expected format.
Login API Exceptions
- `pyvesync.logs.VeSyncLoginError` - The username or password is incorrect.
See [errors](https://webdjoe.github.io/pyvesync/latest/development/utils/errors) documentation for a complete list of error codes and exceptions.
The [raise_api_errors()](https://webdjoe.github.io/pyvesync/latest/development/utils/errors/#pyvesync.utils.errors.raise_api_errors) function is called for every API call and checks for general response errors. It can raise the following exceptions:
- `VeSyncServerError` - The API connected and returned a code indicated there is a server-side error.
- `VeSyncRateLimitError` - The API's rate limit has been exceeded.
- `VeSyncAPIStatusCodeError` - The API returned a non-200 status code.
- `VeSyncTokenError` - The API returned a token error and requires `login()` to be called again.
- `VeSyncLoginError` - The username or password is incorrect.
## Installation
Install the latest version from pip:
```bash
pip install pyvesync
```
<!--SUPPORTED DEVICES START-->
## Supported Devices
<!--SUPPORTED OUTLETS START-->
### Etekcity Outlets
1. Voltson Smart WiFi Outlet- Round (7A model ESW01-USA)
2. Voltson Smart WiFi Outlet - Round (10A model ESW01-EU)
3. Voltson Smart Wifi Outlet - Round (10A model ESW03-USA)
4. Voltson Smart Wifi Outlet - Round (10A model ESW10-USA)
5. Voltson Smart WiFi Outlet - Rectangle (15A model ESW15-USA)
6. Two Plug Outdoor Outlet (ESO15-TB) (Each plug is a separate `VeSyncOutlet` object, energy readings are for both plugs combined)
<!--SUPPORTED OUTLETS END-->
<!--SUPPORTED SWITCHES START-->
### Wall Switches
1. Etekcity Smart WiFi Light Switch (model ESWL01)
2. Etekcity Wifi Dimmer Switch (ESD16)
<!--SUPPORTED SWITCHES END-->
### Levoit Air Purifiers
1. LV-PUR131S
2. Core 200S
3. Core 300S
4. Core 400S
5. Core 600S
6. Vital 100S
7. Vital 200S
8. Everest Air
### Etekcity Bulbs
1. Soft White Dimmable Smart Bulb (ESL100)
2. Cool to Soft White Tunable Dimmable Bulb (ESL100CW)
### Valceno Bulbs
1. Valceno Multicolor Bulb (XYD0001)
### Levoit Humidifiers
1. Dual 200S
2. Classic 300S
3. LV600S
4. OasisMist 450S
5. OasisMist 600S
6. OasisMist 1000S
### Cosori Air Fryer
1. Cosori 3.7 and 5.8 Quart Air Fryer
### Fans
1. 42 in. Tower Fan
<!--SUPPORTED DEVICES END-->
## Usage
```python
import asyncio
from pyvesync import VeSync
from pyvesync.logs import VeSyncLoginError
# VeSync is an asynchronous context manager
# VeSync(username, password, redact=True, session=None)
async def main():
async with VeSync("user", "password") as manager:
await manager.login()
await manager.update()
# Acts as a set of device instances
device_container = manager.devices
outlets = device_container.outlets # List of outlet instances
outlet = outlets[0]
await outlet.update()
await outlet.turn_off()
outlet.display()
# Iterate of entire device list
for devices in device_container:
device.display()
if __name__ == "__main__":
asyncio.run(main())
```
If you want to reuse your token and account_id between runs. The `VeSync.auth` object holds the credentials and helper methods to save and load credentials. See the [Authentication Documentation](https://webdjoe.github.io/pyvesync/latest/authentication) for more details.
```python
import asyncio
from pyvesync import VeSync
from pyvesync.logs import VeSyncLoginError
# VeSync is an asynchronous context manager
# VeSync(username, password, redact=True, session=None)
async def main():
async with VeSync("user", "password") as manager:
# If credentials are stored in a file, it can be loaded
# the default location is ~/.vesync_token
await manager.load_credentials_from_file()
# or the file path can be passed
await manager.load_credentials_from_file("/path/to/token_file")
# Or credentials can be passed directly
manager.set_credentials("your_token", "your_account_id")
# No login needed
# await manager.login()
# To store credentials to a file after login
await manager.save_credentials() # Saves to default location ~/.vesync_token
# or pass a file path
await manager.save_credentials("/path/to/token_file")
# Output Credentials as JSON String
await manager.output_credentials()
await manager.update()
# Acts as a set of device instances
device_container = manager.devices
outlets = device_container.outlets # List of outlet instances
outlet = outlets[0]
await outlet.update()
await outlet.turn_off()
outlet.display()
# Iterate of entire device list
for devices in device_container:
device.display()
if __name__ == "__main__":
asyncio.run(main())
```
Devices are stored in the `VeSync.devices` attribute, which is a `DeviceContainer` instance that acts as a mutable set. The `DeviceContainer` has properties for each product type that return lists of device instances:
```python
await manager.login() # Asynchronous
await manager.update() # Asynchronous
# Acts as set with properties that return product type lists
manager.devices = DeviceContainer instance
manager.devices.outlets = [VeSyncOutletInstances]
manager.devices.switches = [VeSyncSwitchInstances]
manager.devices.fans = [VeSyncFanInstances]
manager.devices.bulbs = [VeSyncBulbInstances]
manager.devices.air_purifiers = [VeSyncPurifierInstances]
manager.devices.humidifiers = [VeSyncHumidifierInstances]
manager.devices.air_fryers = [VeSyncAirFryerInstances]
managers.devices.thermostats = [VeSyncThermostatInstances]
# Get device by device name
dev_name = "My Device"
for device in manager.devices:
if device.device_name == dev_name:
my_device = device
device.display()
# Turn on switch by switch name
switch_name = "My Switch"
for switch in manager.devices.switches:
if switch.device_name == switch_name:
await switch.turn_on() # Asynchronous
```
See the [device documentation](https://webdjoe.github.io/pyvesync/latest/devices/) for more information on the device classes and their methods/states.
## Debug mode and redact
To set debug, use the `logger` object in the `VeSync` class. Setting the logger level to `DEBUG` will print debug information to the console. The `log_to_file()` method can be used to log to a file.
The `redact` argument removes any tokens and account identifiers from the output to allow for easier sharing. The `redact` argument has no impact if `debug` is not `True`.
This is an example of debug mode with redact enabled:
```python
import logging
import asyncio
import aiohttp
from pyvesync.vesync import VeSync
logger = logging.getLogger("pyvesync")
logger.setLevel(logging.DEBUG)
async def main():
async with VeSync("user", "password") as manager:
manager.debug = True
manager.redact = True # True by default
await manager.login()
await manager.update()
outlet = manager.outlets[0]
await outlet.update()
await outlet.turn_off()
outlet.display()
if __name__ == "__main__":
asyncio.run(main())
```
### Logging to File
To log to a file, use the `log_to_file()` method of the `VeSync` class. Pass the file path as an argument.
```python
import asyncio
from pyvesync import VeSync
async def main():
async with VeSync("user", "password") as manager:
manager.log_to_file("pyvesync.log", level=logging.DEBUG, stdout=True) # stdout argument prints log to console as well
await manager.login()
await manager.update()
outlet = manager.outlets[0]
await outlet.update()
await outlet.turn_off()
outlet.display()
if __name__ == "__main__":
asyncio.run(main())
```
## Feature Requests
Before filing an issue to request a new feature or device, please ensure that you will take the time to test the feature throuroughly. New features cannot be simply tested on Home Assistant. A separate integration must be created which is not part of this library. In order to test a new feature, clone the branch and install into a new virtual environment.
```bash
mkdir python_test && cd python_test
# Check Python version is 3.11 or higher
python3 --version # or python --version or python3.8 --version
# Create a new venv
python3 -m venv pyvesync-venv
# Activate the venv on linux
source pyvesync-venv/bin/activate
# or ....
pyvesync-venv\Scripts\activate.ps1 # on powershell
pyvesync-venv\Scripts\activate.bat # on command prompt
# Install branch to be tested into new virtual environment:
pip install git+https://github.com/webdjoe/pyvesync.git@BRANCHNAME
# Install a PR that has not been merged:
pip install git+https://github.com/webdjoe/pyvesync.git@refs/pull/PR_NUMBER/head
```
Test functionality with a script, please adjust methods and logging statements to the device you are testing.
See `[testing_scripts](./testing_scripts/README.md)` for a fully functioning test script for all devices.
```python
import asyncio
import sys
import logging
import json
from functool import chain
from pyvesync import VeSync
vs_logger = logging.getLogger("pyvesync")
vs_logger.setLevel(logging.DEBUG)
logger = logging.getLogger('pyvesync_test')
logger.setLevel(logging.DEBUG)
USERNAME = "YOUR USERNAME"
PASSWORD = "YOUR PASSWORD"
DEVICE_NAME = "Device" # Device to test
async def test_device():
# Instantiate VeSync class and login
async with VeSync(USERNAME, PASSWORD, redact=True) as manager:
await manager.login()
# Pull and update devices
await manager.update()
for dev in manager.devices:
# Print all device info
logger.debug(dev.device_name + "\n")
logger.debug(dev.display())
# Find correct device
if dev.device_name.lower() != DEVICE_NAME.lower():
logger.debug("%s is not %s, continuing", self.device_name, DEVICE_NAME)
continue
logger.debug('--------------%s-----------------' % dev.device_name)
logger.debug(dev.display())
logger.debug(dev.displayJSON())
# Test all device methods and functionality
# Test Properties
logger.debug("Fan is on - %s", dev.is_on)
logger.debug("Modes - %s", dev.modes)
logger.debug("Fan Level - %s", dev.fan_level)
logger.debug("Fan Air Quality - %s", dev.air_quality)
logger.debug("Screen Status - %s", dev.screen_status)
logger.debug("Turning on")
await fan.turn_on()
logger.debug("Device is on %s", dev.is_on)
logger.debug("Turning off")
await fan.turn_off()
logger.debug("Device is on %s", dev.is_on)
logger.debug("Sleep mode")
fan.sleep_mode()
logger.debug("Current mode - %s", dev.details['mode'])
fan.auto_mode()
logger.debug("Set Fan Speed - %s", dev.set_fan_speed)
logger.debug("Current Fan Level - %s", dev.fan_level)
logger.debug("Current mode - %s", dev.mode)
# Display all device info
logger.debug(dev.display(state=True))
logger.debug(dev.to_json(state=True, indent=True))
dev_dict = dev.to_dict(state=True)
if __name__ == "__main__":
logger.debug("Testing device")
asyncio.run(test_device())
...
```
## Device Requests
If you would like to request a new device to be added to the library, please open an issue on GitHub. Be sure to include the device model number and a link to the product page. If you are able to provide packet captures or are willing to share the device temporarily, please indicate that in the issue. See the [Packet Capturing for New Device Support](https://webdjoe.github.io/pyvesync/latest/development/capturing) document for more details.
## Contributing
All [contributions](https://webdjoe.github.io/pyvesync/latest/development/contributing) are welcome.
This project is licensed under [MIT](LICENSE).
## Contributors
This is an open source project and cannot exist without the contributions of its community. Thank you to all the contributors who have helped make this project better!
A special thanks for helping with V3 go live:
| [<img src="https://github.com/cdninja.png" width="60px;"/><br /><sub><a href="https://github.com/cdninja">cdninja</a></sub>](https://github.com/cdninja) | [<img src="https://github.com/sapuseven.png" width="60px;"/><br /><sub><a href="https://github.com/sapuseven">sapuseven</a></sub>](https://github.com/sapuseven) | [<img src="https://github.com/sdrapha.png" width="60px;"/><br /><sub><a href="https://github.com/sdrapha">sdrapha</a></sub>](https://github.com/sdrapha) |
| :------- | :------- | :------- |
And to all of those that contributed to the project:
<a href="https://github.com/webdjoe/pyvesync/graphs/contributors">
<img src="https://contrib.rocks/image?repo=webdjoe/pyvesync" />
</a>
Made with [contrib.rocks](https://contrib.rocks).
|