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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: zeroconf-0.149.7.tar.gz
  • Upload date:
  • Size: 180.4 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.7.tar.gz
Algorithm Hash digest
SHA256 9e123f0adb8292a037e18ab5e5bb353bdeda12989b3d432e222f494ec4dcd746
MD5 3b086dc549382ffaf1891a7887456fed
BLAKE2b-256 287e3874e2aacb2fc60487929c502580d2e6d45a774b72d24d38f9ed6ea7de80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 800f328d01cf0c7ebcb3018bfef2d2205059d9b292c07e1afa01958a8fdabc78
MD5 ce15b86cb4a1c08fc3d585458c02c476
BLAKE2b-256 a749558e1b4e3d8f647a506409ed4bb674083f6a7985fa0a2402d7fd357fbc23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 80d4c80899a28267da14d9af6ba89c61f2930f3d8dbd6c8eb0046396e44b6a2a
MD5 bf82324323c683d23d92a19c561e7634
BLAKE2b-256 7338210efb1e55ba601bc46ec1259b96e029e0cf2f38791ad2dea43067055045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28601baaface38c6747b6753b084b0d60111e9f05e32b0af204658341e5c3870
MD5 5e720eb70de4aa6d7bd4217df39b6a1a
BLAKE2b-256 6993149160bb3cdf45fd285357e9c891aa851968dc048183a6a23f48fd47cf3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d3abb1222af2ebe3893afe22fcf3eefd97947f3d21be419910b2cc4ed9ffe5ff
MD5 fa1dc28c16dcdab323f91ffe8919da3e
BLAKE2b-256 98b80a85969264cd0458a3e7159413739429b3aa14bf19a1513b9ea2c7bec7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76343222f7dd9fc976bc99db127906ce855d3f00bd76ee7a49aae28297f55f62
MD5 4628bfba116123d80205ab255c977f73
BLAKE2b-256 9c433f70e224ddfcd16f47de940869f3ac41952118d2df1cbabfe3f29e3571ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5af3f5f5281a015a734ecc5dba9072ea8118198d80fb8784833fe6c34a323d3
MD5 d415c8b098cde59b9468c726fe7a35fd
BLAKE2b-256 ffd2385e0b904339d664f007dd2ad6c632adea91b1f5246f362e112f9c0d435a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 076b6450554b04b7193a38950f7c6b9b1c95f78494ab41cca33e2ae5441f19a5
MD5 f9a9c8c082f0bde82427b0dace517325
BLAKE2b-256 b40f3cd83c121c18d6a001bb9059bfc8ef3ffbf29cbbb6cdf8be9c6d96ccf974

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9cf297dcd517e031ea3fb3716af6f5c1c122b3ccb7eae828b0e7e1490419ed2
MD5 b9c54f7203276cd5b704438ba38a3193
BLAKE2b-256 7ef6c1efd95f8d2e42a23ea520b5b46c42004b4d9100935c0c91c4586d39fb23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c53268e703c26473a794a0f8b7d8d9d407644a7dca359e0d7506edd23102b24f
MD5 8dc09a49756254a2ad7cfe41906b6598
BLAKE2b-256 b0fbbabc60385a25a4a59876435ac56a531728588cc594e06a0ae8a105a24387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d4887f613ed3838b4e1030bee66a78e876c7f71002db5aeaac202656a767e48
MD5 02bb23160f093726396097d44fdb200c
BLAKE2b-256 256265a5de3a4cf9a656015da93623b63a5b8eb40b8f87786c41e07dd0f30202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa9dba33e84cd8f49490e3c481a6cf0a3678e09bbb1a2da4be773162ec9da068
MD5 c33c800e98ca302c06b981728c6c91ee
BLAKE2b-256 a105ddf87f181d43a27f8bdba014bdefe011567f34888f64be42d161e20717e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f32b90c84b9e73693ce7bcb4ea3e7dd3bcab3fb04855e8ab4cae0df897855c3d
MD5 4b879952ba6fb05b6246e99232086ca6
BLAKE2b-256 38713bd93779f5a888f52a049fafce02a02921f16ae2b764da5f2bbd57031cd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 423d9587e66750d1094c5361631930a9b7f9204dd267738883a8403b57ba1ade
MD5 00a31679dfa1ec03162eca223c91c88b
BLAKE2b-256 00a210a309a2401662f141e55cf1e79c7bbc3f528e98701439bc311f8d9454bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1bce528877caf138a8cd68449daf2a54f37a10fda2d785b924147f0f2035f8e
MD5 22e737a20592fc21a39a215e2ded5cf9
BLAKE2b-256 f413310cc033d8e77a43327cecf3e32ecafc2a305b98b79be8209f8bb90e7575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9c7f5920eb8bc10752cf819d81b122c9d243bc8697cdfd3bfb77c089f6754daf
MD5 4d812c0a4da004c9e80a3e86e5a8f0b7
BLAKE2b-256 9df0ae3c2a7c9a3c663a0f0667241fecae3696697220dfab96e9ab60151c1684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b54f63a75909f584d6dc3b228d8a998cd5caf2fe56c5539ed5d76038ecbd8d76
MD5 04cd34559702d816fee5e17b07ce9dc8
BLAKE2b-256 ede0b5588dfbb91b0760ddaa97315d054c3b5a9f599c7c916656c4de71783334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88466606e1efd5bfa6cb2320f56cb38a2b255a8da6d51e14e99f3f74fd6c13b9
MD5 0bbc8f927212eec5c2bb143a6c5e4f56
BLAKE2b-256 293972fb23e70155ceb8459427bb0837e0cb5c72f248d47dbf30cd8ea63eec97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-manylinux_2_41_x86_64.whl
Algorithm Hash digest
SHA256 06554f7653e3cb55e77d009cb466d5b54ee1f0973558d42e458f765c33c25e41
MD5 3f5cdc078f28fb906396145c3d2c3b97
BLAKE2b-256 b5ec3a6824bb241ba5a0b14f1d683ffbb6eb5f5bd5d1f4f70dbf3185b19379c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 61e5426243dd7a1c23ba98625a53faefe2fe9d507211a9face07e5614436a3e8
MD5 af216b6916566b767bd80d30a163b2ce
BLAKE2b-256 19c6edb9f24bdc76dc6888e652bbfc48689b6d61bfa50425b3f757677e3e382a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a82fb73b849c020319730f2cc659d7b9ed409af4ab4ce5a21c664320e097fe6
MD5 65f849dbe4e65ef3be3d57e316c61b00
BLAKE2b-256 dc0c5853eb76d3a087f1b77c44f3fa8c4ac4fa95a0229d14930d9b183cea4a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 789598f4578ff8a82a3ca2205d20caee23e9a13835658a16c076ba69b2a4c058
MD5 14b8d83ff382b02743ec454a73b944ba
BLAKE2b-256 9b2ea8b930219fa9ff5196b7352098a4abebcaec631e101e9dc7f5e7951e42b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59d20ad0ebf123902ffde29a7cdeb5a04029608c68b23cbe973c2738b7136791
MD5 95005713efde58dff0acc192c5712227
BLAKE2b-256 97229ebb9414772834c5ae56fdab86f2acaa465bebbf9355026c3c4b6c0d16c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88ed61f14cac228e58c49b4d30ac3aec0cc34f2289a725c72527b64b6e87267
MD5 e2cc31c7d4b0c5b7b40f7d0c36f57944
BLAKE2b-256 7863131a3f4f8c6a117190421cb831f20dd418ae466308501059d5a6212072de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9ac3dce81e16cc322311b99fba22e2f96a8f36e20ceac20a5d5134060d002274
MD5 aae7cbe6b4a3123e60d1ea65331a7433
BLAKE2b-256 67050e78a21e89fd6fee989caddc8238a0cd3aa9e168a92c0dbb664dc4b36043

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3a1bacca3307a1dd61976893ac1add2968ed6f902df3b08dc9df7dafdd8afc45
MD5 334a3ddb5f6cefcb9c1d3ba7f199cd62
BLAKE2b-256 5ca97e2bc128d0dc6cc4e6de71df10c0ed56e21f04e0c0bef7f80f453f059228

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10b5b8342f71061678398a957a6e7ff75b4f6de2ad4a50d1eb52ae871b30e20f
MD5 1d986c9d690037caa9e439ca5cdc934c
BLAKE2b-256 690df3227dacf6dbd486611c2510f782f8cd8c8feaf1ecad5566beb929c04b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 10ae163b0882816c82ca731b0abbf86c20655f2c1161a7e8eeeedf7cbfa22082
MD5 37d28adc8884f20f745fc95da30d8024
BLAKE2b-256 a3df39098ae90a3f584970ba2d2c1fcc03e599333147b6888fc4184c0d610665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 628332aaf1544ba1a20de5379ee16df3ed39fd4125207903eb7b91e4ab3a119a
MD5 b0a316e2e1d788fc91f1346487ecd91f
BLAKE2b-256 286c9719c0f8bd8840b862ae8ead6368fe5f330e658c11cf62a6c3d1e932d495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bd28071ac50f7aa2d81efa68105554e7227a98aa2f003ed3bee737123b4bf3a
MD5 a50b360af95778f224c41a3cc4525b3b
BLAKE2b-256 d698eabb115eb5b7da0775633f4b3f817ef5ea0ef4a85d493a273a7dafa6d4b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 745ab61c88bb79f414a22a885667d5c2d05b36f7ad9b8cf56e38f82d6ddc5aa7
MD5 1805e36d5ba63f48ba83ba14ac950dc2
BLAKE2b-256 0de292aeb9484bd682e508b39ab2b55cd8b6344c2a4b990e1802b4ed13c8e079

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec086692614e4ecfa5672b2ab31666f62923b1d27fee4963f3dba79ccac81f61
MD5 cc8729b566f55c9d4ee0e15eb666ca0f
BLAKE2b-256 427fa35fe0f81d2f095fb97f4ccb6701955eed8c57be363df66a5fd48c4979da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8357d686cc872ba22af0464c7425555c07f06e86cbef850247234dc2aa8d90d6
MD5 16a7901a72b86eaf03343b034afd9279
BLAKE2b-256 de8db95c82b9152c4c1b35730c0f032252ef58c06c030569622c2a8ff3c31ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b59c4b5cde922205a4bc16fd294b3b63d1fb590312d9e11f13533d41113a560
MD5 4ed8901f2f3b8752cc073265a797af01
BLAKE2b-256 c4270eccf2b090f6a099c1f0c495de5fc453eb4ad460852ad92e4f2759f1b6df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60ef866b39405a8c0dd8535221afa5a0911f543dadb8e23b46dc442ba7e2963b
MD5 31f443ae027853d1f1af2d2873a4fd8b
BLAKE2b-256 5c44e4b1a0d5df977611ba60be46c575c491adfc608241a498eed1487293299e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5f73787d84838bd0acb4159e40957201cdbdc0fb5ea0e577d7127a407e8184bd
MD5 9f9a8dbb819b4a59630173965694f621
BLAKE2b-256 f1293b303fce6b0b13b456ae5a1eaae41ea285e3e2b0aad7ec25c253e6eb3348

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0e996b25039b3fb97374edcc07ae2d7c75ec5e3efda4e37be26dff422a34c97b
MD5 55e6b40ac42ced8d250520f62a03a861
BLAKE2b-256 7c9cc9b3682048f8ee69b43888c8d6187e7c257b5bb97dc920b9ccace6ce444f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39b02120c85da950b7823ef705848b2b63c755b791c872ce8997d7d032866e57
MD5 e5d99bde61de5d5f0c8de8eb13e423dd
BLAKE2b-256 074e1597af71487d8ff76aef3e6a66d2ed814526aadbe400abf62d6d807b9f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c13904b80f75c40f3c87eb2a0ed0b08c04608ef96f73a44042fbe257b027f603
MD5 47939aab8a2b71eefa6ae851b7ca4395
BLAKE2b-256 715527b3d350f26b753a219870bc4766545d82dd4c50fcda6a9fbae38ff57a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26ff1cd73a0d4f0946dd4b1f927325892a9d7c2724e899057b006f9ef142ec47
MD5 2e9e20f8afe36452a3e8da88821cc959
BLAKE2b-256 e6ba2496742004f6a1fbdfe60e847a93b5a90ce1f9f21b082c3cab9a4950dfb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab3e91054636422a4ef6c69e72c17842be002e991e4feb08017a20e39a6c3879
MD5 adfafdc6b9867c8c6d19ba7711994854
BLAKE2b-256 bfabf5ad00bb3bb092135178ef6143e1897f8301eed1aa379e8545c3d00f57a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2154338d2fc1e5bd6ac2b768ee7192213f38bfea64e999f93932263215304ebd
MD5 049c40ab9b868e874e4f6751596ca236
BLAKE2b-256 16f6737f8d76fb9c3feea342d15311dff3489e6344974a4909064a9f506eb50b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a93c8ffbcdbfb02471afdfcb30079dac0f67a837caad41a93221ca0f0d7eb8cd
MD5 293e0eb30f36c27bd21cce644a19e33e
BLAKE2b-256 9e34ebc71f804ac185feec46d78760104c553a3cd313b3edb79864917112e8e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c07c35e53c7ecf81f23db4a27f9ec9cbd41580e5739baa467819c54980ffddac
MD5 535d9738024672b284e707a13d758958
BLAKE2b-256 9358731a6ebfb04568c370bb28e201b5dd18291555e164592d804baaf73d95f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62ec1c6e98319cc7d0b528657c0245bfb5c096be42e817e2ea8339d12a862578
MD5 2aba6f4342f1228d17a16a67fd1b6b15
BLAKE2b-256 77b0f7b1aa7cf811ce289389ae3d47ee8e48ac3c19c07db8bffa1933db10a1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56f4a0179307d9732c84f587b9fd36744c62060bb17f24ada89f6fc6c35ecf63
MD5 f3f13b15805d2b03272c60d560c75711
BLAKE2b-256 12f343f042c526bb8c0fd6dc78db0283b5711d671d491c09858af92ee2ee419e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97e4524562a732190552ba6d3f89bace17c93100e5192133a7003b6f9e71c412
MD5 bc801079b91036334176746e21630a3e
BLAKE2b-256 f5f15eb71937729cbf7cb0642b99dab73f482d2a80d44b7af25fa9ce49135693

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6cc44062dd8b8cce64aeb24c90fe6e95648b6a098dc4c033a051a59786c2a7c3
MD5 60ee2c300e596d2c6532f139b97bba3c
BLAKE2b-256 896599ddd4b6060dcdeeb2c7d807842b7d26420c4c5704491e474c468722e636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f9e52b2181d525a5097ff58ae0fde65b70dc2046a1391c793e43597b37953e6
MD5 0863f2deaf6ff9e34d73dab1726fa7d1
BLAKE2b-256 f577e36a6a02a6ae8176a1fa2a25c47ea1142c93d7aca7884ee4292e9e2eb300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9756b977c32043bcfae24ca12dbdc2bf914eb744ecdcdd725b69fcf223624b2c
MD5 4b197d923d0df3ec7b4f65c463bc51ef
BLAKE2b-256 06f2733185ee679839c44f6b97431023ffad562d42d15906642bf93d58fb8f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf7a4a4e06f1a742865d4754215c4072ad7f414821a5dd4e0de110d91eaaefdd
MD5 8518195dadd89009a7edb0d972a6b870
BLAKE2b-256 754c15a7e06f4331f16e192b31edd711a14de7f4b3dd1990c69f1308ff37a107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a496cef251ac2b81dd2a257b0caa6616aab8e73d244db898cdf8bb39fcac5e3d
MD5 877e1d63010e3ac12cac9e288edeb27b
BLAKE2b-256 a281fffb644c12f1cd2d7f10ca35a768c52b929e809bb2e90428e49575d26708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f4b374f55b1454d595b39c7c839d4e3b0222f8914a26a62cd9e70a3aad866857
MD5 230bf8a7f59d1db5a1fecac3dd45e632
BLAKE2b-256 0785b9cd77f95529afe0fd36bc1033986b1443cd6e1dffeba249b8431a5844bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29436168660cf8dc9e2eb914d44d1549b9b37a712315492eef64bcdfe7542962
MD5 2feb0078d5c7e78758ca93c4b81f2ac0
BLAKE2b-256 1b2a446bb91e531d087996cbdb15c76b9ee5f1bba30fdcfa3063df0dedc6886d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3065b6a9d1fd840b8cf7fffb6c0c3c7a67b57d05397af8e6cc225691203e0a66
MD5 f62ec63ac8221ed5ee7e3eb61fe919ce
BLAKE2b-256 be5e4227e92e1dc318014122bb0bec69ba22425a0ad9bbc6c429537642f83c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3be4b53766c9bb5b5bce44c209d22888a29b72e400b9ae6f8d9c25b3dc99e083
MD5 46157fd1dbd7b4f5fc2e124f4e72379c
BLAKE2b-256 f439a356a45cb04358f86b100b1bf52596b04435bfd12b6d8d5edff2014d67bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c4b20144c08e5f35fff79a54d7d5ebd482f4205c0639a2abd46aedb8f71819e
MD5 6fca25d8385ae6f7fd144440e194bbc8
BLAKE2b-256 b46ac9f9c88577de576a5a72a36fcc0f1ed24fd3a311f894fb47495ac5dd8a4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e9d50836d49724284154bf57ed6db40cad861286dd7ee06afb506ce96e8a63d
MD5 8e98ff32656a2e02018f7ab71f5c6421
BLAKE2b-256 88d15c827f2eb4a060a53f9a88b53b06d0a6fb1d2c52b43a2b39e9e44e9e1f59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zeroconf-0.149.7-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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 927482772afba17f3fa472048a4e675d937256b353e4b6f0a9e183fc16ac6815
MD5 f5ca83a69f421bf72f009549d2598044
BLAKE2b-256 d867b59aaefa4ac8737e4226e87268b526947b40b0fdae3259476172204df40c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da6e1e370f17603b609459c2f59b67e07285159345ff24a5c7d439e0a8cb3f5d
MD5 7fa127fa5efd39170c763d3319fc9dad
BLAKE2b-256 434733cf60c98cfe395ab961a56ee31d9d8c8156f08795d607583a1a4290d60d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 81cd17689e27a5ffd15304099e1e86cb571b19fd7d41918d214a07a203924662
MD5 6a615453485488beceae047f44ddbf6c
BLAKE2b-256 328fb70d4bef62dca17e9df54e6207e3f93b3bdcc344aae1b86dfa62d124af83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1cd5736c3f7b8039cb5d2876dd3f48448b9dd3e7c6484cb2da870255ff0dfa3
MD5 40e651b7dc610f6adc373ae613d02b7e
BLAKE2b-256 b607912afbf165c942e5f0c2d02239abe1ea2c59467c443342e4af73e4e7b380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c0861a91db22263921e952b4a597f776bdbb7503a49713f1fd3255236bce7f0
MD5 f6af33d24aa6e7df6c9cdf59335062d3
BLAKE2b-256 4f744a3e96b0dc9425a9f02a3dd7ca1cc9dbd0206ac1393967c5f2c877a04f38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8c14cbd03358ca55b7fc44ceed180bfebfe529e1d705dc8cf2ae0f1a56d1ff57
MD5 c042fe8a122c5f42c08ef4fbb977b6b0
BLAKE2b-256 0ab975d0b4677c810cf6c3814b1baf8423a7e9d0f9caa82b00f16433c331dac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zeroconf-0.149.7-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.7-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.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc9d15b0c0f73a72147d7ba0f88d623fe4d985dca08837cf9defe6e6d2eb941a
MD5 32502ffc4621d339d127d8fd1210916d
BLAKE2b-256 895739246aee8cebd80699ef56365ec3420184ecc4749abf4627776d0f69d9de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ac38486cad29aa0ad31e852e6daa3a621fe09a84a0cf73f7b1728a1735dea492
MD5 cea4aa8310480b4d15abfcef59d40b12
BLAKE2b-256 8bcad1c223d884b7187607918bc8e117dc81423dce95fcbda5ecbea7fa24f53f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f60145e6abd70ee601545a6a8e5204c2c2a5819bc56b5a8190a1abf0f14c217
MD5 472f79d6799fea351de51de1505b8f46
BLAKE2b-256 7e2eb241e13488c74903910788a0975ab5125f18e9cd06d20c13a2e179e1fd6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zeroconf-0.149.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ec58822e958218d446a931fc55d7fd0f41f704c49684aa6d8cca4618478e1e1
MD5 c547e6ea39ac5c3d61d5223329c986e6
BLAKE2b-256 86ca6ea4d84d10e0fb2e63579a53575b0881da2feda5853105e6ea0c5cf287a5

See more details on using hashes here.

Provenance

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