python-zeroconf
python-zeroconf copied to clipboard
A pure python implementation of multicast DNS service discovery
When we start server using Zeroconf(unicast=True, interfaces = [pc.ip]) packages going to pc.ip:5353 (instead of multicast) are not received. When we set Zeroconf(unicast=False, interfaces = [pc.ip]) server reply for the...
Not sure if this is a bug or I am using the API wrong. Please advise. This is all IPv6-only network. I have a host with say three network interfaces...
In the default pattern ```python import zeroconf instance = zeroconf.Zeroconf() browser = zeroconf.ServiceBrowser( instance, ['_osc._udp.local.'], handlers=[handler] ) def handler(zeroconf, service_type, name, state_change): # I cannot use zeroconf.ServiceStateChange.Added here, because zeroconf...
Please consider to release this module under MIT or Apache2.0 licence since in lgpl the developers have to give the users the possibility to replace the module with their own...
This is a rather large change, but it solves a fairly big usability issue. If you have multiple interfaces, manually supplying a list of IPs isn't enough, as we do...
If a device is advertising a service of type "_blah._http._tcp.local.", but I've set `ServiceBrowser` to filter for its supertype "_http._tcp.local.", then in ```python def add_service(self, zc: Zeroconf, type_: str, name:...
On building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues. Here is the output with warnings: ```console +...
I'm trying to use zeroconf service discovery to register and discover some python services I have. In my POCs, as long as I unregister the services, it gets recognized again...
Hi I'm try running registry service using asyncio but it said in run on different loop ? ```python await self._zeroconf.async_register_service(service_info) ``` It return ``` [zeroconf/_utils/asyncio.py:44] got Future attached to a...
On Windows 11 Pro (Build 22000 dev channel), in Windows or in WSL 2, Python version 3.9.6 (Windows) or version 3.9.9 (WSL 2), no service types found. This causes an...