Python API for TP-Link Kasa Smarthome devices
Project description
python-kasa
python-kasa is a Python library to control TPLink smart home devices (plugs, wall switches, power strips, and bulbs) using asyncio. This project is a maintainer-made fork of pyHS100 project.
Getting started
You can install the most recent release using pip. Until
pip install python-kasa --pre
Alternatively, you can clone this repository and use poetry to install the development version:
git clone https://github.com/python-kasa/python-kasa.git
cd python-kasa/
poetry install
Discovering devices
After installation, the devices can be discovered either by using kasa discover
or by calling kasa
without any parameters.
$ kasa
No --bulb nor --plug given, discovering..
Discovering devices for 3 seconds
== My Smart Plug - HS110(EU) ==
Device state: ON
IP address: 192.168.x.x
LED state: False
On since: 2017-03-26 18:29:17.242219
== Generic information ==
Time: 1970-06-22 02:39:41
Hardware: 1.0
Software: 1.0.8 Build 151101 Rel.24452
MAC (rssi): 50:C7:BF:XX:XX:XX (-77)
Location: {'latitude': XXXX, 'longitude': XXXX}
== Emeter ==
Current state: {'total': 133.082, 'power': 100.418681, 'current': 0.510967, 'voltage': 225.600477}
Use kasa --help
to get list of all available commands, or alternatively, consult the documentation.
Basic controls
All devices support a variety of common commands, including:
state
which returns state informationon
andoff
for turning the device on or offemeter
(where applicable) to return energy consumption informationsysinfo
to return raw system information
Energy meter
Passing no options to emeter
command will return the current consumption.
Possible options include --year
and --month
for retrieving historical state,
and reseting the counters is done with --erase
.
$ kasa emeter
== Emeter ==
Current state: {'total': 133.105, 'power': 108.223577, 'current': 0.54463, 'voltage': 225.296283}
Bulb-specific commands
At the moment setting brightness, color temperature and color (in HSV) are supported depending on the device.
The commands are straightforward, so feel free to check --help
for instructions how to use them.
Library usage
You can find several code examples in the API documentation.
Contributing
Contributions are very welcome! To simplify the process, we are leveraging automated checks and tests for contributions.
Setting up development environment
To get started, simply clone this repository and initialize the development environment.
We are using poetry for dependency management, so after cloning the repository simply execute
poetry install
which will install all necessary packages and create a virtual environment for you.
Code-style checks
We use several tools to automatically check all contributions. The simplest way to verify that everything is formatted properly
before creating a pull request, consider activating the pre-commit hooks by executing pre-commit install
.
This will make sure that the checks are passing when you do a commit.
You can also execute the checks by running either tox -e lint
to only do the linting checks, or tox
to also execute the tests.
Analyzing network captures
The simplest way to add support for a new device or to improve existing ones is to capture traffic between the mobile app and the device.
After capturing the traffic, you can either use the softScheck's wireshark dissector
or the parse_pcap.py
script contained inside the devtools
directory.
Supported devices
Plugs
- HS100
- HS103
- HS105
- HS107
- HS110
Power Strips
- HS300
- KP303
Wall switches
- HS200
- HS210
- HS220
Bulbs
- LB100
- LB110
- LB120
- LB130
- LB230
- KL60
- KL110
- KL120
- KL130
Light strips
- KL430
Contributions (be it adding missing features, fixing bugs or improving documentation) are more than welcome, feel free to submit pull requests!
Resources
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
File details
Details for the file python-kasa-0.4.0.dev1.tar.gz
.
File metadata
- Download URL: python-kasa-0.4.0.dev1.tar.gz
- Upload date:
- Size: 67.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.4 Linux/5.7.10-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bc57c22d7cd2fc53a2bb91875168a1107a493ff6d40083733467707a5444fb0 |
|
MD5 | a6b344b14c025c05c0aee222f14fa4ae |
|
BLAKE2b-256 | 25b329af91da6a4d5cd8949180efa0e85879bfab01c07bf83f9bdf54f9d71530 |
File details
Details for the file python_kasa-0.4.0.dev1-py3-none-any.whl
.
File metadata
- Download URL: python_kasa-0.4.0.dev1-py3-none-any.whl
- Upload date:
- Size: 96.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.4 Linux/5.7.10-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67ecfc91e569249158d1913ca6bdd7d2cd477163c579a264e2e9f799d44c93b2 |
|
MD5 | c7d9a5fd0448f6b25c0e0610af3903f5 |
|
BLAKE2b-256 | 953dc2f3d1a9d0ee8d77a15b3ccf14cab44267241f78eaebc0c5dda40fd6442d |