Skip to main content

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 Codspeed.io status for python-zeroconf Documentation Status

Documentation.

This project is a fork of pyzeroconf, originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf), modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).

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.10+

  • PyPy 3.10+

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 how to discover services:

from zeroconf import ServiceBrowser, ServiceListener, Zeroconf


class EventLogger(ServiceListener):
    def add_service(self, zc: Zeroconf, type_: str, name: str) -> None:
        info = zc.get_service_info(type_, name)
        print(f"discovered {name}: {info}")

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

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


with Zeroconf() as zc:
    ServiceBrowser(zc, "_http._tcp.local.", EventLogger())
    input("browsing, press enter to stop\n")

To see which service types are present on the network, try:

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

See examples directory for more.

Changelog

Changelog

License

GNU Lesser General Public License v2.1 or later (LGPL-2.1-or-later).

The full text of LGPL 2.1 is included in the COPYING file. You may, at your option, use this library under the terms of any later version of the LGPL published by the Free Software Foundation. The canonical SPDX identifier for this project is LGPL-2.1-or-later, as declared in pyproject.toml.

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.151.3.tar.gz (223.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zeroconf-0.151.3-cp315-cp315t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.15tWindows x86-64

zeroconf-0.151.3-cp315-cp315t-win32.whl (1.9 MB view details)

Uploaded CPython 3.15tWindows x86

zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp315-cp315t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

zeroconf-0.151.3-cp315-cp315-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15Windows x86-64

zeroconf-0.151.3-cp315-cp315-win32.whl (964.5 kB view details)

Uploaded CPython 3.15Windows x86

zeroconf-0.151.3-cp315-cp315-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp315-cp315-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

zeroconf-0.151.3-cp314-cp314t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

zeroconf-0.151.3-cp314-cp314t-win32.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows x86

zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zeroconf-0.151.3-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

zeroconf-0.151.3-cp314-cp314-win32.whl (965.9 kB view details)

Uploaded CPython 3.14Windows x86

zeroconf-0.151.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp314-cp314-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp314-cp314-manylinux_2_41_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

zeroconf-0.151.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zeroconf-0.151.3-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

zeroconf-0.151.3-cp313-cp313-win32.whl (943.3 kB view details)

Uploaded CPython 3.13Windows x86

zeroconf-0.151.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeroconf-0.151.3-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

zeroconf-0.151.3-cp312-cp312-win32.whl (949.3 kB view details)

Uploaded CPython 3.12Windows x86

zeroconf-0.151.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeroconf-0.151.3-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

zeroconf-0.151.3-cp311-cp311-win32.whl (954.2 kB view details)

Uploaded CPython 3.11Windows x86

zeroconf-0.151.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeroconf-0.151.3-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

zeroconf-0.151.3-cp310-cp310-win32.whl (961.2 kB view details)

Uploaded CPython 3.10Windows x86

zeroconf-0.151.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeroconf-0.151.3-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeroconf-0.151.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.151.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

zeroconf-0.151.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

zeroconf-0.151.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zeroconf-0.151.3-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zeroconf-0.151.3.tar.gz
  • Upload date:
  • Size: 223.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zeroconf-0.151.3.tar.gz
Algorithm Hash digest
SHA256 ce6c548e665759b6150cef4db9ab9d7bdd89857e90c513abd6b7340bdd7dbd6a
MD5 85a09fb26f183ca9b54e1bf17302261e
BLAKE2b-256 2b7fbb22975bbbc04765920b766e433410422794568053bff0ab5b3f0bf0197c

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 397a824856fad1aea642640bad40e9a52a6ea9fe5ee2954b5ec7f46d9985bf08
MD5 5f1b9e298bc700bb05067425b35d1945
BLAKE2b-256 71756d141302b3cac1c341f25e624a20a81b2c514037d6319a38ed86d8ca6fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-win32.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 facffd6e4392869b3a53b674df502f9f90846a6ccb70045eebe8e40306f5b0d9
MD5 e105a8dd57cfae991ffad8582fa6d84d
BLAKE2b-256 abcfe29b9c2e345c7dbaaebdefb0c052dfd5d438cbe030a582f4ca9939074d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3e87bb627e469c6e901c47ab9fab3a38e98250dc4032d505cf7f83c2e2eee2f
MD5 555a6974cf45399947f93a6c7be69e7e
BLAKE2b-256 6353bbf90065f0f976cbbe052cdf081eb0a2731cf4932fc30024d6b6c444a8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e226fd343924b685c09f9e20cadf4e50693f08824846feef6c6cb05173e407ad
MD5 f68a53913a1a57e3af1b881b9393c910
BLAKE2b-256 0743d3d723bf42a3131d9c885242875ed80379df3a69026d2acdb0f9e278e1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13e3f70fcd64a75eccadfa91baafc9a5e498736299af7511b02421a0f3bcc7a1
MD5 bb1f659524b62a3f817cd0196b52f990
BLAKE2b-256 942a4a4c9916ed815bab5791f4461e266893792e08d00fa0322019a2b92a1de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8d855f783936b7b50a72c30d74330229bbbeda799dfcd1981e0d38973b1ce69
MD5 f4ee2723cfbfba27c60d3e007dd0f8b7
BLAKE2b-256 b070e926a921da26c1555241f9a2983ce133d7be736cf57077952fea92c6108e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04f0801e0f9955b44971cd9aac4204c2f3bcca779f4e4bb27d6ef7db5d85f22d
MD5 e2ffb5c1e630376748e5781607f1ff33
BLAKE2b-256 1ecbaf53d0aca5515414cfd22dd6dcf5414aed3d0e1d199fd76e1c2c18cddfc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315t-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 2904563547eb34368b9b988e657672bad2e7732a4a9990732a9666ae82970c0c
MD5 b4d5e3b2dec4a729cde63b50bf9ef0a1
BLAKE2b-256 6ddfe5f37f73091e9aec8073b3d48b5c8571bce8043c6559dba7b866fab8b175

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-win32.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 964.5 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 ec78ae3d72cf6050fcc4179a0c9ecda935b495396336560a26c49f2c0f8bb0ad
MD5 7bb72e0093bf0decdaa81992c0007fb8
BLAKE2b-256 2cd4676cf3d39996cd8737480397edad9bd4fe06437152e84fc87fe0895379ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89914b9ba91604e9f6c67d115631e74aa03161e415780d8f5dabe0b4e59b31ca
MD5 ead7567f104e45094c32260eee0de6fa
BLAKE2b-256 865da1da3294444bdc164a8e32e6e5097b527b468b1fb2f5f959591c9f560c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebdacd288faddd519cef12c87e02f6af1d37ee99e15ad6cd2fd91a8043cb9832
MD5 20a440e427662a0dbfd882a2168ac07b
BLAKE2b-256 03b8827b94302c57a6bd23cfb4107418c498c1fabf3aca2979138583e636251d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 702f94d6d1a61c01ab68dd3a6e7a0ee9128302d1f79683707e92e9dab46a8e21
MD5 c3dd17370ca33682d1cc44d45da86227
BLAKE2b-256 e09de38e41619ebb990be9ad73128687c925805460b9ba9abfcae2e6b418ea4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa644376895d00b7a556370c7cc7979af94053c012e61df44d431c25db1ade99
MD5 03e5eaff66ed1be9f8c254a2e318f170
BLAKE2b-256 45c040f29ce481dd3d3f6ffbbcbee6611851c882dccfb7cd49b4c0c467b25acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c752236f6e2415b33d24e99ae4dee9f36181bc322f2103053f23dc8d699cca
MD5 2621739c27ee317999c0310a439c38a9
BLAKE2b-256 514c5a7f5297dc60a5010252139ec33f53cbcbadf2079cfaa9442a7bcbc0064d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp315-cp315-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6bb60b8e80101cc749ff517f0d3fa77c54e6b06f29cba10faea75f32f253cbbd
MD5 f5b9e27e7f10ff6e064a2b0342192544
BLAKE2b-256 6afde8e3cae47256b242044ac0c40a0317b6903deaa8889a89de01a026005c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 38d1373c0e0dee5941cccef5550e0de34a49c2abbd83199b8ef42a42fbc549c6
MD5 fe61908162d6a1287b5302c6d5bdb01d
BLAKE2b-256 0ba058134b835917f21f0e3b6a4e0052520e7a6750c1aec76c57a8ebdcc0b255

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ea24e790f9f4601c7b591395e2b6a0d418345854e395ec65a6f9b4b58da7af3
MD5 fa1ad133b354b2f9f270d62f94209924
BLAKE2b-256 349a81f82b423611bca583dc6ad13a1bf062992f12f6a37f40f73afecbd2583d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fef170e0c995ddeb8828caf07921077f940d634ab6fafd6955f1df88922ee29d
MD5 863881d0bdf02b6c5413d78eaa9a1d3f
BLAKE2b-256 a869b2df94f5a316eb594439fe037ee54f58609d49b4fe309443743034a64555

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab58e7a159b0cc91db41783e2790371bb0ba4a701ab215b3ccce12cdc48a3f81
MD5 0683e4790279eaede144d34c5fb2642c
BLAKE2b-256 0abccacb91069ed488bca6d3ee85705bd5f87ffd2cdafde2ed675e67538ef110

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 022470d54a941805ea30ab57ca2abf443dd6e6a3d79e178149e427864756cd88
MD5 f90ccb768d0fabd62dae6c34867f943b
BLAKE2b-256 3d34ce79fd678342e5b1097ca3c2e77532e3c44e59e77201fb250f3692db796a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7b97d3eb3343627a5b3ce18600f819001fbb8f29271e19beb586c10df8c32654
MD5 49262eaecdd0f5bd714b34b5aa216ee6
BLAKE2b-256 45219de0bf38949746c5b1970d39238f412e7fee2c02a8955555a513e3d29f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3a404649c8dd1ba3cedbb56807dd2b8339ec27b2864df333f90a98f931a5286
MD5 76eb112cd7e7b66b700042f42d1a9e85
BLAKE2b-256 fc3cb215288e31ba7f2a480981fb624b6f775f4a8a0150e6ad1bbe1e3a86d346

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed1a629cbed1d040229b0a3fc3447f4c996e184cc4a98afa43e8ab675de07841
MD5 f3719e7c14d0a35de2260c30aa70ccb5
BLAKE2b-256 c068a638ba7c55fd6efa320c8a74f9bb3aa492bebb7cacb5d64e9ef81bb5a7b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314t-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 688d0282e94376aec608505266a04b8d36b1f026eabc9237ce2b31e7b8c0f2ee
MD5 a78d601228d90c5a1caac917d4bcc34a
BLAKE2b-256 e14deae1d53c45192df701aeb33eb11f081d5e53eee19c6dbc2d322e5835bcce

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: zeroconf-0.151.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 965.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 df3b7c3166646a941c151da5981640e930658e96829dc6177834e763d8327d8d
MD5 33a7df9f82f2011397aba9a1f42dddad
BLAKE2b-256 a80eeef70ee5509ad2e7adf6e16ec2fb221e624191df5218def7305e9b4fe27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e42be39f72e06feaadc40509b081ab7c468fed1f19d1dc3714bc0f3a29be2dd
MD5 3990c9c2f984a92d5b5d1fb43cc7c29a
BLAKE2b-256 a4f0b8d1ea4f112c10865934e08d8bd70b303b06f83191a10460fc00f73b2429

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e260a6f2f4441b83c86981fe29191076b4350d5868b630a6545b386dd4223c4
MD5 cd0fe5156272dcf37c892649fe6b5145
BLAKE2b-256 1eb67bb650f1435021154192a26389474df557505dd74d5813946845ebf02fc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59bde1d42ca1e9aa665787d97b0a9d38cfb1466d01bcd28733c21507146e7d85
MD5 736ecd677fb2f3c97359fccf213d762c
BLAKE2b-256 c6cf2d997facc2cab9c1652a1ee950a197af2ce134013c61d902819078d1e26c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 a154a96a84b04b868596ab17eb45c16bf2af25fda8356ea36da35463b25b31bb
MD5 095d30ae30415d253259d535c6e023e2
BLAKE2b-256 7513aa547518e0c54011c21a9897b23ce24e41f07abaf56683565b18b6a262f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-manylinux_2_41_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b903d00e9689a103d453554d794b8ed0f13148366cee08fa8c802e5d85f1ae51
MD5 ab45a4c89418a225d7e4993ac8d816a3
BLAKE2b-256 500abd5486e2ca8484e8cb31f99270cd40b17c31b1bb93909d4e63eb2a4ce40d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a91538270ab1e10e0df10c66373e68f6e3e884701593c943e67f82a73ad728f1
MD5 42feb892548efba83134dc7abb1c6f72
BLAKE2b-256 36dc7e89fdf4a403ac052c28e1b9dd89affa99d5b6d7eefac132aeb2d1a1b3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d6cf45c64be5fe4e42ea08f27edc63293357ccc04f850911a96e0fa5647dd4f
MD5 f05f81ab8d2df0cd592629f59e8a112e
BLAKE2b-256 5e1e2cfb77b27c361242bdfb7628078566ee29a1eff61926f39955db9243c798

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa300ba3cc084264b9be6fc2659f003577a1c83bf67920c7cdb4de9b571543a
MD5 afbdc330155373f89c3d2d0426f1820f
BLAKE2b-256 3c4175bb4653896ba8d880398b9647343903f8423ad1d65b82406f418d10dcb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp314-cp314-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aab19746b9878ed64f7631c0fbe336cec65679c6c31c1489aaea933adf66b2d6
MD5 e364b6295149402fae3f7884a522a0c1
BLAKE2b-256 28a78723c3390f8d400f6b48a50cecdb1e75b4cc3d4addce33a3ba507475d8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 943.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2e54bcec212e030b06d9af35b19d5f8144427b52d3fb2c0e06f015a25fe50f08
MD5 0515be16d031d37d71abc97370ef6155
BLAKE2b-256 7c83f4882b823be36778e2e09bd66b65227a442cb3f1e2eefd13df77db3e4a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d542814f914ee78876276db7417f515f53d33a61b84b68f7256a7a603dc73e59
MD5 37751269f26fb641a86dd85d7de9b585
BLAKE2b-256 e2c656068d3f508097d90d704209272ee0f17fecb9fa4b14072763e28925c866

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9bac55a6aa70797b436c2fc0f25435389bc6443bc7ba1b39a459df3173152b63
MD5 36494c55d9e268337fdc98dd8a054619
BLAKE2b-256 57cc68dd3edda0f2750219b3c0db3188e4b0e79836ca5725c803122a2413aac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1aa55ec953ffd0c393d59260a7e26dfd57d6d0347c13c95f9987ff5cfe0d98d
MD5 284a3b7d4929dcf7bd8c67ede1ceee01
BLAKE2b-256 46517d35d70dcd145c16fe1e0720170978ba86d87cf61e968530fd1f483a57fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b514f47729ae5b9b42f066163ad509d020c34cacdda3c5efb972f3336213318
MD5 7d88bbed25476497d87b728070e1c43c
BLAKE2b-256 62265c48ea0aee6ecc7398f8d7a14373c19dded05e4bdbd250509c0a779763c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07a21a694d9496ab68aba2aa7d9d628e24d6f3f89766a8cac526395cf7bbb4ae
MD5 ff1295c071a7714fa55b29a9c4729b7b
BLAKE2b-256 42aabc0d96ab5f7ed259faa28e5fd2a3da93039906067270e7ae1a7f494fe7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45bd0e92fcbb6f8d5851f5575792b5f18a85856ae69fee601da4ed3d7cdcfa09
MD5 83bed5efb97c8ae5e9cecd3ab1a55438
BLAKE2b-256 e0d2a1c5316026abca5d9b66d039911a3b72deb0296b40836cfacc1a171dd44c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bba8a4e7639c1ae5aee9bcf18d994a8b5fcc00b862ca5e82a52a1134b4bf517
MD5 e4d8f37c1822264bb6a34e8fdeeef973
BLAKE2b-256 78758c2a773136e779ffd6b78e30e83a6a5add578d5b3f1a6ed5953430aa8641

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp313-cp313-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb1880444668e2a384e925490f1d969ae702bda4472c112a18255446f98ad86b
MD5 4c5ed30bc19bade9cad683c1d65befd8
BLAKE2b-256 3c898336319bf48950316142e6a620eeb3fbbdaef8ce0d2186202ad5c8997cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 949.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c883d1d64c92df375a6bbee909e65fb76fc47ae92c88261e338bc79b5b505fd5
MD5 5b4b23de6f4ea11dad696dc4a639c80a
BLAKE2b-256 f9c261388f441518ba2b04bc66585c4cf245e24659126b49d1c297b173af30d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e573682524d71e8e44b6cdbadbeb9c472a8c3af21de7eead794661b250e04fa1
MD5 3a72bf92fdee8bc807f0584841271d1b
BLAKE2b-256 3312dc8da1b4fd168eabf6bc3af77b5b4480063386e8763f76eb55be5933a999

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b69c26aca186d2b3e4f4b7789a74d9ea81202ecae04105a663939dd85e561d05
MD5 948a535f570c59c90b485c3480943135
BLAKE2b-256 d81b5449d434c74a55a401442641578c516e0f2d5c151fba89000e5c2fc2e2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5307ca6ad418200e37dcb12ff5fe5a689f3e559da6342442a82ca98ac703e60
MD5 5e1fe8951245e6702f617798b2ccab9c
BLAKE2b-256 7d3b493c53323d5b624b8be12ba545a6824af852b5b41bdbebb2a2fc8dc8a957

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbd2b73902a44426080190d653fa35638a93b6c6725c2be76888b4b614bc0b48
MD5 198a431caf0d1df94067e2652900a8cd
BLAKE2b-256 8a0ee9371da3ef71ac66bfe3b3429b2ce5c880afb1471a27d15e1fb266fbc0f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b76cdefeb7ebe5a3cd8cdd0b1761113d5a64e3031c38c1de873a289ced574eff
MD5 1afed4733039fe296f57c9f4e772f429
BLAKE2b-256 156bf6b5b5994c84b3ed2896112766294196ba278e8733313e48f3ce000e9c7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8193a17d718ae5a9059c4fbbaefbf937c9bb5eeccb9dd66f9aafcacfec4cefc
MD5 20ac5f7d413b522690803ad752cc7695
BLAKE2b-256 1f669f042a40238e79a109aefb612b819435afcfd97f2822b750d4ae7a2bfa3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbec6e928e75629063bd29775611c390bbd3737e9a5b6546545bcf6cebbc85d0
MD5 1dde8a222067a18f175bf9aec0b0bc4b
BLAKE2b-256 ad6e1176db8a6e543d15f68bc5cbb4e15d6379884699435dc9872dfd29eabc2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp312-cp312-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c01d8ca4fc85c107448c2802edfbc39845b06c3a1cb72a3f4337c030f4a9ff3
MD5 c0979edf7aa584ee5f2b4b95d7f7b954
BLAKE2b-256 f867fe190af2c52e4f06915a28a8e7e9fdca52d1d645ad8ef5861ed206089d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 954.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb544b545c725a13d208cb67f5f8a168b18a568ad0a78e07894f3b913f8225f9
MD5 95c6dcce76cc3123303f1ddd84b3b5d7
BLAKE2b-256 6c560499153144c7e9ef3d31ca39395e36533eaa0b2b6a385e37faf50d7133b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 657797cc284ab1da4feb20de476806db9a39f1535c5f8e40e5f2ebe149335eea
MD5 ceaf52ebcf1cb62cf8476b210ef60b25
BLAKE2b-256 b2016bb5165701134aaa3cb74b3d228c76f3536ac710113ec51cc48b69fc2af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1eee2348d9863a8821ba6cbdc9af97bfb8a79109c8b400cce59679d4d100eb52
MD5 9f9be2f67c1e9d030d6b7cf70e1409b0
BLAKE2b-256 7270f94b78669d14bd0263bed9b63ddc80931c64355a59a2a4643e22c6183d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c74baa9873150f5a7ebf0d7800a22171ec75ae76942f2464b951cb2b3fbcf00d
MD5 ba3f604014f433514cbd6dd2f4579a8d
BLAKE2b-256 6fa8d2edc86d450bf8875d92116a974ffa73e2b7360a8c2479dd7b2204dce2c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8872c85242c46286849c7cb1c0d44d0c75db9fc654ccce351b3dcf26d580b04
MD5 326c9f95c82ce804156bf487b2c2a9c3
BLAKE2b-256 96b882315b598eedc2f4f3fae49adb5d3ed6b4e75928bc3a8b5a925e4b03c03e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b80006e2f9ca9f7d094209438688b1b7ab1f8231ecd41b1917669d09fdd0f62f
MD5 bcae9152a6ae8ce10c0c8c156610589b
BLAKE2b-256 a2a77ffe80d9872e9db5321cc4a8994c0845ea70fac27c766fb2a68d8a23d7cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e35edcd3d61c945b4d5e98a04a3d2e2ee2bd7ab92a588b0475356e144ccc2680
MD5 2a5c406f6823a798597e3584a2498bd0
BLAKE2b-256 7771ccccdd59b9f71f2d9b6f655a9dd6154782349ef826e82b9a580b67ef55d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 675c559d287fe7385d7aa87b4f649de49ec8431396d70f7ad25ae05b0ef0c0ea
MD5 9320dfd13ad03713f2ab800dac7a208f
BLAKE2b-256 469075fbaa75b36585c89324e4b5aa81babef4c78b0ab12f621c6ec7e67ad328

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp311-cp311-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0c9aed238135f9adcf8c686ca49c479a6715ef3fc1ab826b24232d2dda7b761
MD5 3ee8d5faf566a3cce73de7ef009a4212
BLAKE2b-256 ade16e0faa140a62b49247c35ccab32a7911d845c52e5c6bc534b1bad3288365

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: zeroconf-0.151.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 961.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 13dfca4530a1fddca4ff18cc2794c2fea0a7c5a4c66cbcbe7ad51e968edaf5e7
MD5 a0b70c065ab6a0016119478316337e82
BLAKE2b-256 a68256905eb3cb25eb0eea416430e32be4ce6c85e5016963180ecbfc2f539bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-win32.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ca29e53e3e64e6bac06c4132db45d01060cfdf16a3070925a6a49a5d1278cbf
MD5 73993bd9ab35462645366b6e0cd4ef01
BLAKE2b-256 c2a78da643f4f637fc7ccd57bb287c4b60342f2e03acc5e2ac3871d22e433921

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5061fbb4052411c1e23d1164e885a7b83846f4823b069e985a74895cd34a8e6c
MD5 21b2c1f5d277789d48da5fa4267a190d
BLAKE2b-256 5f9c269b34c4a714bbe229f0e4424592b66ab9ddf067f6b06db2d2c58014ea68

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e979f2f565719590d19c4d8313f69ea040cc74b4c12658b8ecd5e51fc7266cd
MD5 27cbeae08494ae9eb4e2a7e784605f8d
BLAKE2b-256 2441557c2641101318dae63a5dbcc920bca4ed48b4e79abd829ccdff8feb147e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-musllinux_1_2_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c33836e55d7f8edacac0dc2283bb60b33aa81e176207cc5f52813c41f52191c0
MD5 660dfe917ea283c5307f99c5b5e1fff4
BLAKE2b-256 c3bc6c80c6ece380a65c3dc72023a71fb15a96bb32f41a0344065a32526e2004

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 871e72adae8ae206445debfff0b2f049c7c1f984408346574ed38a2e7f0de172
MD5 3baad588f8d792022c6a1cc52e029e10
BLAKE2b-256 f9903e6a5b9892094db35c812b0b3288d4da494c5d4631786094e92d35a7422a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zeroconf-0.151.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb9b7933f4e002131710855d79556f7860e617316de969742c3d38ad06ff4722
MD5 b2dd8f9691c2ac96e35a0520023d31cf
BLAKE2b-256 426e09db7e30f4cc09646d43ecf167870655067d7e52eef6dc339a73d0207c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for zeroconf-0.151.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b5ac9625b008e13a0571d12d9650afbf66c7d01b35cc986894fa591e7d606a2
MD5 702b9c37a82de9a1d6612b2c22405b62
BLAKE2b-256 3afdc81ad03fba459b73080b99c6284c036ae9ac0823e795bf2a9e3438dc5dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.151.3-cp310-cp310-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.151.3 This release

70 files

0.151.2

82 files

0.151.1

82 files

0.151.0

82 files

0.150.5

82 files

0.150.4

82 files

0.150.3

2 files

0.150.2

68 files

0.150.1

68 files

0.150.0

68 files

0.149.17

68 files

0.149.16

68 files

0.149.12

68 files

0.149.11

68 files

0.149.10

68 files

0.149.9

59 files

0.149.8

68 files

0.149.7

68 files

0.149.6

68 files

0.149.5

2 files

0.149.4

68 files

0.149.3

68 files

0.149.2

2 files

0.149.1

2 files

0.149.0

2 files

0.148.0

72 files

0.147.4

2 files

0.147.3

80 files

0.147.2

80 files

0.147.1

2 files

0.147.0

80 files

0.146.5

80 files

0.146.4

80 files

0.146.3

80 files

0.146.2

80 files

0.146.1

80 files

0.146.0

80 files

0.145.1

74 files

0.145.0

74 files

0.144.3

74 files

0.144.2

2 files

0.144.1

74 files

0.144.0

2 files

0.143.1

58 files

0.143.0

58 files

0.142.0

58 files

0.141.0

58 files

0.140.1

58 files

0.140.0

2 files

0.139.0

58 files

0.138.1

58 files

0.138.0

2 files

0.137.2

58 files

0.137.1

55 files

0.137.0

2 files

0.136.2

67 files

0.136.1

2 files

0.136.0

67 files

0.135.0

67 files

0.134.0

67 files

0.133.0

67 files

0.132.2

51 files

0.132.1

2 files

0.132.0

2 files

0.131.0

51 files

0.130.0

51 files

0.129.0

51 files

0.128.5

51 files

0.128.4

51 files

0.128.3

51 files

0.128.2

51 files

0.128.1

51 files

0.128.0

51 files

0.127.0

51 files

0.126.0

51 files

0.125.0

51 files

0.124.0

51 files

0.123.0

51 files

0.122.3

51 files

0.122.2

53 files

0.122.1

53 files

0.122.0

2 files

0.121.0

60 files

0.120.0

60 files

0.119.0

60 files

0.118.1

60 files

0.118.0

60 files

0.117.0

60 files

0.116.0

60 files

0.115.2

60 files

0.115.1

60 files

0.115.0

60 files

0.114.0

60 files

0.112.0

60 files

0.111.0

60 files

0.110.0

60 files

0.109.0

60 files

0.108.0

60 files

0.107.0

60 files

0.106.0

60 files

0.105.0

60 files

0.104.0

60 files

0.103.0

60 files

0.102.0

60 files

0.101.0

60 files

0.100.0

60 files

0.99.0

60 files

0.98.0

60 files

0.97.0

60 files

0.96.0

60 files

0.95.0

60 files

0.94.0

60 files

0.93.1

60 files

0.93.0

2 files

0.92.0

60 files

0.91.1

60 files

0.91.0

60 files

0.90.0

60 files

0.89.0

60 files

0.88.0

60 files

0.87.0

60 files

0.86.0

60 files

0.85.0

49 files

0.84.0

49 files

0.83.1

49 files

0.83.0

49 files

0.82.1

49 files

0.82.0

49 files

0.81.0

49 files

0.80.0

49 files

0.79.0

49 files

0.78.0

49 files

0.77.0

49 files

0.76.0

49 files

0.75.0

49 files

0.74.0

49 files

0.73.0

49 files

0.72.3

49 files

0.72.2

49 files

0.72.1

49 files

0.72.0

49 files

0.71.5

49 files

0.71.4

49 files

0.71.3

49 files

0.71.2

2 files

0.71.1

2 files

0.71.0

49 files

0.70.0

49 files

0.69.0

49 files

0.68.1

49 files

0.68.0

49 files

0.67.0

49 files

0.66.0

49 files

0.65.0

49 files

0.64.1

49 files

0.64.0

49 files

0.63.0

36 files

0.62.0

49 files

0.61.0

49 files

0.60.0

49 files

0.59.0

49 files

0.58.2

49 files

0.58.1

15 files

0.58.0

49 files

0.57.0

49 files

0.56.0

49 files

0.55.0

49 files

0.54.0

49 files

0.53.1

49 files

0.53.0

49 files

0.52.0

49 files

0.51.0

49 files

0.50.0

49 files

0.49.0

49 files

0.48.0

49 files

0.47.4

49 files

0.47.3

49 files

0.47.2

49 files

0.47.1

49 files

0.47.0

49 files

0.46.0

49 files

0.45.0

49 files

0.44.0

49 files

0.43.0

49 files

0.39.4

2 files

0.39.3

2 files

0.39.2

2 files

0.39.1

2 files

0.39.0

2 files

0.38.7

2 files

0.38.6

2 files

0.38.5

2 files

0.38.4

2 files

0.38.3

2 files

0.38.1

2 files

0.38.0

2 files

0.37.0

2 files

0.36.13

2 files

0.36.12

2 files

0.36.11

2 files

0.36.9

2 files

0.36.8

2 files

0.36.7

2 files

0.36.6

2 files

0.36.5

2 files

0.36.4

2 files

0.36.3

2 files

0.36.2

2 files

0.36.1

2 files

0.36.0

2 files

0.35.1

2 files

0.35.0

2 files

0.34.3

2 files

0.34.2

2 files

0.34.1

2 files

0.34.0

2 files

0.33.4

2 files

0.33.3

2 files

0.33.2

2 files

0.33.1

2 files

0.33.0

2 files

0.32.1

2 files

0.32.0

2 files

0.31.0

2 files

0.30.0

2 files

0.29.0

2 files

0.28.8

2 files

0.28.7

2 files

0.28.6

2 files

0.28.5

2 files

0.28.4

2 files

0.28.3

2 files

0.28.2

2 files

0.28.1

2 files

0.28.0

2 files

0.27.1

2 files

0.27.0

2 files

0.26.3

2 files

0.26.2

2 files

0.26.1

2 files

0.26.0

2 files

0.25.1

2 files

0.25.0

2 files

0.24.5

2 files

0.24.4

2 files

0.24.3

2 files

0.24.2

2 files

0.24.1

2 files

0.24.0

2 files

0.23.0

2 files

0.22.0

2 files

0.21.3

2 files

0.21.2

2 files

0.21.1

2 files

0.21.0

2 files

0.20.0

2 files

0.19.1

2 files

0.19.0

2 files

0.18.0

2 files

0.17.7

2 files

0.17.6

2 files

0.17.5

2 files

0.17.4

2 files

0.17.3

2 files

0.17.2

2 files

0.17.1

2 files

0.17.0

2 files

0.16.0

2 files

0.15.1

3 files

0.15

2 files

0.14

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page