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.4.tar.gz (170.7 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.4-cp314-cp314t-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

zeroconf-0.149.4-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.149.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

zeroconf-0.149.4-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.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zeroconf-0.149.4-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zeroconf-0.149.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: zeroconf-0.149.4.tar.gz
  • Upload date:
  • Size: 170.7 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.4.tar.gz
Algorithm Hash digest
SHA256 fb3ec3db7211072ea2e1ae3e30dd759470fd7024f0cbc8291464fb5114ace7f5
MD5 a7ba2770a93eb510bc10c58affe59279
BLAKE2b-256 242b1ecc733296283952bd198487932b535d3cb80263f4dfe16db8dc0ce5ac11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a8d2604d5c6142c5b9b8ae75983353f37b914d1ef369b499cb5a9926ff1e7b12
MD5 516fab5e87085f84ba9521e3068192b9
BLAKE2b-256 fa2f619576beeec7e686ad31e495921eaf1da1d1c3fe3f009689f8c18dd8341b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6eaea59538cb0e2cf4997c87f620c8b21c84621b53a7e98eefc1509ce5b1c53b
MD5 d2be3e4625b190179e1ef3b5d56ba979
BLAKE2b-256 74d8bb8ebc44f3259d23fa6c1b78d0be291a16a27b41f67dcd0db51270db30d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e7d54bd9bceb385bb9380d4504325cde1e4504eb5a8e7261a17d6bb5af80f10
MD5 c4280fcd476db69b8f317051b00826b8
BLAKE2b-256 857ec8ea62c3ff4bb2f3945e1defbcdc3eb6c7c7c6afec817fefb1f8e72e6fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f405b06a4de416bd861782967cc37447ddc620992eaaed6b265a24933ae1d060
MD5 a3fb90bcfc9281ae76590d021abcddc5
BLAKE2b-256 a5d8772c57d13fe9dc79c8a33af5e899daaa8bfaabbee63b07403b0f7f1e61b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7e3fe3d04ecc37353dc7b8c58050c607412f3120e197c765a4677d66c47540e
MD5 3772920dd481d4b077827847d794d9ea
BLAKE2b-256 b3a97b7b022fe03662a4a868e9d6a58578505e53f51c81d3b990648e5e4ffe9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f327cdd90659f143a427cfc255c4be61a940972503918569525272701b571127
MD5 10d71394d473d2011e5740db0fc68125
BLAKE2b-256 ce6bb06b487c8830eef7c8175ddbdb7c114835dced453c6bb54cb87765af43e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 29bbfaed51c8ec63ff914d1edf8c77b4ed6139d288a387bb6ad28cebf1a5b415
MD5 f7d2c0646fed1235f4783d87ecdba998
BLAKE2b-256 57b36d4fcf91154ab0017628790a93b6d8f04a549eddc584b1bbc5019ac9903b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4ee5f64128f41a51f2604793e13720f7c4c943825697efc3dd66c1d01238220
MD5 c0fb5a6d3751651a9e5c999d5cfb1618
BLAKE2b-256 e728ae2f2c38f7eaf2e36a84bc115bd4e2b034a562de9eace7f8d7b199e874c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c989240b13d19e8caa471f3cc990c1cff85c1df40d8fbd8de11868e388cb9562
MD5 3ec672bcc7645099f2542ca9e1c707b6
BLAKE2b-256 ee90f7564c2f58ecdc0e9e1f6fb3c613216d32aeb8cd89d1aaca1ec77b2b9bd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0b81895972cbe57b79c1cf1a34736136cec5ec832868bc50ae45f4a168089e9
MD5 98bd20fe43fd5b835d5d76eb97f6ded7
BLAKE2b-256 252b20907a77c99cd70e8e772f9cec6a1c9ea167142c09272d3dbfd17ffd06aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0577742de42d451437c73459879fa55a2536030be51c4f06d5680bbfec08d2bc
MD5 54b5abb6798369cda6a646a9d58094df
BLAKE2b-256 516e8bf9c7e0fd80477a966995f4e23fc93f9c70410baadebdbbbc1b894bb08e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d359ae9c9e78c11c93ab3b5a31913872b20255f33c27701bc99fd45129b02f8a
MD5 324c29adbed47092d841abeea8f3babd
BLAKE2b-256 9fb5606c3ef01d2db194c3461188a208fe0b4d6335c6b4403face42c364aa2a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f63a0bc4403407098836349f63a8dcb2a7c9ec01ea8f91502a014c25fd6308cb
MD5 3f6ca54135f58199ede75bfe74af347b
BLAKE2b-256 461331aab1a4770f06b8e87ba0dc9ba1a885130d2e5eb38b0b2dcb5421248681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 501c0e9f068bc14992575dd9fd81cb5fa74703b5fdf8cf8784f37ec02b87db37
MD5 bb7365561be059cac42dce31dc7e6e5b
BLAKE2b-256 f0dc42c775d84d87bf1ff0d93d2209712597eb680166d00efc97f18498c89fa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 eb48a73b6f737ec81bef7a4d7e9f5d09a885c85d72fc631e637c345325ca0732
MD5 6eafe3555cc3b9c4a871b5b4ffd39c4b
BLAKE2b-256 689d92fc6bdbcb51d95c8ed2adbc498c81f99f6dcd10fe4f205eae8b893ebe1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f002b1f6d7b8be5be70a06bb3a07d668313a5ec2d668131a6420b44cb334ae8
MD5 8a3296341800a1614c4e463d17ad2e38
BLAKE2b-256 f52f7416c48a80e57a90d4795e6f44c665c6fcf4adc17d0b77fdc16522d39b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a66d2de607a5ad253b94856e24c1657770ea857aa4bde9fa50d5d8fce8cbb8c
MD5 411ab2a84c51773f9a77ccace8722e49
BLAKE2b-256 454fae0850a5ad048b236d80287f76e805d3d442c0831b7f310049cd2ffe48b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 6c0abd4fa25eb720462b2557026983003b9c2dbc9127366d158347d3dfa507d6
MD5 9183d69ad723205a0d16ec01bd371fe3
BLAKE2b-256 ce0f53697100d18bac3fdfc1528c022b121a312e8975693413c09c3880c8ce97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 278507d5a4eabd2dcfc4b5e533e7fdf0c3d41fcea9b1f621ef66f85efe7b8530
MD5 598f6fcbc19b9b444ff3d71573f11a5b
BLAKE2b-256 1653671c85fcd4d361e200eda3846f229d678c293257fa9d90139517ba74374a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0e95ce4a6984a3311de0740212f5eb838652dbc1b77de85bd884a7f58236e22
MD5 d304070d4b7e67d7e4946b5d61a84211
BLAKE2b-256 36f20eae660f84cc59a2eedbacdc0060741fef90aabdcca6952f16a4645daa64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 65bee9d856a45bfee93b0c51fcef334f1a1237265d6d67321fda8afe519320d1
MD5 d15d0338b0c8807adc8cc5381f4ed95e
BLAKE2b-256 82d07217d22692ab6b8a7639e9ad1ef21579adfbfa6daaeacbc92d93b537cd16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75c2ee4a5f1833691e87a4ccd27954aa72074bb6ecf26ba4a4263e467d174421
MD5 5e34f9156bd6c65e2a2b53d39fa0ac06
BLAKE2b-256 7f2331572dcfa2fc5b0dbb540e4d4f69bd0701474885c548ea61e246619dee5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f973927643244dc1224872ba03a3ccedf9a55fa3a35a1c4e54f4d90693a948f
MD5 c05c577d325a583baf259e7224c86041
BLAKE2b-256 612a8b5fb9a1660bdde72949daa3c769b63b512fc5c6a3af3992e010bf216ea3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 062436388362876c70aa54da4f6d862801c981561d7373951e77912687b3eabc
MD5 08c08248c52a20cfceacbbb52c228f96
BLAKE2b-256 9e4eef4cc4ad5ffbb369573448da290437fc54022059087f182316baaea67657

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1047bd8102ab8fdccaaa420214f3817f45582859d0d0d428d31c4f7a4631b094
MD5 ef0cd0a5556dea0e22065d8a573e6ef0
BLAKE2b-256 28c07a20130a3d065bea7d455c0576396c387392f391fc6edaded76858a29ec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ac33f4859473024a49cdca29be3f6b47f3535da56f429077934ea77fbefa84a
MD5 ba381d0baca360953e40f97c86f1f2b7
BLAKE2b-256 027998cc0a2e0d27fd12a58fa16d0d39b6620ecb2597035b4c1c23bcf245f8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 55bc8f1d41660c6e6fc7901b3db9eba9fd30c2630e3cd0d595c694139bf9027f
MD5 8e96413858e2f626ffb01810c67f8154
BLAKE2b-256 0fdcde48c7c1fcb3821b218bd7445562b7209948c713baeefd3c70732a7526b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 351ba3a3a05948e2a41d5a9627e8ce86f7c430eb45ca5114356c1b33a1252065
MD5 68429333042d3dd75590507439cfbf89
BLAKE2b-256 514f923bccef18b9a92ed56765c54cd097eed18606d438c250609de22bbbacda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28babe048fc582e8dcd9b172d5da0d00ab2ca2176ad2ae89cf4c31cb665aa129
MD5 80c69e7855843be39f3c206ddf51f152
BLAKE2b-256 972538804a7ee1536fb00df41ea0c31debd1c506aed678230574925592db3e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 236bb13e15f7d9fe5e2f6f23be6994563b49b91699a8957bcdd9974a1133c303
MD5 e5d5699363b5c4dcde1ca422824b91f6
BLAKE2b-256 f704e52b3fe5f7acaf9df94f6de9fc2ed9fb7a77af60b1ebb7b5281bf78337fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 278b108cc6c027346a38fb453747ac9784be97d15be2256893f04c7c1ade4191
MD5 8706f2b3b0ea39085497df298fd8f3ca
BLAKE2b-256 243c3db85eb694bb0890a0b860c3daa9a159c1a26210ffe7ba58a98b73d36cb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 815a121e13eea2c94520ab5771d9a202c1899238e385091f14862364eeacae37
MD5 dc0206a83741fcaf482e5ce1ca6b75e8
BLAKE2b-256 a8b4813db4617666681b8797739dc2df9b9bc975b7e70a1ce2ab880d3e7d8087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2388442e6342b409bb933c8bf66d1e22a21a46bf8b608e72dddec5558688e02e
MD5 b83382abc445a59347fef0549296885c
BLAKE2b-256 d385e1911673e52eda7290fce16ea2d77a328134e1fffafad937a300dca9c15a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d1c32b27826db12ffe1107ffadcce813ff3ea26aedec7d36ae899f3e0fc5eda
MD5 a686f7477a9d89c2f7158a4daefcb07b
BLAKE2b-256 2cdbcb35650286bc339f98c69dfb41c96bb3b496eb0ad36c368870cd832851bd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe6fe9c63e57b6fdd0d931c76675fd2215bcc0872d41f3c85cf3bf8c6238e2f2
MD5 7cc48e7cc74b88f55d2e635554d73a04
BLAKE2b-256 1796ef34e86e3fec365d6fec853e6e845c1104ff0d2f18fc0f34bd631c06b818

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 59f804ca1e2d78775ec9073362faebd366d1c46b7ad2d96d0ad594fb09a60c3c
MD5 91f5d4af481268bf41f55e14a18b404c
BLAKE2b-256 bc03c91cfe2fd1db7841ec3502bbedd49fb181d11e13228d0b2a5726ddff7c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8821cca9195ec4b5ed2298a0ecbaa6e35801e0d1d81e0993d631899335b783e0
MD5 9d306165db46d45385e907f2393c46e3
BLAKE2b-256 feb20691325bd89d86c62d0900d3e742bcbaca6ad36a0a289c660c550165e267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bc8fd64bf499736a2f6aaa372bf1c2641319feb2ec0f3829a945b948ed602d2b
MD5 3401c3021805fc93a3b87a6c7e9fd586
BLAKE2b-256 d4cd8197db385eff325704a452148c05e4e0e858a158fdb8bf4df9412926aa53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22a55806b9366d92aa2925d6e98641511eb64c3849caf657a253c5d41e6dcd85
MD5 894bc183f239dd85648a7625d7008f9a
BLAKE2b-256 1162c7a641757a946e4d83730cfe5039975dd8cb877512cf84869fff98adf76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 488b27dafa10bf380eded5366fd1b2f7ae539a1e0c4bff265b6064778f0a9ace
MD5 4a6368209e9718cf6560fbda40384e70
BLAKE2b-256 111a0dfd203b0fc2afdea418ba17eceea39ffcd580e5349e48c310c3c72c3dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ea5e21a0cd81bb8eb320b88b4e670467b7178cce288774195281fccb6790e69d
MD5 dc55d69eadbe2a95ddb4de5bb2044e58
BLAKE2b-256 bcbab27f7dfdb354aa09dd29276c8ac3bffda35b5456f5fe739929568fd17687

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51e7ef227ef520b79b286bd4d878bbb41e211499662fdf77efcf81de8afa7093
MD5 601304e95acdab11697babd407da4f90
BLAKE2b-256 7ef5e16a53faa36dacb662c698edf4c70e020beb7700b298b08ae583a84c2051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d7e6a95925c11db0684d7d83c8736c76365976d174e5a9b7b7309ca06ae3f4f8
MD5 6e3a830053ae5d041a8a77b13e3eff8f
BLAKE2b-256 86b0ce9ba959dafd02a75d7b489494de1a65d932874f3f7223115cafaa7a6d20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5af45b1aa2ce28ad4ae1355e3534858b66cd05ff9f9c45d15b17b913907e9d37
MD5 4de6c230999183efddcb2b58d03c0f07
BLAKE2b-256 62e9be7d9a7292585ea361bdbd034b2b21fb8cdf116a41d62722b41ffdbcc9cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a53a6f4b23c2597fc12fc7cc1a41ccd7fbbae2b678092f38eb9d53476307a963
MD5 7b41992578fb8f96c5b1c0effd859158
BLAKE2b-256 9bc8519db3ad6f23bc3d99fa18869a073040cddee081eb3f814e2a6760118b68

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b1be2c98cb302b44ea4f6c320906a3de6e46b0a0d0a27e4223a820bf209e5a6
MD5 6a5116b3e85168f32ab6f58967e9b387
BLAKE2b-256 05bf74e993376e62e8135042fdf8a8b47eca0f5fcbdf5bee67c6ea05582a3150

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a53d3f1e04b8b67ced5cee5c70414facc9daeb4b5ca773b9bf117dd7db13fbf1
MD5 c83d54b3a9cad22108220ba540fd64f2
BLAKE2b-256 fecf877fbb54136c83001bc6d3d7e889aaa8422a3f83c43b1743479bd916b663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 214b23daa51a7f227c980c54c25f5adf01c66dfa7c15a11a9dcd923fddd219a9
MD5 e4245eeb87d516edfceb083409dd4efe
BLAKE2b-256 b8b2137318fb55e6fb73a7611ab263c35b8f93c0e569e381202eaa29dd74b642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 66af2b86b43e189fc2fbea11972b413af8caf5e3b793de08aebbd919de875c08
MD5 0548ed41c7396b09933567895a94f483
BLAKE2b-256 9c2c8b18a0d39ee5e654e2c7338ed62f4b9c44eda80a7acb8d96d708b944727d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72f98479f66665aa7e54226249844527e63281ca63f992891fbfefe1cb87bb0b
MD5 980acca16e8b15990fd6685b1ce82390
BLAKE2b-256 7abe6809f44c84c8c0ac36f0db9c81c4b236b5999078d8797d2e82717999eed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7597315fe1668dd02732472b71676c032737b1334751343739a0ec93cb439f0
MD5 f28d71235fe67dd1f3e57bb6db1c5d1a
BLAKE2b-256 c42c8f21c409f768aa9b87881382357cf8c3856bb4d98681238c788b044f7489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1d9b030932d107445915438cd9ef433794143bce12c3115feea8dc41eb273649
MD5 dda407aa9a2b345f211a705805df51b7
BLAKE2b-256 b7e3976dd8aa5242d272ed658a80ea3f73d67a99146a29017826f6d4a3aa39d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfeacb3421b0882861e799d1f0dbfa38a0a551ae89f3b297a52e9c469b639c01
MD5 3f2b6f26a590d78831fec235cd624bbb
BLAKE2b-256 e72a252c66eca8c092097fd5d9901e2980dc381b265ba1f893da3202d27a6170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6f01e6176219b7a542ac38152c7aea44b1b9de97372826a440f0712b13eefb20
MD5 328377ec5def710f594f017a4bb8a063
BLAKE2b-256 2840de4b88ae0b65138a071b552b127f982b7538e2d1e4e16d7cde10071f34e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee94c5b057c533b8d055bb8318df3eb28881951971f089e01cf0ea96eab4bc9a
MD5 acbab4a1a4a448fc0f3221af3238b218
BLAKE2b-256 3ca2faa447671c7b9e1a4cec034a89ba47b41ffcba159e58e30769e83b54515a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abef8bcc67285789119d55814f5feadd9c3916d6284ba7bfaf29a582d4ef8aee
MD5 c8cdfc48519394b3fb54d34b3fb29824
BLAKE2b-256 5f57b04404a54bb4d81e6c7b23994c9b0d579d2adec3afce60c4e5b2ab859630

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e9c0add87bdc11c8919cf638ad6a0a5952317b004e8978ebc550629a36373bbd
MD5 4e7d49f7e0cdec06c05704d5140da27c
BLAKE2b-256 9da146df9fe4d8dc39bb3910c8ce5eb0d899bf2695bcc1b16feaaea43aba96ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.4-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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9d3b94722587b4501fcbd1838bcd7e6de173c35b3ed85a61c577dc2b678da567
MD5 b250b72c026ea17da33e5e8ff8f98e67
BLAKE2b-256 917f03f371def22b33fc0c3548d5a1f318825eb2face3b9d60b195dc7712c5bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b1633565e16d3ebc42ecf09e691e1ccea788cb28dd1fa5fa2463aedefa707a4
MD5 14398acf3b1865233e7a1e786aa73fe6
BLAKE2b-256 bf48d74ca1a27bf9d104aea8b0a16b65bd9b179e81b06b5855ee988e60d23673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6d01f2fd7aa0ee3266c5b5d61ae37c0855c9d7bfddac2952a8b096cce9ae5cfb
MD5 c442f97237ba05d3e9513643c734cb81
BLAKE2b-256 da69c763ee7f39706f214dac3eab03ca98de667f599e8467321715dcbb9e5b7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c8e0a7f8df9363cf4ef3a04d1117712ae310b9fb59071f3f0336f7a06d4aeca
MD5 2ca1754987d8423f8faf6a39768141ad
BLAKE2b-256 3f038292521c7df36b4b7e2ad8659ff7289e843f068c7754e39ebea2e2feb027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 909c8edc681c9ebff04b50b7cb5e6eeef4043102884006fecb0f5117d32e5da2
MD5 f5cbd40e1487b21cbd948bd4ee9532fc
BLAKE2b-256 7b09124ca2c09252a4f53551a8dadc19f7df1a08112d6b41edb49844672d5af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bc7f73d70278fc87e7f5728a1a7cc2e05ae01b6d423f78528a65c72107439975
MD5 af783fe52dd36dbeb53786fc8bdb5e05
BLAKE2b-256 43c2186d7e1b1a4aaeecf6668d17ed8aad7f873e760b55c20ea9e4ee874287f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dce3f9d7b3b3ce5cd7a9e20170e49455d96b3cfed1588b9159829fb112d7c5d
MD5 a9326bf32844a1681daed47a5a25413b
BLAKE2b-256 d5f5245082f3999d262a6dd703bf1cd82c2f4905c655844e30bed7bfd2b1df1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ff32c28f0b9fdb9ce38ee8456ad4e2750e7771e5eb9c94644f40f1e886c230b2
MD5 3e3e9b04e0c6a927b290e248800411f7
BLAKE2b-256 6d5229c24255da5e878fa4d790850bb18b238aef4f3d2e2fcf4aa8b4ca1208aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f52bb7cc387f22a2725572cea9bf9cf2f0533c4cbcfdd36f30741e32b20f9dcf
MD5 797b1fca6d2ad258de10d4cd40856e51
BLAKE2b-256 13b6fd8506a5fe3ec8392c8bb150d7bdf3a1551017325ded65429e330b318e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a580dcd9a1a40b1e66fe44a193f6f0f81b7e79cd13460eb292af36ad2105da
MD5 db6ba0fefd4b452549fa2d0582c35f72
BLAKE2b-256 4ebb88633a7e063bf394d9f980dbc298f5d69f1b1bae4a12cfc255242942a4b2

See more details on using hashes here.

Provenance

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