Skip to main content

A pure python implementation of multicast DNS service discovery

Project description

python-zeroconf

https://github.com/python-zeroconf/python-zeroconf/workflows/CI/badge.svg https://img.shields.io/pypi/v/zeroconf.svg https://codecov.io/gh/python-zeroconf/python-zeroconf/branch/master/graph/badge.svg Codspeed.io status for python-zeroconf Documentation Status

Documentation.

This is fork of pyzeroconf, Multicast DNS Service Discovery for Python, originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf), modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).

The original William McBrine’s fork note:

This fork is used in all of my TiVo-related projects: HME for Python
(and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
Before this, I was tracking the changes for zeroconf.py in three
separate repos. I figured I should have an authoritative source.

Although I make changes based on my experience with TiVos, I expect that
they're generally applicable. This version also includes patches found
on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere
around the net -- not always well-documented, sorry.

Compatible with:

  • Bonjour

  • Avahi

Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:

  • isn’t tied to Bonjour or Avahi

  • doesn’t use D-Bus

  • doesn’t force you to use particular event loop or Twisted (asyncio is used under the hood but not required)

  • is pip-installable

  • has PyPI distribution

  • has an optional cython extension for performance (pure python is supported as well)

Python compatibility

  • CPython 3.10+

  • PyPy 3.10+

Versioning

This project uses semantic versioning.

Status

This project is actively maintained.

Traffic Reduction

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

IPv6 support

IPv6 support is relatively new and currently limited, specifically:

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

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

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

How to get python-zeroconf?

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

pip install zeroconf

How do I use it?

Here’s an example of browsing for a service:

from zeroconf import ServiceBrowser, ServiceListener, Zeroconf


class MyListener(ServiceListener):

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

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

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


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

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

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

See examples directory for more.

Changelog

Changelog

License

GNU Lesser General Public License v2.1 or later (LGPL-2.1-or-later).

The full text of LGPL 2.1 is included in the COPYING file. You may, at your option, use this library under the terms of any later version of the LGPL published by the Free Software Foundation. The canonical SPDX identifier for this project is LGPL-2.1-or-later, as declared in pyproject.toml.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

zeroconf-0.149.17.tar.gz (198.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.17-cp314-cp314t-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

zeroconf-0.149.17-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.17-cp314-cp314t-musllinux_1_2_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zeroconf-0.149.17-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.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.2 MB view details)

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zeroconf-0.149.17-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.17-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.17-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.17-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.9 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zeroconf-0.149.17-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.17-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.17-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.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeroconf-0.149.17-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.17-cp310-cp310-musllinux_1_2_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.17-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.17-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.17-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.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

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

zeroconf-0.149.17-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.17.tar.gz.

File metadata

  • Download URL: zeroconf-0.149.17.tar.gz
  • Upload date:
  • Size: 198.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.17.tar.gz
Algorithm Hash digest
SHA256 f10e58071bc5e749176b8dc8d7e7ed4d2e6b507dde20fd8169b760cf4f7f4c5a
MD5 4c3d1cf12ab1a1018d5e196461064576
BLAKE2b-256 7b951be51e0a98f629bf8fc8dd8b038c0323f3a090969cb007cdcf436bd844d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 98982f76e79ee50a40efa8d764243efc7bb45c04f370e869ebb641d9de82e776
MD5 1eb7c145e50747de766311e726915178
BLAKE2b-256 edb4f923c3ef6760c853335f7acb14d7e0b714cd53896c90dfa839db30703962

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c727fca53e0236fedcf240f62432f81bbd6d4a537a05adf9c2a6d2582162c654
MD5 c60d7ad62b2caebca83c703288cd9843
BLAKE2b-256 1158e80f2369d7d45e22130a063c737e5192ab6c3e32e97fb8ea80c98e7b15e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d70f1cf4db412f4f53ea67d0b8e155088909fddec67a5e801d1da3789df533da
MD5 2d854b9f69010d9c9687419d6e78a3da
BLAKE2b-256 d457ff7d84da18f8bbe7af9292c5c6610d6c708a64120f57afa8bdc616f153d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 64752d62ced4a5a132b22f62c468f1b452a908584e9688fd94fc5fa6f73e115b
MD5 84c76613282e10040a25c04d71bdfb3b
BLAKE2b-256 218037fd8fbbbbb4581d54d058a82c031c29719aa7b2e4a209d2097805a13a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73c6f1e04017971b36a0415ba7095826729053dd43ef374d88bbc57ed9bd516c
MD5 5741c302edd5eb18d2c24b8d5f457c9a
BLAKE2b-256 dbe468d67f491c7853aad002fc894a025499d81ed022217c1836e321c0593805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82073c6e6f7068e0e9c2aecc1454f718e758a3407ca808e2c36e2ea0fb16e78a
MD5 f48b2e6ce9b5b3175ff5fbbf3a1eada5
BLAKE2b-256 e5d519cdaac4c5d79e30d40d7d0fc27075ddb0e5b369c9275e978e4dfdd31b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 59c60765c093d312c694cf90e906ba214d66a213d71fc2c296efa96b00ce7187
MD5 96c9e47bf02830b5689752cec1fb122c
BLAKE2b-256 a362bbad6d7316bab572492228c80294dc57d2db0c1ca4c1620ab3400c3784ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dadb3ed16248fc451eb92592d98e3c4fe2b845c1a8c6a0cad0b66836295531a
MD5 ffebc612516b59ac0669a3987e64e803
BLAKE2b-256 082b4103fe9aa5e57400452aee3db0be3e6d1639e9f23a8e1233d18f9f393a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6555c99a2fd09c23fcecd0b6b49a0a631b2f1ce04ee741de7f5a90af5be50194
MD5 2c94d7270d3f297d0b7642ccc365a487
BLAKE2b-256 799183411ec3dc598d459401c5db71127afdc77c7f60a3e2ee84f0c0d3f2d600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b0789d10b5534308ddb4d491555e5d80b95c789b2144a608e5e7ce11b27e39a
MD5 c8c4a33f995b0ab4a338e7e56d648f57
BLAKE2b-256 bbb5be2487ea41eda12f1606e227c20ee01dca2f8e34392e12f560aaa2f93e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1aec368c6e7aa37e0938cea89430d761c1e1ef8542cd0db43e5b07d213d6628
MD5 12a59754a9ea28b69e2aaacfb86dc10f
BLAKE2b-256 9236321f857e14d539811f0410e71ef6cd98d75be0b97bfefe013395b186484b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa7a72bd2a90c76da39767f81fe7f8ea0e729d432f017365292291e590c46f9d
MD5 7dc4b73a92578a85e2e45f528fa8eb7f
BLAKE2b-256 b862876207ac84d9df3838fa2cf9c398e38c708a402761c3d58441aa1cdf2a17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.17-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.17-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 98515cd012e707e0e90e56d988c6fdca82e2eb3d1a5571836d70a868b8b82bf3
MD5 c5dd98bdb0dd28c3f0033f9709347974
BLAKE2b-256 4b96991d1b21411cea4cc885c822139670c04c9c59b5e03790e296abe128c3c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c36ff4161f200cbfd82ae3a83b7ad48ce078f93d1d33b4e63e6b2be72efcc6f
MD5 45250347bfdc93879e54f678c722048d
BLAKE2b-256 a500ecd242ae9c906c0b1eddcca75fbd5145174deb0457f7e00e8dcd3f2d1d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cd831950c27ff16b6dae2133e6211525143d5dc946b512f834d7ed4052ec8a24
MD5 a17c9767d43fa826c0c1d694ab1539e8
BLAKE2b-256 99a2b2f1cb785c1513a968ff7e0dbbf6be23325fbbb52eb6f45a5332ac992e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07489d6e060456e990e7dedcb4b59b571829cfd43b6fe290951463894e46c822
MD5 28752a43366157a585cf26be8f68427c
BLAKE2b-256 ca20d78adb029c4bd84e1eccadfc31ea23a19c90fd921fbcadf7e4c69d2cc82f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 157cb0936da57c59745ed0ef62c0141c11927c902740915e72684ac1195d33f5
MD5 e93da7e9b18e6d1eb81d4e0f35940230
BLAKE2b-256 e8a70c4b58dfcabb6fd8a5b47602a4ce8d9093a10e5e4371ae34627dbd764cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 6d3d5dbb83b917a0634d1e910a6f479bbb61feae572b0fa6cc3dc8dd95cb383f
MD5 d0e112ad4e24e7267604acba1e1112c2
BLAKE2b-256 fafc826c25dd5fae5bf91464e40ddd90d7fe54170fa97b97bc97dbf378aacadd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 70f8ec1cc531a6da15f20ead1dc784d99a8d57e381b78b05cdf91059beaefe25
MD5 1a7f16d7ffef9cbf86b2e83393946296
BLAKE2b-256 f4ccea63530d9ffdafc5a0047c5c865a2309c11aa0631347d50cc66ff0ec16fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ef3487bf1153a007bf78a62aba5810c651aa5d205ad92945bb1a02472ecff27
MD5 4d2f00c562eab7f5dbb3152e30435697
BLAKE2b-256 814cc65991b323116dfb54e396f7e828510c6a3d7fc57554e899e424d98c94be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0d9ee250c7f1ef5e12af197b8486e2147a6acbfbef6f6d655160ba4372560b6c
MD5 177a4d240b468b0badf1d637c01558d1
BLAKE2b-256 a1d0dca0636dbc3173a0c3460aa88a66333cbb6498360ba08996f8b9519e3b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5da820ca4807ff0ad8a1e16532e2a4bc5ecba71af537aac70dff44a73605df98
MD5 c5badb2d2b3f429fb055fc61cf2d8762
BLAKE2b-256 29f320ebedacfad207ac6ead394444b10fd086b0192f513a168bff73e5789ee3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01dfef648892d7bdd95cbfd1c1d4bada62574f518081ab01963dfff9fd622ace
MD5 cbf409364672cdd56b96e917a15281ec
BLAKE2b-256 ba2b87dbe1464ec90cf72e6a8e4b730d5542b73a1cac7340f52efd9345671b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d515524b5e8279c820c026a762f7c787e83b6b9e3976e6ee4ca5ca4ebec4659c
MD5 a66ccd526818b99906e165906122d785
BLAKE2b-256 c10ab1e996916c7a7769e0dcc7daf267b04457c07a4c5782ea0413d2aedd2706

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.17-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.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 92634f0d31a6a3f7534a83fb849ced7e90c329d017e8ece608f5be5d906c755e
MD5 31f4202888b38677124dd18f59023fd5
BLAKE2b-256 de6c93627c667d51b40bad73aa09d93ffef2c76e39d61d9f444dc46af0b7948a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6d02ee9a5b8a544329f28fe3d627ce974e0a1060758a86445865970f8dd3e4c
MD5 be70ab49be6d0a3eee0b194a23cabe7f
BLAKE2b-256 27e09dc8edd99957493118fdf01f5e3a9ce79896b61fa8a4d69b9ea29a369f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b708b17f608d6e0197fe9ba506edae62e7cf2131195ff91df81d6caa877633be
MD5 4dd5e3f92219c5970b45cbb326cf6e5a
BLAKE2b-256 c8e3be7545ee9eeb7b879e3878b47c5dbfa97a79aeeee80b69175d97efad96db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 052879e3797911406364054680a56f05e645dbd73adb46c65e0f1cd8ccb17700
MD5 02543267f5f7d55885655fd1c4b8eb82
BLAKE2b-256 d29a960256264cdddd65cdb3b404cf665eeceba05f5a5d58d301f03cb03ad417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21ef6adecf2b2c325c169896e8e1e4c6d8e6c60c2cf97075ef3456d93cf86d5d
MD5 8b7f077d4bd2dd858cc114a80563719a
BLAKE2b-256 4b4e37081d92db0edff24a10c8d7c42c9b550b0cb2c2aa5b14b7274195f36545

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 66fbffb2927cbaab44f522d2a0a6655474119a4203f5ba3b98684b79e5b851f6
MD5 419aa83e27092562758a9eddd3e5dda4
BLAKE2b-256 6f1e56f192938658d1b6f83e63146a6847e85e27ded50b777e10096047202a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5104ad7df98165b97c8faec51c1f8cf99f49e4156a782ee50947cd73db653be5
MD5 c6921977ce484e3fdb9310309d98da62
BLAKE2b-256 93b2a24e614286736dda35ae62860eac6020569afd0354e8126a317fbf964184

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 afbebe776eaa348b0df0c739ac9d80bc7cb01bf074c8d02fde1b1fe5d2792d93
MD5 7c1b65a08d3308eb350b1b4c35cdf519
BLAKE2b-256 7065cb2c73607b05cd514538fd2bf46afdf2883aa301d2e6bdf86d735f7d2af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43173d2d9ed0691438286876dd3456daea0ab94ea2e2af7811418d19ba841265
MD5 13b2947898e302c1e7aecd01be63f755
BLAKE2b-256 e8443e99f9c39a1ae2e12855aa1a4197d991dd81f05b365efae468cf4d2f3506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75d2157b0d68226d78969476d936b0bcf67d137cfa2eed62700e89e4f337b14
MD5 5e8c424a8da44c4f4e6ee991861fab6d
BLAKE2b-256 3a45edbb8cacc33b6d987fa509d2a159e5f2ca0f28447bb582e2c70241aabc26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5455a6351a5df757a35be58fb64295c3a07887fc42aeed47903f4375631b5f9a
MD5 be9fba8189b8d9b712c106b63a0fc142
BLAKE2b-256 80831d4493e4f732a849bcf7babfd6377013292fe3a55ef3933227024f867073

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.17-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.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e881334e041a60245ad5e5ae3bb6afb5adc1ecb33a6ee0320080799d268904e2
MD5 c442be90a4d36351cb1b22f19ae3b194
BLAKE2b-256 a6b3da72fe27ff0750682ba4d24971a337798bf23988bd0e82473f8874179bbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9605cef67b2c096cf27a035c784a09f458112ec063185c7f0ea77213af69deb2
MD5 4c9a34bec58a94812a6cb837298cd8fc
BLAKE2b-256 2a3a4dccfc128956d89e21368e91218eed20ba723289f31c077515d26bcd2c7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 61b0ef752394f05565d60d5093ff92570f83412c191f40d7e352407bf86fd222
MD5 7e6805471a5232ad1b26f1fb69ebab5a
BLAKE2b-256 1565f66eddac757c5e814f36d4cfe02294e489b82b704a899bed8d457d7b3e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51c403e96b551149d5dca1079680191aa8aead5f218021efc88f5776ea33d103
MD5 2740e0d72ce9e7b4e4cfeee81d6a2bde
BLAKE2b-256 c458c581bee10ff0ec6f1602ec48daab18b48223834768ec4b0090856ebb89fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0784735c0d595e63096fb9c7bfb385b86a68979924b6b72cbfd877fb0d42399
MD5 e2a7019c326cd8ad9526bb007e43691d
BLAKE2b-256 04f1513b4401197349b5e7d297a24813dd0c1207b333e093d2e6266882b41821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2d735c7b559ddd614c192be4cd4afbdab642610e05c3a6fb1188731652864b4a
MD5 602739e132e4edfc804ea6bb2085e82f
BLAKE2b-256 213ca3edc6ae0be155ee309defec7ce1ffda9d2fd896eb7192b225aa37761c20

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df55d5aca0668c85b9cb9e7b62d2a5d690d1a92835af43bf6bc24f9f2376395b
MD5 5eaabb16b4a55021559a63b267b39bfc
BLAKE2b-256 a29190c82a755caec9311c828150772a36b8202f8ea82f58621c3cd290ca3e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4e4f56e39537778a82ce98fbe9d6ebceda1340f2f9de490d8ae6c747e9e22f81
MD5 58f2b005577463f598c113ea15a8292c
BLAKE2b-256 b84d15d76fc7e4517dc042c22b543efc4bda17f7ffdcab2db9cb27b3597ea889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b785da4c27d571460831c12bb4204eb7eb41384c54355e7f1981f6a530532279
MD5 ae42a5bbf15afe08f169beda78b09e5d
BLAKE2b-256 045be2bf194e3b3f2cea8193f273ff887a69edd9e7d9508e61614221c255de11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2614d52ef0f3b7bf943ff4348058fa58d29f6970c97ba2d1abcb496662d83b9
MD5 bb9fc2a76ae863f740336245631cd900
BLAKE2b-256 f383688e127c2e05e290267c807972ca6fa0b48544c184c46cb04f4fdff8c255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 578a04b911e08c392ade68cec674068aaf126966812712afcfe212dcd48bb4ef
MD5 88df7f9a35fc5be4fce93c17ed24b8b5
BLAKE2b-256 05671291381b14fbc16c9e3ddf5ad2998091ce1c51af96f2fc00e4899a74f496

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.17-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.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8c96902954e41b37c4fde23fdf1254fc513994953cccca586c34170b666f36e4
MD5 da6a994ce1e014e981d18e32c038d774
BLAKE2b-256 f717ed70de1540f87a7aab75036d8521d5ad3a251100ab27ba790278093a8955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 118565b57702a808a842fbad390368b0383566a9235ec9d3e4693772f6a3d3a2
MD5 42e327d6d5e7486fc0f50ba4eae60cec
BLAKE2b-256 3314febfca5db019c8a4d4d2287c5e9d993bc6fc0301f200ee232e462955b11b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d40038e5979f14761dde52308d796437558cb6fa9cc7528fc8ee279b4554ee19
MD5 b243d306c719b9f6c9000cdfc02fb6e7
BLAKE2b-256 caae191e9f3dca02a6ab913d2f64a71ff5313452ee9c70124f8e4f74ef4d8e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 728f65435e7eef228663e9bbadfa3ee25133defc705dbef08a7583cb0c913932
MD5 8691ff68c50751620d2a37c2f0051fd1
BLAKE2b-256 76de056621e8e68c178c7161d4c1be1b460fd5b4aec5f4379f56f6912f4b8bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cd84dea2e97b098d91ce87bea188f8c29b17158ea8ea3107c4a1391dc869bc9
MD5 36c31c97c79b398d5b99785a8da01ddf
BLAKE2b-256 ba9c39668688419f5b685b126c1ac323b2e7602881e607e0e0ed839cb0c2673a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 651b0316a14f2ad483c664edc211a2e57fdf64e70a95a8497511b64dd4fc4aa5
MD5 03d2edcc68cfba99020b9c1defd43f61
BLAKE2b-256 8128ec059481864e631a16f87a9334c6f8f7be4a1948abb5001ae34535e513a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75807bfe2244f4ec819dd38d7a361a5e32f5eea5bacba15eef0fdd9e4bd4f20c
MD5 374330048257dfbfa445fab43a8a421e
BLAKE2b-256 eab86523840ae9afd59210d7461746149f8656f051ec94b97445be2904841ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5b490ebf9971322f2b7c757d6d786e98e047d4be2b92237fd943520be7ec04e4
MD5 8e0a03827be1b2365f65166d5b05d7e6
BLAKE2b-256 42a49907c2929e84b6edb403150c9967e66ee79fc324252657a47c57b9752392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 034809433bfecedfe3ab4658e7a1c74313537fca0ba20c96ba31421adb64b2e4
MD5 202ec6063961c6f3eb728cd0bee89336
BLAKE2b-256 f35461a94fd7d2fe68c6575e4a7f510179d0d0c5fa0c7e527461520690aeba24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 276b95123b0458526c6479ec693d44d5cbee93bf7c77f76beedf4f6a38b30a22
MD5 2130b0e35f9a58e6c0376af861c5525c
BLAKE2b-256 596c5b7ffd7132c4468ca7f180d5b9bebcbaa3f619f34818b5d038fc85df555c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 239b1e7853d2183057a4df7b5b4a89042de64adcc6d6d5da463f3c695bfb0ec1
MD5 6d7f4cb17a9a226dbf6c386defae7b9e
BLAKE2b-256 3a303c4300925e3c1214ae27593da66a0da6163f995bd0a9bae1bf88f88d76ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.17-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.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d46352c32e99e2fcba1d017ce35bd78017ed3f0ca9e9f5ac1a8e6b866409c779
MD5 273efb13d42e2198475d63ae7f5af6a9
BLAKE2b-256 44616f4a4ecf4bc9c41d88efe81c59f6675cd955b74de3d62a192dd62dcfc706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2e21a845ab62211ad827766dd45c3ff70b88c525600177d0bf0dc8568784a1d
MD5 e202171a3c6a076180e9356008ea21b9
BLAKE2b-256 30ca366aef2f8cbb2089d1824760633713df1c3a0d2248955bef5169cce31c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4b94a452dec0280ca904fc90480eb6cf84324284740ce3bd7bd69cc8ad414d62
MD5 989299bb1d313098487ba1fec2e6ab28
BLAKE2b-256 9e0bba13a4f9916c93a11c75bdb86c122723a15982d884b2b2ad9f44790ca3a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a4dd72f258ac611505f3f2bd2d7a267ed870be7e75f78f4c9554f70d3627e7b
MD5 38d6f238738eff0ec15b75e08b42675b
BLAKE2b-256 a380762e4018e49e0bbcc0d78475d523d80f51c2d0ea27af130f4aaba9f19928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e09e51b2a9d6f02ec50ff5ed1a36ccf76b2f5633e714870557187af70cff616d
MD5 6b3a3bcdf9267ee58c8074a0f5b4642b
BLAKE2b-256 e6f30624742fd59621b9b5fff7d09115b6bcf6b24e74bcaae1be94db76d38a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0ba812c78829235a27a3378a5921e3b5159f110dfca84edba11045cd9444ce85
MD5 392769fd52a270d37e00ffa76a63b8fb
BLAKE2b-256 348501c5c21737927e35ed0859316c60b1d24eee0dffff49820a0aed456b3c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.17-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.17-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.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cbeb86ff60b4166c3539f8623f8e01798411d8aa0c8d9b7b26597e595d0a53c
MD5 b1ca912b168aa306465bf1ff78a6e8a2
BLAKE2b-256 018f5ea0df92325673943eaed60f5bc7c4982ff5c805425a3fc9d2ad1a0a7918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 db1d163dd4cc2c6ed8a341cf35aac5dde552827ef6e9cae8a3f06de63880ac34
MD5 2ae052622050aa2812ba2d6b81eb38e4
BLAKE2b-256 1bf5f56a54a219b68532ff11982b77ad682c49d70065437e052d1ac36de9a14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1795f46701a97c3f1aa940950409c1def28a8a08b6945f3e56beb639223ec15
MD5 5c2194650df49a50fd39092ca5d2a0ab
BLAKE2b-256 46cb7b5c68ec357d87665e3b05eb7449eac7df427250a721941785a34a3805f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaf1e116201c9301becf1315d743f8a7d6b1f8cde0caad3386303d596dc039ad
MD5 03cae58e86fc2648f19fcef5ae69e730
BLAKE2b-256 04c76a8b74fddb4783c03c20fa708671e13a56a9ed5e886cce8147e2d8584261

See more details on using hashes here.

Provenance

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