Wrapper for python-kasa to connect with cloud devices.
Project description
PyKasaCloud
This is a library wrapper that allows you to connect to some TPLink/Kasa/Tapo devices via the cloud utilizing the excellent python-kasa library. Essentially this adds a transport and protocol class to facilitate this. This appears to only work on "iot" protocol (legacy) devices rather than "smart" protocol devices (tapo and some newer kasa devices).
This library was written to support the TPLink Cloud Integration.
Usage
Rather than use discovery like python-kasa you must get connect to the cloud (providing credentials) to obtain a token.
cloud: KasaCloud = await KasaCloud.kasacloud(username="username", password="password")
You can then get a list of device dictionaries which you can then use to get a kasa.Device:
devices: list[DeviceDict] = cloud.get_device_list()
device: Device = cloud.get_device(devices[0])
You can then interact with these devices like python-kasa devices.
Caching tokens
To cache tokens to a json file, provide a path.
cloud: KasaCloud = await KasaCloud.kasacloud(username="username", password="password", token_storage_file=".kasacloud.json")
Subsequent authenication can be accomplished just using the token_storage_file parameter.
cloud: KasaCloud = await KasaCloud.kasacloud( token_storage_file=".kasacloud.json")
Refesh Token and Callbacks
If you are storing the token externally, say in a HomeAssistant Config Entry simply pass a Token object (inside async_setup_entry in __init__.py of a given integration)
async def update_token(token: Token) -> None:
data = entry.data | {TOKEN: token}
result = hass.config_entries.async_update_entry(
entry=entry, data=data, unique_id=entry.unique_id
)
if not result:
raise TokenUpdateError("Unable to update token in config entry")
try:
cloud: KasaCloud = await KasaCloud.kasacloud(
token=entry.data.get(TOKEN), token_update_callback=update_token
)
except AuthenticationError as err:
raise ConfigEntryAuthFailed(err) from err
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pykasacloud-2025.10.1.tar.gz.
File metadata
- Download URL: pykasacloud-2025.10.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c3b369f5a36a64ba86cbd7385bd6cd6138650acdf83ecd18e1b9823155a74d
|
|
| MD5 |
b6ac8384c9f100d5adfe29a0e86dc274
|
|
| BLAKE2b-256 |
cae4fe5cb170980ef5ca4c5b40c9ffff2c46d5830577c2aa71fe2aa75d882f83
|
File details
Details for the file pykasacloud-2025.10.1-py3-none-any.whl.
File metadata
- Download URL: pykasacloud-2025.10.1-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
633ca9dba3f7182f8144b6f31247694a5bcb0cde8e0aec999d4ef41a7a4a0ed1
|
|
| MD5 |
0b6b1f9c516722075f72ca1c6dcf94a3
|
|
| BLAKE2b-256 |
971964053ca06589295eae4287e3feac0e89b2a3c57e21c99b8a2be954aec507
|