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.9.tar.gz (182.8 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.9-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.9-cp314-cp314t-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

zeroconf-0.149.9-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.9-cp314-cp314-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

zeroconf-0.149.9-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.9-cp313-cp313-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

zeroconf-0.149.9-cp313-cp313-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.149.9-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.9-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.9-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.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

zeroconf-0.149.9-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.9-cp312-cp312-musllinux_1_2_riscv64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

zeroconf-0.149.9-cp312-cp312-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

zeroconf-0.149.9-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.9-cp311-cp311-musllinux_1_2_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeroconf-0.149.9-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.9-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.9-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.9-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.9-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.9-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.9.tar.gz.

File metadata

  • Download URL: zeroconf-0.149.9.tar.gz
  • Upload date:
  • Size: 182.8 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.9.tar.gz
Algorithm Hash digest
SHA256 f4c161ca89681f170790916159e2d71841250ff55917d621d9432faec395e4e8
MD5 1b9a879d467dc6287aef3e1b1b640966
BLAKE2b-256 c522d1784ebd2f1552673198625c086c08eb729e3f2571907ba93781c2640374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59e696b6890d4ea4c4bc62970d61a94444df6589db5710209d177c6d1e34e2d0
MD5 c0331c135864b960fe1fb40a1c1693e5
BLAKE2b-256 5f98778b7665af92b9489978215585d638b9cd24823fccd4f47e39ae1a4c27b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 323c61e2a8b1717b54a55891ad2e1f844696eac0fc5138ab961862d4c529349b
MD5 903bb9bab0fa2cdbf4c507acbbdb1303
BLAKE2b-256 880af63337758d38fd4a56c0ad5cac14c231f754eaf96a39294a1b51a5f19a3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.149.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d583dc76dba4fc475449a4d44142d1b61b042a0d22d75a7ff9d03fa05f522e0
MD5 e1b966e8aabb3f0877206eed1cd1df1a
BLAKE2b-256 9ad934e5a3a23ac492cdcf51a1c28a8ec3b27b101d869c82afd163aba437952b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3f19d95644e72f339825b69d279cb49828e61d8466914a80651688a4d52ff0c1
MD5 d2d6accb08d0b0600b10585f626d2fe5
BLAKE2b-256 664b5fac0effa13e6f3ce60b8d73cf55348c7afab4ae299bd9f0c6e7e702011b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b6e304b40b733f8f13275f9488f9dab6b4edb64e5f2a1272b8aba0ccf9c1ffa
MD5 98607087472e5e0fa35f2a7ff74980f3
BLAKE2b-256 330dbb8c7d886debc239feaf3d04998df15d0a263317baeb80108fb4ebf38a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3132b5c5a186459e0ca9a6977daefefaf81484d8ea2ef1b955f0aac8e2c0d942
MD5 fe4bffb2383e6286fa8b804cdf6810bc
BLAKE2b-256 cb1a3b9649e9d0b6797d15ee7764ccd2eec3a462605229998b2c561b774242f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d2db6e867c621c49def04d13aac931d34c1e70d47e24a50ee34aeaa776cb9e9
MD5 3d1aaa9bad05d4832f34708c4330e8c1
BLAKE2b-256 3662b9977d8376b32bb6b652fec24a90b9d2ae09ed83fe4c0f177364b354d37c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6da8304c0121251659053c6b5791ba4f0d6895ffb638b3ed3989b2f10b11f883
MD5 7aeb1ac6f7575da7fb789a20ddb7ea8b
BLAKE2b-256 0d2c52ba1ebc2f5bc9fe21612d96aee1e11a31ffabd5d13d290a365ac81c2506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 cae2a52fc7df718a9e7c95376a977cd3b5593d5f1521a3a820698d284eac9a1b
MD5 f580170bbb5ab3f4b48bb4f2b2768481
BLAKE2b-256 459781a0875dda3bb4ed31ae2cc433a8174c6da83092f9dade0f2110fc7ab302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c1f8690562e5388444b3a9fad447db5a121fec9f4bcd60fc0b113daa276a0e65
MD5 badaf8a0ed9956b9d92bb0cace6173da
BLAKE2b-256 a8fa31dbfd92301903eceb789bb32f6ab7371cdd94dd712afe1d139a5b313644

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.9-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.9-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.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e26d606d8c62890fe222e4df4d8fdbc2f192236510f2961935060e37599d9c74
MD5 54100c87695681562e78b9f4502756c6
BLAKE2b-256 2550c99caf6e895fd2eb1a32cccc87b4a1e092284465e6755619927b73c9db79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1b62cbd531d52a71f5f15db504dd5cf196ff032c37d9ad3e83fe16c19ea4ebfb
MD5 632359e97f912a17da9ea30803ed839d
BLAKE2b-256 cd72bc8fb8d67fce222633468952c38b167790d3842e343de9ecc76cda4bbaf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f964774e292fb84ec9ab162b3009fc810efe78b313b178ef68fa2690d65434d4
MD5 0bb62765f87c585972208847d16c2ac5
BLAKE2b-256 425da7f3858f00c86f6b1e76a8d06eea5acc1306dfa24c3d9b9779c0484b0137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47f87d88e812d26c01dfd12d2cf3a7d474d91588ce0b0cb44003d8bcf63e306e
MD5 f02c641ba96f2de313b222a91e159d1a
BLAKE2b-256 1f1e63a356efbd8b4e6ce16aaff752461020d109347dbd1f561fd32986b0860f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.149.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91ced1a6e279f62de832ca25930a54a69392c68f6bba0e35f1acc1a45d9d1fa8
MD5 a6c1f750283371f8b09fafce9353098e
BLAKE2b-256 af1b1524e84e3bc2d35d038c7e4ff6cad01f4b19b04d8db60f2e3ba7c90d4d46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4776925e1c914a20de4a5e3e4af5c7a42b6b6ba6ef2c46e3e8c3f9ede75eaafb
MD5 528ab7466fa2784ea7b12e8006eb62a6
BLAKE2b-256 df6c86c2301f92cdc900e013f5cc3852b9ba78ad996ced975474df69621be3f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ecde22cface9fb6fadc9852c1f778bf462252568b805e86732516eaf9b80282
MD5 702f986e9180093a00f9c3c4926ff935
BLAKE2b-256 ea694770edf4d73af0fb83add1abd1867268ce5effe2b5b48cca681f7dc38f98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9d98e71cb40fdc5bd17d83eef2cf5b293459f0bf268887bba6118ed76c21afd9
MD5 b7fdd8c7cde695a5cf6ba93371cb887c
BLAKE2b-256 77f8c83f55569923b4fcd9e79b6a31f6dd1e633efa0646dd92eff38e8924f1ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 607b2b284d35eef5c4abb5033bc8323e4b7a13a256efe97bc3c77810471e7755
MD5 3c8507393896713087c9242bf84ca086
BLAKE2b-256 96e368390c44b5d19f756d1164fa8f5fd3d0eaad181787d0858fc95db89c017f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a2f64c1b259c63ba0960bdb581e6e3a1670804da4fba7878adc8c6600f44e49
MD5 5d23558f4c7df0c154a118158c2e82b3
BLAKE2b-256 c07c1c61d697ce4d9c5e720020dee80810d081db68455c43d77c65a2d61d07fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 671a05b2ee09aec13f183a4d7596c5b3a0f2795117d914956b78a257d61e4577
MD5 6403b7dd392d6431bd9c9d3a86437863
BLAKE2b-256 15d7f79ba4be29b0ef927f087132e74c0130b6252cc62c94756a79c497b2f19f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.9-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.9-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.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccdfa43619538b70b14c6dc670125ace270477a929ec3d4173c685efa20ce86b
MD5 050bac4d2acf5a67ac28a41f3eae3238
BLAKE2b-256 e01bc7b653e29ee496d0462f69702fc614da8a502cc10a4d79c0418d2c2deaac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ca004799cddee2ca46bbd45ccd3befd139f193206b96141f08b89bba4cf40173
MD5 369a2d83136ae9145e097070851baa8d
BLAKE2b-256 6be5be76cd3fa9d5e1b6f546c485aad4c4c827ea1d2bd79f6b53052e7ab95eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab9aed46f8a12a95f0961c942a77cb9ceba07aad326c7a9296d161da7d989ccf
MD5 ccd86f38df8ea02f819b87c1091eed09
BLAKE2b-256 727a5ed7813b0bf4347204696e186c404c6f8bb78f28ec13f1dfe7ce0681315e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4963d3c3dc44a823d6772e53a8a20a24b2eac1d86d0e755dd0d22f1078d64478
MD5 85cd7f744ed46f39bc2bd6b12eb03d56
BLAKE2b-256 05de7c079ba4bd324ed4958c035a37e013131c3fc64d8fa6483930a1338afebf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.149.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00ce793d58c5b27ec2df1b52737b3dc1569911aecd473a001e0ab9bcb9fcab4e
MD5 04ba260647b2f425710e82309ceacfeb
BLAKE2b-256 03cd2705a3472b8d7e50d2e29bde6413ed5b6fbe3b82b574b8720776e9d30a66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fcb49a88e93ebc433fc36f5d22e8e891080741131d0848ca9fcb011ae1dc6c84
MD5 e40cb2a939e5807cb5c609181e6c4976
BLAKE2b-256 d37e85c6b123f00251c19505d778c4698a31159e38acc1b14edf6ef1f90cb4e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20ffd2d54213c231c82328d5366682976d87e504ef3ba7e55172eb8fff631ce0
MD5 d8207b8c448bff7c4ba2413d0be73f6d
BLAKE2b-256 05ff757f4d3a88dc81de312feb5ca14ef09c8e3c4b68ab1b50b433cf1e90fb6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5355227bb2a6a3d4dc8f34ff04513a9a4af1c92f83ef480a75e850ddbd0b2f65
MD5 ba99bdf58d319e60a33561f984b414fc
BLAKE2b-256 5e0f4d24c4f6efbeb3326a7463145fb14ecf9aa3054f7cd4b74e753b4d6ea620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 973277cb13d4e5df9b6b1ef9e1ef25c1979531614f5a77f88c1cd6b9d508b78f
MD5 c2e48aeefce54a6ecd727b03393b8d2a
BLAKE2b-256 108e191008b693d577ab35ada4ca629b45b299f470fa2a51b8a6da6e81aa0685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12c744a5c73aadc513e64b3a22255a9db0676beb3a1bcbc1c31231b2db52f6e9
MD5 7ffb437f79bfdeaafb09a7805f0964e3
BLAKE2b-256 09ec5771cc6a2d0e73e4871cb6bad30038f37819ec7ad684c1c5037768fd6028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b130630b00e8c55e90716eaa507637bf603893de7ef6c4e0f6bb4ecca8fa084a
MD5 fff2434b8036c4c0a6dc7ca82bb5e605
BLAKE2b-256 5e2456fbc50c40b36a3c6f8d822f5a0636388dce7d7071bd9ce2ea0f4addd7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.9-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.9-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.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be4441b4ee81419be4fbe968cb6ea8cfa8f53601d404abe0897d772edf0b3486
MD5 3a0cdf2fd4d5ee761f4ad88526931267
BLAKE2b-256 f69a41dbd5bae8236cb69ac56ca5161a7b1886f15b2b56264fbec28631f5ad51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a4d3a7b38b6bebcf16307addfb70ad6bd93a3427f5e90b5c6806b0de5e1c9bee
MD5 35665aa3df1bf279db86aa770e1d641b
BLAKE2b-256 b262a6359f5dcfa3550496e301b06c0882c78a7fae6fb1b6ddc70ed63a99afb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9957507964f68d4a848c915cad5e317c49aeb6811d98aad5ab0099107ecc581f
MD5 e6bc140ed0a5be971684f660e983e86e
BLAKE2b-256 ed64370f7a8c7dcd25d3710237a44a9c192cf85b8a39a3979f1da5beee6125a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de6465e1f0bee6e891b602b608961c2a6c026839417a1a2e9fb8d12f9836ed72
MD5 6839d5a45f518e846ebf3aa4f679b7b8
BLAKE2b-256 572634d3a01bf8e367e22c370d6911295987c8a9537e179881fdcc55a89539e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.149.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b308ebb084fe231f918d3bfee50646af8933224bb3a8620d1d78e34de35c05d4
MD5 2e272374f15a188a6950e74331479480
BLAKE2b-256 83e560652ca32a8d2eb735f0429b05fae3458306b24b0299be4a098241de42ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 375809b6cd13ead309e36dc7fa6dc43d544103b6027adfa50d0451c4adc26fc8
MD5 11eaab9b14ba3b06c065c24a17bfdb7a
BLAKE2b-256 ba23842751c9fe6fab3a706ad695df2ce93bcb1f62bb0566f8e6d0a3e58a8ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67ebc77a4dd98427662a133037abada2b60970847257d451b2cf4fc1c279d4be
MD5 9be4276cc7dbb6e991d73f36cc36c68e
BLAKE2b-256 e24004592c1ebda7ed3dc9e42c3831b9ecc692ad9d7f2fcf0d19b0619ad255b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e242e81de7431766fb97cd4aa70b2bd062629925678608aba11d75586023ac5
MD5 df2570f2e6313ff16152d924e2cd7517
BLAKE2b-256 30a8235687666c8755195268421f1cc340090ab03e99eb3112fb3a3f50427d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87e13b6af158a3eeb2076ed403bfd8aff20d4e3d1f88cdf8041a2bf9fa3b083e
MD5 d8d578ad17c40aa7e2b96377dc9f8d6f
BLAKE2b-256 64d125a81c2a6f05bca53e1592e6a2ac378922651c3eea21ed076748145edca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a2d7bf94f30ce11d2d85614e5cbadcdb24e204e60d480c1b17584e85aaf90da
MD5 f780e90fd33aff071c6ce39f7f8a824c
BLAKE2b-256 d24684cf71c5991804ed1fdd9bf41b2472a66f38990730b07a9f9de45e9d01bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 760022fc86a0fe39364715c1ae9273dcb6da7ab64b11ece9d7f066c112f92f61
MD5 4d7e848f9b00158bc2b43fce7c4149b4
BLAKE2b-256 e48fe85a471b2a92b97acd45bb5fe9354547b42c287791b89a513c20a8090d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.9-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.9-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.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b54f05fd87dbd6d7880c871769ab6cc59a0ac0f135a5449f71de56b9b5f6583a
MD5 6557799348dae239be71915f85f8d01d
BLAKE2b-256 ba871755af89a4153c414166f6b6fba58133f8c65f7395caa15690715be3701f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 db149fe40e63c36b89b4d78177967a051b6cea155e15d16c84937683d3718576
MD5 a86c4c6abcddca0bfea540ed9dc0e48b
BLAKE2b-256 708a91af9eee25a51f53291ed5dc610192766c49a53e4a4b185cbae1a35879a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66d83254472e849c324b729802eaf18ba9c929f00ede22e696153288e4a5c4f1
MD5 1e737fed19f640898a4029bd315eabd4
BLAKE2b-256 229d1449e60babdf393963b86c44297717b0226d226a1e9f2f692c7ffaffbed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17954caa7f044dac34185e792a5d6d78b5fd3f8b6109545dda8ad438a25d9c16
MD5 c6cbaec0af8eec0cbc795e73a42a7fb4
BLAKE2b-256 794c676590c816dd049c2b2b5baab6fd252cc73b009879133a9358d9cefd4c0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.149.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c6918ea7725188e3698d6fde8fed1866a7a9ed6d7bb1bb6eb37d40258d9a457c
MD5 d8cce92d7ac8020f687a1e9d8773fb5d
BLAKE2b-256 ea52c56f49c8884e30bf542616353e6b2756a04fd7e5e79d654e56bdd52d8b47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.9-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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9d5da419e840270e0ef479f5c53e8ce9055aff2b5c653078f625e9b3cecd7ee3
MD5 a4d7657688a39da5302cf6e16728621d
BLAKE2b-256 bc949d48d01c19a28cac5fba455eb3c88e29478602801b752168b637f5921a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c20281f37ca9729965b02ac87aa5a8a097590ee11fdf7e0f2a57db545d7cc23f
MD5 f873226a1a73e4202d0dcc50df4e0959
BLAKE2b-256 31e309904bb14e7a12d2238ed3be9a0f80e957355f7edca0811b96731ebc550c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 da60c32f2271c232373304b822814fcf25826a219d37507cd6d4ed48cb891272
MD5 4b60244d995601ff80fc6d121e0bec90
BLAKE2b-256 2b73ede6c26f734554d94c893758328637a698522fcde6c8be46f953d285f8df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 469340baa2aab8ec01d55148b6c3ad7dbf5bae6cf9d290bc2c60847f34f12a82
MD5 ea5812d77df354a8b6ac5297e8f3e525
BLAKE2b-256 252b21227fec0fc9a919df4a755d38ad16ac1271c7a6d2cf800e41dd11ed7df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 def08d5f17301ec1d312a369e6bde13785697c75117da73c284fbca2d7eb09a5
MD5 6f6e299f3dbf624e6bb3657aa2a6d5a5
BLAKE2b-256 826549ad9a269ddedd4a694a47edc2c6e3339642cb1cb18d4b7cf569390ba5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4c8573b1f98731933020dd049ed498b01da89ed62c78a181e2673fb24138d561
MD5 3f95ff242b81ff8475529944b89179f8
BLAKE2b-256 1813bb1a4249b1dcb5eabdf669a200e77ddc890f54a672aac43483c297ce9ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.9-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.9-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.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abc67922149f907d25d6c413ec59ec9e12477abe871e7db1a55702833561a526
MD5 8d6420048ecb603828f354252c69cfee
BLAKE2b-256 2e70086e59ed2e4d75c6b660687d033e6fe8e439e787bbfc44806cfef75494e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eae1e06f975da0ad68a9bbf19d2ce964247787d1d4071154c0258953c31e60e8
MD5 c333dad657a3e568de8eab17b66e9d8d
BLAKE2b-256 164d71f146c0069fe56d683313babdd3aab5d3faa99fcd26f2aa6898dbeffbdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3eb74361942806cf896f63e233632a329c08ea008365eb76f1101902a3161bd
MD5 e420c8b114d46163dd55d3d99a779016
BLAKE2b-256 aef7555fa266d0660b79d0917cefa2c5fe7add25154e2a5f81554573bc6d4466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87385924bc175e67da065607809dd0b78a3a6ea2ca2255b540702ed2ebcb897f
MD5 0e5bc06b31910ccfdab42ab94a69d02a
BLAKE2b-256 54935790d1d67d532852988eecc4958593948bdc10a4a1d7d57811a7fd2d31b1

See more details on using hashes here.

Provenance

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