Files
Home-AssistantConfig/deps/netdisco/discoverables/webos_tv.py
2016-10-11 16:42:06 +00:00

20 lines
663 B
Python

"""Discover LG WebOS TV devices."""
from netdisco.util import urlparse
from . import SSDPDiscoverable
# pylint: disable=too-few-public-methods
class Discoverable(SSDPDiscoverable):
"""Add support for discovering LG WebOS TV devices."""
def info_from_entry(self, entry):
"""Return the most important info from a uPnP entry."""
return urlparse(entry.values['location']).hostname
def get_entries(self):
"""Get all the LG WebOS TV device uPnP entries."""
return self.find_by_device_description({
"deviceType": "urn:dial-multiscreen-org:device:dial:1",
"friendlyName": "[LG] webOS TV"
})