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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.6-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.6-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.6-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.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: zeroconf-0.149.6.tar.gz
  • Upload date:
  • Size: 175.9 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.6.tar.gz
Algorithm Hash digest
SHA256 15fd86381c7fb3ec816c07f15dbf6a0565d6d40c103385b3ef1b51204fe31cd4
MD5 4c4f6b56dd023827ef41a12acdd54971
BLAKE2b-256 b16e1a21ef1c019f051e608def15d4c44867861e0342abbcaa052c4dde0afdad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cce2bad0e444f02872b696b17eef3a0211b7f45a18c20bb3de523100c99c9497
MD5 05069f1400ff5fbec677790b48c86c2f
BLAKE2b-256 cd5109a37992e013416c035c9aa2eb853a0505d836bb3fb2888669d2d0e5eae8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 db60d1fcfc309d6a4316d40c6ba79dd3e0af0339155ad904f4ddf68db2f09f77
MD5 02b02ba5f3e02683bf70cfa489bc9b86
BLAKE2b-256 ad7e52cd8ccce711254e70bea7e083ccabbc59a83599508c9ab5634117071e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 741a8f575127aca273753ecdab140966701b0f15878bf3416c24ae87a709c8c0
MD5 9c68d3860c5716641d796546b8902115
BLAKE2b-256 ddac985b0134f1ef03b13860fef18a6bc3ab56250a1424d2f3dd55d569b59e03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 05eff684ca3c863bd8be5551545e52e0800a4b593f071fc2751605777b520341
MD5 e84d2a64ae3adcd5ac925be61ca79c4a
BLAKE2b-256 aff69df39c23c574fe000a7af53800a3f6e0507a4396f3d93bae11adacd17143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b4f1aaa47ff36fb740d6f7b4cf152415121216f950c7944c54cf54d5d293a7b
MD5 3eb401ebcbae87cbe00db41e2d42468f
BLAKE2b-256 a5f83082fc689b9397b25745ef85a40f9938fda495441e49cf902d9467208db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e3004df7ba0cabe266ecfc3402cec0809680a3ba598b2478822dc26a457f682
MD5 340a5da89f09e1a129d66f5afc76d9ac
BLAKE2b-256 4252e208e1beeec8b3153cc6937df0100a5bd202d61935b1efe33f90f32a6b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e0824ee8f974998848df5ee09ae7ccee00677d4804f1025a7ccefc5057d515f5
MD5 3c12402a888aca981be66a75e61d7bcd
BLAKE2b-256 b789c6afed23ce031a92ba4c7f8e3c460186b3e9ef6c2ee95ea3838cd70dddfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4014b960d839494042382938ff22b130c2885bef549c55a1ef28f1aa9a9be6f5
MD5 4b182243bf57941ead04d30406e33517
BLAKE2b-256 a7a17b7ece333caf059aeb0f6448939080706a4a0e491670137d3bd1102b8873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f4cef508c13f2005371100fb4cca21ba93dcfc81cb47c195dda287891899b755
MD5 ec5bc67b3d4247b576d2eb49344ddb06
BLAKE2b-256 94568ce2eab491be228b08d7d62e50d095a16a04147846ae9ce3ef304fbd095b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d27a4f0de2f8325c3f04d780b0298b8fef3962f6ea255cdb61662c662ae1d514
MD5 1b126b2fd56131bd3156d95d78c30bd8
BLAKE2b-256 58987cf8a313039fbbec1543b9fa92f40de6c70368a103aef443122d01eb11bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dab928f69a17fb1e886c0f0129b23f2c0fda86d809c569e963b55209350df7fb
MD5 15735bc38a99a36aa403031bbf1ec96c
BLAKE2b-256 201cfd10f2353b20ea935afcff2ee2bcd5c1f1e23810a4030307c1a806d112cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 366f72b95f38321da560829daf3bb37787de91ecfedb37ae7b18aa608c3d0c65
MD5 e33ab90421bbe8d636032bf8ea10d838
BLAKE2b-256 e59554c325e3b75548fddf7f2823c727cd6cd9aaa41527ec304767fc411efece

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 508a085e2877f590295f8ea38183b84a7c649599decff7d5855b7e59911a2785
MD5 2e2762c9f8f853621682824884ed0999
BLAKE2b-256 3bb76e63a88306f76ae5e42842bf11933dbdac400fe62ce098e67d539b26cb2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 336a17ed650b92792ee4ecb1bf3c148eaf2e771b90ccebfd342a596490524d4e
MD5 6e9757b9ea7222d769b977e816c3e32e
BLAKE2b-256 fe7189cb0233e5d44624ce4bd1a17050db59e74073a41334d338782843080ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8650421d8e2d1b64e1f5d92f5bf6d5cb0037197d2db02f4724f7e00586fc00f0
MD5 4e40cdda500de67504ad5693c8f66341
BLAKE2b-256 0865cd20e305f575dbdee655e2bd051c43582746edd9a7570e3a751032c26d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00f5bfcee465bafe02c85aa752fcafdad88e679dc603d801c0e359a6b3532e1d
MD5 252d7537ccb0bd12d5e65f8118ca0efe
BLAKE2b-256 8062d729a0da30ebe0ab3cc43a5ca1cff778fc117b0bff0c00b5c64a7b90ba5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1862191ab18097040fbe37c93b18539827353a7d462017af167268a553fe2be9
MD5 0c767a660047344ea47bd7bf49785433
BLAKE2b-256 5f8211ace1d22d068329084d7e14013d7f61ad33901a8dacbe1ab79dd41f6479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 8c5f00bdd8f576411f7a1c8ee24dbbc275a48fbdcf82a042941eedc13ea977e5
MD5 6510fb2006aea123f929ffd788972e20
BLAKE2b-256 79a86c1852b50d68a9da9a3388da5a99d8b84f3d7bec4858f9945fc7a4ca968b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 37896e959980cbb1a86796a5423c0af8e6019e64eb2c34147f14be95352c00fc
MD5 da9e41161f0502b4c2026f658ba4d541
BLAKE2b-256 f786c3926714fec29c75fd1ee39e4cb2fa944baf2dd39c1d5f8d372d484c46cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 753997ac58f4ca19c90e4ad0c1aeba98fcd53754d3beb5d794d996adbaa2ada2
MD5 f8b4982cdfe283f349764992e54f5ceb
BLAKE2b-256 0ddd6adecfc15d1441227b3b5d0ac54d4ee92c12a52e52b09aae827e27f058fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7426abcde0af6579c9003d6d0990928f714eaee669ab20971273a28888683a7c
MD5 9460458f1be16292ab9409cbc520ff34
BLAKE2b-256 748f4468e6f4524a114696f795cfe8af5208d6b94fe7e2155ce631cd4fbdfc88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 414f6fba487a3b9a3ddcba0e842b314f4aaea443419d4112803dccd554e61d76
MD5 b15c85327b639885f9f958da3a1e0fc9
BLAKE2b-256 1da4ee02c5199b4657e7e93fbe1fe4147c5b303def68452f1036a9d5209d48b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66671f99ef7c57b8269189d7835741f8514e780a4488acbe6268a1b96f9bb526
MD5 ee446d4cda36f2596346e099bcaa1222
BLAKE2b-256 8d0d5a314c49e2d99f432647c44c53fefc9ed72bb77093c04428b2be146362cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b7f94ff4626c696e4a396c7dbfabd0cdbacc40b16a06931f2f60461879bdd0fe
MD5 04182825459d50c232ca7581957fbc79
BLAKE2b-256 d5c04fd377629c81a4d296836e5ac216a1432eef075191ef2cff8523ddea0003

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ff4c983499965697884fb187aeb583b4f1b926c735a08bfcc463579c456e1ac7
MD5 09d9b7a7283b4d9155a1a255ce3c0c37
BLAKE2b-256 f5c35539705d148cc04fdc2d13942d108b05eabe7533a478dcabf1fedcb04709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6873348d29503223a3b8e186c410a08d6a826f0d5187965c1001d696c4852995
MD5 be6c5ef84be53d6b6e5808975a9e191f
BLAKE2b-256 c2d9d4c44919974832a661495399cdb6a1d4357010f8d4acc1a91cbd1545d081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1267dd8da7aab9639cc0c7563fe3478f398f1e93304b99ab420d923620acf2f2
MD5 2d15a090754e200837a7d13b3ba1ff7e
BLAKE2b-256 bd6ed5f4aa548fe406c32f1b9c49c7b9335d67351b41ba5c1f945ed747c4b699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24cc9429f6f6bc6e7ae06fb14cc9783e82033661e94b0ea677eadd734b21dc24
MD5 e86b3a073efea48fed6aad8692e0b119
BLAKE2b-256 1af27b9143f8ea3fd7ed88de0098907dd95e11a0720e356021f1c732dfe9941f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8311b8d52c3fc8a55dc21a5b6d880ebff3ae98e9c229cbb9baadf8023be3ee81
MD5 44a3dda7ed7f41a00c38eb19a3f28b95
BLAKE2b-256 d3965efa91097d1fae0dbd3a15fbcc1b468dde9f54e6ebbbcbdf7474a37fca63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c19e407e0d9d875ff577aca4ab3f6b8a18cbd2a96530c1a7801568213e63c69
MD5 e34f015fbac90ae823f86808177d442d
BLAKE2b-256 209b31daffe1ebaf77e101ba5455b26bf02d9d4baf12ad23b41899f244824633

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5be3a8fd2977190ff68d83bc24af8f6d6b406efbbabf7ad269ec56379a51ff4
MD5 9eb769fbead0fca9a27f3cb9e0a653b1
BLAKE2b-256 842b59714c538ff1f7249f61012462192734f3e324ffd457725f84bb2ff9992b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7530c1e43ed7772f2e0010a8312c17500b23c35422e4e71d6a7c1287d318250a
MD5 090b1f6caefaa0651fd7c02fece08daf
BLAKE2b-256 76638d0d369c610957d82bc7d30299d9d85a5f4de4313bdd50bddbf0564b2f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58605f3d40a0f4bbdf4e4dc33a493e1586c5b451a1963c305558f3b1bf702795
MD5 d72d89cef033d8f388834756f98195cd
BLAKE2b-256 febbe56483d6781ab9a27184563751606140a114a41b77fb840fd8da1e017d93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98d350c68767e1532003e6b1cd89eb46bfdfec4614a4f34e1d5b3ce2344767bd
MD5 c24c5a376165f523ea5f2255853f94cc
BLAKE2b-256 5ae8a998bee46619f844e1fc130e261d341359fde2d60015e22e3af19351f852

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 202b0f5882cd0113c58650f9651ffd7aaba3cf0b94b4121f66199f24b3212155
MD5 9f91ddca28154fec5c9cce66c6bd6e1b
BLAKE2b-256 3014ed68b07abd8c8166a9285f67976d33cdd7d4d0b42b02d94ddbd20be1f30e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 02bd03611bb38a57a21c6e262e5c640f1cbd675dafd449393d32aedb24e605d2
MD5 0ae992ec7799893243d78b1179a20dc7
BLAKE2b-256 32ad97805b89d1a10f83d26c13be4a0629587bb78543be8dfd21f65df3173a8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92e0dfd703b711796d916e356b4ceee5c9db7e2291b3dfd4f56c1f50fbc05382
MD5 a7053b1156dfab1eac3f715c9f46d274
BLAKE2b-256 66b75186966ae57dc867d1439c9ccd962823eb00e4936cf9444b116ed27fa822

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cc2917328f7927940ee4a4bc91a22ad32aa6fc0614484a3ebbcbeb1ffacc138f
MD5 fc93ac95950e21c6928f08698e254f3f
BLAKE2b-256 61d9fdb0a1b2fe072be3d4f33e327df75434dede25c7cbf6e683bbb92026caae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 835e906da287643ad3dbc24482efb2394d3bdb275a134a752991afe076d39a2c
MD5 dab643fe80d7ae61454812c714a9bc18
BLAKE2b-256 a1af89033f0c359b3db14e1f7b03ab2e65241146c04d01678d7dddbe72d67a31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c5327b05aede949a61b0d7404ae2bc0555955657a9514230d536a44e5f7e1b2
MD5 e17f70e375142bed89841672bbd34f7e
BLAKE2b-256 2ea1694f450cdfa5e6805c56992a886905f11752c92f57d40b80a29d25c3fe90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 36741c3ccde0e9e96907d7e463ad016e62f85c5a5718cd1a62ed2191774fb4b5
MD5 55d4d26a0dd0985e12c4a952d362947d
BLAKE2b-256 ea2e8a21d830724d928e9a5717d415122a3cba54d46bc11147a7a8bbdcf7df8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcbfcfd41abc20b0ebd3bfc81b80254852cb2709b5794dd827a278cf7332b477
MD5 cddd472bed61c6848107853088caebfc
BLAKE2b-256 33be22a401927d9ed5aec3177da45e8db28473b7e1894883bf275c4b429418b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 09db836821e0eb0b241a160bc9fff15aea01a33281f89f7176a78d6633cc53ce
MD5 672962958853f5d2f45fd023a64df5ec
BLAKE2b-256 f5da31a1e0573a9a8d3c2fc058d36330d7d07115f6be41c5bfd37afd1c589c09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5866a0e06c1aae8bf0579776eddb29d4a5f273ba2174efbbc7365cf09afe03f
MD5 d5b04ac69d62425a0b5c5f8bb6aa57de
BLAKE2b-256 1cae240b5756d1609eb2e1d1cec5e1df3b82f058ba51bcdaa463d9ff877fdbff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c1abebf4177ea2fed5376f475b76689e5e91d3395a28798ea5506668825ef05
MD5 158071b1b868236e397103a42620948a
BLAKE2b-256 aff6c07e7547621c0bb36b7150305ccf5b76de5c7b07109e7fe975a24969514b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d800b9f1ecba7db9ad1d193481cb7c7b1149c556a5e4a20f1b9cce41c3215be2
MD5 a627ad7329a41ce65e6f84a4a44effe5
BLAKE2b-256 0a883ca697f8494dd0e81a7de2ff219065242390653a767a88eb1873a6a5515d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0267a8b6cbbebed01a6141c3c6db9db093ee51e76173e89e983ffc47681b10b
MD5 01b7b7dbf7b5618af68ce4d6663e7a5b
BLAKE2b-256 1f6feb6bfdf7a5bd657c79ee8889dcab55bf397f8d0d5a5e890ea0f8e32a0aca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b39c3d34011472349b9ccc218d69adb06066dfeed4ed82dbe174969165ca805f
MD5 68080f48ca00f784759d52cbbfbaed30
BLAKE2b-256 95b502ae3e745114cd81587021498d3b0f0e68706ac8210d62dda97505bfae7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c3f099d446160ac9659ac2c2fee05c772895de21631136483b8632663b96a140
MD5 0f05081099f1fa2feb3cc54bf56e7daf
BLAKE2b-256 38733ff1de36cbbda53eaf25813ef1041d41a1b957426a1eafad56939590b360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0dc14731bc713a414176bc62f3ae5f5899ad140ce0b28ecebbbe5789d8adcbb4
MD5 c42a3f5b889f32e9232b89ab5735b0d1
BLAKE2b-256 6659b7ab5125131ad6fd8b93a97f2ff8ef6bfeafd0dabfc30ea9b6b583f7a45f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c935136b8d159b35796d0e6b30295090ea7af6c91d9d3863350d086bc16da592
MD5 f4df27f831527eef71bdfebd79bf0cf7
BLAKE2b-256 30ef02efbb6fbd2d2cdad75ae87d60c002511ec93c8b24fc0b7125c24dd173a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1a898e8b14f8c1bf0063d813b1ebbc0a29b04935149255c06d0893a5782a0e51
MD5 588078c9f9e6ef0057e72c381700aa9a
BLAKE2b-256 9021e68cb499caf9ada65eb6d8a1513991a2f28db0e76220e5950ff29e6df84c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba3f062d337305e5fc9de9b424b675a3ae9ec72de22fec68666b24e542da6e41
MD5 69bb126968da84d96409ffaa3107c7e5
BLAKE2b-256 9171545545328d5fb600024b44167123783a57d1c7413611379f045ee0d2750d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 98d9d927c3be67ba5eea6db77fdb61b718b385032c61c61814c6d8f14b9d8273
MD5 e36584e40c71dff0f361f8d467d148aa
BLAKE2b-256 21c306829d5bab82ae9ea05ed70bd64c6c84f7fbb1b991038f815eb000691d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4c9492b8369c51157f885af44669ccb8bca2b9bac34513446f0013a7c466291
MD5 6b3e77ed94e2b8d7ad7a4e884ba65f95
BLAKE2b-256 d492bf2e3cbb973c8fffd5fd638d95c28870b7482bd669e4c3f8e65d9559714d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa9c80a2ac7a32a764494e94368eff483c43ae6b9b27ff9a6792e867beee1a58
MD5 efd871cd4d829334c55eca1b038f6613
BLAKE2b-256 cd728ad0d6d35ccbf3e5f8cf6d2c23aaf69ccb29de72dfc400c18594a82b26a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2a188892e0cb0ff5127aa5e8f09cd709859bd4ad8f4896fb7ac307b1a668138
MD5 0a3b91ef6bb80a787dd1007380e34604
BLAKE2b-256 193c6d5c4d9b27bedffd4a8477248d29e30b94d9950d40ff86a5280c5ff31944

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 74748601882294656f036eaedd9554eacf91c8de2ffb7412b35df2e2ea968996
MD5 95e38be757343173931dc6d8f4cb5e37
BLAKE2b-256 7449fe116ced4e65ff2212cd58758c5f031fdf641a613a026bf762908e7a3141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4342723c7998cd5c704c9c154f04e3c4558c26b31c95fa4d000c9cbe770eb000
MD5 99f566774de1b60af1f7a50b95e84ca2
BLAKE2b-256 9b593a18f6918bee161d5ab74723f17bcaea18f966805a54170128dedff49e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8911146953ef8ce927898ad8966dbd99ea88cd99627b46a5b80d8d8c447c3d72
MD5 1ac6bbe40a2535abd7ee9750faa1d578
BLAKE2b-256 809b41925eaa3aeb913c0b770149b26cf4124ffc3368fbf77ce3d0afbeed9372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57000d2367423e210c9e9301d33625caf9d8e01dcbeb244dc43ca098a456a7c0
MD5 25a16f82cdfea601f019af7f97f68cf6
BLAKE2b-256 f3278e91177fd5cbd4086ca83576eecd3689b4a7d1e9e31f58f715333dd34cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9f1eb2544eb9b536fed03b2c5127c9d97ad20a0a236194a3231353df1d61138
MD5 2eaa8de270b2c85dbdc8c0e2afaafa93
BLAKE2b-256 bb696a0a43d39c2838f19468820f7898a0bf9970f7e8a6c8fbd479156ab0ec7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c4abfb4832f5bac434ffa0caa5f138acc4b86e7a4507f1815dda477d96bc5cba
MD5 8e7f66c32b18b4409376cbfb00d1623b
BLAKE2b-256 c3751184986df241973a534e919def3626cd0a9dfa323ba9090e5bcd7600ccec

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.6-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.6-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.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dadde03a698df201be7bd10c134eb65819eb62822c598ce32b5f8c19b5bad3f
MD5 787b9570a4c9662e431af496b1ff2d85
BLAKE2b-256 3b165b47e3ae4815089fef51ade90a70b90504e37da6d302b4a44222c487a4bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a4fd8a35ac9ae190384c46ccac000bac85cf8653cf9fffa621372c98af3b7d95
MD5 af5af87d12cb817b36dc1baf63b3bbe7
BLAKE2b-256 a5a6d3dc539e7aa50d02513db10b3bb1db885591e354f80d3db6f1d00fd743de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3eaca91949c4a9fb5b6816e85fd887b37993fa353214fbbcc64034cdd19def49
MD5 2a73dcd6e46bceaa12edc102378522c1
BLAKE2b-256 50c5fcbe1602fd5100323e8a04fd2e33306ab9a3a633ae133f65fe8734179084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae93a26ddb4525b9fedccaaf3e2657a05c6aa99633bb2e1c4a3d919292dc30f5
MD5 a260433cf670a1af2e9f985647ec013c
BLAKE2b-256 f43552312219c39ecbe90715ba4d351ffd586fd74e55516b85128e48c9910e68

See more details on using hashes here.

Provenance

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