1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
"""
Example that shows how to list all available chromecasts.
"""
# pylint: disable=invalid-name
import argparse
import sys
import pychromecast
from .common import add_log_arguments, configure_logging
# Enable deprecation warnings etc.
if not sys.warnoptions:
import warnings
warnings.simplefilter("default")
parser = argparse.ArgumentParser(
description="Example that shows how to list all available chromecasts."
)
parser.add_argument(
"--known-host",
help="Add known host (IP), can be used multiple times",
action="append",
)
add_log_arguments(parser)
parser.add_argument(
"--verbose", help="Full display of discovered devices", action="store_true"
)
args = parser.parse_args()
configure_logging(args)
devices, browser = pychromecast.discovery.discover_chromecasts(
known_hosts=args.known_host
)
# Shut down discovery
browser.stop_discovery()
print(f"Discovered {len(devices)} device(s):")
for device in devices:
print(
f" '{device.friendly_name}' ({device.model_name}) @ {device.host}:{device.port} uuid: {device.uuid}"
)
if args.verbose:
print(f" service: {device}")
|