Skip to main content

Auto discovery of Hue bridges

Project description

The MIT License

Discovery of hue bridges per the Philips design guide.

Use discoverhue to find the IP addresses of all hue bridges on the LAN. If previously known bridge serial numbers are provided then the returned info will be filtered. Alternatively, serial numbers and last known IP addresses pairs may be provided. In this case, the provided addresses will be checked first and the discovery methods will only be executed if unmatched bridges remain.

Currently, discoverhue implements options one,two, and three of the Hue Bridge Discovery Guide available with registration at MeetHue.

Installation

pip install discoverhue

Examples

Execute discovery and return a dictionary of all found bridges:

import discoverhue
found = discoverhue.find_bridges()
for bridge in found:
    print('    Bridge ID {br} at {ip}'.format(br=bridge, ip=found[bridge]))

Execute discovery and return a filtered list of bridges:

# using a list, matches will be removed from search_id
search_id = ['0017884e7dad', '001788102201']
found = discoverhue.find_bridges(search_id)

# using a set, matches will be removed from search_id
search_id = {'0017884e7dad', '001788102201'}
found = discoverhue.find_bridges(search_id)

# using a tuple, immutable so matches will not be removed
search_id = ('0017884e7dad', '001788102201')
found = discoverhue.find_bridges(search_id)

Execute discovery and return single IP address as string:

>>> found = discoverhue.find_bridges('001788102201')
>>> found.lower()
'http://192.168.0.1:80/'

Validate provided IP’s and execute discovery only if necessary:

>>> discoverhue.find_bridges({'0017884e7dad':'192.168.0.1',
                              '001788102201':'192.168.0.2'})
{'0017884e7dad': 'http://192.168.0.27:80/'}

Contributions

Welcome at https://github.com/Overboard/discoverhue

Status

Released.

SSDP Attribution

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

discoverhue-1.0.2.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

discoverhue-1.0.2-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file discoverhue-1.0.2.tar.gz.

File metadata

  • Download URL: discoverhue-1.0.2.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for discoverhue-1.0.2.tar.gz
Algorithm Hash digest
SHA256 855c691e686191f9b25728732fec6e8129f74d02995e2a7ae56404185a2cafac
MD5 dd2a29e5d7cb82b22e1cd7ca79157f16
BLAKE2b-256 f43f2bcc41c7f754d37d55febae6293322eeaea28f2b0ff226aea5c39a88382a

See more details on using hashes here.

File details

Details for the file discoverhue-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for discoverhue-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 54452e5a3d580878086da64639b73a3414e91fd5ab77314457e81f7a2b432aff
MD5 6728d54f1a318440f1dffa433e105e9d
BLAKE2b-256 5e591a33d391c50c6a6ac587f8a40724c05384bec95ccce3ebe90b00c0440e66

See more details on using hashes here.

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