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

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

Uploaded Source

Built Distributions

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

zeroconf-0.149.11-cp314-cp314t-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

zeroconf-0.149.11-cp314-cp314t-win32.whl (2.7 MB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_riscv64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

zeroconf-0.149.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

zeroconf-0.149.11-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (3.5 MB view details)

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

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

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

zeroconf-0.149.11-cp314-cp314t-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.41+ x86-64

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

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

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

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

zeroconf-0.149.11-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeroconf-0.149.11-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

zeroconf-0.149.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

zeroconf-0.149.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11.tar.gz
Algorithm Hash digest
SHA256 12895e4223c27fc9392325c2d4cc86e80f471c590e1fc71d218dff8343e51b29
MD5 4e8deadbe7712c5ea4e19ebf2eeba5ff
BLAKE2b-256 b60b50e957304448e76c2962abd24c1a03a8c3dc5fed4281d43f35e00947593c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 240c7018f8b2396bb94363dcaba162fcefb6a0a927d344595674b3b9895e7b05
MD5 158cfdbc80732f790d532a163461e0ea
BLAKE2b-256 ac797294e3148a364ccbc5e317f2b48027466febca6cf3b17cf905b4db501c49

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 afbfced5fa416cd790f1f223821c7238f8164584dbee17527be6b18186261488
MD5 6a44d0879ed9d478442b4d89e6ed7c23
BLAKE2b-256 4aab93cc3e5a3479f6b06d3a14cecbefb24ad003582434d91700fb8c616323e3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4aea146f90f992e44db11856e2775d703b20697153547218231b28d3190331
MD5 71c905fa1b574b304166d19d650087aa
BLAKE2b-256 90523feaae6dede0932ac8901e2a530dd1dc93f4e5f9651c78e2cc2ea35712e1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7de6163d645633d6be1bc33f1d2513364b15a58d5039ee3fb810028139cf80fe
MD5 eab0b9808a1ff9244e2333c92ac24074
BLAKE2b-256 75ae6abacf363f3a3a01a6eadb72bb0c43d357d110af39bdf5a33e6bb736061d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3f3c531d62769018863350209c21151222cfa519fe90bd016f54d468aecfa55
MD5 2ce935f2ddc0bd42d3ce91114707da34
BLAKE2b-256 c87d87a80733a614284cb3ba54b35083ec752f5c623caa53e46721b995924d37

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebe08f58c58a427ab05367249a9cb25927f0ff3887b9401673ecd15fbe541734
MD5 174df30266d591814d781cf8d1c901ca
BLAKE2b-256 83523a6318775d63488381e21522aa09dc4f3fcde09aed7f57ebc4f700feb6d9

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 78395c561f0982955bb09611f54d66899112213ada5e83158816786f568cfba7
MD5 6a8c001e726276ee7b88a10784e00b74
BLAKE2b-256 47ee1301f0e71cc81280fed3dc9a9e63c212731af752dcfb86a556425fc2eb2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b090e570ba869f1a1ca19878a2312fc29d8eb886e39ab69653c5b8a3986c6f4
MD5 7fe139e1cb1745edca148887ca099163
BLAKE2b-256 d14660d801166dd5790039c62a840c773e8889e1abd04475acbde6b4bcd5f28a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 033415315b326b0238aa025f8bfd657d55c0f49baca0eb62fe929d89ba992147
MD5 e6bbafaac1939478daf88299a6877fd8
BLAKE2b-256 d5ee443babd616749344d693e4d25b05bd15cba881a6c644800a6429d666e4c4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0be88e9da7d68528b6d3d7765dfc50bcfc49af4299b3611a80b1c128e056e059
MD5 024af4338827c3d7b0db0869c96841e5
BLAKE2b-256 9d7850e21d8a4dbed3804a38ce9c6a4556ddd5407d9cdf047821110e30bd9be2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c76bc8a6ea76c5f130258f3a982609402f3790b5aaf12fea486894fb1902b5d
MD5 3f082947b3e83ed09ab4835135a3550e
BLAKE2b-256 09b509e8a02743732151e7309c7ca58dd6632db2f72d25332e393f21e3f2dd25

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f9497a3fc94f29935da8632190b3495dbeb474b5ea92b77c3f45b99dd1dbb5ab
MD5 8deeea1df640ea0d0e01c7462d0a29b7
BLAKE2b-256 37ca2b397b3cea4fe7d2780f1cf97ef3a222039cac49bb0ba4e585d062ae19d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 db47770a98842e750113614351c266793a0974f1fdd4cb12012bc92c032cd70e
MD5 33498b4cf776b5a35fdcb270a892b963
BLAKE2b-256 ed0e1dfa5f6cec025332a4bf280472bce070b235abb95fc30dbbf5e67f095257

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3a7613ced69acf0a5d58c4fb70c24c42a04306771a21335f10348bef3f8a35c
MD5 8dfaf81c25f64ac9906159ae1db88db2
BLAKE2b-256 ebe3926f62f99c2cd4bf6a18c7bc01bece194525e2d95bbe8ef440fa6d0dd51c

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 545e2bd6885ed346c67dc3b24137fb2121a8aa091daee92ab2fa41516f138657
MD5 fce15b51001ff551a887f17e4b9bcebc
BLAKE2b-256 94a480bcf529b111dae649a418038af8b81d7a33aa1c7982e9beaec67f746abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp314-cp314-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f541b8410b7bf088bedd5e5b3d4fa240509d554315d9499bc5a64f9775a382aa
MD5 c91ec7d135811e359ee5a65ad637736d
BLAKE2b-256 9d551ee5921e2a40b171976e7d2c4f64ac83353bc508c701b6a917b20c3604d6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f4bd8338ae90afaff7cbc46b27f41034a17c79fed31b9c21ec9d0d08c1cfa8d
MD5 3ec0368252b60d6d14f3da9ed9d63c50
BLAKE2b-256 a9d676e707c051f21a1149c0738866c26dc506e1b12da517ef5aa9b352da1e4b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 31d25161d0efdb01cfeeb84728c51cb197949f26911878d19a1a092049c03fab
MD5 2f9bfd95c2cddcc258fcd44db64335d3
BLAKE2b-256 416375ec39b35024f003bd9364badc65b983eb88fe271cb9ffdd597b3359c38b

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4e7f59e2b09b00e82df32e4b3563c818b9656906b4a429ac676a9655a0869ff7
MD5 b3baed4a0f56fd11fd366b29860e04c8
BLAKE2b-256 a245b9df98d4ff9cb2846cde3f9d8e13aa1bb0ab845fdc91a03be0b3e6bdd5ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5764de7ab6b46302ddd6bd8830f0163878af67d0bcfb6a3ad14db53351865506
MD5 6cd2ee2ec09ea0c471d1899d6b9429fc
BLAKE2b-256 e0334dfac6521b20d9a725da8672ef39f4d1b5bd4b44a2373f7b75cf1fc87080

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b4cc8b4248ba73d759abb45b455c33431d94758d4b035280bd1b036c6ea4aa90
MD5 26545b247f6f243c670f53a5e039d31e
BLAKE2b-256 6f9e2bed794a10a2515985eb3c53fba5b59fe6968d4b0e3ee6ac3d26d705d584

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfa87dd8666bb552c8848f0a65dac071fca8c17993be71171a4484004f9a151e
MD5 00bb634781a319f7b4d9f73833634ed7
BLAKE2b-256 b945e91bbb89c5ce77ae7e6322499855fa5d6111176b12533463af1c67b1d851

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef375df57fd3b4e8c9dc86a033f28a5386bed282d9ec041097075abc88af28de
MD5 10605d708c3dbe9f0d3f6648ab04a826
BLAKE2b-256 474444a5f2bf5dfdce44addc0f2c643ba490d8052a648d33783b30ae66837d2d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e02d019cc751b364fd24a11c40149fb1b4e6166bdbb21b0a577385203d67aa6
MD5 497c2e548e7d7c99cc7cf90999451c38
BLAKE2b-256 b44a93f9e647eec8baa0746a8f5f35f3f0ec08b21f29bf2626af81760e087882

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19f8b9174947199676795024126e27361b2f719f43c167d84b4722b371ce398f
MD5 9187aba56f3a7d94ebc0e57fb01e8270
BLAKE2b-256 1894298a7193c241ff5e875409ded3e5e75e9af0ccb2d5364afb7c049b886bd2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31a5b2c415a6231209984c5015019d87ca1bced47bf8243995017a7e78dcc622
MD5 faca9c7ef6e0f15977a1f2f12b5720bb
BLAKE2b-256 c6e256b80bd65d4c0c6116f54c1966733340499a1c1f7de7533076d20ed75b7f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e7bd790c659bb9dac014d5d1a67ef8533a52d4cc27903f92a3fac19ef1ed013
MD5 e6ea2a9ebaf25f06d7894dc2c6da1366
BLAKE2b-256 ec65868f2d0a155895f0b949e495837523c968e9f14ec1193b4a3ac8e006082d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp313-cp313-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6a2eaf373f6cce6444c8201aba852c4d79d31eb2ef8f7e7eb8329e02858399d
MD5 3f7136c936539daa43e4f001d9ac871a
BLAKE2b-256 abfc512468b85219676da88165bf8e3239e119f86c6a0542114c97bc40d4032a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 086f73c62ad08346448abbe485b84d1807891513c12f7ca026d640bad82d5e8f
MD5 1b5609f087ea9272813d208f070c89c9
BLAKE2b-256 809b840d518a2e5c89efc1b963cc330fc0424980d3474ac6cdcdd046493a746f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c74a83f7ab7e03370ee2a04a2f0b469f62117a1cdf9c1dbfbb5c396856f8b516
MD5 b06908811c0db017a745e3870c5c0c2e
BLAKE2b-256 d28f02514c11599a67a9f7d4cdbfe8110932bf1273ce9c43ef3c667ddbf37c96

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cc9ace11cb7ae0bab9f4efac6b22bc29c554e3a7e8f828b5e6af5a667c6739a
MD5 80e059df13f2fa2a797f3d6130a520ee
BLAKE2b-256 9dd0f0266d40a6625fd095e54fa90db9bb32c8e41f24a2fb94c8d27f02595e3d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c86a7b87279ba6425230315287b6bbc64191cccbcc03d3d31fab11a71b2f62f7
MD5 9b787ac5676958ad318b85f7d75ab2e1
BLAKE2b-256 e941cd8f4d2bbda9d9105d372e8a301229a28c4256e8bb336504e28af4f989c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81b72287210f4cc5e1d6ad9c1240b3e7f2e29d9346a6bb48a4f3ac51341be24a
MD5 a45e9305e2fff7932d726f292a0dadc0
BLAKE2b-256 45361830cb2d432b614a340286f7ccc9e31c688264c95b390865f98c80cc3178

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ba5a207a31ef7f786940c4808b911f2cc1a631044d497e3fbe9890adb1e791
MD5 0c058317d99f2dd6a3fcf6029ac28b3f
BLAKE2b-256 b02f37f945a61c32be19123e9aa06f3d211f4b5e86ed8e99fe712616d3157848

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4880229e3640628cc71fa6d88a47ad9e85597fa21e970d08730b301b8df278ac
MD5 17ca060ecbb2c1f1e24880f905ec9e2e
BLAKE2b-256 66907f36f4e215b17097996967e51abd943edb2a4067271e5993088d79a345c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 da8a79dd4babeddd902156027e955e62edb8826b92b458795bd77bb249231c0b
MD5 71a3b87056142734b0d87dcb8a953a12
BLAKE2b-256 562b5b87834d5afff2aa322dfbab78b4098a4002e68137ad5b7c649673ff318b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af1875427fc5539c552b2f61f7991a49d48a6dae090bc354a8b5fa0d35cd58bd
MD5 749d727bdbad52c981297e50a4e85c58
BLAKE2b-256 7f5a6afae80c925abfeeb30c130cd4bb515cade0ce5a5b2b47833f5f5fd88630

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8c1b1d32bda935becfa5cf1255e80ebd792a5c170beeeb6d7d23dea08af0e18a
MD5 2e3517a8d68d355f4bb4f9db8513d7cb
BLAKE2b-256 8caf2f4d4feae9c28ace5755b8406f811b5a592c835f6ac4315a40153201a573

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp312-cp312-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52bd5530906fb3bb6235e69b688ef215ac685b4b4575a760f00e8b07ede8e042
MD5 4582dc3af449697f7efdaf771ba7af26
BLAKE2b-256 36972608872173e248c18a68c58ab530a9082745834ec7f08aaa52e569fffc22

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1341d61026b8127d17e85de91eadbdf4bbb10d3e2c5ce4e24d410a73a9cd39fe
MD5 5c97b65501082a08af51a92da85e555f
BLAKE2b-256 515632ee43d004cd47af80b5b1fd1a7eb1860522fc45229e2be442c49dbabf7f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e53d2fc17c3a315a11d8aa3299a0eebf4d887141f10b41ef1c453e33c780e4a8
MD5 114aa9e23c35e1386948abc2b9f1145b
BLAKE2b-256 f8f82693d4c56e698d8603c6f0808635a1df44251b17a9440e7266af6a42bf2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23e4232792a8cd205786b48372ea07785cd4a9edf67bd0d406c8f4dec3049e1d
MD5 3a090bffc3c79806b5c9574ee4e8ae9d
BLAKE2b-256 d5e9d18bad8f4b83d066271f853b8c82a0a020b666fbbdf0c4c04e14eb2011be

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7d2098e46254f71b17cf311dc0d53391cf2bba83094790de234f5d8cbe3a9c96
MD5 392fa7c91145bd9c0d62cce53720e8e8
BLAKE2b-256 8ae6af82e4f77b3ec1aa49425a03185469f443643e15c5897fd8369d5209b7ce

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c67d0da4cf67d368a7bb14e0c6c04a20905ae9960a44a744f09c95b9fb19fd50
MD5 ed962f4b91fba85f74beac567c5dc341
BLAKE2b-256 65d5218be30e7aff46e8bb2b644c51bf2e6a65f173dc4ba679ef780b42c0bf31

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55bb9ce8a309c410e33ef5ec38845f059523327fe9be410645936e6857079290
MD5 09951080c2592086c189258671503c8c
BLAKE2b-256 e0615b22dd9ef8a774774a9972d3b0603aa25c22b6c5b02792371e99dae7bf7a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d064857c9491ec82df3ff2a7e91b33b4030b7450c68d1f9e6f34eee274e0b1ec
MD5 b8ec3533ed4a0c51e1ed45a0f5beb019
BLAKE2b-256 6af216e2ea396d94dbc552f342387ac055585b813b808a4d319a248017c2de50

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e36464f14e865edfa10f2c2ffecd6796c12caf463ca0b6e9c96dacd8ca32ab2d
MD5 1437817dbe9765ba6f53463eb1c4f6f7
BLAKE2b-256 d60809011bc91e3138b13c3925cbc4bec5cafa1471df295a04776950553cf9bd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e515b54f0b63aa7f23743068eb6ea975e0cbbf80463d776fc00901071345bd41
MD5 5d79b6092ea9b05efa29d2ec3e59cb0a
BLAKE2b-256 8ab10a363f20998ef244ea8694856f2cc6b7a6461a5385f02c35a91883156e4f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 604a4e10c9ccb0459e3d16e73cd9c1a50886bd7bd7aecd64357eab8ac0363d76
MD5 160bb4b1bf2bd033178f0f3311d62ef1
BLAKE2b-256 a86b58d14fb74726ecb3f0508366e8e5b353502216b7d90c6410e409cfd329dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp311-cp311-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6fbe595965ca7e3a93eca8f4de233da9fb9e0f828408062d8a0338dca4d896c
MD5 b051549b0653c4dc67551092b1fd1c95
BLAKE2b-256 551006b6a0125a2a682aeff494cff6566f5c6959d91b97507b660092ac7d18e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3abeb4c635f22661461fef60802dd96c9dfdbd4b4e6c2858811a6b5d3f938011
MD5 11e31e66418422c7dc82af33b87a8548
BLAKE2b-256 961e7a8ace0be5f566ef59a9f68c509550140c65a1ba5d576fcc2f45b6baa9dd

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1393180439bc913124541b80f2e246f56d3c00306bb3a28f336b07ae0595def2
MD5 af58fe1e2b4aa3780f3980c5043995cf
BLAKE2b-256 5697172d9acf7a79fa9a4af542168efa8ba5c8921d585ad4bd4e9fe6d242f06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0a97691696e42b712c5f8fc20733c8123bfd4d1e683059d5b038cc0753a096c
MD5 3887d0bd897e4ea2c51e44b70b3d2a3d
BLAKE2b-256 001b72692cb4d4dd69e0f644f558daab5a09d5348eeb726f604f91de0f1ae09c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c76ad31d8f814da6053e84ba9df54eb3eb2ce2a5931b68e98981befbbf8ad9b
MD5 0dfd3db2adeb5ee0225669ab53b05f63
BLAKE2b-256 b240c10db64ddde438f79dfae2f0a987200d877e2181c29e940326f9c04cd3be

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff6d8a0cd212311cb47822eb7e2214e213cfc3b2911f38785b4086f05c320578
MD5 55f730560aa792f73e2d507bda4e20f7
BLAKE2b-256 38e58069a0bc613c85c0961d9b76f1332f83e0aab0b1f21dc0cd02f7ce58ee17

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d2d1e119e96738863a526a9b551aa97b6120f4e590eaf13ff57e4d66f3dfbca
MD5 d8341394055f1b99af824a222e916da8
BLAKE2b-256 b2ce7a2db630d54cc94f6ff930371fc5692c4a31862e50cf1ccfd7dd45ec6a82

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c5bad9afb69a31d7778a09e96867f230cf1c1c22ee600fd22b3dcf1d05bee2e
MD5 1e8f5b9fb44364509ed985680be55a81
BLAKE2b-256 1f02f50a5be2563fe91b486237d53092b99c6afb015be44a6e9ee6ef3c11ccd9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a597e77501a0169eb90e6ab5157347d3dac200c3335299a5cf5c17c2fac1fd17
MD5 1aa07e35b5bd2ec27fe847395877744d
BLAKE2b-256 c1560a8f4522974988e13701cc56532dc7941da5aab03b661d7ad4b376d244f2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f060ef8b31b42c04c646b9ffe17c7b624b51d2c6b5d5349856e3bd48dadc889
MD5 c5cf7656a48b465ebe4aa82efe57498b
BLAKE2b-256 98c21672b39d546e090db83a674478bee75bc574c0a94edf87bf5a447818f05f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4a06b1f9dff48f3c9eae9e10496ff53aba88430095f45a2667828286b8b679fc
MD5 0f8ba22bbcf6315f722c2c1e34955bd2
BLAKE2b-256 5c97e137708cda851e01564ae2c676dd562305a5d6142448f4e7a9ad8b5ab40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp310-cp310-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72726a311ba6d23ca7733e25fbe3e64a90a6f99cfadc29f85132d0ed1a0c0d72
MD5 1f9753437947cac554ddcabd46dbd955
BLAKE2b-256 3cd978d39a703c243528943c5267bc9befe7be86e8e4af4f63ea9ceaf4501c40

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 118e764189f57d4eadc8db516579378b57f34ac79c3094c61044bac1f4441c33
MD5 79f36b63e06639fbac0fab87d41b9edc
BLAKE2b-256 3fb0f03c5d3e0a6303ae1bcb621f7938d0c84f99e32a974ff35a7bf4d638d76b

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file zeroconf-0.149.11-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b8ad309e46db19d6ce2476b48b712579fc38b58533a43ee5fea6ed3964edec36
MD5 f7569c95a5291abbc5c91c430a0757a4
BLAKE2b-256 0f09cf2f7539c48e3bae211c6e7d8641597ce5f5998571c770dab4302c1d8234

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.11-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03b53e838ca07e25de60fc1bf2a44aafce89c865cac79bd9622bd312e8a4134f
MD5 b12d4769b9ca98eb77f7d9b20015b46a
BLAKE2b-256 bd93e23deed87ad7d9ae264c9109555a676b2afc186f6ffe2778fe0b99262429

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1425b6fe0652406383c3f6e47a9866028031d5e36f78971a3bca3f8e6b30a17e
MD5 1a73eedb47bcdf08e8443ec836655328
BLAKE2b-256 869e21a13343c9eb423082dacdfdc7546b65e053a903cbb454af33e99cdd03d7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd35ba31d11fe6c796416800a8530ba7773cb2bcffb9a0ec4e0a816f3b5cb5bf
MD5 ab903d4bffd73e23cf72678faf52767b
BLAKE2b-256 73c2b7bab95b3ad5bd281963998c8448822433be4cad9cd9d3e5c12f7c79cd6a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for zeroconf-0.149.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7e30aba5f2eb5ca493019100f0a3ea0a408d04b99401d42550c7cec2aeff0ce
MD5 07142aef28793cf3bed41d558f01ef1f
BLAKE2b-256 91facadf565c81b12d6b5e05c618420624b7f2942492bf61ed23cdc4975983bf

See more details on using hashes here.

Provenance

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