Metadata-Version: 2.1
Name: huecli
Version: 2.0.0
Summary: A simple cli app for controlling hue lights
Home-page: https://github.com/gageleblanc/hue
Author: Gage LeBlanc
Author-email: gleblanc@symnet.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: clilib (>=1.6.1)
Requires-Dist: phue

# huecli
---
huecli is a cli application that can be used to control simple functions of philips hue lights

### Usage:
```
usage: hue [-h] ...

positional arguments:
  {list,switch,color}

optional arguments:
  -h, --help           show this help message and exit

```
```
$ hue color --help
usage: hue color [-h] [-d] [-g] [-a ADDRESS] ID COLOR

Change color of lights

positional arguments:
  ID                    ID of the light or group to manipulate.
  COLOR                 Hex color to change light to.

optional arguments:
  -h, --help            show this help message and exit
  -d, --debug           Add extended output.
  -g, --group           Switch group instead of individual light
  -a ADDRESS, --address ADDRESS
                        IP address of the Hue bridge
```
```
$ hue switch --help
usage: hue switch [-h] [-d] [-g] [-a ADDRESS] SUBCOMMAND ID

Switch lights on and off. Supported subcommands are: off, on

positional arguments:
  SUBCOMMAND            Subcommand for switch command.
  ID                    ID of the light or group to manipulate.

optional arguments:
  -h, --help            show this help message and exit
  -d, --debug           Add extended output.
  -g, --group           Switch group instead of individual light
  -a ADDRESS, --address ADDRESS
                        IP address of the Hue bridge
```
```
$ hue list --help
usage: hue list [-h] [-d] [-a ADDRESS]

List available lights

optional arguments:
  -h, --help            show this help message and exit
  -d, --debug           Add extended output.
  -a ADDRESS, --address ADDRESS
                        IP address of the Hue bridge
```

