Skip to content
Snippets Groups Projects
Commit ab96ad46 authored by Jess Ward's avatar Jess Ward
Browse files

Scans for snapcast server on network

parent a19e9b60
No related branches found
No related tags found
No related merge requests found
from zeroconf import ServiceBrowser, Zeroconf
class Scanner:
def remove_service(self, zeroconf, type, name):
print("Service %s removed" % (name,))
def add_service(self, zeroconf, type, name):
snapcast_server = []
info = zeroconf.get_service_info(type, name)
snapcast_server.append(name, info)
zeroconf = Zeroconf()
listener = Scanner()
browser = ServiceBrowser(zeroconf, "_snapcast._tcp.local.", listener)
try:
input("Press enter to exit...\n\n")
finally:
zeroconf.close()
def get_snapcast_client():
pass
# TODO Scroll through list of clients and find right one
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment