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

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

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.

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.149.16.tar.gz (196.6 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.149.16-cp314-cp314t-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

zeroconf-0.149.16-cp314-cp314t-win32.whl (2.6 MB view details)

Uploaded CPython 3.14tWindows x86

zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (4.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

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

zeroconf-0.149.16-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (3.6 MB view details)

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

zeroconf-0.149.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (4.0 MB view details)

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

zeroconf-0.149.16-cp314-cp314t-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zeroconf-0.149.16-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

zeroconf-0.149.16-cp314-cp314-win32.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86

zeroconf-0.149.16-cp314-cp314-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp314-cp314-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp314-cp314-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp314-cp314-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp314-cp314-manylinux_2_41_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

zeroconf-0.149.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

zeroconf-0.149.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

zeroconf-0.149.16-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zeroconf-0.149.16-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

zeroconf-0.149.16-cp313-cp313-win32.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86

zeroconf-0.149.16-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp313-cp313-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

zeroconf-0.149.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

zeroconf-0.149.16-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zeroconf-0.149.16-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

zeroconf-0.149.16-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86

zeroconf-0.149.16-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp312-cp312-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

zeroconf-0.149.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

zeroconf-0.149.16-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zeroconf-0.149.16-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

zeroconf-0.149.16-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

zeroconf-0.149.16-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp311-cp311-musllinux_1_2_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

zeroconf-0.149.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zeroconf-0.149.16-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

zeroconf-0.149.16-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

zeroconf-0.149.16-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeroconf-0.149.16-cp310-cp310-musllinux_1_2_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

zeroconf-0.149.16-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeroconf-0.149.16-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.16-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

zeroconf-0.149.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

zeroconf-0.149.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

zeroconf-0.149.16-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zeroconf-0.149.16.tar.gz
  • Upload date:
  • Size: 196.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zeroconf-0.149.16.tar.gz
Algorithm Hash digest
SHA256 5e6b5a3b153c2cc2a8d9e6f6f189ec5638f7d9c86fc3e88a6c53eb6863761a5e
MD5 999ebd95f2e5c90bf8dd3b39894be99f
BLAKE2b-256 8334c981e760690f7b7dc91532d4d4ad21e3922887aaa425a0e7bff8067152da

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16.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.149.16-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fc77736d1b8c22c1ad2c13d48aab0374a75f8aa1a21bae075478eb1c54a2c1bf
MD5 9406370f266727a9d1f34cb8611fb720
BLAKE2b-256 8efdf44626de06585216091baef6da5c56ea834f36de4ec754e2a2a79b659987

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.6 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.149.16-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f8445c04cdb544a3aa58e5e30cb54dfd4c1cb82ab6389e7155872fa1c7ba7c0f
MD5 9808da44e8e918e3434ceacee2ed2370
BLAKE2b-256 0e740f52fd22323e7142dc9a72b5f46ba6e8170835a5d7fc15325ab98f574569

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ace9939767ed7bda7da6d08be50ba3ad90a9055ddbc28288d5c8d080a7c7c3
MD5 5d27a724546d7d585992a1e9233bc445
BLAKE2b-256 8a9fa830a10b69844cc3f3e5bb82a1622b9757e627c5d68236f58ebbfe6c16b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2f5a409d2df93e02137d4cd86c6bcab5636ee4b80bc40963eb1ece32a631c848
MD5 ea302c2360e063a67b957083425de84e
BLAKE2b-256 3459d76eabba71dca1cb17ad806ed79ad9c96f5150304cf4cfc532a9db30edcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_riscv64.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.149.16-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9aa9ba48ceec11f5b768a81335409672eff294d7ac9c6ac5dcbcc1b0d3538a49
MD5 e41878deff11c75e6628ee1313e8832e
BLAKE2b-256 4f65df2cb77eefde839cd095f8262a41044be851130dce5ed84125896dd5e9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37b93d889804f029d782059f77d22073b7fcff055a3e48f414164e2a79dd758b
MD5 20f44cee1119e5ff6c92520bc2f1a1b2
BLAKE2b-256 780cf0d563de36cb4c6b7c68cbe588a0ffe129a12f1b59d880b6216dde967f05

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 752942a1a803cc4aa1dc83227d0ce408912b8c5f7b22db0d9ee9b6541cb1f32b
MD5 209f50267f77b80df1e73a967ef87a78
BLAKE2b-256 f0f37c8f1d999d37d8c6f186cad6b5eacfc270fadb3412bf6dcd354e1696e4fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79cb12a3a189cf20a5903af3a76fc0a12d32b44a1e75391c0c4875d82d959843
MD5 b2f3e26ca8033b623093b4135f88f368
BLAKE2b-256 ef248d8a89e2775a86e4bd1501ff91db689320bcfc7b93f725d8530f42211cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3e77d9235a33a79ebe57fa711fe5a1f9a225e64b2964ab329d320d22cdcf1486
MD5 24d3cd6eef5f23cc7c013d1894570a5d
BLAKE2b-256 695b9e5e15e5b0428a25b768348cdec870d533b0a54fe6f0e773630329fbd159

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bdd9052521a7795d6386021b1346a8f87ec66da6a917d904a327e947a6c87ce
MD5 34610b8760b5c233746492aa5790452e
BLAKE2b-256 7a73b6b017f67d745c37c1ebc4cde3c51ff10edcd88adf7a6924c21105b175bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35301c63f8dd0328e1e78fc8444cdc39bd472e6cda2570dd185b78126f576c41
MD5 5df7739ad50c2a0cbb975b2f347fdd4d
BLAKE2b-256 a54be8e2208c874b381264b21bac29aef50212c5e357988ff009200c7ed32074

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0814028202457aac116f4315c8eff407b77aa0b441b0f27a60ac83699a04641
MD5 4f7719e2bf204c1011cf60e4b8f8885c
BLAKE2b-256 0964ee0c34a953c474a2c512252cd2bfd5932882afbc9519adceb3102d1c4261

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.149.16-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aad4b1941354bf7d0b4005b22495e6fc99218e37c9ebf0f556da9cf1ac94060f
MD5 606b5db5adbe85c0bee6286cb8d8e077
BLAKE2b-256 ad7c35d5ac05eaed8de2f39af47ea9501244a98ffe2a70b1ddfac04d06a1b070

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f817bf1b0319885882a208511249e5e2fe5ceb02fe3a9060ce295f064d13c3bd
MD5 e748df455baa9197e237cda40de6b456
BLAKE2b-256 7092b57d3569ad362f57ab9dd1f5a48c22c2a81fe0dedf5e31c92b7853b109d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 56a14eb52d65c683a180f91d007c87ff7922a5f6e839dd1fb74d81675d783111
MD5 4ef44a7895732d3af25f01dfb59881df
BLAKE2b-256 07f126b033222d669d7e96a3a1b2cdb252905686288d9071ea96716b8899d548

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp314-cp314-musllinux_1_2_riscv64.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.149.16-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d8308cad249e52fc7466c2a9315438d42e9a142c5c33f622b60601d9f0e7ef7
MD5 e10083713132d482c41e32e78e8fe8eb
BLAKE2b-256 39a6e85aae306295b7bdd66e53f01fe62c18da6fd9a93cb89033950c52b536b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddf6db171e2a44dda0cb68956c50e165a6f106b0f4ec480575ff2ef91134dfef
MD5 586856106c9fe583849dc23d662d9bf5
BLAKE2b-256 9e8d1d139ddf2c9e8484c14a5cf5dd08033513a894e061843fe64ffee9c30f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-manylinux_2_41_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 1559b089d58e47a057a68cfe36e9910acc01d500b2d51ae410a38dbda5d66230
MD5 6b2beb711c8bdad80c8cef93a737c199
BLAKE2b-256 2253d5ca316708c3fa1c81423b88aa778f9d19e8bd48ca8dc3d035e53f687844

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d58bd30d137402f101b1b7e5c7ab508632e101007fea38f3b3907e983cd32789
MD5 69912c32257a46921c1c2451ec45526f
BLAKE2b-256 1e1e6e7d8b87d59b6cb81127377aa8a8008c3dabe3f12d7fc0b709ef29bfcc86

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa4576c6d9b029ea425c2fffa586dd5d25295ec78d28b219f35e9a2d6786cb7f
MD5 0d43377461a30b7ee28ee9fe8d32bc58
BLAKE2b-256 dfacd067e60f39ceee21e3c12b1ed7181743001b46c331b3657717d7b0f8eab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 57029dca8e6c9be83bd94130d41f6e1c2ce8b3f4678480b27bf24aa2053ade24
MD5 5387430e7b32cf1302bae4d2d1de6ab9
BLAKE2b-256 923ade0fff96e52cc04441f6194aa3db2b8e4e886b93b5c5ece370db5e921f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb7fb399b475ec1d18cfef70ffce89bd168a37f3f5db9387ce37d7a180baa678
MD5 a9a1db07ed241ec1926827cc7e7d9a96
BLAKE2b-256 0917a7c58cb389ee7f344a30014ba16c2badbf85eb4cc0ae5c89bedd74070561

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 379ee7aadefffa2be227a501025356ef9685397a38b471df42032c30eff9e54d
MD5 b9020d346c12450f468848071191de60
BLAKE2b-256 f3d86524389c593f6963224cc0604bdb0424f97a7baa0417690120a652bfbba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f669e6aed52feaf73316a6205eff09696bfddce3e4f39fbc2c6e28500366dda
MD5 4d45b040adb539be3e66b53d5e97d198
BLAKE2b-256 1177c15f97a2e3e373bd6e1431238028700f5537667e502d7fa0b218619ac6ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.149.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9dbff444474354460f19b592b1f57b72688f23455d8f208f616ca49e8ecbc4ef
MD5 73328b0aac498fcfa3bb0859674f6f03
BLAKE2b-256 bed9064323d0b9ba42e93c9afd9db3aa6d14c7ddbfe07dc242d897c5f9abf7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d48d9ed65f2bf05d237fc42773dab74d8ddf6d241c88e65297769c5ba87931
MD5 6d8fe91095715818fd5c6ffcd8cffa9a
BLAKE2b-256 1569cb4ed1b97ab3a4f4d8a328439c2050211f6826cefec2d0bd6e0bcd59b4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7c1003a992ef65a10a29194630a58c2bfd4a87b9117a161c2ad9a1773d8191e1
MD5 141a1afae6b87061356c0c16c9fe8c9d
BLAKE2b-256 24d974f5e6f4530dfb615f3ecc1d23c4ac72b6c86b1bdd4a6fe9dab15466f609

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp313-cp313-musllinux_1_2_riscv64.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.149.16-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd4b56d4951d62a6e7629286877c123703ac27b2a35e7744a63cc860ee3aaf39
MD5 453c01af43a562699d6e0720d3af93b8
BLAKE2b-256 1eaa3a2a09a4f2699ddb7506ef0b802d41b6858d09224c42a9b672ea9db8a086

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b76b7228db26895090ff0e156ef8e193039e971c443d3c14fa8589f08bae2c6e
MD5 81ef8ba409cf87d83f33b559ede9d840
BLAKE2b-256 b51426ce98ef1420aa46a5b02ef24349cf41218313726481949d67807213e218

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 74fedb7c4a073cdc410770e54c27e8c87072c5a4e68eb8d680c0111c84364c0d
MD5 eb68bc1ccbf558bda23c794f2202e64d
BLAKE2b-256 6ddc0bd920ece38ca90053d330dee74a1f01089cb0eb7bc7632cf7e87f412311

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6cb2873ae74265e28756f83454d1fde53eaaed9bc380bb43ccb2ac42b4b5a5a
MD5 67d5494d05164da93bd055a6a69e9ce1
BLAKE2b-256 7c9e8a7eef9c9c4af9f5a90e95703db1adbfc932453d01679f719f84323bcf0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a14610cc2eb90e1530e042183c9ea6981260cdcb97c4ecc7b11ca3749a433664
MD5 fd2418fdb1d5fa1a5ca7cab6d4af0f6c
BLAKE2b-256 83553f0803f6c6c006761b236117e440e00815c366568ffead49a99a83b10295

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58efbb338f1ac44b62cfe92999e4476c2051288729de2f6ba8939c977acdd0c5
MD5 85060cc05cfde05728093f2cd7519bd4
BLAKE2b-256 17db18b63b074b966f6374d03d8cd62a5276ab8796021dc798bf79c4723a04ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 575a548bdc820223e2360fdcf56fb1eea4d8345f286c441c3ef1cd8f68d853f1
MD5 5101978f3bfc4d634b8f2dcd5dae0437
BLAKE2b-256 e0f9ebaa279ecdb453c7b09d4ee20fef74d8684e2d9b76ea5b6fca7bb39e0d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 813c9f0223c97d67970b4013cedeea072a28c0809962d58750d00d502066d2d0
MD5 312eadc673a729adc72c542915045417
BLAKE2b-256 03bbf829895ed725d58e5891632e7b2c507b4f88508d2d301b57452ce57190ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.149.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 48e0847568b35d3ccce0eaf0546313d3f35541f794f244097e6c8e80e75ec78c
MD5 d95cc7a7ce2dda6f3463ba5f1129f798
BLAKE2b-256 3b42ba94573fa62df4e623d7e7a0ca68e2aab644c729e83c64117da39ef7f9a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a46c8fc8a4133574484b24b6bef3ae46e7e0958167d2c44ee84cc2edff2b4c9f
MD5 ceb946f8f13b6cab90721d4642a208c8
BLAKE2b-256 b1fd7b5c0244c8db96e79c355ebb48865663ada68de096d02d09e743861b1662

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4fd08c930004ffaad2dc192762f9a2cd7f1db34b5fb1a36f38993dde2c4d55d9
MD5 b85cad47f46c3bdc588f7e6da852b634
BLAKE2b-256 4e7ef4bdad2ba7623e131907db61ce436bdb3bbef7e08917448170b87aa11446

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp312-cp312-musllinux_1_2_riscv64.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.149.16-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf3e109ec0181bab93ac954b17f2921eebac28a97c81ebf3559aeaad7a3b7a67
MD5 464e1902cc34097e238aeff4343f3980
BLAKE2b-256 fbd6460c6a4ebbd350935073fb7501b38d143791e8478d737934cae296fffc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ea9acdb58407bb73c11cad6d4965bdc01bec3c2284727c4a482d444f943092c
MD5 ebe02d5f1204e070f28df1bd925f69b2
BLAKE2b-256 2a0f1883b7bed80fd33627c802593b49377e2aa0a458c430ebc3710cfce062ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5ca881fbf6edd21651b247710cdaa7b72593982bb65433bcf80c509df9550d12
MD5 331a9bbb4f37d8f906ff9beebbf71fff
BLAKE2b-256 631c452e418d4fadb10118ea381056099714eec5cec42d6fbee7f28eeebb41d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65b312685ef3e12284f907c07217df3c6873438313ce0e6cf53e01a182aaf0c4
MD5 19242fe146d8354b54674801db75a5ab
BLAKE2b-256 ad219dd0d3a9587155b7efd10d5f5484df836c2ec2b54ae719ef1c972a9a90a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 95b8681ab0a3209d04debc96818998bcc86642be32a17b17f6ecda5d7ff560f9
MD5 c6b32d6d47aa46bcb6f046839b534666
BLAKE2b-256 f5713ea6bbd4151e2afc9249fa6c345c68f5fffafcb608a0147b3a4e49df75d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50c9ec1fb46e336ca7b098d44cae5fc21baf9d44cd758b776c06b453b2d3d73e
MD5 fa1354b86d32f4b9cdca67cb710dd5c5
BLAKE2b-256 6b2407eaf020c2f206dfd35378db721e81e9f48792d8f6297663763ca9739157

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d403ca6145268664af9d87a7522f9ad7e5e388482db0d4b055553616564087
MD5 e6fd104e8948add96870b5592fd09299
BLAKE2b-256 623ca34998e51b9923ce7446c06016df1dca4dce3fe9074d7673678dfb939fb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a1ad0c328fe79172ef654dd5fa79e819c757cde06e38e520a40b7cbbbfe0753
MD5 0824509064abb6781b466e4dc0ff6a91
BLAKE2b-256 def4678d0d04e27bc25db1cbe252d3055f2bb35df0e7e7b2428d4a84be8e6cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.149.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dad44dfcf58b7919247e0d12bde93a05296dedcccf00bae772a98f9be5a854c0
MD5 3467a3d4af6338e1b6577904357be786
BLAKE2b-256 42a770b6e6e999dd9594d6205f88e1aeb50d9173a2648ef15f313f2e9b1902b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c96231f5f5fbd101c55257bb5e57c9a0bde36a6259104637c40afa941db0b367
MD5 50bfbb4a10a7207c511e1b0998ef6a19
BLAKE2b-256 41aa82e4902a95ca8c22094f8fbf9cec4712ef22ff7fc171bb4aa4bf0d51d6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8d2545501c6d4711fa9cfbe2f731f409156c40ddf5e822b5b461445e1b1aafdb
MD5 9d6c14e547f081a7110b4004fb3b50ce
BLAKE2b-256 f689378dcd9b3567597d560e2dbe92931653b6cf0e6f258492615aed3d5c6d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp311-cp311-musllinux_1_2_riscv64.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.149.16-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63c4f279d18ecb6bcd8d3b6c34c4ae3bfb34a57321b0303b35683e13a2048fd9
MD5 3e0e33e61a6a01419d90c0fce4d57636
BLAKE2b-256 2f0a7befcb3646d25051762218d911c554bbfd6492f3076c6f17ac3d02ca8e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f117a9b49d735cfa101514df6c1ca52d01ad98be55896d4b9cc63eed64840bea
MD5 3b1091d974b64be986f478c276ad921b
BLAKE2b-256 f73d735eb897ba82213c307a04c4910b3924faf08669e4221f6f54744acc9aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7f9aaf85163be00178aeee4d02644d9ccbe8273ab52fa43e12d7d9f78a4d0cde
MD5 b770e64d1d1e62683c5a06eb17e9d29f
BLAKE2b-256 c62411364b8db6a5db39e8fdaf0d89923c5ac1f33478f5bf53cc76ba5ef05da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 414bf6758e4e389162a6d00c179c0eafd8932a36e58bb3791570eafbb194c28a
MD5 58ddd75694c231442fbcd4661aeb88f4
BLAKE2b-256 cd6a1e8a987a2b2805a59d355cd2e1d5fce03bc1da8859a0efcad4edb26892af

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8457aee89e1e561835e1abd32816eb2cdf4888af54f4c15e2d94326c1a467bb7
MD5 6795f7064b9d6c418e8c909b7e2e15c8
BLAKE2b-256 8ff0296c719ea8829f3f4ef457a80b3ebd40c7b75283482d3b18cabaf28552cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8b18624311eb11aeeea2ac85fd0ff2763d22f25a2d282110efb91b66c8e43b0
MD5 be0844027153b43baeb35b9a1d643834
BLAKE2b-256 c476db455e0663e2043f368f81b78387f678ff68beb0a18d3acd29b4fa1e5af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d04ed04cda62f787c0378270724333f5707f560b1fa51489ac4677a2fa99cb90
MD5 2acb03b8d03720318efaed649a611af2
BLAKE2b-256 d94ee0c1a9a0b5b80ab286c8269a653068960e3ec280bd54d5fd137bbf8960bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85c19ef841feab8f16be29f57550595f05ed123dcbf82afcc8a45c38f683864e
MD5 ca0def8b5ded0cb1d01940a1ad2ace14
BLAKE2b-256 b0e91ee0864eb8b9cbfa927e5f3bd3045dae35656817f81f32160e2892b362a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-win32.whl.

File metadata

  • Download URL: zeroconf-0.149.16-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • 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.149.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0c410379b035d773082d09812e5517accf70eb604f816bbdd38c54f6549b3679
MD5 df5ff92b4f5e63daa1862c3440b62b5e
BLAKE2b-256 1c84ee6ad05d33333dad0ae10da7d9b299ee2528471b15fd564afb3e6f3b5ff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7de0b296ca902a92edfd513436e3ca8fa446c85d34482b6cd2b281c632b8cb9
MD5 9d1d690bfabad160e620b6463728301c
BLAKE2b-256 3e5012a8a80cc2ed065148abd042ecb2113901b9a1ecab2147ea260c516a7dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9927cae46232685c903dfab028d0711151ca3cb56756795a268607eda4d1ec9f
MD5 f66416b452ade3433371850643374023
BLAKE2b-256 16f706a6a7142e3870f07ca7698a88f004b945f2d243c99a2cc76ad13f5113d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp310-cp310-musllinux_1_2_riscv64.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.149.16-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c024873a6bf5b6f2db680480f1c4406c3369f032d1759dd2a26cca5f4e02c09
MD5 d32c574014308be3ed575a023f35378a
BLAKE2b-256 4c7f9efe38cf8d435835ec723c159645986b81a104c6396fe469750befcca0e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b950eb95dc5b6aa92d9f626f9e7aff9c01137a54a1e453b52a68555fcaae3800
MD5 6718cbd06e922b3f88d8b2c85e966111
BLAKE2b-256 e4d1a5df1f2406856f3150b17238fc758baf7849595978e794f59fcd224873b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 848840d21c772987f6f25877bff34c1530b128a636d80a733018581eb0354430
MD5 aa6cc3951c13165892c83aa970716dc4
BLAKE2b-256 ce7a2bd7d271bb817d5e4a20e089cdab97bb8d1298315604e519a223a1639385

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.149.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a99d2d4f9a0a58bd226b935ff0cec6fc854ea59d48c83890acd95d6aef5e634
MD5 2155241052461bc21b2169b4c472bb81
BLAKE2b-256 dd5b8991121f410f74215ccfac1d0e8b423361f089e29c7ab34fa96efeda1f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b306b239abcfde7467b8b667e50c626bb2c9be85ecfd5dbeea033ed7f76eb759
MD5 3e2199085fa2ba68f51317d1f9b5be0b
BLAKE2b-256 9d36409e54a4aaeec2a2667ff1a3c82b1ee6d42e4b925b3249ed1a6af650b783

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e53b2754dd1a56c388a3f60a51000f658b690198ca7dd70ff6f6e7971f7ed9b
MD5 5726f6aa2ed7e11cbc84a95e93a020a6
BLAKE2b-256 098459f4d11c2a91db810dc8c757860e06c9b0b20e6988a904faa1086ac09ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.149.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d42d6726c9d010e51d57fce8c5d4627a1b3d0589dfedfc55277a8fe0d127f83f
MD5 f36beb464e5cdd52e173a6d98beb01ad
BLAKE2b-256 efd21d69613f0a05a13cf95e11ed49c018ec300a2929ac1adf650082a6dca716

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.16-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.

Supported by

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