Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 348 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 348 Bytes

pythinkingcleaner

Library to control ThinkingCleaner devices

Requirements

  • Python >= 3.0

Install

pip install pythinkingcleaner

Example

from pythinkingcleaner import ThinkingCleaner, Discovery
import pprint

discovery = Discovery()
cleaners = discovery.discover()

for device in cleaners:
    print(device.name)