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

  • PyPy 3.9+

Versioning

This project uses semantic versioning.

Status

This project is actively maintained.

Traffic Reduction

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

IPv6 support

IPv6 support is relatively new and currently limited, specifically:

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

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

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

How to get python-zeroconf?

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

pip install zeroconf

How do I use it?

Here’s an example of browsing for a service:

from zeroconf import ServiceBrowser, ServiceListener, Zeroconf


class MyListener(ServiceListener):

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

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

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


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

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

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

See examples directory for more.

Changelog

Changelog

License

LGPL, see COPYING file for details.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

zeroconf-0.147.0.tar.gz (164.0 kB view details)

Uploaded Source

Built Distributions

zeroconf-0.147.0-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

zeroconf-0.147.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

zeroconf-0.147.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

zeroconf-0.147.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeroconf-0.147.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zeroconf-0.147.0-cp313-cp313-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

zeroconf-0.147.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

zeroconf-0.147.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.147.0-cp313-cp313-manylinux_2_36_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.36+ x86-64

zeroconf-0.147.0-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

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

zeroconf-0.147.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.3 MB view details)

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

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

zeroconf-0.147.0-cp313-cp313-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zeroconf-0.147.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeroconf-0.147.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zeroconf-0.147.0-cp312-cp312-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

zeroconf-0.147.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

zeroconf-0.147.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeroconf-0.147.0-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

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

zeroconf-0.147.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.3 MB view details)

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

zeroconf-0.147.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

zeroconf-0.147.0-cp312-cp312-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeroconf-0.147.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zeroconf-0.147.0-cp311-cp311-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

zeroconf-0.147.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

zeroconf-0.147.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeroconf-0.147.0-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

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

zeroconf-0.147.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.4 MB view details)

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

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

zeroconf-0.147.0-cp311-cp311-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zeroconf-0.147.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeroconf-0.147.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeroconf-0.147.0-cp310-cp310-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

zeroconf-0.147.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

zeroconf-0.147.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.147.0-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

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

zeroconf-0.147.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.4 MB view details)

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

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

zeroconf-0.147.0-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

zeroconf-0.147.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zeroconf-0.147.0-cp39-cp39-musllinux_1_2_i686.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

zeroconf-0.147.0-cp39-cp39-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

zeroconf-0.147.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zeroconf-0.147.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

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

zeroconf-0.147.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

zeroconf-0.147.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.4 MB view details)

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

