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

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

zeroconf-0.149.3-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zeroconf-0.149.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for zeroconf-0.149.3.tar.gz
Algorithm Hash digest
SHA256 333a634ec67b00943063e7bb4410ae662da9fd25d2d059ccc454ff39991e760d
MD5 71af7ff4e44cf8f4c24a4bb94cfe6886
BLAKE2b-256 02c96f709eff8433f587fe2ad2c7232e7b64cb2f4c25924b009bc2be493cea93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9a7a73e8a5b665e033eaf8241c9c24178a75a64f625063705d220f4aa37459f9
MD5 89c1a45ce18a04d2023e27b240d509f9
BLAKE2b-256 972e40cf5a28b3e4fd0b56b415e5731a082c41b687a2361d669ae38ffabe2c46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6f9223b43d752453d1fe3fd69ff8c652987c0b5183c571f75cc84fe0f246fe07
MD5 feb3c0124792cc2b0f9f576d1ad8e4b6
BLAKE2b-256 dd05a56db90d6640ddb00a6d117b53e47cd227183064ded0fc26654fd7868cc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0370e2f6351315fcc4cba905be6a3cd4c1f69d247b67e24d457a8749207a1c01
MD5 6acbb275027ef3a1f92d71463994e4b6
BLAKE2b-256 6b1ac90c95c35651bc6fb4e215fbd667cf85bc711afe4eb34fa6c8de02c06b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 57c7784998c92dc4d6317df7a1aef2069cf59d38560297623705cc8617f52069
MD5 0ace1cc640f46425d2752f3d473f72c0
BLAKE2b-256 be2b2381a93f4249449e5cf273ea1970e41d1c8e93b7c714504021751c73b590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79089802880b89dbe18f96bf35b837e5586456e4330a85b600a113b5c6d29e2c
MD5 da31aa382e51677570387e78ad9a65ee
BLAKE2b-256 5478e7b658fc03189746b5bb41ba5b537c3d897217c419fee90fb8c38ed45622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c65c9222b4219a2896c1d4657c968b014652f7884f21c8231b9c90642c8e607b
MD5 8055c577a250c20cbae906a6b729d7a4
BLAKE2b-256 ab702add250c3cf17bcb2a127898700ec8b41bf2901ae6dd907778efabbcf146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 10521a76c196ca960a1c94f96924b16204d62e89418de75896a4f79b0609688a
MD5 15399d61b164495477ab6c28b57d75c1
BLAKE2b-256 9b5f9a94f7bf18070689f4b9c170d4f39e2d0f4632034f7adb6f7fa2bfae5e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6c3b97b3ea0936e97eabb602de5672753e054ba5bd346e6034d3bd9d76b33ae
MD5 215ad74d7ba87b4f0fd513b6aa0d25a3
BLAKE2b-256 60628e9718e9eca02dc3039eef5b0b714f6cd53a9ba6f8886a38b1495d68eada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3d55a4a50528a40514a46b705241d30c071b372d7072ba6a1f7e2ef3b5d2200a
MD5 2af195baa8f92a05f83b277126224e40
BLAKE2b-256 2a80d876226671714739227206e66ed29033df3aa4129a5a8cc755d9c5409b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 920e284f092cdb0d1173aa2b7a844540aebe8261756da965a806ad2c48295507
MD5 d562a7783d35d27977affaa047f968a9
BLAKE2b-256 4e82c45174b22b6c745cf7fe20f661d2991abd5effd97509a5dd589261dc22ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e14a59fc044a42b801264eb056e811b20f31147cdc31396cced94d1116acf26
MD5 d43edb59dac3b2db82b69f15c9bbef47
BLAKE2b-256 af3a3bfef5fb1f23ba9dfadf09dc62a817bce04654ceed08e6fdd4c26a04f7be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a1faf74f3e098607fe85851ae9220bf9b61046e8833ea19228b2fcac2de1487
MD5 9d05c6857af0929f3087bbaba4b1e8e5
BLAKE2b-256 06ed0e16b767b8cc049cca5a8aaa623e378a79fd09f4fd6d9370b848a29fe8f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d33653df32cc20fbcd22c51ba1b4eaec1b9bd44e70c2dd632c1abe75a04a9229
MD5 6b4bbf18bb28d04067c390bd29abd678
BLAKE2b-256 dd9d21bac71ef27527603d7bc820638f9b511595238e15bfcfa54252c516da83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bd993f78654f4eca20a56d353a341fd29110651af6296e1722ac7787f2a5ba1
MD5 d4e42c1a672c4934a8ff63a9a3b1e8f3
BLAKE2b-256 2e2d8b9fe220cd03a1145161db3eebb32717c57667b3025c81276830a7206008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 46a8a3b6ce4238a247795ae1e71fbe08e7370b71740c5803830947b8a9dae314
MD5 ef7b21d2d7e8ea2b6fcbcc19f9dc2f9e
BLAKE2b-256 7a65de24abacd7e6a348bfdead7aa8807657d7246d1c86ae81ac0944a21a452c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31744ca60f06051672c5c764d9fb2d919f3933cc21637aa5d8b9ddacbce9ca35
MD5 f88d61de0e2f99a89fa9b912be04007d
BLAKE2b-256 e36b3e4ef48bf1a6394e3cce035637fdb1a762e6896bfbe2a28611c7d55f9ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05c2c64e98ac11cb6fdc1d2443203833caa5b21f6c9875228e16977d05560542
MD5 88c6b7aba9f5d1973a257c161bf0fef1
BLAKE2b-256 a2dc14952ffb782ea4428582e3ce32c111953da9dd3697704a30b3fe260392ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 ec85d1cc84d738898dbc1d637b3725d35ce56af5cce30d3ec82f9fafed539397
MD5 e0ee8f15578500d90bf70ac0f0ffae58
BLAKE2b-256 8effdb80a943e57a0364dcef072a9283b2e455ce125de5be2d7e06249620002a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 79f76143d073b96f62133113bfba9645c1ef55433dc8aa81b3692263936883ed
MD5 07a81e521a593120acfb253a969ea6c2
BLAKE2b-256 2b1e2af9dba49c3a2c9c255c4c9fd1c340628ee6ff00b1f16c3dca80205c61a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbc6b851a23b8f83c8eaf485e20c9e2c8e9f227c36b526870c9e789cab0f60cb
MD5 8e2d3e8959564aa359a02b3e636f5731
BLAKE2b-256 ca7415bcfd322dfebaee9dfd8ee0cb01a5512277aa4d957d2b171e1ca0ea31d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7310a4b501fac3472cb7fd3d7f711c24175dd8dc6d98ff519c6c2be17d1bfdcd
MD5 f41148771e580ed0adb61764cb19d00c
BLAKE2b-256 9264a136928a87bd8b08e10ca260f88acab97fa6b70c171caaa866bf857804a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b267c332e4b34fedd999360416ed230a7bd6abb6359bb02af517be7c49118fe
MD5 2f529edbe5b88826c1a68df8f9aeccf3
BLAKE2b-256 3a9a1068264ae68f02acab1bcbc8872cff839011ec1c6c9c27850511e2431a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f51a26d5844f082a272b24c87a84455e928cf54ed9c6fffb263c188bfc455947
MD5 f080f5896ae3fba9bf5892a9f57b8554
BLAKE2b-256 b87c1eb5460dfff8312b6f74563a464407ce0c037ecedffb99decca8d9aa2ba2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 726cd8f4e9ff57f2486498eddfa754cfe404c53be38904f63a76cfcf7ddbc3e5
MD5 ec513db05599e84f006088490a0a6866
BLAKE2b-256 2fa5bba5625d464d3f7771bc227e2896c7101599c6263409d9f537461bdff7da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ae8dd10a349cd9dec1f337457119863b554a869f938ecc78d7a31c7ba16e3fc8
MD5 bdc92cedfefc96c19fb6ef8777f08375
BLAKE2b-256 3dc898b4d5a13a213e99cbdcc60c3fb87275848465823809050f286e0228f562

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1334df35312a0134ecc3fc8bc29a21f7e69346d77d5c8e733cbb540927e41583
MD5 1f7acdffaf3b89bead6c77243e109a40
BLAKE2b-256 785521759fc4f81bce7d73e073190b4d895845987254799fccf2d0fa15d94260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e22df6cebf48df9416a8b7b0ac11a909f708acc49950f3c8082f876237830c90
MD5 1bb456e87885a3b64ba7d9d55bcd67ce
BLAKE2b-256 5c48a6ca5e70ec869a3473891c9aa47b3d76c97dc1280e1ad7cc477efddaabfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 451b93422fae8ff8aafd93e5b28c1ddae2f749ef6ca507442213545231c7ff5d
MD5 f3aa1a6ba98743d4a66b4a96118764a8
BLAKE2b-256 07703f54b66e1e8380ff5f30a310dfb93d3d0d41bb8e23fd9c8fd34205fd003b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdc073e7272cddd5dbe78a8962d3048eef9c22f31073dacf3f8b154f8d554794
MD5 fe712d5d8dbb565b4ee793677d81a3b6
BLAKE2b-256 c4eb51e9131b41958358c974e35312265a19c3a49e16be930ca0eb6663cef7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 64de899b142b52bc153c2558d563d541edafbd0a50e7a9c6ae25c05b87ec3559
MD5 9376ba1a1406a07efa0f31de211611d3
BLAKE2b-256 61241eae475242cdb1dd98adc4e58b4b5dd9985ab4caf5562f89d16659314876

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9b1a07cf923a57876e6346ea9821d6605af7a8f298cc00127c199a9487eb0a4
MD5 5993f7df10a1c897a4a1bddc02e54531
BLAKE2b-256 038a614f0c08cc3b544ee7ecc14fef1da76b4554c674d869e7b8b7247a9831b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 43229eb00bfb401c099035f5b5b837ec946c6d0ae2e7190bdc99bf3618493c29
MD5 1f960e39a6ae39140556b635f0cbf032
BLAKE2b-256 7b37553190aaa477cce671bf0a7962ac62533e7b1d56ff1865298a62f5037d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f83027dda1c935f65f1d053a68e35800d21c4a73835cef434c6db8dfb24bb4f6
MD5 a5d8f59f3b6b5a0648ae0c892d6f321b
BLAKE2b-256 8d008ecce0424915cad0a684d32b0d3997952ae8e6b85342764dee399176c59a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9622f38370891920dec0d84f34a6430bdfda2d550caf47f585ac6e77e7fc69ac
MD5 47acc441c6370e5006de324cf530618a
BLAKE2b-256 9ff3d9a5ad41d95f02cdc5d83bac706ea91e203e8fbe47ac0fda56f252deca1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5f0dddc4221f659706e23bdf4ab5e67e010d307a19ffd3ea667a62e4d7506ab
MD5 6c8f3e0f368826a2662855f9dbb8ea40
BLAKE2b-256 0225daeffca5e62534f909113762d3c4fd1b462db18fe038a207b71b01862317

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db4fa2b4caf97abafe2a4b0641980a927de328508f9c40722a875f1e5576053f
MD5 2fded9045e35cf414150ef50243bf1db
BLAKE2b-256 96614d268de74b47e01f53c8d91b1a5f0226d90642bb92cb9ec1a7a4fdb07b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 051febc1beab655fba8354d3f7a031145f3e6adf2ecdaa1bf40fb36fa636df8a
MD5 1623700409c3137cfac2533f7a6d6582
BLAKE2b-256 f2731dc42338307b6eee77889a83306176e7172f100b97142d7b65f66fdcf932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 70160f7fc791d87495a1af00d86edb962782c5f2fef4aad7eb96e35d544a7008
MD5 9fe8fe7579e9831c8d138d2f93e6c845
BLAKE2b-256 10da3dcbeec1419bdf34dad35e29892ff7ff22394729d43239c2520f658cc8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53babc5d3f8b2f5cb2e97cbeb9e6c55a79b4d17d8afe6a14d839d4e671a6ac9d
MD5 8dfb2c096cb821de3597e9f8e8428665
BLAKE2b-256 d913160c1be6d776790c5c7f4ba3a1840232dbf0cf2b7ca9d157bc0d8d627feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d705dd1b1bbd27da2a0b52625cc908f6ec38fa1896d4d5d2ec8ce11a61930a0
MD5 ac7abaaa733803c141ff381505fcadab
BLAKE2b-256 6bd9149d30c550e60348a373a9fd4f4a3077542cabe5e3df302ac9be7c00c4e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd726eeb4cde029bc6a358184dc91f98cb6ed3910c2181cb676f4feffc51acfa
MD5 cc0e9194517055e406d830ff0b7fddf3
BLAKE2b-256 c6cedcf22a0cce1a44763a113823747fd67cc8faa3d0c0b7da24dbdb70b23081

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e25decc908a549a9e2048937ae661ef862f3b87d8cbfcb07fbf533f82e7f424
MD5 bebc77b4c459db51e71281c9b1b9a9e2
BLAKE2b-256 abc521b41cb725e44a738cfb4b2c7cf77fbdd34f7984620465b5b3d868c559b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2ed47da3654595316f94998c075672579ead351e6e9846295ef045c646c67751
MD5 5846edd37adef92edf218679c43bebbe
BLAKE2b-256 acab6c365f322a4a3f8b9029fc9ea7a6235df632c87e6a9dd4916e4e4d6d93ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afb6016ab82e5ffa5c1bb8388f994953fd902423696ceef6ce40fe937e503159
MD5 7b0acc0f5fc2f363d0830d4c906297ae
BLAKE2b-256 ab89349d8cafeb5a7294141ff80a83551d6dc6db4dbcc32c6d9376df7ef2f198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0851ffda6fc493c3afe603dbd30559dc7dbebd6074e6cee6db358bb7b538e4c
MD5 198cc663d36a34edb5ec752104eaa0cb
BLAKE2b-256 6c0346287bf6e9837a7092e04e14a54e50f8634e110c1a1bfc85bd2edc06390a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf8847bd21d82f9dbbb15dc3f89b75c141a2f36fbf150a5157debcce5ec6b404
MD5 0d2b89ee335039aaaf6e463499e555d6
BLAKE2b-256 61543f4de86d64dd9d70774e559248fe51b1f234bb8bc26a96d163e76929e831

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1388185e7f287e79d9dcfb826e4527967dc137cc2373d252ebaaa2c9a7600f57
MD5 5636bf259f92d671505964c87c192e0a
BLAKE2b-256 aad88e5041e5a94f9b8ca552e324118909e36428697b5664e8db587c3869d698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8824fe264af76e68e51242eab566d739cae209f15f80c7c3183463d353eb377e
MD5 aefb33eadd40dbc624828c7f878568ed
BLAKE2b-256 9f4d83b0705b80479633d216e16ca76eae6cff0730c2430a62c5e06cf781b690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f85a2ba7e4fc7af0b9b23c5c7bc7e76e55f45c66e088fcbcd50fd117fdc76ff9
MD5 c836269d1c9e49f44f1b36fe722e4bef
BLAKE2b-256 bad416e8a863a2f87d2c3049682fcd36b9b1c42972648ffed803f9da8eb45dc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f5e565b6536c9347e95c252f1e10babe9c4fb644251fe078e7b4cbc6dbd2bd7
MD5 dab0707a28149be27d20f8721f2c06e2
BLAKE2b-256 6d1ddd58fa0f173d96da69309dde1259bc4847dd31032b4c6692c689ee201765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67f7ffbbbbd235ad0156a67163ad1b8dc91fa16f6f9efd3250f99e56569ce1f0
MD5 79fb498e7e46518182e6657665072293
BLAKE2b-256 b18894921226f98eabc69d82b503536e0856fdc7d588b2125bff59f4d458c469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 695b04e07379c08bcda650e67aa0bbdf6642dccc51b8dd7267ae9890c353f070
MD5 6fbb22e8adafd9ab1bbe26999c1a33a4
BLAKE2b-256 661c618571c2ddfd2c24895ad3f66146215a5c3e794d9b3610a46954f64d22b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72983ebe9cd94d3347ca1df3b1061c0f179da9cd4fe9e751bd1e18ce5c852439
MD5 cc0aeaa95515143c9fb223e01ab40e27
BLAKE2b-256 b0368a50fa76cceffd624089c84c6fa40cf891c766f5e75c2720efbca169533b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07e743471c19654497f8e77fd45099693622d7ae3907ff9cb3886e411e3dd8c6
MD5 8f917fc5f1564b96387fdb91134e6511
BLAKE2b-256 6a4d9c42ca71717c9219291880ad892cba3a6e0489ae89d799b42d9526487cf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 807ec4e7d97af5c7ade313c8021aac05c1e2eb43029f2c4e8210f1676052fe13
MD5 26d3254d478f11ce2c2d747f581231c8
BLAKE2b-256 65e6a04c7bab213ffb64c22617af0d212041469a709c3eaa9019049eafb24f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb5c6c29524c9d2f7291f8b5f83e856c0788c228a87d52d036819739fb3ad1d7
MD5 666d0913892ee9631de61ab35230f0c8
BLAKE2b-256 d9181052949d734e9bd80ebb926a9c94eba072f2a61a7e966756c73374f336f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55e35f24d270ca1c96e56d6d8a07940302227c02414d550c929c3f434768fb56
MD5 355018b36576de64f255d9051806bba3
BLAKE2b-256 ca66ac096a1473d0c60934b2511e6d5b719b015acbee3f7c1fc00b289c5febd2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 161bfd90a4c9c5f68b49ef9e922f7e5bef1e19017570dcd3963f6c73a4edcd7d
MD5 366265a10a9c3b51fbf54e19ebb750ca
BLAKE2b-256 55d51ec239da9701402ad1e0a7f3b597920842611775ee11390c6d42a7c76176

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56c874408a94b78154419108bb377fdf24cd66d48e60ae1dbc64504b655546d5
MD5 2e430cc23cb747647523a6e228fbb496
BLAKE2b-256 f57ef808d12a170d544646d9e4fec3a90a3607566350f9a2cbcbbd49f5a81a98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 af314b32205fecb850f382791f6356a17cc2e9b6c04c11e76ce31f45e6328616
MD5 7ec5c9447c942429d0a78a6ebbe62896
BLAKE2b-256 4a26eab7b73855069b28120b95b1e09b1bdc068d418fdc898ed031449f8df802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1408c2de3880e16b6a0da990ca831402bcc08d3f17c81d511894dbe37c4e7806
MD5 91f410cab76d7f890423afa2f20b2994
BLAKE2b-256 a79b9dd4c1df7c73993ca3b92037337d27df9f1f267cd91c345ab98aac77483d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9b2d9cf083263d289acb6003996654873b7ddd52d3d5a0064aa9cabba2837f7
MD5 34c8c815191dfc8c1f6e2c81acba809d
BLAKE2b-256 3255d1e5f4ccf91b807f6eca2c6bda1755e5a415ffab0bc2bb5d4a8a09386099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 92a68585f5e6710f6c5381d27eea0f5a55e1f00af452fc35bd99d91efa401bfb
MD5 76f87f3fc5fce752dbfaa66cc12e9883
BLAKE2b-256 df6e87b0eaa8befc06b3fdf25727eb0f76f9227e18b04bb6e9c32202f27505ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6536f563a06aafd65b46c5592f5fd35f4d9fa26a3ef9953c79434ae16729ec28
MD5 341d62d2fc8d9fcc6de00d8f59bc45bf
BLAKE2b-256 a259ae02e288b1b8f9fc8b2a51f72e3588a394d5da6267616beda992a9bb9a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bfb6777d6ade18caf77b94bb9bd7dfb26e0e272eef1219d740370eeaf29623eb
MD5 468ce76478336f9614ade0c81c819a18
BLAKE2b-256 e080cb11b0c1751fcf3ae922b6860bb1467befb90c5f939d81b4d9c32cbcc62a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7568959d3154ddbe0cd05a4eacaf2469879cb30e6f60790ca82280af27646730
MD5 b57329adac586ba2906ae71fc07e1d71
BLAKE2b-256 b826d877441ab37d9995709d2d14ada5ab10d55b3f66407e672b029cd4fea89b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e336d888af92ac8c172738942ae84fb80fc8513c7957ecfc9788a3c090856898
MD5 102133caf068a6654b490ca1506fbd70
BLAKE2b-256 d7047762a2bc84630fdfe7b15bcdf7151d5f3aebb5d6a3816a3b5be2cc66a5cf

See more details on using hashes here.

Provenance

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