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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-cp314-cp314t-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.150.0-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.150.0-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.150.0-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.150.0-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.150.0-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.150.0.tar.gz.

File metadata

  • Download URL: zeroconf-0.150.0.tar.gz
  • Upload date:
  • Size: 213.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.150.0.tar.gz
Algorithm Hash digest
SHA256 a5fe7feab1de6ef5e541e0a3d07e534fd91629b813fc27281593584100f63164
MD5 642638e5790362d43c84ee46afd7351c
BLAKE2b-256 09ea34bb185645ecaa18d34e5883bffea71aa9bffbbb994634884e8b2f3ad0c4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bdae152e80b848117691ab59aa8b16bf15323c0e9f3ddc38c6345af95a700a84
MD5 a60e618a086eca4c83a82d672a15e3e3
BLAKE2b-256 ffbe9eb576ae5eeede25cd1e59f0be1ce6b2fcf7aa5a4ab4d6d05de2d30efc4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 576e72a9e9140d96ae110ceb0935f06fa41eeea8b2be53e442a6a00c84035194
MD5 7e81afe5493cde1025893d96cf2213e1
BLAKE2b-256 e55b54758b003fe687757f9d8313a8ceaa7560e1c392ac109890782283ba1840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8ccc9e1772ce0030f77e6a49542e9b7ca4e8ae9ce1bef84a3a983be68ddf81c
MD5 68e336361846e48ffa49f669b3532d13
BLAKE2b-256 54773c292c091b636c3a0af5c69e1d1ffe83261737d34075efc889fe25380b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c539950bba739bc3980dd0f01187637e6237ada8bd70d64f93d8eb5eb2837a7b
MD5 4689da0017fc13e4765a973ce0654ae1
BLAKE2b-256 f2eeb6b5b5f4f51296b7c686f57642003369478fe60a33a917f4421a6e20fc85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 410e30a80db9b73bfdee3c54dfe306ebb140e053dfe3b28cefd54756a19a73fe
MD5 ebe7b04bad18c7b77a5a422cb864c504
BLAKE2b-256 417fc2e7aeb8feb1a6ef3474d66774fad1c7b6040ac1bc48b188110d3c9d17a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178b6141e34a777593a16b8bf986b2d7ae806e47849a3ad517597f63bcaade47
MD5 4b5eef09dd13315602db0dfcf1d3c7d6
BLAKE2b-256 45a3a37dd7fc0b22e0c2e13b279611ae8060fb046d3712a7d33313c8b7b556a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7ee162b43e455043e22753cdc1fae0f2990d3fe3767f2e88695fb92273d7229b
MD5 c8dc57070b1053041eb80c0a62c4c630
BLAKE2b-256 2a2c502e92caa81a7932fca22f78778e622ddca318f8d2243eddcf24d24ec0e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01a31f0ec4bc3f125ae541fb96259a081f3f83d201f1fca59929155b90185df4
MD5 bdfbc337c464fc1e31714ad406d69bcc
BLAKE2b-256 82605804e6362e4e3dae64923423b46c0fcc291a341d1e8ed50fec7af1cd73e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b97234eda197d4243d859b64004d175de76353dbca17527d11705f841fb02977
MD5 eb48568cea1852f9f7de8ee99b2474c8
BLAKE2b-256 bad74ce3504120afa854fb55799b4f0e36c27b8d3def3d41f2d1731179bd7c19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55d0c37be291364268688fe5dcd33bd5156f669289bb9b71a23b041ca53c9017
MD5 cd8534904c223a42d47553c86a78505b
BLAKE2b-256 5f9a53d1111468a69f395272531cb292c09e7b03ecf6186476d2c4a6dbe78198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fed39ccd107ee219ad805ee4c38dca253effc1c96541b4954dee3c70dca13a71
MD5 4cd23b5820645d35bc1a96dca39510a5
BLAKE2b-256 814f631f56f09dbe1aad76a3dd38bb92d4e5cce50a6630064590926d578d21da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd09bf1242af33769c88e1f0236ce52f6c74144a741c848fe38a79e68df80414
MD5 928ed6af97913c06ee5c59781a7f6190
BLAKE2b-256 eb97d0d1221906963596d59f7a76086d22392a530f5851278fbe093db46809bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 afad9aae3a10c4e54a0b55925c29b9d82d1e807f996e5e106a2b2fade6a9e3cc
MD5 70e016061835ec5f0212c2700501cf51
BLAKE2b-256 322de3509c21b146048759ea63af392972d5d3b39a218db58415ae84fbf3cfce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49ae4f9109b2b7aa04fd75677ce33d552bb3db6f9e757acc6e2f6a547cbe26b2
MD5 522292909023145d25c06c03dbb49580
BLAKE2b-256 7fb96de53f203e36275f2ea97566c36af7ad28e0def6a84da639ad4eef84910d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cf19d67827af63c54175ef76a62a004734c0d18ac67ff383a5df36c26049707e
MD5 9217d5603ce1afa983e98c3a9af80d3a
BLAKE2b-256 c7b7417e588bb208d9298e081f00aa41134becf6d05738169f67f68f9a0faa0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12f14afb42c08b8365d638ba2a01e5a73641dc8d5433fcdf8751d636210db053
MD5 0a5e9988c317354446b6e0df3c5bf562
BLAKE2b-256 35a4e8075345b6a61cbc8c7d75ef4d6bb58d0055dbb75887c6f3789f64214b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 048533286135c467a3bb90a268a9ca3ee3b98c3809d0106359e4d4c0e375e8ad
MD5 61151c40d7ecba2daca5300d88595024
BLAKE2b-256 4ca6fa1f712409f438d6a5b8f61c6592747f54894ae770841f8a2d659d79c638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 2bce10cb490119ad051f3caf74088317fec9f5e9acbe36e3690abe8d3de2ac31
MD5 4b876c9570bae563beb0e940c55c0246
BLAKE2b-256 4dd965bf08d612551306227cc0843d0d468678d88dc1b101fdc2861c6938c40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2fdaffee6f71432c64b609ade44e48763484b6084c7954eafeeff0cf4dbc4aef
MD5 8d3555dbb38a14cf7a177a582b6f0430
BLAKE2b-256 60783d46201c05a22b3eae1e48e82540590c8689a7646183f9f2c28b70e6edfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0aac92f26cfe8075d6e210e5edb8194cc0b1d16eecdcdb04f31056a14cbc6466
MD5 b35447320aad42f218b7c8abe5760b72
BLAKE2b-256 52d809ae5f45ad6bde1decf246152c5a3c5183829ab3966d90cec2b06e9dc468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9ed611401d1e39f7d27e9cec8ef0b06fffad06955cc3c54714075b037d7b6a8b
MD5 ce8e0572e498b315c242c85c0dcd827e
BLAKE2b-256 edd68af2192c3ffd8d67c36a369cdbf1ab388b672ef1a94e5baf73c8f003f08f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31832790ed1bcf829b91d4697c6497fade20dbe1094c35d10d5af456cd0e8360
MD5 6fa9863c4495427578d13ce90040b21a
BLAKE2b-256 de4af4df1ee10bf74cff25c8825d3490b8b71f57d7ec559c84b76bae42ee3444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcfba6f9d344ade1f60aa8b5621a2fa8f65fbe740edc40b05627516bc55eec8f
MD5 602c41d8bce3c1d47244255ce05b1bc1
BLAKE2b-256 180822ccf6d3ba5f29d343dc8f9d45e2d8adbfc80b780c55a601fa7811d30d6f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 122c6bec1f462c0feaa7f8fe4a4bc605f5c0d8f8e82e2ebd5aeae48a24da4564
MD5 110f97b56df398a8f2cccb18142d7607
BLAKE2b-256 d84346bcbf3260c4726242042b69ebab13878bf14c167530bde56b6df267b55b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dc054a6b7772ec97fe215e8f8f35f43509cc9f1bf909791fe003acbaa78fd9b2
MD5 c0dc4d4f47e8a9d379d245fd6aa5928e
BLAKE2b-256 433ad0ca371828acebc7cab64d8460832b9bca7e9cbecefebd130bd8f3068f68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a03d493c3e9c4b4a5aaaf0408da7c025ed014f3c3df639cdd2c6cb518c42b4b
MD5 769ace78de41952488d958bd8fcd7426
BLAKE2b-256 0f9bd4ff809d86280e756599fd712624376731aef6928be15f98e8834c3f45d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2ee2297e383ac21193d84982e714029eafec470926315ab78b27a024858e4e5d
MD5 e991a7182ce8477397263b771d29e1a0
BLAKE2b-256 875b44d5dc609037a2d4b1ca53ff44d22c2cec4a5b2cff81c7b75e99136679a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 024b00e64aae022ac6bdd7fe5afdabae570937c10d1242438ca04a4c62dfcd17
MD5 c2d83af0ce2b7f9e9e8269f44b14d873
BLAKE2b-256 d6a2ad3179888582ad22fd8c7c640e66a834669510deb24b1dedd9bfe6d6b0c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33843e0317bff2e03e56e246c3f25aab72ddb0a704f05bd792a4e78bdb5db801
MD5 4d3a3356df5b16a26d207afb632e4800
BLAKE2b-256 e4ce4cd36bfc74f7cf41cfef83333771cfa69ebab95f357ce605fc049b727f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bc160b8ba6a2420d665fb677c37fd2ab006141344bbf92abea72328bfd38bd3b
MD5 d647ee21ee1a043322dd8a4e5be5124e
BLAKE2b-256 f2d61bb519d2843f383a625ad82e76d0dd8c185eab77b6d11f08e68fd3e04a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 489a51320d20e7f07b2f447cd515f3645d17ceced0212f7249a83ce6d3b748e0
MD5 eb489b7f1310deef08f00d6418f74c9f
BLAKE2b-256 432d60a04c3cf7e243e47d60152394a5e29a4839ea8fd1c260868ff7af08240d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1a67dfae0d99b4f29f34721c7bbb2f3529507c64089addec9a565dc791524688
MD5 94f0b73a04e8b477abeaf9ed8f859752
BLAKE2b-256 bf688e764531d395acaf69f382e252a5e02b9841e417e30c53019442c9e9daee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f9ba6980ad92820f56a02a5035e21338c116145db44749462fc46f8f50028bb
MD5 645a08bbd35cfbb13ce7aaeb0665b1cc
BLAKE2b-256 847883b5825eb1d7fd4d32b7acbff5f3becca11c544403fc7f05835d9b3aa3f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f79d9ce9cc40e14d2f7b8e4af9dcc893b7f7793be91d14a61a77ccb1ab5c90b
MD5 a05c9e0b4b75f94bc4d4486d628d53c9
BLAKE2b-256 3761635e7e6405855afa85a424cc0549f74ba077690287776ad45a11d78b7cdc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e68cb166f6b535c42550a554ed00939256045e18df8b998f8af3a3bd50506e99
MD5 ef35cde5083b7f0f6481e110b936b4fd
BLAKE2b-256 cf9ce98b18a621055833433f95342aa7cfba052695f6dcd086853d35c0ffd914

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 191972a56d69cb1c6dd472d6af9813730c1937e2e6f89c01e5373df9ab878e11
MD5 82a222151cc387b0c2aa837b23d7e712
BLAKE2b-256 ee4577891ee52b8d2e992fb3ac67e3178b419f57e795c631bf1445f01f61cf30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ddb105722ac7dfdd7b6e0880ef52f955e679fd37a5f3247c6050c74259bda96
MD5 7d6af5c6067d77a2949a705632137450
BLAKE2b-256 6db75ecbdad936a8670a15771a0d2ff54d9675ea1d53d49ce427fe4352ae97e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 626d057f5a65b2126a6799e538ad78b329cb366c3a5fb9f69757ee23ee06ce5f
MD5 4404aa7247ca6be7811d7a45c7a2ebc5
BLAKE2b-256 1da043692be8525f7908979a8d7955563f64e01489e8986b6baf3614f1fa784f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4f973c9f284031bcc698f1357a44900254ba7f6488c3b9a18541f0221b3f091
MD5 ccaaa5c8ec92bf549986888bdadcfdc2
BLAKE2b-256 875d76c4f2f2253e2acbc857c521827902cd11fb82d8300088e8ee7174176d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cd46be1653a194ffb583012ffdf284a5042a1dacd7f44b7befc5de1e8491ba8
MD5 bbb0bffd7ac9c50d529d270799479c97
BLAKE2b-256 ca9ec61025e2cf9d4f436130c2db18c118452c7372c0c1076e08720ccfa36c4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b93e7cc90a150e6e0a706251c745f2425782cdbc3a7a8b8a12123b96d167960e
MD5 0317a93c13549eb200173277646c5f9c
BLAKE2b-256 e3440fcaf6e1ffea86d685e200de3597c13322552e53aecdf35ea135c1f685b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e50a7b3d5922ac9bb53129c4dbc381b0af2f49067670f35eb9c9b4ad341bde28
MD5 ddb0ce1fc49179b964216820e80aa69c
BLAKE2b-256 374132b19f3bd7a615f67d0157cef6cfbeb432ea3a16a42d8fbf104706677567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00fa39069437e68fe7c32856f7d041f46cd57f4f5a13ca75ae8f1c49e39932be
MD5 d8b112e6b67aa6e5568002ce0b6f8994
BLAKE2b-256 39b60103805657b4656ff026e74ca5591189b53c49c35a86a54289c9376639ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e17a3adc2e4e425c59a1f2a72e289706ec6655fead4d5287f23e1748663df7dc
MD5 7090d679ffe3fd1ac904d50afe9dec76
BLAKE2b-256 17f4520eccd6156c066efc03ff41130ce5119ec69b70de90d47b5b69282f9993

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aba87b6c1cdb6859d0c2291c67dc7d3ac06612250fddd95f68b7632e1e89a79
MD5 ea2b1cba2ed1c523f0f6d630fc4dec3b
BLAKE2b-256 63a449a46fcf1afe8f96bec6751e4fe761ce2cd9c124f0d01748f69fa5566013

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43c7d5f7416e48503211f87c438c8617ee0cb6f1b3fd47013aa59db030e85ee9
MD5 e79a4667adf315563466e041e726322b
BLAKE2b-256 9b3df717f4b1c5c23238d6ca5c3cf4c170fe58ff3cd019c55370898abb831764

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b302879d78a04ebd6f933ea8eaea1d0ca7e72186cc4a483463ec92bd775fc850
MD5 72d576e6800d925eeeccaaeaa9a09797
BLAKE2b-256 353bd3c344e0de73b8776b50d35b6edc5163e62df3038b72ced62211d5fdaf34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ea447817614b40c745f9772a2713464654fb1cf9a2567cc30d2b137108898e3
MD5 d1748f8544fdd52c1211f8f57039c7f2
BLAKE2b-256 42961529ea75019cf12ae5cf716677dfa06aca65e1660dfc7e6e89fe25dab2b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d86ea29921db3d9d1126f5a47c66b5361699a2ae0c22fa899d7ba23a3fd79d3f
MD5 15caad323575ee407a676c48dcd564f5
BLAKE2b-256 d7a2d924ac71078218c9f3ec5b8152d9400e708ccc10feec32282f41cfe1bbab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69fe797b459411e269af2ee3f80f078a4e12293b26726de9032dc66595ad1fa5
MD5 b867c063cd2a68ffe1481ebf48f53aff
BLAKE2b-256 72ad981bd578cbcbc7ac7cd5ef812d8a9bec497696608c7cb45668c1e7f3facb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e63fe609d574c3da6b55a4b947286d72546f9f79319415a163a8f70bca69350a
MD5 5556d9a30ef2014efb5cc7eb7da17b89
BLAKE2b-256 bad1338d44a231b77ee6a6206405cc5d871d3cf69d07d12362442200947bab7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b19d651cdca9fb5882401a53da8145faa10761593f50d7f3532a7779951a8ba2
MD5 4d67ba9c3d14ba137705b7e70ae7464e
BLAKE2b-256 8b3064f21e7f636378896abf91df7b997ffad7222ed1f80b88917e6bcc4a0af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cfe30e667e93a1d60761ff04ec9a9d30808a60d33c3b30a4d280418172dbfa3
MD5 bda4e2f636c104adb6d6ee066fe7c591
BLAKE2b-256 7f69b8c9c1e89cd522762b7b7cb3f68ddef3269dbe99c9107459d46d195a20cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f2d2042e73aa04b85781f52d6bf0dba3e2dee83af7b9c64d4af3e0cbc99c2702
MD5 911d418774e31151a0d645103dcef975
BLAKE2b-256 96409c6c36724a22c8dbfce7fdeba4e5bdc5bbc13fda9ee55f15bd8e81d85f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e066cc28c7a11703dce80054c5bfc04fae79d18885da9817f64346e842a6a668
MD5 35a6b96bcbdd1cc94b33ae7b1fd3c931
BLAKE2b-256 ef8dcb3d3b68dba9cd37c119ffbae70996109cac281b30d2ff0501cede33684d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad2e3e3062491f56fd16388f1abce6f6185bdc84f221698a38fa9df7b8664c95
MD5 ff1858c293b366036e8103f34207cba4
BLAKE2b-256 d965b58fa5361e90e8bfc1c5355af9fc7e5d4f28bc6ad15f1cab6c558269cd6e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fbc3c29ed9ec32db0458f1ecfb8dfc42fc608bf3c78f1b8a4d50593f595f5289
MD5 c6a501a04bd2ee556e8309dd6183d266
BLAKE2b-256 3050b3707d03fc6fd4bcf4c3a6d541ee507b7900b28a1779415e53319e0377d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.150.0-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.150.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 903c7745e2dd0e9d19d742a034651d397d4e3706e9c21b8140e22a8cd56fcc22
MD5 64ca5a2298a64757138671d8e60b6e79
BLAKE2b-256 c88a70f89bd99f27b4d552e9df46d7399b18534e4419d98f7e0be2437c376aae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20a240044db62d51f6cd487226638ad50f3ebac4d06945dae4ac7c1c0008f3b3
MD5 6fda82e10fbe6382466d060118ba0de0
BLAKE2b-256 de8393c376c8832df46a9a794fd48d59498db3d2d37a1e068fcc06b01c0b0843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e2e31aaf0e8376acd279712d85f8303331c16dfc004d4117a58e8a5e233e96a1
MD5 bb43d53030918d5534433c8c96b1cdd5
BLAKE2b-256 ff15a28375e4dab1d69e0fd1e72fb02cf88fc8d4a494d2b736f51d80711acd05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34cfd84ab4480008874c224905246acf450637ac826f2c211a91932f17c7f23e
MD5 73fa39120368c5d1a8a0d963aa7b9d2e
BLAKE2b-256 1a0729728bb1136a93a51e4c330cb8db04aa9f147c7b45f1a8bcc335da5d1d53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6b730d14ca9d19bbc67df8d29a05a3775a2c06f1bf987e5db20a9766e8cf558
MD5 b30e2df73845c50d186d1fcaa5374c9f
BLAKE2b-256 7891790a11cf73330181bc640817d6833bf260b4dd22fa497b6f8d4b84d2f282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0b3d7579f23421087abbcba52a307b7645fdf23da5f382e9d08c984bece0da80
MD5 3d179bffcd9f92a91f6763e7690642c9
BLAKE2b-256 4ca8a8f3f7f1a0d79fe4b831767b8f115fa349dcc788079395530ac929a88fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.150.0-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.150.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e66e5eaae928f6f7e21259652c7b8c20601361b1298c49bab5e8eb6e2741ae32
MD5 ca1dfe209e798abcdc5e0f0d2aadc864
BLAKE2b-256 e7bcefd36f2f3e8792f756627c0be832990b73d9b5f8886c408de07dd6baa26c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 525fa1476e5cff7cfd0194a2a1e189150d180ae4b071db632693409165d9a282
MD5 b651b32b7e683476957e91129b99932a
BLAKE2b-256 90bcd9abf066e1d2e1487c379d44a04c0dc289b2924331dc8acb54a79bd3312a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34062fd3cb0f49d7f29fddf1d266c3c72a62bef2d6dd3829db036acb6b63473a
MD5 39d2cb25165c62c6e87cede09d9ab6e7
BLAKE2b-256 ae3b3d192f9fd076dd73207536b4391d56e7460d43455689ffa2636af7603c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.150.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5cfe83cfa85bf8f9bc31b1b33c20ae708d9ca76cef3ae92333e13f4147b169
MD5 e74f78a063a8f1dbe0c137825422d7f1
BLAKE2b-256 22376ff505bc61353fb62e4dc766aa4f651dd6f07de18a82cc3d244953168c4a

See more details on using hashes here.

Provenance

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

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