python-zeroconf icon indicating copy to clipboard operation
python-zeroconf copied to clipboard

A pure python implementation of multicast DNS service discovery

Results 72 python-zeroconf issues
Sort by recently updated
recently updated
newest added
trafficstars

Like in https://github.com/joke2k/faker/blob/8d237e16741c8358c5778211611a4675f2c3a3cb/CHANGELOG.md

On some platforms the `ifaddr` module may not include an interface index. The default value for the `index` attribute on these platforms is `None`. This breaks IPv6 support where the...

They could be used as alternatives to other packages like avahi, etc. examples: ```` zeroconf-server # start a zeroconf server on localhost zeroconf-scanner # scans zeroconf services ````

Hello, I tried to use def Ckeck_MDNS_2(): zeroconf = Zeroconf() post_mdns = str(zeroconf.get_service_info('_dhnap._tcp.local.', '_dhnap._tcp.local.')) print(post_mdns) OS:Windows 10 OS version:1909 Python version:3.6 python-zeroconf version:0.28.0 but post packets Type SVR ![image](https://user-images.githubusercontent.com/66451696/93548300-8aab0e00-f999-11ea-813c-369605f958ad.png) I...

Using `avahi-browse`on a Ubuntu 18.04 I want to check that my service publishing works. With `avahi-browse -ar` I expect to see all services. With `avahi-browse -r _zmq._tcp` I expect to...

How can a service be registered with a subtype? E.g., with the example `registration.py`, how would it be modified to register `_somethingspecial._sub._http._tcp` instead of (or as well as) plain `_http._tcp`?

When initializing zeroconf with an list of interface indexes, I run into the following RuntimeError: ``` Traceback (most recent call last): File "c:/Users/Vish/test.py", line 15, in zeroconf = Zeroconf(interfaces=[18]) File...

Is there a way to get all server names Im trying to print this as the output iPhone.local. I am getting the follow Service iPhone._apple-media._udp.local. added, service info: ServiceInfo(type='_apple-media._udp.local.', name='iPhone._apple-media._udp.local.',...

This service name is used for Apple-related products (using Bonjour) - [see here](https://developer.apple.com/library/archive/qa/qa1337/_index.html) I used the standard examples/browser.py and replaced the service name with "_services._dns-sd._udp.local.", which leads to this exception:...

Per RFC 6762, identical records sent from several sources do not constitute a conflict. However, with python-zeroconf it works only sometimes. I wonder if Python dict ordering may be a...