zeroconf-0.147.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zeroconf-0.147.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zeroconf-0.147.0-cp39-cp39-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.147.0.tar.gz
Algorithm Hash digest
SHA256 f517375de6bf2041df826130da41dc7a3e8772176d3076a5da58854c7d2e8d7a
MD5 28997e1329fc003fe22282d39f25d858
BLAKE2b-256 e278f681afade2a4e7a9ade696cf3d3dcd9905e28720d74c16cafb83b5dd5c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0.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.147.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f0e1e1abe27ab81bbaaac2e4d94f9e817e64128ab03ba5909462d1f4cc560bc5
MD5 432936a3f9fb12d23d58effe4784f37a
BLAKE2b-256 094312d772ed4bda07475bab206c881a0f16069578b6001eb030c894493d06f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-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.147.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81ea55950ace20a93ce1ef684b111498cb212e06cc190a311a572d42a49809fc
MD5 fc00293266e44382f4aa87e4e732961f
BLAKE2b-256 7aab9bf900cdad74f53a991b9d2f83f0a63e0e5d8d31e9113900e287c06275f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_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.147.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de84c8e09a49009ff44fb1146bfd2380545cde2a9f5ebfa7038afc578b187b2a
MD5 430cf28789feb166924d21d5e3cc536b
BLAKE2b-256 2097d6c75b9fae6687bc02ba09f502974951adedb1e943f4dfe0917f1440c40c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0f51b5e363c137291a56688898fe284c5f99f52b7f8a1528ebe9d81e8daeecf
MD5 1731fdc68ff07b8bc413710b5ea61279
BLAKE2b-256 95d3d8b6d896c93c0d9f713368db6dddaf89902446150da544e65d3acb77c5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_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.147.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4fd6848de32756ec34531ea9b3cf1988c9115b7d8363687d3ffaa2cdba244d4
MD5 bcf02938bb7a019b623164c8054f1cdf
BLAKE2b-256 082abe74419b6b42a8782c45a68c2516c1757dd71266d04f035843f89e135d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-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.147.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b89c62ea0220235da8b353958ea8340d62ed820dca34be0ff08146674a93168b
MD5 6cf2d7bdcf5b5e0d35d8b7dda6ae8aa3
BLAKE2b-256 1a90a11ada56c3ae0b8c9377b2309c8cb24a5027aa87b45da654ec057f1ade38

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp311-pypy311_pp73-macosx_10_15_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.147.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8ec79d8693874f0dda108be48f56bdd343ddb9a469d629a796f853ba0865f07e
MD5 a30f160e570b1b27b9f101fccb774d03
BLAKE2b-256 a272c81d21d97746d4e615d84e36022b7d8e78b1371b9151df044aad176227cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-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.147.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abe4c6da969c64419e30ca83368475d97ae57421edb2ec86e5c2baa8f659bad5
MD5 66b4514187cb5cef20f5817cd6452790
BLAKE2b-256 8a8f615ed826da6cae2815de54fd81ea848ab437a6dc2ccc70dbe650196f1c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.147.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b39f83ff516ad764bda67ad242ef85481d1653d85bd4bc98cc62070bb086789c
MD5 988795892c1ca0583edc3e1e278594af
BLAKE2b-256 c9831d93f618598692054d8703b7bcd8c0867d5345051df881d1125954d1c388

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7edafeb07c88398d6c2f01ce6810c566199d5d50c9da7ac93e9f0da1d34b7c8
MD5 6b5128a957851484a8fea7df32b2ee77
BLAKE2b-256 ba9d0fd01c963b9936407cb2ac9223ff2b18c29ea0835eb094297194fd483b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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.147.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60b548b8b58f4f7435f96e4a8bed0ffedc6023ebd9e30872d3e71e3f5d8bd8e3
MD5 7bc6842712d19f2ad36149bdccaaa108
BLAKE2b-256 502121b8287721e149cce3c8eb771f22d07841a63aa36274bc32634128ba37f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-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.147.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a2ceada07a6e89d7000e19826598a2fe013192e7a752637c1232cbc6041f434
MD5 67055894363400d7281338f72e2d39fe
BLAKE2b-256 5ceb3980391d7b9ddaabd4cbc8bc1f0139420b2f62d7aa7ad510369fbafcf487

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp310-pypy310_pp73-macosx_10_15_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.147.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 760d9b318e6ba311054348719f3e9ea33f678afbbf9e9585d7993638bba12220
MD5 7b3aba412cf220225de79a15f1739922
BLAKE2b-256 2726fa79f0bafe8830c0de298bfaa7481858d22633c04e508001d80daf95ef4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-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.147.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 536f5f07d2f2d5c872dc6acc8e8a560254c2a5874eba45165dc5deb14a49cc19
MD5 cf87fa5d824dc1feced1578c997eb6d7
BLAKE2b-256 008edf781910be359b3178d0b4f2c9fd589c6a979c58e73990ccfede1983e0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.147.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f139fcf33fa166779b959185c46feae5c82dc86b09a8ee77484d1bd4155a87f
MD5 8793ff8a6cb1b894da23c1246ee80631
BLAKE2b-256 1f258c02b8edb73d7c7bec3ff2282f1ff48a094df51773959d24d4e2829e9bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f815a2202a4fdc66bd6cf81e4cd55657fb903b5f748455f6b9ca1702fb7d559
MD5 a3596387b470da61a21e1b800f9956f2
BLAKE2b-256 28edb2ad7de2784d18db96b6ed4980b6c2867fdaa3813af759d52dcce13a95b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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.147.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c1157a7500145224b2606ca1efe393afa9879133acf40b1b428dfa5503581a
MD5 06b4df2178c92496bc892f912699d0dc
BLAKE2b-256 0ebd74c5d4a7d947461205b7b155df4f500de1af5d8410c22169c4d6ccb8afb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-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.147.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6883f1b39ef1fea628e1ad027c4e5ed5058582d1453ea0f8dee5f7afd421b228
MD5 6f7f36c9902aee08943ce57668b2ef18
BLAKE2b-256 36111fdd779a700a35bedf18d795d05a902313600aa4ea39a1d87d2ac5cdd30b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-pp39-pypy39_pp73-macosx_10_15_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.147.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60f623af0e45fba69f5fe80d7b300c913afe7928fb43f4b9757f0f76f80f0d82
MD5 6ba85368ab98a3eae5c9206aeba02702
BLAKE2b-256 a0e1ba463435cdb0b38088eae56d508ec6128b9012f58cedab145b1b77e51316

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.147.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c52c523aa756e67bf18d46db298a5964291f7d868b4a970163432e7d745b992
MD5 abfb8f6f1e6bbe6eccc8cd24a47cbde1
BLAKE2b-256 35b6a25b703f418200edd6932d56bbd32cbd087b828579cf223348fa778fb1ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acc5334cb6cb98db3917bf9a3d6b6b7fdd205f8a74fd6f4b885abb4f61098857
MD5 4575a03953bf97e329d3146ff0552374
BLAKE2b-256 99f9080619bfcfc353deeb8cf7e813eaf73e8e28ff9a8ca7b97b9f0ecbf4d1d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4acc76063cc379774db407dce0263616518bb5135057eb5eeafc447b3c05a81
MD5 ddd594525fa9ed7b929445faadab06c5
BLAKE2b-256 721242b990cb7ad997eb9f9fff15c61abff022adc44f5d1e96bd712ed6cd85ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-musllinux_1_2_i686.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.147.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd783d9bac258e79d07e2bd164c1962b8f248579392b5078fd607e7bb6760b53
MD5 c2056ce6f5557f0cb00f8849ee76d876
BLAKE2b-256 9de6b63e4e09d71e94bfe0d30c6fc80b0e67e3845eb630bcfb056626db070776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9570ab3203cc4bd3ad023737ef4339558cdf1f33a5d45d76ed3fe77e5fa5f57
MD5 e92c556b9244c9710c3903b0c454a33e
BLAKE2b-256 1ba89b4242ae78bd271520e019faf47d8a2b36242b3b1a7fd47ee7510d380734

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp313-cp313-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 a2dc9ae96cd49b50d651a78204aafe9f41e907122dc98e719be5376b4dddec6f
MD5 273cbbda203b07fe4ca757fec5bd0aa4
BLAKE2b-256 cd305f34363e2d3c25a78fc925edcc5d45d332296a756d698ccfc060bba8a7aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 728f82417800c5c5dd3298f65cf7a8fef1707123b457d3832dbdf17d38f68840
MD5 77b08f5de7f62152c16af9105a7e1241
BLAKE2b-256 02ec3344b1ed4e60b36dd73cb66c36299c83a356e853e728c68314061498e9cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_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.147.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cbeea4d8d0c4f6eb5a82099d53f5729b628685039a44c1a84422080f8ec5b0d
MD5 84a104cba7b4fe666e70c4f9b69bd2b9
BLAKE2b-256 7b482de072ee42e36328e1d80408b70eddf3df0a5b9640db188caa363b3e120f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.147.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ae0fe0bb947b3a128af586c76a16b5a7d027daa65e67637b042c745f9b136c4
MD5 e01b36261070eaf3d7ba6182dace1c55
BLAKE2b-256 4812ab7d31620892a7f4d446a3f0261ddb1198318348c039b4a5ec7d9d09579c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095bdb0cd369355ff919e3be930991b38557baaa8292d82f4a4a8567a3944f05
MD5 d0dad98ea389a4c30346201b65a85a1c
BLAKE2b-256 bf79d9b440786d62626f2ca4bd692b6c2bbd1e70e1124c56321bac6a2212a5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.147.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c57d551e65a2a9b6333b685e3b074601f6e85762e4b4a490c663f1f2e215b24
MD5 116b3a9c78ee0ed40bb94605c0012896
BLAKE2b-256 91c042c08a8b2c5b6052d48a5517a5d05076b8ee2c0a458ea9bd5e0e2be38c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1deedbedea7402754b3a1a05a2a1c881443451ccd600b2a7f979e97dd9fcbe6d
MD5 0c740f52427313da00df7bd66e67b138
BLAKE2b-256 ad83c6ee14c962b79f616f8f987a52244e877647db3846007fc167f481a81b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp313-cp313-macosx_10_13_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.147.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e66b2044a626f20bc4ddab92de662b4f4bce8e4f1e85672d88186c9e776505a1
MD5 21c3b9b026b0df78e04d0982282affef
BLAKE2b-256 ac4de287db04c2c95cdf3a9e99a897a54ab798e010ce14dff710c5f745e996c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.147.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1ae71afd284f07d9a46acf69674efef283c039f5e326250c29578e0605f7dac6
MD5 2757629bf48b73cc7368d56a044675c9
BLAKE2b-256 e826ad45cfdb58c5b56750101a660d4e3f3b30562b17cff1be8d801190c35095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 137d83815347e0ede605f9d7a0d5253f95d62a9872f291a123679c4a01e016bb
MD5 7311995fcaec3e790ebfd4dabf9c480e
BLAKE2b-256 d0911505222cdb1164a34412c372a88eeee30933fd24f73e5113d7496c551136

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3f6d9c6c226a7fd6669584dfcb8160a60b8711f00229a8d7347451447b220e2
MD5 b2adf9ff58f2df42e369003871af9f0a
BLAKE2b-256 60ea60d3fb09d15ae60ebddc489eeba1e3af85642242744db0504599403c0668

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-musllinux_1_2_i686.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.147.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7b488d1a74bac55080a9cadb6b8690f0aefa89ae8130485557bc53ba866d445
MD5 796689191b78de3f23f9eebcb3cde163
BLAKE2b-256 d9300068cfd5189fd149507e62ee44e4e10adb2ed4f5cc23084a737f479da8e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10e75e41160f376b7b43a242ffeee5803878fd31d30991eb60cd1d0949373d51
MD5 12d8071ad8e5c70cc393eb368598f1eb
BLAKE2b-256 2ca696207513fe3e69adcd6694fe58f3802903f0fdcc2473bd709b4f96bceea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 213b9ebdb5876d7b30515e2850d250625ac1a5c54b022a0fb407ea25af39251f
MD5 a2de9ba635584ef5ed836a115fdd3b22
BLAKE2b-256 c09928c0ec3b2a47b6e7c65ea50213ac4d3851554fe7f2bd520d0bbc9a8ea5c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_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.147.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34b5f1f472eadd090232af6b52c16c417359d9541e7bb31afbde3a0e33e55594
MD5 55c14f4220b310b9203969309d107c91
BLAKE2b-256 fa116499c380e8e7f8d24586ed8fc6339079541b4ac244a39fe2b65558140917

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.147.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71a5690ad94a8b5809bb3888e3c30de943458b9fb751730fa9a60e580d1b47ca
MD5 08c8453a6270ebe23b23e18ba4aa4afb
BLAKE2b-256 67cad6cc026655f8bc894c0f03c153f10f4c2cd091d088c13a3cafaea771cd1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04018f48c38fa174af8e2c6cd00e6fb8a9a7269a187ba1f52cf32c14f2ddd941
MD5 088dddaa2a1bdce323e66e82f6a488af
BLAKE2b-256 fd336c52100705bc118b77d1516499f737074a9da7965f268243234d21fa872b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.147.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0086b8c280fc3410fa887a0da68cc6dc5a7d1da8a57157f6c7e4acb029674ce9
MD5 3ef1e1cbffd674178edb4154275e8c95
BLAKE2b-256 1c3a8cb2ce2022417b20f3d63a4411d21d21d1a01366d89f0cd451c0f42d775f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89542174ec4f1e86ba428cab19a33c77378dcac0ee37577df8859af849cf736e
MD5 d3a6bb0f63a2a9f33577e249f59f8d83
BLAKE2b-256 2872551e19b1066a930b4e2d7114c9ba8217be46b17d46b95b7b256842d4bfb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp312-cp312-macosx_10_13_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.147.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5c8962eb8c829fd22bbda2ec23443e6e14e6f44adf2a823da0f074a941d8b8e7
MD5 aadf39abd28589a47374253222407d0b
BLAKE2b-256 d7f143bc2388d8e7e342e115625be928d731a84e66aef42bbcb9c484b5776d8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.147.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3dec7640d85362d70a2e4c89e34e0c865f41c00073378597afdac0a2e146b061
MD5 c1b7a5f2602764843743b3aadfc27794
BLAKE2b-256 59bfae9739c035273f0e04c51a806d1ae0113df24e08791be39e7408e7a7d10c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7b6ee515a76bb983b26590eda099d57fede043f3b753427ff9dc4e1c7405395
MD5 143e956c5ad7bf236763f94c1b2e74a7
BLAKE2b-256 4af65b9e7946603ed4f5b542b182534d39ff2099d6f03f4a951dd9493a823627

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f2b7f930407403f9813525537a78613510d9c394a11328cafb8bb46f060d89e
MD5 b859920871c7da3a3d3f854ebbd21845
BLAKE2b-256 07474e12c0e215f10d507c9e6fc2a33b905fd1fa6341d382fe398ab05123bbd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-musllinux_1_2_i686.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.147.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4a1ccbbbeb3c5e1867f38aee18647245069ca01572f6e9188d549f294f2ac77
MD5 5adb7a684bfaa922fdf600ce4efcc95f
BLAKE2b-256 ab16307a43f141f4da6f9f505412e6cfdc9ca8dbe5653ae87a2537b906047c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bd0984a2f457d399e414622941cce30bb52bd9bcbfc0594a266ed724a030469
MD5 137a12e98bae4f77a1617e96343ea6bf
BLAKE2b-256 83e0159a36eef4cc5c63b34fc1af7af4f1cfae94155f0447507555cee0879af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02205731db993193034b0f5cc5108e2cf2c580e445ff401be05ea80aeb762c7c
MD5 e58f14ff625ff0bab139302791aee11b
BLAKE2b-256 b50a7c0762c416dcaf80023febce9a1692694056a4f43aed93a939647a1c0991

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_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.147.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed2b6369a50e4a27667a6c80011ff276d63d205f8ccf5771f9fceddb0c9ce6b4
MD5 a20f50e30d10b1533a359651305abce1
BLAKE2b-256 ccfd90d3b23d4477176ec6c95c2bdbe795aeeb1659ab026321e577b1ab0ba1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.147.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6269129298004531b0b809a32bfe82865e8641f7940647c33a0b9c9e36012187
MD5 5352f50b67e58cd378cbeb73681a69bf
BLAKE2b-256 15e9b12823125c41f20056c83a541554b26d65ab5f2ede684232f1c0f05ad26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f511b32c1693f5f76acea9ce7add629ed62071f001929d818bea09aaa2c2969
MD5 9dab292414f3b485e6052f84a93a1cd7
BLAKE2b-256 2253c0883d7342ba30c1a5c4cce17afc7b41e703771f14516c95328f7e800d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.147.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abb3f45ce14fdbcf70d2cb711714553e20e704cc2d86988125936d853f01c132
MD5 29817342863e13f3fa41318891b59dd2
BLAKE2b-256 1978d7033a7eb2b0e7b875e5578d22de52b4553d5ce49deca1b1a316f97c8ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f36096616f89f3aec678613316014e3a35e293c3c2e26466695d91688c49a34
MD5 9df58994d30144876906e04413220001
BLAKE2b-256 3cd815819dc7c1f9fdd02d72ebf5fec5e8575abae7de9c3887d37adc25de9b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp311-cp311-macosx_10_9_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.147.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f0d3c119e77ec960d03ad5b92e651e5cc8c49d5521cbd58a561f8db709c79cc
MD5 f3f7c1e98329ff9f34180c244f145f16
BLAKE2b-256 2d3046d073e5e17f2e27f7a19809359df9bda19d713d1aac3e3ee1f5d5d77a8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.147.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 df1dfdf49fcff8bacc7d490eeafeb3d74aea5588f78a459b76994b7acf3fe513
MD5 9283e35f1b11b4b137c1244bed41574d
BLAKE2b-256 844952a0817d08c3ca8dcffc7e98e99d4931e5086139f79d002ff23c2f81f64a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a37e54a991e9e7203650f7884a44097616bed9c050f19db50316abda409ab208
MD5 d20f2c5cd0a3cf6e00d0fe3a20aaaec0
BLAKE2b-256 42c36aba15defcee211aa4ab6d2f29920ee2b377fa3495f4366047fec05073fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-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.147.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7204d4d41ef95021acc3ff7a7d3266558ea2032a167a3591c4fb570cc64b522c
MD5 02043ff2eea6914e9c277f63342d2f57
BLAKE2b-256 c3fab3ab8ce519ec62b8e083942c4a7a3b6a29c9696bc34cc711af8fe542ef9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-musllinux_1_2_i686.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.147.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8cb0b47eb18f2340505f5106adc2dc698a131785c6e0e6ca56f9f5c09ef6469
MD5 5bb4afdb9741701c169e9902f9879529
BLAKE2b-256 4e168a8a425a929809e5077fa6bfb02ffc99c504714af232616dd9d15f191c52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecb83e1b27eb8a9f14bc5458b4f87594d24d5f206dbaefae93021a702a311905
MD5 7ceedc3aee2c29618356e51bc0d5f529
BLAKE2b-256 4b3423f00b3b9ed879c946c838d39bf340ab79c62bbc60b67e286ab9ee30d0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d6e3d598bff4c07b61e7be89a56aa75ef3e2e2a6622881b76a0d06ef527fc39
MD5 b52193b6e9464d2140730d06e66e3db8
BLAKE2b-256 c542629a1f7819e3ad474ca25c5d85b5da1e6bbd6ca2d5b3c96c2556a1802beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_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.147.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a6c359af0ff3ac50812c9bdbeb006279bb4c401d721f1f22651522f73237295
MD5 660d42f46185703ed5a5c36788ec1cba
BLAKE2b-256 d1fa32e8522efe13053dabb61ea6f42e9b7de362c8cd4cc16b6c3a8d80220ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.147.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8014da8e9d1efa04df8091c60bc8e23a25d6374b2f99f2ba515ca8d7d6d9b271
MD5 aff5e79b55a194469ca990332deeedc3
BLAKE2b-256 dba33aa509c8e844f8d35e73a4aa2cd6578fa2ba2ee2355f2e547a598fda4bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a80cf348e8a1c597a427b500cf5327adf1a1402b010c84ba78b39ea7d3d7598
MD5 591ae7b9c2e0f29dfed55a8d42c0e4b8
BLAKE2b-256 c0660fd2a20271b3dd6f0013b22ec72375fd0b088e7e4bec4da1e0e3cfd3fb0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.147.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2b8776e5e3ba7f19578a6baffa231f148390156a231eb17924c30e192ec9b00
MD5 2b70a22c5bb46958533edff21b5e6177
BLAKE2b-256 83d6080c8059b1b624c6654ef6373b620118c41fae935d76ac7b10582a2b41e2

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de0e1439c90df08fbb59d07445904aa9cb0ed3c548bb2f89a8a7bb3fa50071cd
MD5 b02a5ece6b77cbf2d3b7d63379f56fd1
BLAKE2b-256 0da2eca16ae55b22e76c819950917ce523a87e4fb77e9e915bb0188fd3e47b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp310-cp310-macosx_10_9_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.147.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zeroconf-0.147.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 34d40e09a7e4aff294ce086a63c5133c4d683b0165054af07c15035af1718829
MD5 067a28187431fedd78906188382e70cd
BLAKE2b-256 18bbc28f968cf2b0845991510a16d607e1a5343b35d2bc8278819152a9fcb90b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: zeroconf-0.147.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 600b2a2453e7877b45c55d0c011e24f9eb7b75d71eee8a302e9b8b55e878b62b
MD5 f7862b17f5edb38719525dbb016e7646
BLAKE2b-256 0cfd7f4b3557ceb92035b44a968fa0dcd63e7702d688543a0b36c1463e94915e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a629b63f8f80a32121c4832264c23fbc6cec4e15200d4fd8e715257c06d84b1
MD5 9eb211acf637bca8e657abc0494dfd3c
BLAKE2b-256 7e8a7850106c53fadcf9eb35bff6de56f22ecf6aca47380219cef0f99ae75e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 743fff2187da3d9501606555b1cf27699c24c36b9f1a6f02c168033034c5c22e
MD5 3df06bb7706b0b6d5fd659ce70aa1536
BLAKE2b-256 f713e2f3882f65b65d849b9eccd6554fd9c7aea5d72f011a8b5db1c24ae9113c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-musllinux_1_2_i686.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.147.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c0a1c69ef9ff5aab6acdf33b892a45d5ca2f96af11fd53891a43ec816ab6c25
MD5 a4447d85bb9726c0afefd2c049446653
BLAKE2b-256 a7353ce3c89eb2e45d26ecb94f7e0557871c1c84a061893f1588f7e27b6f002f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4add353da94e067fd3a4fdb47e9be64bd451bc7bc2234d74775514bde5d8096c
MD5 0eb5bab854b53a234495b58c90d2bff0
BLAKE2b-256 290496ce911f4ba54ec45decc5fd24687070761b1af9ee5bb3c9798dcc68e5b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 930b434ee3471430f3938f129979926a13c5ee1802ad6fb51383314f7193d33d
MD5 b922d8998360d78787524363185f7968
BLAKE2b-256 0cf02f69a979397bef7890663380882d76d9d0f8a754fbe624f8377618205997

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_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.147.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5291a5f26d961cfc0cd22905187a0627d07913e566783191f97a5a49dec9fc32
MD5 56efba1994f8607b912f5f5ddba8f733
BLAKE2b-256 3c91feadd56e6df0508c591007a290984219e3d6526854741fd794dd47f51cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.147.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa55888411404cc7ff1c6822ace733680172a02931eb20561afda94d06342c4f
MD5 b47de40701cd86f3646e735f44c4a703
BLAKE2b-256 6e7b0211f102cae24028434ba782c172fde54496b247da5969e78c551e7d38d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.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.147.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf73a1a202a02f2e4810eb582f054104bff1a29a550ce0819c5fc6dfafe50f94
MD5 e38d3b21824768d9615c7a4c4b98a3ff
BLAKE2b-256 186304ceca3b1aea16ebbd789195d654e330f6f08382da63c6830d635c28ca58

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.147.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12a24145231b26d1e6d7ded60984f8f32e2b17fe4f9a824be26b7622b875bc12
MD5 815276a2082c43dbd5ded34616751483
BLAKE2b-256 619c7f7316aae0e6748019f38cb9c29b07b4fce44e47fe24436c29295fc8c4d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.147.0-cp39-cp39-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.147.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.147.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5b570c0697144876bf54ff9d87dc46f5f7c8b2709702b7182b99b363e37e301
MD5 e1680d00ebd4c89e52ba6e07137e08b8
BLAKE2b-256 d89df641ad9a06a099cac9ad3b04e6c0f9a2f3a5569ce59b2a541f5d0d710b21

See more details on using hashes here.

Provenance

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

Supported by

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