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

Uploaded Source

Built Distributions

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

zeroconf-0.149.8-cp314-cp314t-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.8-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.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for zeroconf-0.149.8.tar.gz
Algorithm Hash digest
SHA256 7891595f0394c3495c962fc3e0475637bc20429fd361f49eb917ff72b0cef1be
MD5 641e4a99065ffe62ef3b2d087f11ad44
BLAKE2b-256 43d82a0599e40fb6399d40e6c38478b35f4b3bda6f3872567eca036f83f4f5b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 3.1 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.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 060c13fa30df7f44064e96399883b3d50bcc6c7436656ede8f8439037e32257d
MD5 4d50ea51ecf6577858f60fdf0bb3838a
BLAKE2b-256 33653023593bc80f0f101e7397e8f4f58e34d87716b9dcbfdd5609b44a9eedfb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9d1ada0df6940c005b0db7437d94ef7a4076f872f46367d504fae458e204e932
MD5 1f134ffa17093bb80d0f5fb90eaf0ecf
BLAKE2b-256 341c28033536df7dcc49715291bbb2ba5ee44ac160ff2085fdb06e4e6b02a0ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 140038e4157f61433ca875df4cbff11c8a780907af80e3103f45a4eba099e06a
MD5 d7cf343cc3131df1676b3952c1f9f757
BLAKE2b-256 fda8a58706518736778d72e2e8247a6482122f37b8d8c1d2aca7c8cbdc7fd12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d0a824689641eb8e9253eb2ee2b2e1221f13af1aacfc5707782972e1c5571c90
MD5 b7bbaec6dc48d56eff78722cf583ce7f
BLAKE2b-256 3c4221511fbd37a9ded2c041f97de89e3587ba5c6d62d61aca626ba3a93a7c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb82df0c62ec884481fdeebfcc3a6c2d0f4bf32bda0abd87d02087745b64480d
MD5 8d5f0ae9f349f47ce6bba8df625023a7
BLAKE2b-256 327227c4599db33d5e3359a5b9020cbf709d1f1a0869ce12d0bb799556bc1366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49ff8b99229cc8355c3ba07224db225cfd39376aa182fc3dfed4c107b2a909bc
MD5 36a77bb8cd17473730786758133c5db0
BLAKE2b-256 d69fb928c5c56eaabea96783134db5789f7905e2691fa3fff4e8276702d565b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8fad5f89c7b1edd0cb8108f63e8f0a5d8704b862bd335e319112ea847f0f5a6c
MD5 04d9c25b87e36be3e61927b849ef0e67
BLAKE2b-256 77049c95cd83aa53d632ce7b0ab49f39867a4d51a19e16408f1581a5f405ef96

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39fc98b241073eea80bb51f38dd1678ef9199f227aaf92d162c8eb41d125665f
MD5 55869654b57e88278ab49c62d25272f4
BLAKE2b-256 e58fa49666edb56db011700b0b5dae67d9cfb7232c55117f0beaf05020ad6ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 50fd096dce3772da1040c368a2dbee706ee0aac24942654af69d2fdd491f1c5c
MD5 fb6a2d4bf5f6d2157c8950f43dc74df7
BLAKE2b-256 d97b2fb865ced02d993b2ee45519777ae3c9a3a71c2d67c444a89d51ce821f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b8008e5d36cc50ea98bbf7dd18c4678c66cc3056fb6e22cb7f9631eb660084d
MD5 f2ddc80ffc7c94c2c7f5d490a9208f25
BLAKE2b-256 0921e272a418c8d8ece687113de7630ac5369e5cc3040818e8a1093ae2ba887a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70cf691e9d9cba3ef266aec2f5aaad70c9f901b97f4eeab13c9f3dd29bc057e8
MD5 dfabfaef91c69c292c8cc37763c4380c
BLAKE2b-256 df09ff014eda69d2998e2ade842ed55ac9b2b8c5efecd8b3fe42b2655c4b9f8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 091e7d3ae720b631473ed3014c38f1a4c265d2c6847d0dfa5490c16625a75685
MD5 697ab61d9f9f6211a11b3bd6a4b535d2
BLAKE2b-256 b5d8af042263f1d100f153c940a1aa948c3bea5876d60ebe45cfba04bf09508e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3afc7feef8076e5e706c06056ff8848c9938df0e42f3821ab9828d9149febc12
MD5 0eaa23be8f8607999744df048c004453
BLAKE2b-256 50928e4452999d7576b61722186857713129c841ef17b48201fb7a3226bb45a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05ca7139d7aa9b336593f8db8962bd8edf6d23cbecf95a982511f04b428204db
MD5 a696846ce8937f27097cc1b478d8082e
BLAKE2b-256 86a27342cf1d118bfd6a620a38e03707cf8dc656350f88074f2b785782d6331a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f41001907bff10f2caf9e6daba8d78e6ba66ea977abb0fc2560940c7318db6f
MD5 b4c25acea559b6b325142b8d62210c79
BLAKE2b-256 90b4ee12b3e95836eb1909664a710be402a3c147e5d3c574cabbbea001122543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0dbaf8f26263eca1e23dc199327d44192605767dd5850e728962c23b70aca78
MD5 14f0a417352067bf16414642fb76f312
BLAKE2b-256 16549c0f2095cbda1f92749d59c93e689a7ee714ceb918ca5d30a726d7dca7e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddbee5beb55517a583aae7a8982a29698d81a3fc4a30a0f6d56864e25b25c2cf
MD5 31c191148e0352cfbecb5dc138c6c822
BLAKE2b-256 3c7d6fbe86fd7399c218e96acd600edcff3314ed54967c2924743537236a5c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 57e23129a15ecf05b3333d27f9b49d8473bd05ce64b3b1f17545163d4acd3d05
MD5 ae0547f449bd4a6def04c25dd1c25a65
BLAKE2b-256 f0a9d3d105adb049ec11a6d53fa1a1ca7d1a3ed2987aaee5856fe8d28b915294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dde01596738982bf4e7c870520c2fb57ca632fed1810e2322189994ec817b44b
MD5 e60f482661c08fd3aaa437d60020ec68
BLAKE2b-256 dbde3840b8297a91f3c2bfe44ea805d2fbb18166356cc9db1dced92b3771b74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baec4bb0ec8d2108cd7a2435ef81d9def9c51b18a476da6e73482f9f1261fb59
MD5 0c8cfa6be90d5f7bc696578b5fd294a9
BLAKE2b-256 aed9c1b8b44844476886eb74acde69fc2ffbc4925cdf502e2d059bfd1026f391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 caa4c3895e3b74e5f8d1410df764504f39f5d98585c15c32b38ffdb23912bd52
MD5 b2079fe580848b55dd2c3010a49df149
BLAKE2b-256 c231b00e8152725b54c839248360741d94210888e454f3078c474e54da0d921c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75de7e69688f73a74eb0fd06f7796467a5d64f6c60a55a1dcf139bcb1f65425e
MD5 aa2b3804f0bdbec9207547c490accd8d
BLAKE2b-256 541a6bf29ac78b7f10df8d886e3951da1cf93a18aaa654d2f7b51f8d6a86543c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1da3bb04e698a1607ca88c5b801eab4b08f58949c1a9409adb5ba4c3e0bc35f0
MD5 cd293a873583e2b9014fe25a09a2c663
BLAKE2b-256 0796f3004c38b75e95b2af2f49ebc4f6acfc9552980e0dab3929eebccd5af2fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55c334556ab980de15cb715179a3954109dab18b5acef06bbceb85ce68dd4acd
MD5 e4766c8b500fae11122715e6b3c758c5
BLAKE2b-256 f1933e2419e0775699f4a5eb6bdd539ab6832fbc317312b5b47a958e1f79951b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cce930abec3341fe3aa9c5dded8df4615f0c74efdf09a00db7895ea84162c16e
MD5 92acb4bb6bb887df00e0c454f27064ce
BLAKE2b-256 e5ffa1d03734bb1966d10d713d81070335bfb3efa152257b25de87b73711675a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 809710e0b3a19682489564aae5460c182dd2bbfffb7d540902a0092e5edeeb83
MD5 bcb6a49891b8a6444ef0cf518b7b1a2c
BLAKE2b-256 eb5b11851aa672a4aafd484d98f6090eeb8d8c43769da28f30128e639d63f994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0c6ca9a9aec258f8e0a1a122319e1569816b93d83a75bc52da6121a6ccfe70aa
MD5 5d1ba9ce6bf92a82909ad11533f99461
BLAKE2b-256 c035a7c83195d2b50186fc872f8cd9d8816e7bc02983ae114d98398275b15a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88426cc864176701caf419df5cf6c33b709a37b5f61b7cc05cb08dacfcc163f4
MD5 4d4578596cdbb9fadd17948407890537
BLAKE2b-256 eafb545dfd4ff24caf5a40d11559352b1a50bf95f7081886e0a84977d96be528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aeca03b0ceeab84a3fb4e8bdb7f5f2ae2571f5eb14270f22daa7e20f0ffd045
MD5 b3c84ecafb3ca6783efb8065b20258d2
BLAKE2b-256 19a59c124278f1f3e53af34079ff8d80b99571cc5aef3b6ae865aaad7f943e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 71e91e34de6faaa975678598e7ae50fc6cfb67367d4ff4826a7417831b648389
MD5 09b0d6d049821ce0ce7d041a5620290c
BLAKE2b-256 103074b3ba57438befe5f7cb6d9aa3b911b983f656004c606b0c02fe3a61e3ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73ad77937f02dafe1722a42ff347af633169be7477828a6d74bbbc519538da82
MD5 5f920653bd016dca30c26695e3d523e6
BLAKE2b-256 51444601cc6f6a3c97344c35abc00a0e9ba2ddc8e1048572c5343de3f06c3715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e81c6b9b5f2d99e2326a802dce420e6484aca1bfbcba8b44ff7f5c6a5635321a
MD5 7e7ee056626a2a0664c8254a80e751ef
BLAKE2b-256 d9f5e587dc693c6ebf20878e3b687bed20a68d220a4280872f68a7beb62ee4a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 267ed7fbfd2076971bbdbb485914daaba6e4a2e16a640e29a2fa4f8b4ac02713
MD5 73a52f5300dfe95f12275bbb8e7f7bdc
BLAKE2b-256 d3f56c1da0ed1e22f7e33acf6e9e656ea6423a9b1b3453735f58ca102aaad19c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73ae27d63d7c24c111d7a02a54e70942dcb91bf17be60f1923cc945f469b6eff
MD5 8dc546e6c6a0a552cd38319120b84edd
BLAKE2b-256 a8c7e9efb09f84a82ec08758066d2cbf4b35496d388e8a6eb1e7680580c4d040

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e95eefdb16b4e494bec0b7b0817c593eea3feba228f821cfb7eeb8f1b1a5f8b6
MD5 7e52d891e04c3dd04f94bde6ae8a3b72
BLAKE2b-256 92982b25999a5dbcb74b2a5d0f19532ab1595ffef8e24bceeb56569782923c01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 07879e132d1132660f79be64a148495313b2b7dbadf08c72398c7ec5861ebb33
MD5 aa70f90eba692bbbe920c97f2eb8dd18
BLAKE2b-256 a8117a0aadf5906eab86308f5f22add71a2d483c13b353e8e69a768e6fa9f45b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ebe39e400478a802438b45ab0e9a7af94d97ed37fe66d4c5479a7ff83db43a9
MD5 ab640a2178eb0b79b6f72b0e7c593a5b
BLAKE2b-256 c95d92c0fc6fb3a813a7b9a1c1919e558e12d04cd6aa1ca5cbeb719c33b59dcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 81e26eb9abf983df82dfe020ac0d2352700655f210e390c14f8dc8576ae62e42
MD5 e69ac1f1fb7ece53ad436da30794837a
BLAKE2b-256 e22b344789449620a7b2e3a26a2f250eebedcefd24a7e51be8a31ccabc1da661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97d527ce07378e84f5ea563e7163ed8f61d35269ba86d866c647b674f59de310
MD5 6ae1f04d0c10408e5b99909805dccd19
BLAKE2b-256 7ee75a6cf0995f59540dd29963acefddb0f8bb5b9e68d1a561eac176f12abd4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344a277ae60083081cb0d68f874a0c55b06b4bbd5dd47adb797d7c7c4fefc736
MD5 f858bbd55f81c31336b7b5882e5602ef
BLAKE2b-256 3ddf39382d1ee2dcbf81308358f7288ec01e79e84fc29caf0373d395f1a2cdcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7287110a47039e6081f3d3468d1f17ae34f22fa21b98bfced5b06833a8c9026c
MD5 26e04d495439a807c3935f7a3249e487
BLAKE2b-256 46f80d5bf615557061b675fca8ab31fd8c3deda2c9cac17f2ae92341f3b3875e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9917eb9cbfb1939df0b93b4cccc2dfd4490e020c9d2c538aa51ffbe4d3731315
MD5 1f7d150bc3b47e7c4064c60888839f03
BLAKE2b-256 5e3566aa9886a1f713a4a62c059bd6e481c6ee1635e1f71c01bc3422580f3f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6201fee0bf8d6fafed473ca93f8f9ac5b16ae9ced8611745060da826d0592648
MD5 43d532882ec2fee9c032ce825dcf88bd
BLAKE2b-256 d4863216310fea2bb19601ef644174ff4ee02f99a2795f46e90cf55bb8851055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6b104594c43783b4fdc06bfefb02e55cf72a8f06a671a547940fd878aea49ff
MD5 980ae1b5add0f7b2cee9127e4f1b1eee
BLAKE2b-256 504e9170aade73cb0e001070f2d4f9b09b7e7742cf7c29ef35d9cefc30a6dbfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dc2616e232e13f60c5af2fda59ad3c0df39491883a1ae0aa6c5f353773055d9
MD5 ed718b8bc23d284b8d1027ae42c6776f
BLAKE2b-256 cb43484f5e3d8e95cb3feffbad75fce243debc1b5eb1998151ca9abe37e37928

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e5c32a75ab2b7f0fd98bd87e5ad281817efed032b9646e4ca5a25c0936ec4ea
MD5 533baedfb6b0eaa96e98657b353f2d99
BLAKE2b-256 0a3b8069c199e9af3a07deac8435b6a9e78d5d21ee57c29ba190029af64ec58f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 49a47ee8ece5d0b3d419da7c02d4bc8912e789f9c1e4f899dd9a0e106e5aecf0
MD5 369789d51d08bb8b2f70cfb4d78ec0cd
BLAKE2b-256 df81d6beed75d15d779953d8bab3febcfa4febf90b50817b9d4c5a36c3cdb67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08ec5cd1b569f3017170c67780281580eb97ba93899b71401254ecc94558c2a9
MD5 70aa9e82f465de6a04dfeb2d0c98150f
BLAKE2b-256 da7dce5fbf25cd3b4d02d986d1e89d856f2952d7bde60c140a86ad25fec297bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6fbab2b011025d845606ad632f2201a957ce4ccbd85851e342b493e08314bcab
MD5 1474b97627618aeb0d8b7bda273b4e8e
BLAKE2b-256 5ddd68af1752efcfff9d7d23ab20c304696df3fdc5482141557e0c09f82d0824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd07cc6775ea9c0d7c01dabca70447e7413be48b897ad47741d5d2911f8930a2
MD5 72a0b3e94c42bddade9c31c2d58586d6
BLAKE2b-256 2a445897261e53ba2f75bad441bd445a7e3df2afaf77d83cdf0518db1e1961f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c663d2ea39a52b2e30f79c949a9274e7b33fb52d8d298ddd2f6fb0b101912600
MD5 2740acdabff6da3dc65b3854c6c32548
BLAKE2b-256 47830294afcb00a6b7858b2f62c007c24bdbf85acc70bf4434d1f2cbe4ef623e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 77570563ff29e17ae6d6d8bbbef3e933fb1aea77451eb5e6ebfb0b05287049df
MD5 2b9a31436d5a8a8a9feddb583cbc3338
BLAKE2b-256 ba4884c54da7f098eed9917eb641fc5a1d48b5cc0063c6cb1461983d05ac23d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75729f2ab2c571ec844b61e2b3acfe0ee95f40514ee24cf78d49b5171f15dd1f
MD5 3851142157ec5f96b2cbde953cddab4a
BLAKE2b-256 86a4c02f4613b955ff40fd37cdfbef6ac5519feca25b65f626a7f2c59d867446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 37c6525111e0143cbead54f7112f4d3b7d490276bcbfeba77a265e535ef917fd
MD5 ef43f1e7e1dff628039cbab06ed734ee
BLAKE2b-256 79f0b1befd2181dd731e74237ac3e8aa5bd15a1a40d4439d8c173a0a7b1e403e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c5ebc9866e2726dc9d1b717a2580474b7f5bbf9475b1d529863950f3dab6ce0
MD5 3fa9b990e2d8cdfef56b3bd2291c54e6
BLAKE2b-256 968f569e74cd4541310560884b66120f83de7e07919480a9d72a9057304fe89f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06d19839003410cd4bd3e427e4b086a7ab0d495707f5c9be99f169542aa0cca9
MD5 98fbc8ef28e004aa9147be82971e95d0
BLAKE2b-256 7f4c2b23b7095278d7c7239509f9298d5988fd03fc247e63ce81e8e9be937439

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6dda41969853b1618adabc3c2b7d0fd5e76bed483269e9e89bbec3363d9e8926
MD5 dfb8a187c415faf86168fde225b9ad11
BLAKE2b-256 cb52fc69f4296e36df0f54b00975113fc5848aa8f0ef597a06540fea81a38bd4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.8-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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5f942e2e5f9c80e7b683cabae02618eff61564bdecd4c5813566628671203090
MD5 27b4f6ebd302d9dae0a5aa78bdd72472
BLAKE2b-256 bd1b7efc60e16dd199d1b612d187757abae609146fcc1f765f1d6355f78b6ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2e3811f656780c2366de5df64119877bcaf69d6e19aa897b707d6d8a053dae4
MD5 85412c475aecca2a61885aea50a7a0a6
BLAKE2b-256 ed3b129bb6d4e8844442e97e8b88ee28a9fb335ab44b3d4afa578f4c6d97a56c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7320bf70c9623b809e8ae39ebbacf66401ce0f31ec8956862601b2805027adde
MD5 36f86e5cf32af7a39a9e39510d601bfe
BLAKE2b-256 6d62b2d22139d0ac57464200e0852db8c437ec254b3c1223ccb95ebd5c7c9edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64d2e43c00481f8c06ff532a6fa713bcd637f3f6c717c40468ef9c1a7bcfe55e
MD5 3d69005f3e93d561943680dee510f1a5
BLAKE2b-256 86c38a669b12982f061d90fe2b9deaaa1e8eb8e56063e7a4b4635f13d6c7c73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ec4b2fa16029f2caf61f567c6d4ab965521593a76646010a78d18038c0d077
MD5 54c373266980757858b69de8d7144d3a
BLAKE2b-256 9c56ceae02f836c2bccb8f314d810c13b737afca04a13f30c400fc58d27e5d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 85bb21920efdef89ee2b87295964c43d86f57a709325eadd5c572d1479fa0463
MD5 52c3a036ecbf1ffbb7df8c0f5a922130
BLAKE2b-256 2f0f11d6e0f7f9793f33fdce77b80b9e5e5fc3847330b5d8143d16775af2a99c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.8-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.8-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.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f86c6254cac3fe88c37c7086fa5bb5cfdb9201fa7a606da0b5b4b19ffc3eec8
MD5 2c52aecd5b6ef60b6e9bb2cb2a7810c2
BLAKE2b-256 75c4a114d9adafde79e3f9b0200fb6ae5261d00cfc0d664ab443045376da4ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 633fe262ae7d4ee74964b2e04540a6ad91b06aeb8dece4204ec5e528001b23cc
MD5 36a6a96a8914725da97885451c639c67
BLAKE2b-256 208f0941c40d0f4840c11080ebe06f5a251d80e425a71a9476a401ec827a754b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49bcff8a76e23e06329ecdfad9dabf5b20203c9e22c8bbbf0063ca4792655d47
MD5 e7133812e617f59612a7ca0689fbf1e4
BLAKE2b-256 4ceab864487f0ebd8ac6f12cbbf20f15c7337513f8024da05d903bd87d2d90e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb1c8692fe7cd964d95e7fdf94e39935474fee47d979862956b6158aa959c62
MD5 61ed9eae562f1a194650a70534dd0a30
BLAKE2b-256 99634e69467aa870a239d024d56502b5e604b63ab2c086eef508e687f94b942b

See more details on using hashes here.

Provenance

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