Skip to main content

Python library for interfacing with opple mobile controlled light

Project description

This library (and its accompanying cli tool) is used to interface with
Konke remote-control devices.

Supported Devices
=================

- Mini K
- Mini Pro
- Smart Plug K(untested)
- K2 Pro(untested)
Install
=======

.. code-block:: bash

pip install pykone

API Reference
=============

- class **Switch** (ip) create a instance of a switch
- *check()* get switch's status
- *turn_on()* turn on the switch
- *turn_off()* turn off the switch

Demo:

.. code-block:: python

from pykonkeio import Switch

switch = Switch('192.168.0.222')

if switch.status == 'open':
switch.turn_off()
elif switch.status == 'close':
switch.turn_on()
elif switch.status == 'offline':
print('switch is off line')

CLI Command
===========

- search device

.. code-block:: bash

pykone search

- check device status

.. code-block:: bash

pykone check -a [device ip address]

- turn on switch

.. code-block:: bash

pykone open -a [device ip address]

- turn off switch

.. code-block:: bash

pykone close -a [device ip address]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyoppleio-1.0.4.tar.gz (5.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page