Skip to main content

A pure python implementation of multicast DNS service discovery

Project description

python-zeroconf

https://github.com/python-zeroconf/python-zeroconf/workflows/CI/badge.svg https://img.shields.io/pypi/v/zeroconf.svg https://codecov.io/gh/python-zeroconf/python-zeroconf/branch/master/graph/badge.svg

Documentation.

This is fork of pyzeroconf, Multicast DNS Service Discovery for Python, originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf), modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).

The original William McBrine’s fork note:

This fork is used in all of my TiVo-related projects: HME for Python
(and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
Before this, I was tracking the changes for zeroconf.py in three
separate repos. I figured I should have an authoritative source.

Although I make changes based on my experience with TiVos, I expect that
they're generally applicable. This version also includes patches found
on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere
around the net -- not always well-documented, sorry.

Compatible with:

  • Bonjour

  • Avahi

Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:

  • isn’t tied to Bonjour or Avahi

  • doesn’t use D-Bus

  • doesn’t force you to use particular event loop or Twisted (asyncio is used under the hood but not required)

  • is pip-installable

  • has PyPI distribution

  • has an optional cython extension for performance (pure python is supported as well)

Python compatibility

  • CPython 3.8+

  • PyPy3.8 7.3+

Versioning

This project uses semantic versioning.

Status

This project is actively maintained.

Traffic Reduction

Before version 0.32, most traffic reduction techniques described in https://datatracker.ietf.org/doc/html/rfc6762#section-7 where not implemented which could lead to excessive network traffic. It is highly recommended that version 0.32 or later is used if this is a concern.

IPv6 support

IPv6 support is relatively new and currently limited, specifically:

  • InterfaceChoice.All is an alias for InterfaceChoice.Default on non-POSIX systems.

  • Dual-stack IPv6 sockets are used, which may not be supported everywhere (some BSD variants do not have them).

  • Listening on localhost (::1) does not work. Help with understanding why is appreciated.

How to get python-zeroconf?

The easiest way to install python-zeroconf is using pip:

pip install zeroconf

How do I use it?

Here’s an example of browsing for a service:

from zeroconf import ServiceBrowser, ServiceListener, Zeroconf


class MyListener(ServiceListener):

    def update_service(self, zc: Zeroconf, type_: str, name: str) -> None:
        print(f"Service {name} updated")

    def remove_service(self, zc: Zeroconf, type_: str, name: str) -> None:
        print(f"Service {name} removed")

    def add_service(self, zc: Zeroconf, type_: str, name: str) -> None:
        info = zc.get_service_info(type_, name)
        print(f"Service {name} added, service info: {info}")


zeroconf = Zeroconf()
listener = MyListener()
browser = ServiceBrowser(zeroconf, "_http._tcp.local.", listener)
try:
    input("Press enter to exit...\n\n")
finally:
    zeroconf.close()

If you don’t know the name of the service you need to browse for, try:

from zeroconf import ZeroconfServiceTypes
print('\n'.join(ZeroconfServiceTypes.find()))

See examples directory for more.

Changelog

Changelog

License

LGPL, see COPYING file for details.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zeroconf-0.136.2.tar.gz (238.7 kB view details)

Uploaded Source

Built Distributions

zeroconf-0.136.2-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

zeroconf-0.136.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

zeroconf-0.136.2-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

zeroconf-0.136.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

zeroconf-0.136.2-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

zeroconf-0.136.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

zeroconf-0.136.2-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13 Windows x86-64

zeroconf-0.136.2-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13 Windows x86

zeroconf-0.136.2-cp313-cp313-musllinux_1_2_x86_64.whl (11.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp313-cp313-musllinux_1_2_i686.whl (10.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (10.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zeroconf-0.136.2-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zeroconf-0.136.2-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

zeroconf-0.136.2-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

zeroconf-0.136.2-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86

zeroconf-0.136.2-cp312-cp312-musllinux_1_2_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp312-cp312-musllinux_1_2_i686.whl (11.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp312-cp312-manylinux_2_36_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.36+ x86-64

zeroconf-0.136.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (10.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zeroconf-0.136.2-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zeroconf-0.136.2-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

zeroconf-0.136.2-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

zeroconf-0.136.2-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86

zeroconf-0.136.2-cp311-cp311-musllinux_1_2_x86_64.whl (11.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp311-cp311-musllinux_1_2_i686.whl (11.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (10.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zeroconf-0.136.2-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

zeroconf-0.136.2-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zeroconf-0.136.2-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

zeroconf-0.136.2-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

zeroconf-0.136.2-cp310-cp310-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp310-cp310-musllinux_1_2_i686.whl (10.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (9.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zeroconf-0.136.2-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zeroconf-0.136.2-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

zeroconf-0.136.2-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

zeroconf-0.136.2-cp39-cp39-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp39-cp39-musllinux_1_2_i686.whl (10.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (10.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zeroconf-0.136.2-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zeroconf-0.136.2-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

zeroconf-0.136.2-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

zeroconf-0.136.2-cp38-cp38-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

zeroconf-0.136.2-cp38-cp38-musllinux_1_2_i686.whl (10.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

zeroconf-0.136.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zeroconf-0.136.2-cp38-cp38-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (10.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zeroconf-0.136.2-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file zeroconf-0.136.2.tar.gz.

File metadata

  • Download URL: zeroconf-0.136.2.tar.gz
  • Upload date:
  • Size: 238.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for zeroconf-0.136.2.tar.gz
Algorithm Hash digest
SHA256 37d223febad4569f0d14563eb8e80a9742be35d0419847b45d84c37fc4224bb4
MD5 eb28e2f9e78c2466984b9a983ed1cce3
BLAKE2b-256 89e0cddc7e2272799e11ea172810fd2f6da58fc7290f9bd3102d6cf2c385cca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.136.2.tar.gz:

Publisher: ci.yml on python-zeroconf/python-zeroconf

Attestations:

File details

Details for the file zeroconf-0.136.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d3e79263b2482cfd39bfe2013c2517dfb76c52fe3f94a697d131cf1322738e61
MD5 de546fc6685917354d43cd80f1f8d4cb
BLAKE2b-256 5fc2af89c76f6de7a7eac0963ddf669b7c28fc523c52347b60ef45573960ea6a

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4aaf4088a20800858797a9e03f38d698382ad2f54d2e9133b66dff5bc8a82c5
MD5 9e1c0f94cdbdd373f7a142c707a1bae6
BLAKE2b-256 fa1e8147c5d738945a9c94ddd451538c37edd0cbddb85fa8499952069c802ecf

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a4d2946ad71b514279b6897911406a4b6f95b95efff6d4c9762f0818068ec9d
MD5 a5fef57ee183f5576878fc2eeef7a9ef
BLAKE2b-256 2dc19bfbe5bd88c7ae4a6e25fbf351021acefd59e6be43c219c9d3ee4ebf2d0d

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 346688e5d28b370192d721fcf85a72193f8e7cf8f5e625bf1c111f00e404ca65
MD5 736f2e50538cdde91af24118873756fb
BLAKE2b-256 c839d4610b305d84a65c7775b8ef05f456dc59083c8202c07fc53edbef4b6e28

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 97ee3439c9e10f51cb690923972d213fae5e2d2be63504f2f318255fa7471a6f
MD5 9e5feb1396a132834f81395ce1ddf86a
BLAKE2b-256 76ea22f6495444b00b170dd2b0a2cf177b862382ef04a0594d9f717c557f93be

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d35db16391b1cfc76e6791b61ac1d13bbb98007c91cc3746723a90dd46944f11
MD5 449195f69be0bb97c414df33519447a5
BLAKE2b-256 108661b65c1a4f64f328ac21c241f29f125c1ffda2d062e1048f3a1e440261e7

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a3e52be2847aa0106ce66ceab93b3377a31b3baf74a627405d4c49c36e02b9c
MD5 97aaef995378bc95bbc99ec6730272ae
BLAKE2b-256 beaf50fce5238ba1c6922d33220f544abfb04129ba9e17510a93d848367819f2

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5cb94c63d4dcfb3ccc67e972e650573daf3e8d433e1c66a18c3cf6f9da6428d
MD5 1a4dfe51c89f57c3a5f1bc438497d9cc
BLAKE2b-256 90c3222beafe2f81e43027fadd30bdcf5f74c6e15f6b11ef8143e8b508094f11

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9daab7f2b37ad7af2b471ff08e25a09d93656595e0dc8dc7d0b5382fdd3ad568
MD5 7736c4f7e85fb3b481463a9ece14b06b
BLAKE2b-256 c9e72a5a87358a6c4dfcb1e496f11b9065073c5388f1f939a545883f2853c3b2

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c8c545b4d1ac41610b9893367d039b009e6f73c0ba624fc19b89bb7e658140a
MD5 b5f76498b30fbe2d5bebea106aeb650e
BLAKE2b-256 ad26d63244192e17431539c920ea7e17305f201b10729492a0b8f09839cb0a0c

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 433a813b7a4b88d0e51522d3bd6dd725706d7782fabc47e02aa4a0e5bf2f58f9
MD5 ebe5a9b6c33cd919cab164c78d526647
BLAKE2b-256 938b6363e56b03d2acbcc652b98058624e9d05dcd4cff9ac88a8a3b6a45a3504

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7307b65c248c96e86cac94ab10258e1180dd9ede4607eb384f2f034d7b18280
MD5 9d39525f3f22241bc33e3e420db5d30c
BLAKE2b-256 ba9ab56e183b73fc24fc0b0ffb25ae5559f7259dd9a13e1bdc86ecf85a324588

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb60a0c1f6e80050dd4ab335a3e59d2c6f2633f8215878098f93bb48c894d56c
MD5 dd10c30a00463f3b5f2b51c956f371b2
BLAKE2b-256 2197a9968972f7caca6e63c00512fc96b85eac83f52fe04c42227d9d21761736

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2339004240e54e9ca7510b53ab5d222c40a5b36e7e9c6a2026fac97b4951576
MD5 a9f9674eb13be8aa07f27160bbbc5118
BLAKE2b-256 dd6f8d7299a314e9b51c14300a22fd3cf34ded8055279a4d66b6d1e89aaa0ba0

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7232123bd499f0d99421062aacda38691c04f5fe578c70ad92cb520582d7295
MD5 725d6a3cc92f2a09590f00cbe47fb14a
BLAKE2b-256 d6000f84305e8cebbe593fb9a8fe7505529e53a8a0d533ff79602a05b0d03baf

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce480e2f84f2176c19f04d55bcd2ee540dc7262ad6eb8fc8194d1b98c9f33f2a
MD5 32f3796e30c69c0e67fa31917b6c1764
BLAKE2b-256 3c2350b8c743e6cf33d4e2336388afa77cbdaf1cad80513685b7541bc8ed981e

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 816f04d03625a876aa6d1b389c64f5421d5210a9bddf69c997ea1bb377970613
MD5 984b84521f6c93cd0cfe9f3a2f0545ec
BLAKE2b-256 3130405c29621c9885069bd6ba83819bb2f59835e426ddffb2e2754919678b42

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e63369e50f6aef945ee036e94d105ff6ec84498f6e7d6e456abac577916d4d2f
MD5 2e1abc124a08f17703a1657e06e607e6
BLAKE2b-256 9c0096e186c87d7134725b9a67ba03a33fd2f784bb80aff993a494b38b385033

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 756d8e5427026d12f42fe452952c19de3545ea16e70af0a999404c7ef196057b
MD5 4dd7731ba054553113ae67b33fe1f3b4
BLAKE2b-256 8a8ed332512795e405dd923547d6b0cb7620370cf63866134be238d2ab7e0b89

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d009191d7d13ba552d4c0dbb96792c5473c8d31668aa47343e324f0f61b0fbd
MD5 114551be2d8b63e8e64314749e5dd959
BLAKE2b-256 d1bc57b7acf36027116069d8eaed713c57a5af476643170f1bc4aa290c097ce0

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94b3df37ee57d0b77330aee6cb8a3612363ead8f04c57110751773945532e05e
MD5 bec0d4f92d22833750a1f17f7e619549
BLAKE2b-256 978fd94d9802a34ab81980cf8cd8b583c5401ec18effecd66f95049e713d4911

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88cc3744a4b8613765a49837c88fde2ff3f4b41fac0661591c7203391358f644
MD5 6867ff3fe66518f2db52d4c24e5270c2
BLAKE2b-256 0d98d2843af05145c5b9ee40592f8af1583115be1915de78ae4db3fe49b4a234

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbd29811c60382929fef9fe70dd85d3d0a26efd1a6068ced86b24ab7c15c9649
MD5 5afd6463d0409da9bafe00329c32cc45
BLAKE2b-256 c26766ede11511b7e2bd5a3f468857ffae77fff33c0df9ddef71f9021cc8a65a

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ffc9bd9df2c30edfbc44c02413f1191d509ed7c749cd405172344320dc4bac03
MD5 ce0b762ba0e91ce136e590d370ff438a
BLAKE2b-256 a14e98f7b35ea904ee1af875000c66411b5468ee2d6641f2ab5a1768917eecce

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38b05678968dc2cfdef795f14efc16d5cb9163e008da5f15334bccc235f8c722
MD5 9fa14ce11ac31843c21d11f8f6bdeeb6
BLAKE2b-256 58ad274fac20c7a94e9f635d6d524b56abd8b114ae8905e8208a8a43f7103e40

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ed19d4e0a2cfe57a19c6540253af6f254a5d79ed17af7dd14db125a9faa95de
MD5 22a2dfef6140680c18eb0561f5cb4ba0
BLAKE2b-256 1594f93da045105d725b31961f8f02e1d61dadb29db797cf2a6806794d6f209e

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e908a3c93c15261416397c7acd624ad58b048e8027a048c07e35cb5fe1bab489
MD5 99e128ad7aab5e686488c0e0a3166a4f
BLAKE2b-256 09539798777405860300485cfea7c0811c439358796613bcf6d7eb9d4e7f7672

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21351dca8727ba7c47d00f97de413b353ab2da72044fdae55eb32cf52998f5b6
MD5 eb6cfdcf1d96e57146002b47a868f1e9
BLAKE2b-256 f131c6cc9b13287ed30571e503a323813c8993c304e455e3560b666562e67539

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 1e0f0df103bc27816b00b983cdc404423fd14daaa4708ad7764a9ca3830a333d
MD5 c0150a792619df2484f746939a3e0aac
BLAKE2b-256 b413ca435edfdcfc1661029aaaec40d9668ec131bb9c28bfda62470fc3b6268a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.136.2-cp312-cp312-manylinux_2_36_x86_64.whl:

Publisher: ci.yml on python-zeroconf/python-zeroconf

Attestations:

File details

Details for the file zeroconf-0.136.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9286e280d5aec66d0ac9ef662d953a08aba8b812c0e3273b790026b7c143ee98
MD5 a21ed7c7b8a23e18ff32089ee2a15247
BLAKE2b-256 0df20dcf3442b4202fe39057440e07b747052a2f2490b880793e55c8d9f64d8a

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c44256cbc15e4dc8f5466e9f20a86325156b1a5d4bfc704167f93ed0653058b6
MD5 5d3e21804ef8d0ee2e0d3fdd640320bb
BLAKE2b-256 6563741a4dd5d0e312591a78ae7cc5a32b6e437f7471bdeb4dadbf4dcdfa0c70

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb14c95c428ad003f0a8fdde87f0c0ba89a945ced468421ad24818e243e3fd0e
MD5 f26d696192b6b787c19f9e9a96a1a624
BLAKE2b-256 cc65d7a215dd9c67c3dd6674792af58155e15387b30194bd4258fea25e284d64

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1746e25128915417d1500e23cdb22f7460bb688978e4570cc956081fc85c408f
MD5 7f13fa1ade087965e85e0efc48b40ffa
BLAKE2b-256 a60a00bcafbcbf4a2f385365e6664109fc8016fda5928a88be2e9e5787158c58

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5a74474e4d5cda8ea121e7b9538660decce1b944a210a26134ca5852c1e12929
MD5 77e223347b8c120edfaaa65281585844
BLAKE2b-256 f2b0d1787251efd3c613b4d6be3f38ed01cefe9b02541493e2285e50b4dd8138

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ac3f8b375d1e3954908de0d6245df6ca44d01ecbd2d50572a0d86fc18e7b1f2
MD5 20cd7347be29a0b66c982fac66d01b8c
BLAKE2b-256 e8eeb650b3b089cb5cab82f0a36b3a74eb363af7fae7d0166d9eb68e4e1582cd

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6afa19d0dcbfc656ecc987f33c313e30178a20d3731d17eb6c81388138954e8c
MD5 4462555877a91b0834cd35369e3f69a1
BLAKE2b-256 252c461e3612cdab1373709afdcbc098ce9e9c0833a346f46e5468b5339c9459

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c5a6007b0e3b938e5b6af4a12ee23ef997ca89068702aea5fc66baf216fbcbd
MD5 67eae1248e969432083dbf7b94dca09e
BLAKE2b-256 886efcfaa76d160b14bbdd0ce0f51f6e65ef2731219452d6ed4e1eeec8523447

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5437c28e0898ba018b52e23f6ffa9cefa2560649b50947e2220d6daa1b17db9
MD5 d3bca6b773d35feacc2e7418694faeaf
BLAKE2b-256 fab05ac541bccda7ec2ea9d9f9d4996ee28bdebff879eb31e4529032f34741fc

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 019205377af6b2308476e6597b8ae34a7cfe6fe3b6e367b0ab405ff17c4d4d3b
MD5 9ae94b61737fdacba07d1c1053e29210
BLAKE2b-256 a33d6518ce1ab7d583a5dd410d218cac3144af2d6345492196a821d878f26f52

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ce7ba8462f3baab4cd0332c929fde3dabc7d814a0381f33a3b871d9f7886626
MD5 2940afcefc29767f39365c7dab227117
BLAKE2b-256 25b625507f4a0ed8f3428d3ddc22c36b78b00901b652f43dd4a0bc79e4367170

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85ba59ab362e99dd9063a3321d6bf933b062847257e3248490051a042d61a130
MD5 5cef8c0da3db70df626013c5ef13623b
BLAKE2b-256 8c2b27cbf25c0e767bf8a32b76d2189e3973acb9a281451984144bac08fa2046

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1efe072eb34f51c2b5386981ab725a87d2ee31078ce4c5a488669eda10415cb6
MD5 f055fa73f8d9ab5c7c7b0f30ea826a7a
BLAKE2b-256 e2bf2e29a15b42ec0fcd647b22b6c0f98cc8ce6279cac4e85ec0221ef4f3d620

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c35e991091013cbe02907c4b798554c1081630925c8a94dcd652c2440fed8907
MD5 5b2fe8063baf5585c46a5e1f715782c6
BLAKE2b-256 1d7c4db8f465f804510dff1cf265d8deb59bc0fabc0797e325f736c0b5458862

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d68d8cff8aa4b6e3b0722d853b9c70873add50503bc40f2b2bddb5856c6f6193
MD5 8d7f83fe53edb86adbecfd9b64908013
BLAKE2b-256 954c5dae354c51f1620475930b43a55c3d32b1b48182148ea63ff9293e5daa43

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 117087d963883604792bc91118be0bcecde07c1c41189db8f835b1fd3bd27eaa
MD5 05ae429d6232ed076ef0a9bedde5d255
BLAKE2b-256 9316734b5ee991550705687d51b738c7bc474f4d0b53895f108999f62588a48e

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b999043357fc4caedff042d6bea3cf7c7ca205c976e5c7233fe8d56a5cf346e0
MD5 1802aafde2eca5a7cff9434adf243552
BLAKE2b-256 84d81735b1f3872cda8259d02d8ccceead3833ff273b2bb2d1959ff698900cf1

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90443a6006d2b721001f7db8f1e10e687e52229cff49075fcbcf66036c133c94
MD5 70c6f16d23d2c8a3f172a25b976dc0ab
BLAKE2b-256 35013fa4c28438cd921b5d2219fe3d6590541bb093797dd0d6d6a70ec0a762b1

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c8a8d99828c14e45122f856d05bd66d19cd70ba5c9930aaee71f1ec6e28561c
MD5 2a66314e22a149ea08f8020f418603e6
BLAKE2b-256 257d2a6b341831fbf4227a5d64c2ca8a94c55b4756d8395ccced9afaec12711b

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6de231a0ba53a5b6fa6c2b9b6be8cc9e017404721fdb46316e4e28379ecc216
MD5 e2477441fb44062ef845d07cda06a96f
BLAKE2b-256 82c61d65332f6e415c0e91b69d5ffbe436039fa379111f4f978880dc72bb8ecc

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b958e163ebbaeb1d2e01dcf62de8c44af566af97a93a7a969e515e522f4d83f
MD5 42c6e5d8419d43448ba3279280fe284d
BLAKE2b-256 31ddc1833e233b2070717dad9708591524748002e87e4a1e8d04cacf066ba161

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5dbd7a2d9fbce5623b05ecd7003fab95bc324dcb8e33b35ce796e8e915851e4d
MD5 df5bf37be733c51d4eb307a6a94590eb
BLAKE2b-256 0c9d880d677d6c70127566898000ff33f0e770441dcb07ae652b537f78a6fec2

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d16c66d239a0578d70035fb506625278f99e3e5573f5939793bbffee3120cf29
MD5 3106c1d5cef066a87341e4c8c3c9ae97
BLAKE2b-256 cbcf45995035fecedb0a2a82167324d71ede772ce4a7f740300fb9b2cb638028

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eb00684f3723dbe8092b1830de37cce6af4cb00e06fdb3b1a0545887f46dc783
MD5 6f0b873f43354226d59cfd8571e27115
BLAKE2b-256 17edf3a1b0dfc78c0798ce2f11dc7184c83fccc7891cab393f04572a5d824be7

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b592f77d0c82135f2cdf176f5c8269cc655f8f8abd11fa77c15d08a1a0f27029
MD5 b728755cb5743d889706aeeabc90522a
BLAKE2b-256 1a794513d1c2e9d3e54c0db938a3bc863a0054758aec0b86bd1669da3aa70417

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21b0018064bb3fb3429e1cdeb3239dd27da1a06ffba1bcb09a0df75ab984dc3f
MD5 9e21b5c387d1d1f44fc2a22e99d0b8e1
BLAKE2b-256 8e304212083c2e60750c8fc5cdae593207dfba68698c531a4d3dac2cc597a9b8

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 569a6f13c78710913744fe5ae7bfdaa1e9c7e64e7199881fb536e8ed6f6ce5b9
MD5 49c0648e749e9842b9712d4433999202
BLAKE2b-256 bc3559b9a1c60eda24af7f701e31ed780cf47a5cd41663ddd4e702f174f57a08

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57a1aa69b3f9064aec1b33f03cdde82c6d07aaf88f6ce6d1674439c10f123b59
MD5 3a841443d2e13877d8581d5d2c847968
BLAKE2b-256 1f4ac82b8b27c20d99c43c64377abce09d42afb893f66465ba784a15ded0d6c2

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda8fe421dcca543cef394395d8fc320a146e92f4b74597d3384a815df846be9
MD5 189e76f13783400432a864960bafcbbe
BLAKE2b-256 69882b864942d870d7f2ebae88f2dc063b46f1442ac8149db3d9edf534b61cd2

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5934f63e5c1f300806ca575936c3461beae7e7c13859b158f5611228dd21bbb8
MD5 b360015ae22a025a09764fd17a4d918a
BLAKE2b-256 65b085146089beb293144c87ffabdb8d35f8791fcdaa457381429eb58e8ef123

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4caa57e1cf1ca12841033d3bcf879de4f37ec744df742f6abe3bfa982f3a1a6f
MD5 07ad6509dc00ce370435971030f568e0
BLAKE2b-256 b996dee54af2a54d326ed19f60788bf339da44aad7eeeca82294a57b110df471

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: zeroconf-0.136.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2d2e6ebd60f3874e8d2bc4a9e9ea3888fe47617398f18b8af6d42be662978b53
MD5 78015baa9e98e995546e43833a898825
BLAKE2b-256 c019586c2982dda30e5a5550cfb95433e199f6ca3a7c1b81574471f76ffeec9c

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 224e15b94e6290fb0d48245fc7fc12d73539c121f767b28a13bb6b017854b18f
MD5 43c7e28932ba7670e85f3957b47c400b
BLAKE2b-256 9892315acf5c92fc8d6751c521ddf551dc394d7e49b89ea788ea7211ebcfc839

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d0a545e7b62883c8a102b2386ab011dbb2fc1dbc2282cb4566254174d1097c6
MD5 b905b2126c74eb41cc822c2907066a24
BLAKE2b-256 df72089beb7ed31587740c6a48a75ac6fb49a9457e5996dfbfad62f058647dca

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cddb4a57016064cf5e2b31b31df39a35ad775a3974f4a70ac2aae2f2beb96f9a
MD5 a73200b0ce17d8ba69af8ee76fd63463
BLAKE2b-256 fda4cd347e6df82c961cf9960ea2f37f46be5f4274bb0702fdb8f2701e2a8935

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 647c71fe7363b2f0afabb3a18d6aa7ef5090b96763994b036253b8306400a7bc
MD5 9837eaebda13e012fca5437db90ef9cf
BLAKE2b-256 a7352e0b315dbbbf295982ff3cea49d578653cd342b74d598e2973af9bcee1aa

See more details on using hashes here.

File details

Details for the file zeroconf-0.136.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.136.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 353685302d3f6068589672667e92298f2154e9546a266e8838201f9fa391464a
MD5 35f93e6350f97a3eee492daa61d6782b
BLAKE2b-256 441642a6222f0d3d55addbea47829dd98603c533761658939fa0846761e1a175

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page