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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zeroconf-0.149.12-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.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

zeroconf-0.149.12-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zeroconf-0.149.12-cp310-cp310-musllinux_1_2_riscv64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.12-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.12-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.12-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.12-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.12-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.12.tar.gz.

File metadata

  • Download URL: zeroconf-0.149.12.tar.gz
  • Upload date:
  • Size: 190.3 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.12.tar.gz
Algorithm Hash digest
SHA256 ed3f94c5f7cfaab70ab1f8e6d6268da8e6cba6f6745217e69ee4a210f82b1fdd
MD5 7b438e56f8ecbf4f11c06ebff184b4b8
BLAKE2b-256 fe5c0288ea991e43dc6c5cdb5071a039eb045ce78deed385fb12de53ef3b8c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a17aec8b6454928502a738c3ed82f6990442665d191ff60685bc3eb93bc00338
MD5 9ee396284b6967c65f3bf9daab38135c
BLAKE2b-256 f6f1fa1e84c9f8aa6c97f8a39ca30fefba31575c830843d9c77aae01d910c11f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 970eba0a6b4c2969fb68dc0b5ce78876ec3a842df3a10be59c2b1e4625a8e1f8
MD5 3d2d5e5578ac1579099696cc8d90be01
BLAKE2b-256 ffbfa0a79855950adc14e5328699b4c88b94f3aa67296a15442f6aa06311cffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0385884c05df4790bdd185082e6030c1db7652fec5e77698b75f65dbed853f49
MD5 204aa96fb86cdc7400ca3a461d40763d
BLAKE2b-256 e2282037bb37880a9c7162d96d8f6f1ddfa11cdda38a380b65163f593202a43c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5cfabcb49ac68bbfcf90f2b2f125e384bab07a1c557da577e50eb7e15719deaf
MD5 4e98f87472062cf5258e775f5da23069
BLAKE2b-256 641388ac8614edf542c9eb83c86c77824b9219701e397f1c621486aeb5a6ffa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2734fbf3db0c3e367c54238829286c18d3414c6ff897b3fcece769dfe44aefb
MD5 8095f6fca7b317a194998e183e6d8366
BLAKE2b-256 80fd2e50fbeea425ff2fd11ddd8e474008d23fe760871ec738a5872d39c70732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d44d941f29102afb6d3120ac521fdf17d615a7fd945f2cf86280588e11d1491
MD5 d5b2b54a1705c47f57f1dc93e51ce6e4
BLAKE2b-256 28075d79fec3a65c034ac34052faad191a6129678a3e8fc5450498168c31da0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e95c68c0e629841d34c1313ae1636811acc475dd85915d407beda85e60ca3dd2
MD5 e219824fa6eb759d1fb20b8ac5d4828c
BLAKE2b-256 381a4fd8513885d5cf17b6442cdc49de2f1462a942ee69ff1ee5d3aeadfa530b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d1f53b1506b1f5454b1c9e3f4b4c0bf2e4cc11d38ab129632bc441177ad346c
MD5 01564e141181c74f792fb175299b738e
BLAKE2b-256 b1c59001da7e5c692b0d395b637f0fe933671b33b34da5f5549365f1ba8d3648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2958b4bdb92b808678b6294168e0d9182bd2c10c8fda91c9603fb129bafb05d5
MD5 8fdc0035481b196230e531bdd3d28ebc
BLAKE2b-256 49c7a43e8a6efa596417b2e1bf3cfebc105d791a8108b67b408822912852241b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe9050592127615b64dccd7f328b8d3427cc1f4f78193f5f4eb2ddec880446a8
MD5 abb12fb49a17f23e0c22cead773e21a9
BLAKE2b-256 3d88d5cb5f8d2735e6c3ca761e4e85bba9ce351f9a6d120f5ce6b1ffb4d872b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab41f3535a44ef7a4f02a289c7aa5c5ea6abd27004cb398e0618407cf32db5e0
MD5 e0bfd2597affbb51f3652b56df92f319
BLAKE2b-256 ed625a0bad6d80cce4e52c6cf90d52d8d5e93b79ccbb4fdd74972e4038b86a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36b60b3e401553b7aca567bb9f56f72df30ad54fc9cb03e1acf1976e387b044c
MD5 e14d3d2008e9246bc27b49874889eeab
BLAKE2b-256 7153550514900025f824e5bece369b42053205e0065a08dd1210f143e40aab69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 409597d8226ae0c65439bdcf1ed187f73fc6acb7bbd2faea59be6c77c0b09b60
MD5 633b14bba95a3e0066825c6cc2a16039
BLAKE2b-256 a11cf682211df4dfdb7798377c7a47dda11a44fab2434ec5349fb0b2a7d71d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09ed5ec885290b44a1bd972407c2e52858a752446957350223a7a660099d6829
MD5 a25b30a06378492bd8c4bb369ad9862f
BLAKE2b-256 5f6eb1263f5a6c2e0eff2af22f52c6b1a02443d8cc443432a64ca96c66e7e7ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 201f5829946c690f68161f7abea7cf3e26702b586970661ad260ada4bd8d173b
MD5 11bce37f7593f468f4f8e327671e60f0
BLAKE2b-256 856fcacbf85cb6430c4097181bd08bf3318bfe08c8b0b0201fa085cfb557487f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df8d9401b9afba168d9875cde276e48183fd6562789e2c874a87758a2d4aa0d7
MD5 e109b65f632975ca06ad25068de3ff2f
BLAKE2b-256 0bb9d8f1a467af4c9588d2ddd57500c3cae4271a04c3f2916a095573e1565815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b945a778603e12ce7b9cfbd22ed3ccbac01b1471cb3e5abe022606823a2b423
MD5 b10450f9f09a0348195572da6ea84d91
BLAKE2b-256 cd5c8a634b5298a1d52e0c88edfd82b59191e60d2d3ee0e5071f7fc4f37868e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 8ae4e2bae59db5583b098db6d7ea99d24df36ae69055957874fee3bde0471578
MD5 90387cf831a53907c83e4a7357ea89b4
BLAKE2b-256 93b0acb4af0dbedb35bfd440002eadb62bd8033a374d04a80e00baf5387a80db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aadf030d444d5d98e218b0e40b497ed819ab9b2c3c46e9596d4a9eb75f97a697
MD5 2244ef089c69180e0a96299b84316558
BLAKE2b-256 1a02a70d27b8f36732c15189e41e395f222458df4559c0ee722ceed3f218d6a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3c4446aac35d5acd867c6f6979432cf48232b0fed892d25c96201f9ccb7b920
MD5 2974d7cc207c619eb6bb7d35de8d96b5
BLAKE2b-256 5f7afc827fdbd851499192c1590ddbbadd3c76f3dc7553ca1121725f71c08088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 89c1a5d68130c5ca06be398d136a8a5a61850161a1aeb0566bd06477024d0275
MD5 b646888a25ac21af21343276530b454e
BLAKE2b-256 b9cff23ccd6cd4061327624ca8753d8892f3fa18d9cb0836040234ea887eed4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78da3e014a0c874ca573e66931e976eaf0e485dfb10a5e944628bcbed84a7eb8
MD5 397d67f426be76ffe97e3ccec679ed63
BLAKE2b-256 815b991b160844ad5dcedf3466736a7e1a365f7f7f59eec8f1d355f299078f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c390faf6293b2013ddfcee583973831293388b6c701116429fbb9c6ed3e6d8c3
MD5 96ca8a84859ff0789007b0b18f2a46f0
BLAKE2b-256 b2948420e3ca8241ffdeccd15f9ea58440d8aeb3c8284bfbdd84408527d1141a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92e68b88396fb08bd0f4421680133f3ad9682093f2df23f337605f0d50978c7e
MD5 1ab08355b768b888e8d2180189b6e53d
BLAKE2b-256 e97941d0c94caf0c8bf1fe2391891c9e7fbb50e9a85855b1d8e984ff9626f3e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1aca5483f8ad2eb1bedb99e32b3a4c33d5186530f3672baa28559b119f6a1f4
MD5 518891c2bf9eebe7aa90bd29ac754b22
BLAKE2b-256 5a3706b845aced091783b4f2f576da1c695549530c88da55d959090413670652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd7cb8dfefc50853c2da832f8675f10fff8b348eed9b8f98d45653ecf2615ff4
MD5 61938841ac28341c9f6556a5d694cbe2
BLAKE2b-256 b201ed26360bdb1bc18b4ca3d2cf525cb3b1a8c06f7440b65eeb5fbc4d49202e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5e592b49519b5b1a98f3ee674ecf418a7500af474a60d5999f7afe3744380722
MD5 55d9e320e4e6f4ebcb9e8a383c61c75b
BLAKE2b-256 a011225626a45a9401bf5ffbb73db9c0a4ed6be480d25942d76e8f832eef7173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44912f0a9fc61ae2a46130ffc6d37544701527a756f10cbd22e0f9ece6d4a83f
MD5 887841a3abc62ec3a67b21cc33060097
BLAKE2b-256 8e48caf84b85adcece1d205b97b08cc380db7299944de9d381f96d21e7664932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d78306b0f603f17ee15cb63263cdc2d80e52f9e912a42e3e3051ddcb1d410a0c
MD5 d479c73ac829691f5174564ed50f91a7
BLAKE2b-256 7f2210bcea519392df1e64803de8347a15b5891872d66f477c699bce7167c328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a86db04134a30738468118e8e8674512b80a25394474e041c06e9e3f75dfdd95
MD5 524e019067265a13eedea90c48fcd457
BLAKE2b-256 93a66349ba78cd47f3882767f7d6e44dbd93cb18493f179a3622088b8580eb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 949e1cf52e1441b90b8bffff8094ff72287300422f63819d61c14d1f0d5882ab
MD5 aabe7af3e4fbce78d8f61b5f62c202c2
BLAKE2b-256 d51f03ba7002ad424f6fe240eb009afcf0648ef3a76fe96465f3db36b5076cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 685834a5b003b595c515568939f1bdf378400ca3f27d6e12a9d872a95e9672d3
MD5 a8244d3af6575617b51c407e928a6c09
BLAKE2b-256 4a5dcae5d76a9950bc2f6c75893e9abf2a7f75d61c49230233c30de044091bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ca46895c6ca519114c1475cab420989b2fb033475916028de2323295cc40aa7
MD5 20fc20ddc69a012080373b45bab7e233
BLAKE2b-256 2cc3011b23172fb589fe17b8f0e126b59f5e5e74feff92209452b5f36a4f7646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 640a89e1206950f0cef81ffe2484d0d42b617e825b25a398fee053893a885a3c
MD5 56c5dbf0c2a57c220e4bdfcc5418ad31
BLAKE2b-256 ee1686473ed70518f18f4bb5f4f709028aacec96541643497bb237f48f94fb3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 536868932f57261394821a2e75eda35a3d7223313406c31a7636a924bf5a385d
MD5 bb2afc33605b768036903541f706e966
BLAKE2b-256 5a564ee2ecc71a73fb98e06b655f06a1d96ffe605413f26400ef9e807dc293b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4ea862a7f4b199ee332b44487b8b876fab4cd4b151d86b8ca18a3a353b72708c
MD5 4488389a15b5814604f0fef21fb72f8b
BLAKE2b-256 d691a622ec0a8ce10c211f5efaf57b4aea6acd085567d6fd43ad71201f3d24cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa8b23e3e511fac250f0e608124bbf605af90ed11d1514e9ce5f353889e468a4
MD5 54647c7aaa79b94e9861c53f1ccedc85
BLAKE2b-256 475dbfe5b0d2d82e2f7fb2069927da9ea2e9c3ec0dd80d9652d88a1dcc13856b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f2d7214888c2528cc46b635fbf3403186fae6796d3b9a85edb66ed45e993f3b5
MD5 8f9a46beb24ef434247a17febe1df680
BLAKE2b-256 1f8135cf3be4c012bfddd8d1ede71c6b0cb2a9d6d066a6d76547064ac3b3ac89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6983ef3dd59b23756dc4499c70a0a844b60a35ca204370a2ccd9b0c9c452d47
MD5 e83ad4616d8741e68377fdc11cb5f0ac
BLAKE2b-256 59a3267c4c406cc88436b8d5ebba2a2729a1f121e2e5b257b5ccea1eecb3cffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e1ea8bc8ac83ec708eb9552fddf7dbc951567ce1485a093441b8149f43d39f6
MD5 0452ef45393c0624d35c5f645f38c141
BLAKE2b-256 d35cc27d568b6c9631a461539a361cc69faf9a71829c6abc8909e841e2bf7b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1dface509003a8c1ee5ef1eaa3c536da4aad0a5e88e4bfbdd12bf1cd72486fc8
MD5 3f2f49ea1f823ba3c519c8c613ee1576
BLAKE2b-256 1b3207ce739b82035354e8cb4c4f7677036da0c699dcf9b960229b5df93daa5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 497b0d1a2961ab579d81143b173c4f26fecb1998b85bcdcc0f29219924395fb9
MD5 b68de65933a75b49f4bc9121a57ef493
BLAKE2b-256 c55676787a5f510089b5691406bcc4cda9d392f15a2485159c975ac0be960605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c264d16c254d079c0e9ac36ef5d44236f36461e41b8a44a745769f8942dbbc51
MD5 0d5207a8bd6aa9360f9dd520f8f8a0de
BLAKE2b-256 fd08404c1c1cf9326e85fbc59c0fd3ba70a0c3200596ec62563c7b1bab7ce4ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fc24c352632a439a6233681b9989f38776c0bdc06468fbc48040ed3492ac073
MD5 8cc0784186edbc09c93aed4249f1fa19
BLAKE2b-256 e1b922464f063fcad897b3b0ecbdc2e347ca30d2f4ee5f9d9c2d1e05d9e16bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cdb6653c7e770668c1d08a6c95455e025bd209352ecb9f03d77e592670d4232
MD5 61c5943ad713e3df08f107a4a817212b
BLAKE2b-256 ec6ef5bcdd971b71334c9ef0bc3ae49deaeb4363202d060822a522b914501fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e55184d4a86ec9f1e720b648a8b1450834e0fb42a1e19413e59257e55a5438a
MD5 112a552100231ed67fc7f65592ce8163
BLAKE2b-256 8cff7be85da909e450be3caf87632a1060984b6366103ab5c0c57dec7dff5429

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b581b91a7e26d9f90e0a4ae9292277c43f804ac5a7920c8849f1ae0c962570c
MD5 f2b757d6ab6d143467b2428d3f98e7d2
BLAKE2b-256 d4705d1d87324dd0bfc99045b5b8366295081c179eaa19bb4ff5fa580df94f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34c6c94a96378219a76eff55cc4a4f72a45c80ef5cf419e97bb3cfcf5befd699
MD5 d110a14d3cd251cacd104bd7acfa4165
BLAKE2b-256 228e0e11285a2c627f8915f916cc7e0458f4384b8ef22ac488ec6bb2adde3372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 29da2d162ac45d7b81724c2e1a514e34c0d96d9279e30eda2de8540afc034deb
MD5 8a68fcd76d69e5e3ca0da4a0045215f1
BLAKE2b-256 b674f81cbe65971c20245b042e2793223f009afd04d765eff4f14af98b740709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55c1cbd023f42f885749d6d200f0b0d05fef11f4fb7dc124c0ace12b63e53d2d
MD5 ed09a0a43a8d2816e433656bb0f92f18
BLAKE2b-256 dd20e27717a80376cfc48c3eeb3ee7ed584883a2845929bc83db7f6905fe5e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbdc075c4d57b7d903500ffd0dda1dc9a9b3bb4635674ca32956fed5e4f92682
MD5 29b8bbad87b04097487ef3cf23a34a82
BLAKE2b-256 6caa39bbf172020e61c0893fd3026c14cb5fbf53cb87615b6636b77f5fcbbb96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 863ad9accda55158b676395ca1832203496361a8fe9f8f014f4327c206d7d9ef
MD5 a917100b11ee849c9b4ea206ab847fc5
BLAKE2b-256 a0f690a4a2672a32eb46458e073b20a48566425a737f19ab588d9999ca7f463e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9795bae44e062708217d7e05802b1a2ebddddb7e94e16dd3da546353c8ea8d30
MD5 ace70b71c6d1b51165be1270fa24cd1b
BLAKE2b-256 2b49e9e29181e16c6812b6a796063d0e3d76dd7e0e67213494b79bf623341bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d36ac4613793fa76bbb0b84d25e4808a16327cc2d7c9a8c05ac33d4c4096e18
MD5 a4fe5deda170d1031af92011af8913cd
BLAKE2b-256 942b774cea65e9e6b268c5a558359d1011ba77f6b05269f20ede98f7bbbb3ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b14005e4441d1795522c5bc3c5595a7fd415be1793516fa2818c180fc7b7a3b
MD5 3f4aa42cf9455c257dc0bb8291899b91
BLAKE2b-256 17f3a6b0c113da5a7af473b0d37a965bf2334b9e7c8fa4ea41eceeb7d48748c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00d6a7cd5f72161ff1a823eb535520744f12bdec3b303e9ddbb0007d15ea0a86
MD5 ab8e4e8729d8796c6af669c6bf0079fe
BLAKE2b-256 fd97f65112db5eeed2119e9c0b00f473728deb81be9718cda91dd52e871216d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ec27b40a4c782e2af6e48808649c9870fbd3b5250ddadbd4ea505aed1a961f5
MD5 36af991d652dbeef4cae3136dbf8ea84
BLAKE2b-256 1a56c974cf3a6e03acf4d007c24d000df40d4d5b7d20fa26ccb9e58c8c485fc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.12-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.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b54a132e5cf2c605962aa37d7baf22e5d716043f963b7ec557f28e46eef57984
MD5 2c0a805a08fee83e3a688cccdec3696e
BLAKE2b-256 520e1331d680bb94fc561a4ef626d420f984b61b1498f15006a0a45fe731c4ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02226ad8280e4fc6f5101e6cf240db4742b9fcd632e6d75ad82ebced5663f71c
MD5 422891b7597c63cbd0af0d5d04052e04
BLAKE2b-256 4cf4720c388a69d1143c53ba857ba755095cc1ff3241724b6585469f54ad77b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4fa749e31db0c039740f220c6c3f8252f1180ac3e372aba7d5aaa1b1fc97f46f
MD5 afeee256e8ce02964e48076c0928f47e
BLAKE2b-256 846bc3274e5fd4b5d72a3b8566e4c2247e0098fd34f3c5b5aaf33e59bf4ae669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f528d9ac0681c8a4ab953d0250483bc9cb52d3754680bf8b116bc3a663ed8868
MD5 262f79d56520d8fba467ed14f594a029
BLAKE2b-256 00097c82f161f502d3039526fc302d102eb467e222f4a2bf554b88b320bc4092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6fffe34a57cefd3d3d4d36b2ecf7413ea648d40fbdb9deef8697a9c4eaf6762
MD5 f1f522444e989a6111fc0125f2b56a50
BLAKE2b-256 cd5d606f4f071f0042ec884f257074feb1610fea4a991519759ee0457d40b753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9cfae2a74a80c6be41529fe766be124f0ae8803baf8bc0b5ad8a9ef450d8351f
MD5 7b991004e0ca03f5d6e52ecbb78f7969
BLAKE2b-256 8888eece499746b63e15d5c4e41504e0e66d863f1ed3d4a39327b59222473b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.12-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.12-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.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a9796b09599b27ba41391181db69fd835db799b1d606286ea62838c82ca9180
MD5 8db5a2d1f2574cbb6f290d5e15d4166a
BLAKE2b-256 b58ecc5cb0916b4f997a7a6ee8f4076eca2b0f5db9c7cc6a179ea4dfd16cc5f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dcd5e33bc540edb59aee5f7dc05e42015a65f2088290b35849fad702bc2b096f
MD5 100ee893fbd84fe7df6afb3495fd180a
BLAKE2b-256 79e7113d96845d8ed875c31d331563d5d689dae89bd70ad7a0b0e724c7dbdb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa3bf5a081c47a8512a7bb2437346d1ff48b3187abacbcd915a8c9e75b5180f
MD5 da4dd896c138d076116f36e4daddfb3d
BLAKE2b-256 b470c8b85d6c5d2d94e14052d2e55eeb109a33a39c4dcf6822422a32a34d63b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d9d5c6c697604370496749504303494718ff121b810625ebb7447446c67f613
MD5 4da0a4c27e78dcf8414c660b7511cdfa
BLAKE2b-256 70ecbe27b8c4673ca8abf71659b4ccfcd17c784b822ddb1fd8406528b4091687

See more details on using hashes here.

Provenance

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