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

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

zeroconf-0.149.10-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.10-cp314-cp314t-musllinux_1_2_riscv64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

zeroconf-0.149.10-cp314-cp314t-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zeroconf-0.149.10-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.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.1 MB view details)

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

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

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

zeroconf-0.149.10-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.10-cp314-cp314t-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.10-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.10-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.10-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.10-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.10-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.10.tar.gz.

File metadata

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

File hashes

Hashes for zeroconf-0.149.10.tar.gz
Algorithm Hash digest
SHA256 128cd39217ebf0b5a7bdaa26c157961be4964f7a0501bc6be6dada2b2eaef3d8
MD5 b572e7d6fbe9dda6b2400614f6d3b66f
BLAKE2b-256 961d40d20e05d3c0c875ac30998b1643af0e7f9089f46d56cf487e8b6785a558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b01edef327f2c7781bdbb65e181956f9b70dda937c7c1cfac51ce0c98be75127
MD5 413c8e04615979fcfff45ecd266fe3c0
BLAKE2b-256 bf993f10d3d7a9219f0c00f4708d061ae0f0fdee25f9c05971722ea9e3f04559

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c19a5c17edc7175a5715de1c4f947dabc345e09f39f8f9e4927e8650831c73f7
MD5 8b2aa27bee4051f6ba1cfbbce3431feb
BLAKE2b-256 3036e0d69b38f046378d76bba8d0f38b2c26845e9ada0a088cf671f17a6b74a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 018e866264261478c4abaa5b16c896ccbec0020ab5b435725358c1096b252ed3
MD5 491c59903b6812b31efd918c8c6daeaf
BLAKE2b-256 19137439c9c41cf3be286b3b1381847310e4c0806da9eb1f8b1f842e0b1abc62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bf947de89d21358c6746b0048dbaa9351c61323018f3d5be936f99e31ba3a2d6
MD5 562445a184f52d9d055d0e0314488660
BLAKE2b-256 28bcc0c21f581a254b619e32a1bdbadd2ccb8b6d33dc9f7eb29794a0a27c9a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98b91ca407491fa3e71e0af6b060aa95565f4b8cdb62b9e038e16f6187d8be57
MD5 d290b7c001ee3d47c498095f2cd8e04e
BLAKE2b-256 a219774e6891cbf8808b81918f37c105ad13a475bfa61f9bb44f65529ec92a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80185135b75c763d0815f14b0050d2ebaecdbbfd5f433dc154aab16ff6759455
MD5 d0314db1e7fba9f8e1bb40c2b4e8e8c2
BLAKE2b-256 090bf522a044ef06decab985d9978fab5ed3cb22a1ad5e3a42018adfbd79812a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bd930a0fb8441df7bb8f78463ce7d2bb9417213c6d43e6d0b5d0c8404e675a96
MD5 bda3c6d15e2b3268a3fb13ce961b30a3
BLAKE2b-256 81de7d9ce639eaf02646f2ee9a4b626b6f6aede32692180c62bcb56ba8bb4bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65adc12a5a5b463d17939e179a0e671bfdb9dcb607cc45dfc07fb360052730b3
MD5 0ca2b94647b82d5f527de155943434ae
BLAKE2b-256 ec5494c22410fdf101bbf175324953c0afb666760b8be192e9688ea68c7e111a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 848c7f8214684dbf7f65907eab6f6fe6e2917044df38eb2776f9d1b18c1743e3
MD5 abef77877a0e86b5f4f44bf4f1cd8430
BLAKE2b-256 ac6951b105bf9175ead0fdf0d35c13d206a57686a2d5ba93f46093781708062f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a8e1a9c0dfa7f18483f36b0ebc021a20ae8bc490aafca001bdfba92d9b860ae
MD5 c707801110c4a348da22ede69d24e827
BLAKE2b-256 2853b6e76663634a1baca46d38cd48431e3de10021c19c0f414033404720ee11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc170472e66df66678d0b93deb9171a939e21f582ca289eb2421c88eab1c93c8
MD5 545966b5112ea51e8b3c585d04f658e8
BLAKE2b-256 4669f97ac67ed4dabc6e20287c5b33321019c19470d37cd72339de5aaf42596e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c082a69c6272d186ef66074ec661d2802c0ea506319167a6b47d95dfa5f8d0d
MD5 f44d73158c77d1629c05e05345b94c66
BLAKE2b-256 40cf358bdab9fc92711a66752a9a15ef0525118ef0b559d5b2b5ca6de072f1c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.10-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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e92cca710a4c5718c3eaff4284d8d07d68119a743809c7a7235a9d8b964be90a
MD5 bf76ea7c3aeb69b3325e81c78930f953
BLAKE2b-256 65372ecb777b4eda13b72a5d33ff03656e45d94ca09742d31ca0896a8e88ac3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 929672085eefe7488a78f5da93f9a6401b51fbd2abaa2717ec17f6feb1db53b3
MD5 f4d330e1dde227b6c77cac43734b52df
BLAKE2b-256 924bbed36392cdc64adca3975cce732d6fa4e400b03e673b0caa70c491cb784c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c8a2bb4048a146c00beb528a6d23814f16830c39306011910e23d95f8aed4b84
MD5 da4a4f5973c59919936c1d81dac06c8e
BLAKE2b-256 387bbc9d0ffcceccc6a3bb5119bd9e45de807faea6597890b59b20603c86532a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48594a946f0482c98dee380fcca3615d252572eb94ba0b0b191571b670517cf0
MD5 f044f1c5270d0f08398ee2cf68f415e8
BLAKE2b-256 592c449f3ace79fe25fc6586eae93c33019ac954d68bbfdd4b3d4ef820245187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa522bb51695c56a12a19d55669be07663726a481f17b62adf0c02048bb25505
MD5 10421742ee0cfcd224102509d15dc8d1
BLAKE2b-256 6bdce91240ce942aba65990422e5a7d5eaa76521fbf1cbab58d2f02a153f98d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 555a67f296ea1d54b1934698f00a232717f669906e465d6428754c6c242f56a2
MD5 f55d043a4f127bb767407dcd17a03db1
BLAKE2b-256 7b7569a534fb490fc662187b7f3b91a831d14005f8e34c5e6d2c82c74ae4dd60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8e585822b0f6dbdc31f0bed30528e26855bfd131e1f0d8e07d1eeb5f02c32d2b
MD5 107728e768e5ed662d72abc8682d1182
BLAKE2b-256 aaf213c785d633fb9732bbe95a18652f93a07a15d43b2652c4833e2535063ec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65eb55f6fbce6a3fc1447d9f87c8a7b60ae1c98dd47d9b3dfecec38d3adb3870
MD5 cbe480e9ada5f30e9d98205494cd3d84
BLAKE2b-256 95d13fb01fcaf74b5ec42376396bc079ac8ebec0a5061b885ffb944da0a45d40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 37558326c0cdb43df3054f313c9eb4f5a56132bf6a9f5a526ff9bf90d80ec1c9
MD5 bd9d02df5d42c56f936bb0d2253cd309
BLAKE2b-256 20ba7b2b023f5bc7a2819f2b2f92bd25d42d89690a87eb16aead4f327b6eb87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2a3d9851f0b04e1fa93d21cbd004158682fd19f513b779a0e29dd42956f79d2
MD5 78da97b45f86bbdf6ffb8a894e3033d9
BLAKE2b-256 a3ab1cf4ea3eca3d4a756245be874389cc56451e8d8c4e7a47c5475bd0d701a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a6f818bea2328e6d9fb59e11e0c5f388e5651b59c1dcec4ea24b9784dc448cb
MD5 64a2010ecaf7417ac33072f73bd6ebae
BLAKE2b-256 9ddf85ab546564911caa2747724927aefe0bd1573750d6c9784abf743aebc0ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d76f486a0913ce3948be04597e0b2160acb92379052de411cc5f686f21bd230
MD5 d722599eabb95a62e481616d8ea26754
BLAKE2b-256 6c10ce4080d13a34e57a8ce46e500eaeae462ffb8e534dca8eecd23f19f5024b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.10-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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 17a12c7751dd24ccbbbe2982b4c46c1ee13d7cb945630fc2a565168fa2416aa1
MD5 7663c2f3f53d425952e84a69c57d4989
BLAKE2b-256 4aa0971412b5e559fcda4e81bf405723989d0def9979805b72fb4d4b416595d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d60b5594ea1fc88452cb2c775394d5ccfd58cadd21d25320d082a812c8bab215
MD5 743441e3302529333e492926f6c12226
BLAKE2b-256 47f52bef9f42cf9d090f336d110f65eee6e8538f90d51928637a25b59e790623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aa8dbad4ef0820c4c46605a8da28478a09ac657db847c58d8f494e72710f2f3a
MD5 3e4dbec6c8dfdd9dd959577a4cc46d18
BLAKE2b-256 a2f75644c40625355c55ba0715982b106fb30ef8f79c84d7ac93c6744323e13f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a261a1cfe7cb8c85c6ee58dc20edb5264dfca511c3ca5e72746b2714a3772cd
MD5 73a21be0f6c56b528033e2e7cefac2a0
BLAKE2b-256 78bfa9f5aed61a90e35a9599493a1aeb9bde0f807f248464ea3edf8d773dc480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8324411f54d2ffc30b472ea17910853c4d4febffbbce074bb3a824319102a231
MD5 e22c712923e0145bedeaa3dce43676ff
BLAKE2b-256 b8837cb8e0d64a29a9bf75161cf668229e2800afb5c89865afd0fbe38f875902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a1d1837fe4eae7ff8742a8be43e5deda4470c852fbc8335c808d3e340ced6c8a
MD5 f3a586c4e9956d217960f940f61c451c
BLAKE2b-256 da5212dbe19fe32c83e6e02abaf2b76080530ebddfcd2e1fd6ad4543d89196cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a451cc64d628b03183e21b77638d32cec8995904b137359727424a4ae651b18
MD5 5a9897b2ae79a790fd3c49d8bc9c1625
BLAKE2b-256 1629bf72072e803ac34a4b2eafeab98e0fc45326d6780e5f0700eb015c8eb9b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ae8c3d64b8d8b99db2ac9112b4a98bf405691dbdbcf38c207222d3f2039f22da
MD5 9e9bae9ffd9c6e694db3f12a12279c59
BLAKE2b-256 5d5fc826dc89ffa5e38aba0e9cba0ff8d55b0a14209a9b3fa256c67c87d2ee72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 889166cbdb1d647ced01b21b6791251d7d2daaf6d55a728f77599cad3d9ac8cf
MD5 a62a43c96171e19defcb0d8f4de220d4
BLAKE2b-256 349437c02514b5ff39882ce7ef96e53cc5bf4ce51285d2bdb0e00918c0537ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a309e16abafb3bb17055956325c0ad68644da7ccdd9c6957878ce80d2c34bc94
MD5 171e8bb387eea23f2c98246b502ddccf
BLAKE2b-256 493bf7dc82bd88c910d21a6842293bc5a64cd6fcaad27fe80b1b83343636e50c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 77446c9637f25e9003f976d82a304e7ab199ebb172c8dd8d5f2bf03f93a2b2ab
MD5 dc673bcbc7673622dd10640be36278cc
BLAKE2b-256 90c5ae46feee8b28fdb45af954c9d67111da8a7c391e028bde34a9d583f7ae30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.10-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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e39e7ecb7fac2c68cc4562d25c5b5fa58d9e134ca876b1f22a825fb72f406cae
MD5 57bd076d1c07495edda0ed42865f7295
BLAKE2b-256 7e034ea3b839ca5d0612af8b17a4a91b3c3805b83e9ebe603ca4d207d02b59d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d2c821bb41223b7d17a57a180b828b06f5c7b47ab842e13737f8e1f7d1bf765
MD5 4d4fb72967106f3d04a848d328e5713b
BLAKE2b-256 07b26344e479abcc3c93556a09e2a474af2b89ac175189f5175a72621662f296

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 146bf057418442d2e5fe0dcd85d707b5ce0cb3a48f60bd1b6cc2dcc08c16617d
MD5 d415746a5c494db2fe365f05314d1d32
BLAKE2b-256 6faa18a82a0079bf5fe409bbf4ebc063a1e09aeeae113e8d7cec84ea2397ab25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fe03a8c084cae0f8e342579f085354593dea0e4ee2c2021c2bb2e9f77547876
MD5 8f18b11f05177410ea9e86a42f2547a6
BLAKE2b-256 886376a715b13cfa3c1f283e2a2a0732c0688362210a72b873dc48e6c525cd86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2e3e9fe08a8824ac35e429533c77f038cd9e3985e1f55b74287e59da6afd4f0
MD5 c09041d561cb43e704371c43d24703c9
BLAKE2b-256 6e45219bef2b4e50783fbb9a6e791428475683c8c99ead7b40b5b3e2c1f38aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aaca86b6f72886fd141c1153810ce8eceb0aaa58d1011f3a6ee878c05d05d5d3
MD5 7abd42b3be014da51c9def5ead31363c
BLAKE2b-256 67b26b3f79f73b4a205c3c4cc944a61337d6aa7b750219aa077793a2a272b79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63e2b992ed0a1c8ab362152f2e0b1aa20daa1e92ceca661d2bc3264ff6058531
MD5 0ff0855151d7870ded1b5f60cc8cc4e3
BLAKE2b-256 4e1f65151722dd4da3e72162bb8233601ebf869520479855af9b2d65919be0d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 197b72614d7651a15d9694da691ac7728f1a1536fe7aae7cce8720a31821b8d5
MD5 cc7040c7d23a61d7a22570af35ae4dce
BLAKE2b-256 cb144574424a0cb0e8f73134bfd4f7f440acd31902684402a3127632dd0e495d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27f8a6b2035b5aea0115d4057dfabb49fc62d896f991924d6b9eadf004b7278f
MD5 e889f136dde672c7ee52047595b891b6
BLAKE2b-256 1058497c8a806e941a996a566f6aff3f2a2acb7ea694e89bfc36ce8104c5b222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdeffec4a98c28f5aa9be914db2e7177525f69863fb51829a1949f40b5201042
MD5 609091670c81248720a7b9af0755539f
BLAKE2b-256 b96f1709d09a424a964d8bc04c15afe1604a6128330c54a91e8ca874bc1d3bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5cf5fe476847427804f367813fd6a7550750d0e80c30ecbe25e302b31c180cb1
MD5 db4d714c357c21cadb34ecf435300565
BLAKE2b-256 5bb00d1002d4d9b97e313dc57f703152362e3d54efe4a6a8a0cad8397b7b120f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.10-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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 14a919d745d5384a1ad8c691351bf0b6a9f0aeb7fe82e7421a994f9d33a973c6
MD5 e3a208b98f160b07d97e9c26eea29060
BLAKE2b-256 08f3a95a912abf14e2169856ef4d22c1b56edbf4f8e233faa0fb3d76a978ec0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14dbd539350dbbd87ad79cbf5a1ec83dac20eccce665a29a5e5ee6424564e320
MD5 0132e67f6d3892a4a76211fa8a3f7260
BLAKE2b-256 f32bc3ac25c141004b018c82e67ff79ccbb6b88d52a086ca3dae91f02e8726d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1c81772a34e657261651fff3120e9373416c126de5414b702038428b7675317c
MD5 061f1dae4976045da7b241baaa7f1103
BLAKE2b-256 9e9cb9bbd168916558c748497e270ef1f491c9997ef1272f0ee0870eb91d0afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad21562372ef5ad67067a6a4b60b80c97260faf9534aecae3cd423eb62fc950e
MD5 d1cdadfaf9d81f9c207f225c83804aa0
BLAKE2b-256 d2a6e44ddcdabad46d4346fe3a4905000059a08fa05e2bf880398dbae3c89e65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f3a5ffd737419069d0dd9cb81e68f562eff321eaace941fea80d7d4df0b9ef7
MD5 797174ce160a49bf5e5b45bffb42f702
BLAKE2b-256 647b791b7a5d23ed17eb3091fb3b01441b828c04ac1326837d6dc93bd59a3dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6a4512282e46828fc1692229c43ef89c3cd483b68a9fd2f146e363e6e65d238f
MD5 af7d2f0d8363b1dc9b329e3f43f5037e
BLAKE2b-256 faf5bf42aa75d867206f8fb51f6fc7c61fc402cb1208b10bfb63436303af00b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8b9bf9a3667e39233411eba3738967a9d6bb2b793e1e96bcbf96236c673deed
MD5 88da8a69209ec3b39be2472ed39e9b89
BLAKE2b-256 6b3df9da726d85e25e5e511863475f0d805e48cd463756ac946a32f9105285ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5b64f29e2801aeef3d841267eb088c9504a2efba39ae94f10a165d941344a0da
MD5 8f76bb766b10244a7120aa1f17bed261
BLAKE2b-256 156a4f2a539cdb84f3efafd5ad95023bbfe32d7a1ab684dd0893d68439eedd44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3f1516b332639bd9da8458f5b82468091c7272a962110b615475f2affc58067
MD5 38e9c6d8f10aca78529d951b91129380
BLAKE2b-256 599fb4d91e58ed5fdcf1e627e1dec63d9dfe7358ca903edeaef35bd327cc3457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 137a97aa773e62c9178039ab4945ff47ac581225fe0a84347bf6e5c5a2295f50
MD5 d39aab924dea179419fc141eae46624a
BLAKE2b-256 fc578b373560fbfc597dfdb484fe5d7df16d933e8e0e6f6e73828a08c5ca32ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca30dbdf6bf003deeef01be89e99a0b9f454ae7905e9b23e34de4e3a0a0ca316
MD5 bb50887e6d1d6a9ee91b7b7649faf0ee
BLAKE2b-256 f923b30ba6c2796008fcc1006cd98b17e313edb09894e9970c29c75f7b4c1610

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.10-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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff554acdac655844d2e307e3bb2479dadc35600e250ab2fc4a80e4266537db3a
MD5 6b92021cd2689c7ee0e3a06cdb758fe6
BLAKE2b-256 906fc89b7486d0efbdb66b5c961c13401a099b03489ee61836fae16fbe6a1649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fb474b991f55c99582582f22021145dfdb6938f6bd40b460d93e22fd7028370
MD5 ee0929316a8b7b738ef3b728c926fde9
BLAKE2b-256 b546d112b8de4ceeff0cdfeba2873a9d15907a8f6f1e12f0bb915086bd2cbf83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3a05dc99762e81db9d67a6f53854c00a1e564418f1af59ee89b3879cabff09b1
MD5 c820ccb05f10f46a7b2127ac88bf9f39
BLAKE2b-256 8c9cd81498b03ecaafe3e53f3c5b81b0832b633d43c4cf9b73a18d5b8a2a8343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8de7ba309439b4713427a4ef4c38f55255d1f36418f47986f353d268b2722dc
MD5 d8f7a0cc035c6ea3d8ae60fece61434d
BLAKE2b-256 b00ea459873a4aedcb2063993e5a55050addf1a1b8df57a4f0ea78ef7d5a6302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68916de7b6bd01caadd66a3bb4e8f8c3b0674a2ab9be5c3b5c2b4d5558e36b4b
MD5 0679951fb96df30c7621f1277d2dd6b2
BLAKE2b-256 04d73ac9fdeea580779927760383da16acef3bbe3f2195141177ba8abb891ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8c60ba50c10562a84e2681c357c0972daa8f794ea0266aa34800cb7838d6e7cb
MD5 4a75b6720eb664a289d8c6d430120551
BLAKE2b-256 d73d0f9d90213e180f78dc4b0954deeca50a69584cc5b11792e612b25f6a6d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01bdc443f404cf7b892bdf433b036515ce182ff8d74d1f9d7a1e9941025a0c0d
MD5 f38de1aa565cb48341f237debf4312f1
BLAKE2b-256 bcf981f77b8d0bdc7991d27942f8237f1287f4574d0f6b5ab1d421e2984c5ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a455725ae43088547199e8af4bb99d4ca38a1e7846b08a6d560a0d1b7bfa9bc7
MD5 7b2d7aa8ef68fdf04e7109c050f81e4f
BLAKE2b-256 8d0248f88cea0323a19de620db741cf937990acf43dcb59deed662b39b006848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b26ffd46cb92c3c2a4c66ae7a80b607df4d173c3326656f8634f7e024f87060
MD5 f22d555c2616f789132abb98a2d3f71a
BLAKE2b-256 39cfc4c163b17022fb74963dece12f55dfa783b38b19635b8b071ed551c86a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fef33ea339128d33093ceced2e0af88b523c776454bfbcd3b5f8e1aebea97b5
MD5 610784a4bb9872d4fe95d8497725b7e3
BLAKE2b-256 0adf1d76c31a570237f6a0dabeeec31f8201c5612c0f196281834544bc8d4387

See more details on using hashes here.

Provenance

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