All Projects → python-kasa → Python Kasa

python-kasa / Python Kasa

Licence: other
🏠🤖 Python API for TP-Link Kasa Smarthome products

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python Kasa

Create Aio App
The boilerplate for aiohttp. Quick setup for your asynchronous web service.
Stars: ✭ 207 (-13.39%)
Mutual labels:  asyncio
Smart Home
⭐ (Almost) everything needed to run my smart home with Home Assistant and more!
Stars: ✭ 221 (-7.53%)
Mutual labels:  smarthome
Tokio
Asyncio event loop written in Rust language
Stars: ✭ 236 (-1.26%)
Mutual labels:  asyncio
Python Mocket
a socket mock framework - for all kinds of socket animals, web-clients included
Stars: ✭ 209 (-12.55%)
Mutual labels:  asyncio
Aioreactive
Async/await reactive tools for Python 3.9+
Stars: ✭ 215 (-10.04%)
Mutual labels:  asyncio
Maubot
A plugin-based Matrix bot system.
Stars: ✭ 226 (-5.44%)
Mutual labels:  asyncio
Aiohttp admin
admin interface for aiohttp application http://aiohttp-admin.readthedocs.io
Stars: ✭ 207 (-13.39%)
Mutual labels:  asyncio
Iobroker.js Controller
ioBroker controller
Stars: ✭ 238 (-0.42%)
Mutual labels:  smarthome
Piccolo
A fast, user friendly ORM and query builder which supports asyncio.
Stars: ✭ 219 (-8.37%)
Mutual labels:  asyncio
Lightsocks Python
⚡️一个轻巧的网络混淆代理🌏
Stars: ✭ 235 (-1.67%)
Mutual labels:  asyncio
Lgwebosremote
Command line webOS remote for LGTVs
Stars: ✭ 211 (-11.72%)
Mutual labels:  smarthome
Aiofile
Real asynchronous file operations with asyncio support.
Stars: ✭ 214 (-10.46%)
Mutual labels:  asyncio
Magicmirror
MagicMirror² is an open source modular smart mirror platform. With a growing list of installable modules, the MagicMirror² allows you to convert your hallway or bathroom mirror into your personal assistant.
Stars: ✭ 15,705 (+6471.13%)
Mutual labels:  smarthome
Iobroker.zigbee
Zigbee communcation with Hue, Xiaomi, Lighttify... via TI CC253x USB stick
Stars: ✭ 208 (-12.97%)
Mutual labels:  smarthome
Pyee
A port of Node.js's EventEmitter to python
Stars: ✭ 236 (-1.26%)
Mutual labels:  asyncio
Iobroker.admin
user interface for configuration and administration
Stars: ✭ 207 (-13.39%)
Mutual labels:  smarthome
Nest asyncio
Patch asyncio to allow nested event loops
Stars: ✭ 226 (-5.44%)
Mutual labels:  asyncio
Iobroker.vis
Visualisation for ioBroker platform.
Stars: ✭ 242 (+1.26%)
Mutual labels:  smarthome
Unicorn Binance Websocket Api
An unofficial Python API to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, jersey, us, tr, jex, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way.
Stars: ✭ 232 (-2.93%)
Mutual labels:  asyncio
Sanic
Async Python 3.7+ web server/framework | Build fast. Run fast.
Stars: ✭ 15,660 (+6452.3%)
Mutual labels:  asyncio

python-kasa

PyPI version Build Status Coverage Status Documentation Status

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 information
  • on and off for turning the device on or off
  • emeter (where applicable) to return energy consumption information
  • sysinfo 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
  • KP400

Wall switches

  • HS200
  • HS210
  • HS220

Bulbs

  • LB100
  • LB110
  • LB120
  • LB130
  • LB230
  • KL60
  • KL110
  • KL120
  • KL125
  • 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

Links

TP-Link Tapo support

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].