You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
392 B
12 lines
392 B
"""Discover devices that implement the Google Cast platform."""
|
|
from . import MDNSDiscoverable
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
class Discoverable(MDNSDiscoverable):
|
|
"""Add support for discovering Google Cast platform devices."""
|
|
|
|
def __init__(self, nd):
|
|
"""Initialize the Cast discovery."""
|
|
super(Discoverable, self).__init__(nd, '_googlecast._tcp.local.')
|