Name | zeroconf JSON |
Version |
0.145.0
JSON |
| download |
home_page | None |
Summary | A pure python implementation of multicast DNS service discovery |
upload_time | 2025-02-15 23:00:35 |
maintainer | None |
docs_url | None |
author | Paul Scott-Murphy |
requires_python | <4.0,>=3.9 |
license | LGPL-2.1-or-later |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
python-zeroconf
===============
.. image:: https://github.com/python-zeroconf/python-zeroconf/workflows/CI/badge.svg
:target: https://github.com/python-zeroconf/python-zeroconf?query=workflow%3ACI+branch%3Amaster
.. image:: https://img.shields.io/pypi/v/zeroconf.svg
:target: https://pypi.python.org/pypi/zeroconf
.. image:: https://codecov.io/gh/python-zeroconf/python-zeroconf/branch/master/graph/badge.svg
:target: https://codecov.io/gh/python-zeroconf/python-zeroconf
.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json
:target: https://codspeed.io/python-zeroconf/python-zeroconf
:alt: Codspeed.io status for python-zeroconf
.. image:: https://readthedocs.org/projects/python-zeroconf/badge/?version=latest
:target: https://python-zeroconf.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
`Documentation <https://python-zeroconf.readthedocs.io/en/latest/>`_.
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.9+
* PyPy 3.9+
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?
===========================
* PyPI page https://pypi.org/project/zeroconf/
* GitHub project https://github.com/python-zeroconf/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:
.. code-block:: python
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()
.. note::
Discovery and service registration use *all* available network interfaces by default.
If you want to customize that you need to specify ``interfaces`` argument when
constructing ``Zeroconf`` object (see the code for details).
If you don't know the name of the service you need to browse for, try:
.. code-block:: python
from zeroconf import ZeroconfServiceTypes
print('\n'.join(ZeroconfServiceTypes.find()))
See examples directory for more.
Changelog
=========
`Changelog <CHANGELOG.md>`_
License
=======
LGPL, see COPYING file for details.
Raw data
{
"_id": null,
"home_page": null,
"name": "zeroconf",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Paul Scott-Murphy",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/01/bd/667f1a964e2fea08f34100c3959783b35d8aa653c0bdb8778e06acabddb4/zeroconf-0.145.0.tar.gz",
"platform": null,
"description": "python-zeroconf\n===============\n\n.. image:: https://github.com/python-zeroconf/python-zeroconf/workflows/CI/badge.svg\n :target: https://github.com/python-zeroconf/python-zeroconf?query=workflow%3ACI+branch%3Amaster\n\n.. image:: https://img.shields.io/pypi/v/zeroconf.svg\n :target: https://pypi.python.org/pypi/zeroconf\n\n.. image:: https://codecov.io/gh/python-zeroconf/python-zeroconf/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/python-zeroconf/python-zeroconf\n\n.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json\n :target: https://codspeed.io/python-zeroconf/python-zeroconf\n :alt: Codspeed.io status for python-zeroconf\n\n.. image:: https://readthedocs.org/projects/python-zeroconf/badge/?version=latest\n :target: https://python-zeroconf.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n`Documentation <https://python-zeroconf.readthedocs.io/en/latest/>`_.\n\nThis is fork of pyzeroconf, Multicast DNS Service Discovery for Python,\noriginally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf),\nmodified by William McBrine (https://github.com/wmcbrine/pyzeroconf).\n\nThe original William McBrine's fork note::\n\n This fork is used in all of my TiVo-related projects: HME for Python\n (and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.\n Before this, I was tracking the changes for zeroconf.py in three\n separate repos. I figured I should have an authoritative source.\n\n Although I make changes based on my experience with TiVos, I expect that\n they're generally applicable. This version also includes patches found\n on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere\n around the net -- not always well-documented, sorry.\n\nCompatible with:\n\n* Bonjour\n* Avahi\n\nCompared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:\n\n* isn't tied to Bonjour or Avahi\n* doesn't use D-Bus\n* doesn't force you to use particular event loop or Twisted (asyncio is used under the hood but not required)\n* is pip-installable\n* has PyPI distribution\n* has an optional cython extension for performance (pure python is supported as well)\n\nPython compatibility\n--------------------\n\n* CPython 3.9+\n* PyPy 3.9+\n\nVersioning\n----------\n\nThis project uses semantic versioning.\n\nStatus\n------\n\nThis project is actively maintained.\n\nTraffic Reduction\n-----------------\n\nBefore version 0.32, most traffic reduction techniques described in https://datatracker.ietf.org/doc/html/rfc6762#section-7\nwhere not implemented which could lead to excessive network traffic. It is highly recommended that version 0.32 or later\nis used if this is a concern.\n\nIPv6 support\n------------\n\nIPv6 support is relatively new and currently limited, specifically:\n\n* `InterfaceChoice.All` is an alias for `InterfaceChoice.Default` on non-POSIX\n systems.\n* Dual-stack IPv6 sockets are used, which may not be supported everywhere (some\n BSD variants do not have them).\n* Listening on localhost (`::1`) does not work. Help with understanding why is\n appreciated.\n\nHow to get python-zeroconf?\n===========================\n\n* PyPI page https://pypi.org/project/zeroconf/\n* GitHub project https://github.com/python-zeroconf/python-zeroconf\n\nThe easiest way to install python-zeroconf is using pip::\n\n pip install zeroconf\n\n\n\nHow do I use it?\n================\n\nHere's an example of browsing for a service:\n\n.. code-block:: python\n\n from zeroconf import ServiceBrowser, ServiceListener, Zeroconf\n\n\n class MyListener(ServiceListener):\n\n def update_service(self, zc: Zeroconf, type_: str, name: str) -> None:\n print(f\"Service {name} updated\")\n\n def remove_service(self, zc: Zeroconf, type_: str, name: str) -> None:\n print(f\"Service {name} removed\")\n\n def add_service(self, zc: Zeroconf, type_: str, name: str) -> None:\n info = zc.get_service_info(type_, name)\n print(f\"Service {name} added, service info: {info}\")\n\n\n zeroconf = Zeroconf()\n listener = MyListener()\n browser = ServiceBrowser(zeroconf, \"_http._tcp.local.\", listener)\n try:\n input(\"Press enter to exit...\\n\\n\")\n finally:\n zeroconf.close()\n\n.. note::\n\n Discovery and service registration use *all* available network interfaces by default.\n If you want to customize that you need to specify ``interfaces`` argument when\n constructing ``Zeroconf`` object (see the code for details).\n\nIf you don't know the name of the service you need to browse for, try:\n\n.. code-block:: python\n\n from zeroconf import ZeroconfServiceTypes\n print('\\n'.join(ZeroconfServiceTypes.find()))\n\nSee examples directory for more.\n\nChangelog\n=========\n\n`Changelog <CHANGELOG.md>`_\n\nLicense\n=======\n\nLGPL, see COPYING file for details.\n\n",
"bugtrack_url": null,
"license": "LGPL-2.1-or-later",
"summary": "A pure python implementation of multicast DNS service discovery",
"version": "0.145.0",
"project_urls": {
"Bug Tracker": "https://github.com/python-zeroconf/python-zeroconf/issues",
"Changelog": "https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md",
"Documentation": "https://python-zeroconf.readthedocs.io",
"Repository": "https://github.com/python-zeroconf/python-zeroconf"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3f2d30bc9553eb619023b5a1f97270d594f6f74edda8be9be9b8c3614c6358a8",
"md5": "72f0a44d7c7b4ededf4ac91d06c452dd",
"sha256": "84f1ecae9ee457351d5f873ba880731e79c91643835305c572395b9ad780bafc"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "72f0a44d7c7b4ededf4ac91d06c452dd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 1928573,
"upload_time": "2025-02-15T23:38:26",
"upload_time_iso_8601": "2025-02-15T23:38:26.445586Z",
"url": "https://files.pythonhosted.org/packages/3f/2d/30bc9553eb619023b5a1f97270d594f6f74edda8be9be9b8c3614c6358a8/zeroconf-0.145.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6261edc0e6a159c06a998c2403ff20447333a91becf569af4a57d3a038651d68",
"md5": "fdd6fe3d0f3833293fe5b01bea4d24bc",
"sha256": "381f30f3e1257ddf4ed2ed4933e2b8288d4cbcbed92d9f2f943fda265f2daaa6"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fdd6fe3d0f3833293fe5b01bea4d24bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 1776604,
"upload_time": "2025-02-15T23:38:29",
"upload_time_iso_8601": "2025-02-15T23:38:29.102556Z",
"url": "https://files.pythonhosted.org/packages/62/61/edc0e6a159c06a998c2403ff20447333a91becf569af4a57d3a038651d68/zeroconf-0.145.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c58c75f941c23faf858e1b9278c2e8682642cb6bd4ca18e3dbc550ecdb024153",
"md5": "302161f870b468d964f5a0b9b511c4d8",
"sha256": "a2383462f315b15871155b18d3114f6855f352e6d4f09b80dadf0a429c9ac418"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "302161f870b468d964f5a0b9b511c4d8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10478143,
"upload_time": "2025-02-15T23:38:31",
"upload_time_iso_8601": "2025-02-15T23:38:31.782188Z",
"url": "https://files.pythonhosted.org/packages/c5/8c/75f941c23faf858e1b9278c2e8682642cb6bd4ca18e3dbc550ecdb024153/zeroconf-0.145.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfcbb94f9545ad7f7129f6b56b7b20faa5055ef73127c0c99cf7f7b3bc026816",
"md5": "6071c31ae53435f4f19c45ecb6580a14",
"sha256": "af3087374a53d5f5c8967a82a115105837e374967b19cc2cf25ff14031150a59"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6071c31ae53435f4f19c45ecb6580a14",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10045757,
"upload_time": "2025-02-15T23:38:34",
"upload_time_iso_8601": "2025-02-15T23:38:34.785209Z",
"url": "https://files.pythonhosted.org/packages/bf/cb/b94f9545ad7f7129f6b56b7b20faa5055ef73127c0c99cf7f7b3bc026816/zeroconf-0.145.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "867b84c1483bb43bfa053fbaf473de24f6c402ccbfb0d0e126af2efe9a8ff4cc",
"md5": "00ce1093a3b1834d8eff55a7e512286e",
"sha256": "0e948aa3b9b006c5d62516a9ddc1299a43440fb0193166ddb2a79f71c3f98608"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "00ce1093a3b1834d8eff55a7e512286e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10562749,
"upload_time": "2025-02-15T23:38:37",
"upload_time_iso_8601": "2025-02-15T23:38:37.743460Z",
"url": "https://files.pythonhosted.org/packages/86/7b/84c1483bb43bfa053fbaf473de24f6c402ccbfb0d0e126af2efe9a8ff4cc/zeroconf-0.145.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d14f114480019b8574c07e7d82bcbc43dcf0f4bafaeef27b75c2614a216b8db",
"md5": "b986d81eeaba5caaadb98de636a85334",
"sha256": "a51cb08052ad2b9ed792f56af85fcc4b396a516089dea94702041584a09e7420"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b986d81eeaba5caaadb98de636a85334",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 9684116,
"upload_time": "2025-02-15T23:38:40",
"upload_time_iso_8601": "2025-02-15T23:38:40.944043Z",
"url": "https://files.pythonhosted.org/packages/8d/14/f114480019b8574c07e7d82bcbc43dcf0f4bafaeef27b75c2614a216b8db/zeroconf-0.145.0-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ae2441a80cc72ff92bb5932a813c632b8a990a236e4fb7a4922b844851abc6c",
"md5": "35b0296ca808a075b48dd720cfacc9d0",
"sha256": "52b90584c74812011cecb8d741b29bd843abf69b1381e2eca666d7185b8ecc2e"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "35b0296ca808a075b48dd720cfacc9d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10302191,
"upload_time": "2025-02-15T23:38:43",
"upload_time_iso_8601": "2025-02-15T23:38:43.925058Z",
"url": "https://files.pythonhosted.org/packages/2a/e2/441a80cc72ff92bb5932a813c632b8a990a236e4fb7a4922b844851abc6c/zeroconf-0.145.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a17b8738d13daf192afd5aa2b10c1405916b3dc3d09de592877571a5459418f",
"md5": "eb27333a60d032650d7b6df736d3d9a2",
"sha256": "f791da0bd42d9528c6db5d64dce90ecabb401b4707d1b80831589079eb060599"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "eb27333a60d032650d7b6df736d3d9a2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10145988,
"upload_time": "2025-02-15T23:38:47",
"upload_time_iso_8601": "2025-02-15T23:38:47.083701Z",
"url": "https://files.pythonhosted.org/packages/7a/17/b8738d13daf192afd5aa2b10c1405916b3dc3d09de592877571a5459418f/zeroconf-0.145.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "144e0fdcdc29e5d0d24304cd31805e30b9584bc628f57537c9a301985f03679b",
"md5": "045d264db9711c4e5be6e5d4a6be5cd9",
"sha256": "16a7e946407358314c09cddbb115470d68e92c8db65dc309e867c539bc55e275"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "045d264db9711c4e5be6e5d4a6be5cd9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10286770,
"upload_time": "2025-02-15T23:38:49",
"upload_time_iso_8601": "2025-02-15T23:38:49.531135Z",
"url": "https://files.pythonhosted.org/packages/14/4e/0fdcdc29e5d0d24304cd31805e30b9584bc628f57537c9a301985f03679b/zeroconf-0.145.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24a40237860fa7889cd60992cd21366a5da971901dbc495825c8ba8ceca82492",
"md5": "ea177f1abd55e17d235fdf68fdcc7960",
"sha256": "ffa9fb3c770cfbc89a67b64adc5c7492c8b0224cab20722f2cf3ea570d54eb8f"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ea177f1abd55e17d235fdf68fdcc7960",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 10647272,
"upload_time": "2025-02-15T23:38:54",
"upload_time_iso_8601": "2025-02-15T23:38:54.448492Z",
"url": "https://files.pythonhosted.org/packages/24/a4/0237860fa7889cd60992cd21366a5da971901dbc495825c8ba8ceca82492/zeroconf-0.145.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8207a0821c84d433345f0c7a110642571605bc5d8e2a43ccb0b92516020de2b",
"md5": "9be8adf0255d401d21c9c147ca3fb331",
"sha256": "51775809c86851e6a195b3c2c49548e11afa286e2130aa9ab5add14cf5e3f049"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9be8adf0255d401d21c9c147ca3fb331",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 1431375,
"upload_time": "2025-02-15T23:38:57",
"upload_time_iso_8601": "2025-02-15T23:38:57.305824Z",
"url": "https://files.pythonhosted.org/packages/e8/20/7a0821c84d433345f0c7a110642571605bc5d8e2a43ccb0b92516020de2b/zeroconf-0.145.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ca2b5c0c948bc1358507a546c3233506ec12a733dbd7579806e6a550c37635d",
"md5": "12dcbf317f93236bdc12e50fa93fe7e9",
"sha256": "d05347b806f0c812f87b0fd2568f7b737b843b18e0a5d3d80c78c393a412b3cf"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "12dcbf317f93236bdc12e50fa93fe7e9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<4.0,>=3.9",
"size": 1660478,
"upload_time": "2025-02-15T23:38:58",
"upload_time_iso_8601": "2025-02-15T23:38:58.609144Z",
"url": "https://files.pythonhosted.org/packages/8c/a2/b5c0c948bc1358507a546c3233506ec12a733dbd7579806e6a550c37635d/zeroconf-0.145.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1eb550b5c65bd0d4a27976352771cf2cbdf37dfdac1d037deaf266b9987581c5",
"md5": "0def9a2d3ec576c7be1cb2be44feb315",
"sha256": "8d43864816ddfbeff4eaf87dbb325583104232f3dc0b89c94a124eb14b64c553"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0def9a2d3ec576c7be1cb2be44feb315",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 1932333,
"upload_time": "2025-02-15T23:39:00",
"upload_time_iso_8601": "2025-02-15T23:39:00.745146Z",
"url": "https://files.pythonhosted.org/packages/1e/b5/50b5c65bd0d4a27976352771cf2cbdf37dfdac1d037deaf266b9987581c5/zeroconf-0.145.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0ddeb6895b5d80d80c8311630a7bcdebd2cf08141bf5ca461ede65b08a0c2fc",
"md5": "0406b7502d7818a52055af9c1931d7c6",
"sha256": "050cb86621d87f660cc98f16f2c99fb24e21af590230862fbc35e0aed6055f7b"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0406b7502d7818a52055af9c1931d7c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 1778829,
"upload_time": "2025-02-15T23:39:02",
"upload_time_iso_8601": "2025-02-15T23:39:02.208240Z",
"url": "https://files.pythonhosted.org/packages/d0/dd/eb6895b5d80d80c8311630a7bcdebd2cf08141bf5ca461ede65b08a0c2fc/zeroconf-0.145.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13ee52f1fbc38147b444e45e11ed6005f1184ebcda4f25328f043ee6ce2bce91",
"md5": "8bac5dc7c6fcfaf96717c6d56cdd7f30",
"sha256": "032bf9125ecf7d8534acfb38dd781ffe15c5eac069d787133ff84da3be743db6"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8bac5dc7c6fcfaf96717c6d56cdd7f30",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11496990,
"upload_time": "2025-02-15T23:39:05",
"upload_time_iso_8601": "2025-02-15T23:39:05.416735Z",
"url": "https://files.pythonhosted.org/packages/13/ee/52f1fbc38147b444e45e11ed6005f1184ebcda4f25328f043ee6ce2bce91/zeroconf-0.145.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "457356ddfbb29c15b7a24c37f6cf2c0e0d2e00b3040bbbba403b69a70d7697b9",
"md5": "a4b9eefbe28d859b09187d3c49547fda",
"sha256": "90ce9f37744e9e65c4166250a36638c9e1ea7fe63cafac9313f152788b5e9210"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a4b9eefbe28d859b09187d3c49547fda",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11017616,
"upload_time": "2025-02-15T23:39:11",
"upload_time_iso_8601": "2025-02-15T23:39:11.946134Z",
"url": "https://files.pythonhosted.org/packages/45/73/56ddfbb29c15b7a24c37f6cf2c0e0d2e00b3040bbbba403b69a70d7697b9/zeroconf-0.145.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f5273d10a6bcc2907bec75c316eb0f4878eddb119423eea8881aef3f4ccb0d3",
"md5": "ad1d99d274fd36f80dd639d0db156fa1",
"sha256": "6105684c6cdd2a4a39e7d16addbe668173288dca968bf4b5d4ce6915e2f8ba1f"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ad1d99d274fd36f80dd639d0db156fa1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11553633,
"upload_time": "2025-02-15T23:39:14",
"upload_time_iso_8601": "2025-02-15T23:39:14.527009Z",
"url": "https://files.pythonhosted.org/packages/9f/52/73d10a6bcc2907bec75c316eb0f4878eddb119423eea8881aef3f4ccb0d3/zeroconf-0.145.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20116a6230c061c7255c974ce03300c8a0eb6e4301727269e1a8d99c3da6875f",
"md5": "47dc8cb3c2398c4d61e446bb7e6960bf",
"sha256": "e85a090dde1a37bacff76a09854644bd05a6c99f7e4f9d0a0e8b8c66d708484d"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "47dc8cb3c2398c4d61e446bb7e6960bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 10497993,
"upload_time": "2025-02-15T23:39:18",
"upload_time_iso_8601": "2025-02-15T23:39:18.752443Z",
"url": "https://files.pythonhosted.org/packages/20/11/6a6230c061c7255c974ce03300c8a0eb6e4301727269e1a8d99c3da6875f/zeroconf-0.145.0-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0527fa0e7f36925bcb458b4e568b5ab992273bf90d1b341fb48f2496df2cb5b",
"md5": "f248d788e005c6202a14f046ef0858aa",
"sha256": "deae5003665bbddae6c0f6250206cb87266fb2a70862ebe7d24a69cd6bb05357"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f248d788e005c6202a14f046ef0858aa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11459362,
"upload_time": "2025-02-15T23:39:22",
"upload_time_iso_8601": "2025-02-15T23:39:22.344211Z",
"url": "https://files.pythonhosted.org/packages/e0/52/7fa0e7f36925bcb458b4e568b5ab992273bf90d1b341fb48f2496df2cb5b/zeroconf-0.145.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "944e7eb4b37a5ebaf6a5f8ad5709e29343effefb34cf4747404a0f4e5071da01",
"md5": "24bf63d8c5bf83ac3b7060dcc156126e",
"sha256": "f1e7cda7738af28721ebacfc9a93118133061a26442f95e0bb85e48fc81c6bae"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "24bf63d8c5bf83ac3b7060dcc156126e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11129047,
"upload_time": "2025-02-15T23:39:25",
"upload_time_iso_8601": "2025-02-15T23:39:25.186022Z",
"url": "https://files.pythonhosted.org/packages/94/4e/7eb4b37a5ebaf6a5f8ad5709e29343effefb34cf4747404a0f4e5071da01/zeroconf-0.145.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50e28733558cb9f34e00fb2f97118aa1af716da0f84c6a086fed3cc6a2007d29",
"md5": "bc0695a58f0603f5106735848a363eef",
"sha256": "e9e067455116c766002e80fd0ed1a1ee2e93c12f8417c15b34c1833e333e96f4"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bc0695a58f0603f5106735848a363eef",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11351810,
"upload_time": "2025-02-15T23:39:28",
"upload_time_iso_8601": "2025-02-15T23:39:28.150479Z",
"url": "https://files.pythonhosted.org/packages/50/e2/8733558cb9f34e00fb2f97118aa1af716da0f84c6a086fed3cc6a2007d29/zeroconf-0.145.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44ab37fed2933d89863a50d1c80a3708c433435183625d1b2662083bb65726ba",
"md5": "e54d62ab6ac628fe01407214714fc49f",
"sha256": "77417b89acd69ccebaee2855b494417f9bfcdf2ac0573a654465a4437dd595f0"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e54d62ab6ac628fe01407214714fc49f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 11863063,
"upload_time": "2025-02-15T23:39:31",
"upload_time_iso_8601": "2025-02-15T23:39:31.146910Z",
"url": "https://files.pythonhosted.org/packages/44/ab/37fed2933d89863a50d1c80a3708c433435183625d1b2662083bb65726ba/zeroconf-0.145.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8b5245ea861d9dc137ef0abd55e0c957f770a84f69b4a94a096f663d3a73019",
"md5": "e4942def1411c77f89f88c98319a57a1",
"sha256": "c40b67c5e452c1ce0541544cd2a24a223d65b2e017e8bbb30580961a964dd2f9"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "e4942def1411c77f89f88c98319a57a1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 1428045,
"upload_time": "2025-02-15T23:39:34",
"upload_time_iso_8601": "2025-02-15T23:39:34.011412Z",
"url": "https://files.pythonhosted.org/packages/f8/b5/245ea861d9dc137ef0abd55e0c957f770a84f69b4a94a096f663d3a73019/zeroconf-0.145.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e18786335b8b0a63bcc4a3946d6b51f8640fb5577235fb3e96f5714f4cfaf4f",
"md5": "f0f73cd02b70a6ea4b8c135ff801db20",
"sha256": "64ce5752a19119ee887a8ca294baa22731d52f67c99bb71ac85abf670d0952fa"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f0f73cd02b70a6ea4b8c135ff801db20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<4.0,>=3.9",
"size": 1663767,
"upload_time": "2025-02-15T23:39:35",
"upload_time_iso_8601": "2025-02-15T23:39:35.514049Z",
"url": "https://files.pythonhosted.org/packages/4e/18/786335b8b0a63bcc4a3946d6b51f8640fb5577235fb3e96f5714f4cfaf4f/zeroconf-0.145.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e56d3b536885d28715a7bc8dcf92cd7d363ed8c97f05a7dbd620e49dde32028",
"md5": "4eb41dd5d2c1cede0026f82a1cb9e15c",
"sha256": "3f1f7e59955c25610e5b8e0c89e882e51a1ee24f53bcc0b445ea7749e9e0b60f"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "4eb41dd5d2c1cede0026f82a1cb9e15c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 1950634,
"upload_time": "2025-02-15T23:39:36",
"upload_time_iso_8601": "2025-02-15T23:39:36.910807Z",
"url": "https://files.pythonhosted.org/packages/2e/56/d3b536885d28715a7bc8dcf92cd7d363ed8c97f05a7dbd620e49dde32028/zeroconf-0.145.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a708dce84526d470ce51d8f107c1bae9fc535a05fa148541c2412265f9309996",
"md5": "c33933625432f4fd98f190e44e68622a",
"sha256": "4a6f8efcff08e0e8461faba8086f93b227a03e673051eecd01a4d14589f98f1a"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c33933625432f4fd98f190e44e68622a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 1796898,
"upload_time": "2025-02-15T23:39:38",
"upload_time_iso_8601": "2025-02-15T23:39:38.502323Z",
"url": "https://files.pythonhosted.org/packages/a7/08/dce84526d470ce51d8f107c1bae9fc535a05fa148541c2412265f9309996/zeroconf-0.145.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8aa44983c505a59ac744eb2606c6af42b4dd9f9c2b5a5b99fd2872e5df236cc",
"md5": "80d00221dd6cd4f7988467c81467f41e",
"sha256": "5eddab305ce7583e43ef5cd891c0d3da6adb2c0f5cd009a6719aba4695469eec"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "80d00221dd6cd4f7988467c81467f41e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11165436,
"upload_time": "2025-02-15T23:39:41",
"upload_time_iso_8601": "2025-02-15T23:39:41.286564Z",
"url": "https://files.pythonhosted.org/packages/f8/aa/44983c505a59ac744eb2606c6af42b4dd9f9c2b5a5b99fd2872e5df236cc/zeroconf-0.145.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23606558599854f65b5a699bd358258833661fc12ecd05e1527867f5c5aaeb2f",
"md5": "b4fe809277c49b178c0344719888834f",
"sha256": "b7aea48dd53f15faff2b242bf2d0458f747f2fff6fec21012dd5073b19b4172c"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b4fe809277c49b178c0344719888834f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 10691621,
"upload_time": "2025-02-15T23:39:43",
"upload_time_iso_8601": "2025-02-15T23:39:43.754899Z",
"url": "https://files.pythonhosted.org/packages/23/60/6558599854f65b5a699bd358258833661fc12ecd05e1527867f5c5aaeb2f/zeroconf-0.145.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2e2152f8adc26afb06020cc14aeae026428f12114d4f4001b37824cf780bba93",
"md5": "c0392a24b8738ef4d970d6296f5c4a4a",
"sha256": "5a8ef2a0e50e84838d0b052315b6b27523475edc7ce7fb697a339dd60e93e3b8"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c0392a24b8738ef4d970d6296f5c4a4a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11337121,
"upload_time": "2025-02-15T23:39:46",
"upload_time_iso_8601": "2025-02-15T23:39:46.724215Z",
"url": "https://files.pythonhosted.org/packages/2e/21/52f8adc26afb06020cc14aeae026428f12114d4f4001b37824cf780bba93/zeroconf-0.145.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e011cdc14521818cf8a93a07f2aee6e8dc1812a17e8ae064a98d595bfc9e173a",
"md5": "097c9d1fad1c0bf99d79f8b05a113823",
"sha256": "561296d6abc34f14d1eb589182e70b510efd626202605cfbf92283fbb0829764"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "097c9d1fad1c0bf99d79f8b05a113823",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 10376105,
"upload_time": "2025-02-15T23:39:49",
"upload_time_iso_8601": "2025-02-15T23:39:49.221607Z",
"url": "https://files.pythonhosted.org/packages/e0/11/cdc14521818cf8a93a07f2aee6e8dc1812a17e8ae064a98d595bfc9e173a/zeroconf-0.145.0-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6de46879a7d03fbdb6653366e6e055dcc5c61c78a368a2406a263856f51f6cc",
"md5": "240bfde4bc00d77518c5f22a55194ab2",
"sha256": "24aacbef286b3cf8dcb7071ec6d3ce27e413efb674c225842705c830c63defb5"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "240bfde4bc00d77518c5f22a55194ab2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11200044,
"upload_time": "2025-02-15T23:39:51",
"upload_time_iso_8601": "2025-02-15T23:39:51.644658Z",
"url": "https://files.pythonhosted.org/packages/b6/de/46879a7d03fbdb6653366e6e055dcc5c61c78a368a2406a263856f51f6cc/zeroconf-0.145.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "404f62ac6975c417702d47ffa69f330cd1d178d3d7a3ea76771bce2aba6be8af",
"md5": "8be90dfdc6d3bde5eb9def6b2f8cafd1",
"sha256": "18e25fd02681ba79b1d870044a1b6d153bcc913497d9b2b7cdf3100e309fdf9b"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8be90dfdc6d3bde5eb9def6b2f8cafd1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11165809,
"upload_time": "2025-02-15T23:39:54",
"upload_time_iso_8601": "2025-02-15T23:39:54.345476Z",
"url": "https://files.pythonhosted.org/packages/40/4f/62ac6975c417702d47ffa69f330cd1d178d3d7a3ea76771bce2aba6be8af/zeroconf-0.145.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1ca06a44b12bf4668f1d4f207389637346b37e8ec0984b41a7f16b0038d6624",
"md5": "93408bcf8c9bf39c6220362d6d6a9325",
"sha256": "1feba2f8b25ca3cb6f40386797713ed0628f2564ab84cc2e763e5a99a4ec0868"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "93408bcf8c9bf39c6220362d6d6a9325",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11144848,
"upload_time": "2025-02-15T23:39:57",
"upload_time_iso_8601": "2025-02-15T23:39:57.424896Z",
"url": "https://files.pythonhosted.org/packages/f1/ca/06a44b12bf4668f1d4f207389637346b37e8ec0984b41a7f16b0038d6624/zeroconf-0.145.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d80ed9d46ce3b8b323a6f6c3ec1a2a621cbfa9b45afb3f827945863eebe0e7c",
"md5": "cf6423aea3f25a45b6499aca6ae545c0",
"sha256": "f44e1afdd5d0c36b73e3eb79922d31c4a9f5053615909e9d1fa6b483bb3ccdae"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cf6423aea3f25a45b6499aca6ae545c0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 11631632,
"upload_time": "2025-02-15T23:40:00",
"upload_time_iso_8601": "2025-02-15T23:40:00.328885Z",
"url": "https://files.pythonhosted.org/packages/9d/80/ed9d46ce3b8b323a6f6c3ec1a2a621cbfa9b45afb3f827945863eebe0e7c/zeroconf-0.145.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2911bd1d31dc3b3fdf4000ebb97119c9f66c0c3ecbb7c713f213c4a567fe398d",
"md5": "186323a89d496aa2747fc914fc6f12cd",
"sha256": "10e4a737be61ea369fcf802b1bfc8f15a3cc314222e96b60110fb3aad06f06b4"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "186323a89d496aa2747fc914fc6f12cd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 1431596,
"upload_time": "2025-02-15T23:40:02",
"upload_time_iso_8601": "2025-02-15T23:40:02.600650Z",
"url": "https://files.pythonhosted.org/packages/29/11/bd1d31dc3b3fdf4000ebb97119c9f66c0c3ecbb7c713f213c4a567fe398d/zeroconf-0.145.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e6742afdccd44573459a318b13032fe00073896ebc673d0f2372569aa97f8ae",
"md5": "f4fa7ef301ea49a6a1d5b0a481088c0c",
"sha256": "43b099ba7ea3828cc415dcfa99d3e6d56efd61fb34fbe8aae3610c0b1e9fc657"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f4fa7ef301ea49a6a1d5b0a481088c0c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<4.0,>=3.9",
"size": 1661125,
"upload_time": "2025-02-15T23:40:04",
"upload_time_iso_8601": "2025-02-15T23:40:04.480557Z",
"url": "https://files.pythonhosted.org/packages/6e/67/42afdccd44573459a318b13032fe00073896ebc673d0f2372569aa97f8ae/zeroconf-0.145.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c535be3c754d83369ee28c9728d65e883ca0dc6e6a4665f1c2cabf572905d41",
"md5": "452eabcda8b63d5048c56bdc6ec0069c",
"sha256": "1c95209e06435795ddf5f9f880cb55b6da519951a7587b8ca08f703b884f1e4f"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "452eabcda8b63d5048c56bdc6ec0069c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 1927389,
"upload_time": "2025-02-15T23:40:06",
"upload_time_iso_8601": "2025-02-15T23:40:06.205460Z",
"url": "https://files.pythonhosted.org/packages/0c/53/5be3c754d83369ee28c9728d65e883ca0dc6e6a4665f1c2cabf572905d41/zeroconf-0.145.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9a4cb040dc0b16859223b12476f84f8c6312c37049ff962d919350373a56ba98",
"md5": "723e033adba2d79a96415f92bf038935",
"sha256": "e70526af9b598da5457d871f940552551decbdb24a1595777c07ce7987665079"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "723e033adba2d79a96415f92bf038935",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 1775772,
"upload_time": "2025-02-15T23:40:07",
"upload_time_iso_8601": "2025-02-15T23:40:07.838265Z",
"url": "https://files.pythonhosted.org/packages/9a/4c/b040dc0b16859223b12476f84f8c6312c37049ff962d919350373a56ba98/zeroconf-0.145.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c0927ae25fb8007519b341db7942d9bcf5d21f5fa753dcbc269d722ed51914a",
"md5": "62a52a99dbaebf4b438d31429401ac2e",
"sha256": "e3915f015edf8e30ae30f8cfed67d73b9d09896d8afb93bff446f6957b786fbe"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "62a52a99dbaebf4b438d31429401ac2e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11072184,
"upload_time": "2025-02-15T23:40:10",
"upload_time_iso_8601": "2025-02-15T23:40:10.044742Z",
"url": "https://files.pythonhosted.org/packages/7c/09/27ae25fb8007519b341db7942d9bcf5d21f5fa753dcbc269d722ed51914a/zeroconf-0.145.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81a40e56216a6436e9bd50efac59f0ec684ef2407179ac71157bd3d7b9b63fd8",
"md5": "966f76cbc5c41f84931a1b4366ba9399",
"sha256": "01c5af1100f698bd6af3e56b1d2ce0549ab251fe78011cc7adfe4e6493757995"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "966f76cbc5c41f84931a1b4366ba9399",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 10595923,
"upload_time": "2025-02-15T23:40:13",
"upload_time_iso_8601": "2025-02-15T23:40:13.343213Z",
"url": "https://files.pythonhosted.org/packages/81/a4/0e56216a6436e9bd50efac59f0ec684ef2407179ac71157bd3d7b9b63fd8/zeroconf-0.145.0-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ce363ff83ef383f84d68e9b8248d4e555ec016d72b444e97db17270f6367c52d",
"md5": "c1cda61c62d93f16f51aaef77c65db59",
"sha256": "5069a5a61738ea864afd4f923abad14043b80be200f131f593b22d88439f43f2"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c1cda61c62d93f16f51aaef77c65db59",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11270817,
"upload_time": "2025-02-15T23:40:16",
"upload_time_iso_8601": "2025-02-15T23:40:16.645093Z",
"url": "https://files.pythonhosted.org/packages/ce/36/3ff83ef383f84d68e9b8248d4e555ec016d72b444e97db17270f6367c52d/zeroconf-0.145.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bdc1b2d71c6e12355f8d47b3de72cca952d5dac707c599d060a446305fd9261e",
"md5": "e9189e2f078b196c2530ce93fcff31df",
"sha256": "0e2259dcf5f7db17da97bc0aa9c66976b88ca2628cedaba124b3febd2878a368"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e9189e2f078b196c2530ce93fcff31df",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 10320693,
"upload_time": "2025-02-15T23:40:19",
"upload_time_iso_8601": "2025-02-15T23:40:19.644704Z",
"url": "https://files.pythonhosted.org/packages/bd/c1/b2d71c6e12355f8d47b3de72cca952d5dac707c599d060a446305fd9261e/zeroconf-0.145.0-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8aa089985b43c0bb781f4928fe38811f70815b5197f4336115b35cad2d2c53aa",
"md5": "78359412448d3c01ecfe259ea7b40e42",
"sha256": "d4d59150a0359a2ea36f970c42e4f688aa877e9a87b104b8c689655cd149199f"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-manylinux_2_36_x86_64.whl",
"has_sig": false,
"md5_digest": "78359412448d3c01ecfe259ea7b40e42",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11261588,
"upload_time": "2025-02-15T23:00:31",
"upload_time_iso_8601": "2025-02-15T23:00:31.108489Z",
"url": "https://files.pythonhosted.org/packages/8a/a0/89985b43c0bb781f4928fe38811f70815b5197f4336115b35cad2d2c53aa/zeroconf-0.145.0-cp313-cp313-manylinux_2_36_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "765bcdf6b46d2c8f0d278b602a5609dec23fd5fc2cbcbad61458742e099b4b79",
"md5": "6e4175a47873530b93cf64c2e9666a24",
"sha256": "f35e4b7559ca3c79c7b4dd9399e1ebbd313bb50830b53723fb969daa4c5ea150"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6e4175a47873530b93cf64c2e9666a24",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11098836,
"upload_time": "2025-02-15T23:40:22",
"upload_time_iso_8601": "2025-02-15T23:40:22.553026Z",
"url": "https://files.pythonhosted.org/packages/76/5b/cdf6b46d2c8f0d278b602a5609dec23fd5fc2cbcbad61458742e099b4b79/zeroconf-0.145.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1da97f68175cf85ec23a5aad79c375d00fdd3d8ac8979e1afc2fefd5a82bb85",
"md5": "989b0a83040f022c9dd52d38cd8314d5",
"sha256": "934231c1d4faadf9183bd2dfc431cb006330e8d5febbbbef90b60ba664705cc2"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "989b0a83040f022c9dd52d38cd8314d5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11075183,
"upload_time": "2025-02-15T23:40:25",
"upload_time_iso_8601": "2025-02-15T23:40:25.259370Z",
"url": "https://files.pythonhosted.org/packages/a1/da/97f68175cf85ec23a5aad79c375d00fdd3d8ac8979e1afc2fefd5a82bb85/zeroconf-0.145.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba2f31f6599b297e156505f3e3cbd4df33dcb3e8c7e0ef4fb66453b5fdba8842",
"md5": "673db14c88f96dbef71275be3fdfc4b3",
"sha256": "f4e8dc8128e871274cc9eeda851ae43267d26eedfefe676fcb89623f8a65b01b"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "673db14c88f96dbef71275be3fdfc4b3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11042410,
"upload_time": "2025-02-15T23:40:28",
"upload_time_iso_8601": "2025-02-15T23:40:28.945499Z",
"url": "https://files.pythonhosted.org/packages/ba/2f/31f6599b297e156505f3e3cbd4df33dcb3e8c7e0ef4fb66453b5fdba8842/zeroconf-0.145.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5c5a271d4d058cb9c434383581db36bc1d0787b772cb744ee89007a7fd643eb",
"md5": "a00e009b7d681ca142f190ddd24374a9",
"sha256": "08c05c47a5acb6e00f454fac5e5cec9a9d9784bb228455000671873747a7b88a"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a00e009b7d681ca142f190ddd24374a9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 11554257,
"upload_time": "2025-02-15T23:40:31",
"upload_time_iso_8601": "2025-02-15T23:40:31.848206Z",
"url": "https://files.pythonhosted.org/packages/a5/c5/a271d4d058cb9c434383581db36bc1d0787b772cb744ee89007a7fd643eb/zeroconf-0.145.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f51a0e10c54c4830dad42f9b4b755740557699eeecd247e6ffaf8e7d70a2a7ec",
"md5": "236e812e98693a4d90748ffc97fec15c",
"sha256": "b8cfb4f83261e9614722e9c5400d08358963501760ea0e6e454530e59a9a0d7c"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "236e812e98693a4d90748ffc97fec15c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 1427536,
"upload_time": "2025-02-15T23:40:34",
"upload_time_iso_8601": "2025-02-15T23:40:34.000754Z",
"url": "https://files.pythonhosted.org/packages/f5/1a/0e10c54c4830dad42f9b4b755740557699eeecd247e6ffaf8e7d70a2a7ec/zeroconf-0.145.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0fc127e135690c29cf292d557723a34515fccae4e24550ba6bcb490ea06e603",
"md5": "e7a5d357c3ad1b575f847b7f4d761513",
"sha256": "9dce8caa79b8c3a350bd75eb3e49a2184da82ccce0635f2208486a4e45452902"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e7a5d357c3ad1b575f847b7f4d761513",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<4.0,>=3.9",
"size": 1655803,
"upload_time": "2025-02-15T23:40:36",
"upload_time_iso_8601": "2025-02-15T23:40:36.443696Z",
"url": "https://files.pythonhosted.org/packages/c0/fc/127e135690c29cf292d557723a34515fccae4e24550ba6bcb490ea06e603/zeroconf-0.145.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00688600dd9a646118db915a7ae050447cdc1f288375bd006298d0ad9d8d4251",
"md5": "1f938f3d5bea4b1131a2dc05c127d3d7",
"sha256": "23a697f3fd142ab99a277079faa31f2df412e2713746e8b1433e43c56edae046"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1f938f3d5bea4b1131a2dc05c127d3d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 1937448,
"upload_time": "2025-02-15T23:40:38",
"upload_time_iso_8601": "2025-02-15T23:40:38.203460Z",
"url": "https://files.pythonhosted.org/packages/00/68/8600dd9a646118db915a7ae050447cdc1f288375bd006298d0ad9d8d4251/zeroconf-0.145.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5495b0e8688ebf5d95824beace2a96fbf112ba7f105331f3af2d25e4ed36dead",
"md5": "5baa55ffb67ae369c1ab913754627d25",
"sha256": "944d4d509df9716b73bd0fe47333255926eb447563c7638bbbc853ba70c5fd33"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5baa55ffb67ae369c1ab913754627d25",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 1784702,
"upload_time": "2025-02-15T23:40:40",
"upload_time_iso_8601": "2025-02-15T23:40:40.146746Z",
"url": "https://files.pythonhosted.org/packages/54/95/b0e8688ebf5d95824beace2a96fbf112ba7f105331f3af2d25e4ed36dead/zeroconf-0.145.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c5b8eefeb643a3732f4034a3f507a76a9b999b36a7e58cd77d22bf6c8232402",
"md5": "3f04c98908152ba84d5a322cc6414200",
"sha256": "8eb628495fc58632b01b8875e006f9c644392bca6cd4bdc77d4be39fca9533c8"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3f04c98908152ba84d5a322cc6414200",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10527054,
"upload_time": "2025-02-15T23:40:42",
"upload_time_iso_8601": "2025-02-15T23:40:42.543776Z",
"url": "https://files.pythonhosted.org/packages/4c/5b/8eefeb643a3732f4034a3f507a76a9b999b36a7e58cd77d22bf6c8232402/zeroconf-0.145.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8add2be5ec49df9ea89b827bb35b1c7f4756cba525cd59e3ba7394f7b7647301",
"md5": "55d2dc7196fc95b85c0a24b5c92b604c",
"sha256": "56a11f96d0149e1f09403b066b9d3721fc2167bb8e86232ef84cc74d32809d47"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "55d2dc7196fc95b85c0a24b5c92b604c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10084506,
"upload_time": "2025-02-15T23:40:46",
"upload_time_iso_8601": "2025-02-15T23:40:46.138680Z",
"url": "https://files.pythonhosted.org/packages/8a/dd/2be5ec49df9ea89b827bb35b1c7f4756cba525cd59e3ba7394f7b7647301/zeroconf-0.145.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f704db84213b6da1ee0690b8d3cecaf7c9c543ea76ac4767c1f2d777c1e7d99",
"md5": "34a7f092936464450bc0f4aac5e0866a",
"sha256": "14dd887cc4402e7fc6e8311ec087fab6fddc2365b10d18469e42e49acb755aac"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "34a7f092936464450bc0f4aac5e0866a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10595117,
"upload_time": "2025-02-15T23:40:48",
"upload_time_iso_8601": "2025-02-15T23:40:48.847040Z",
"url": "https://files.pythonhosted.org/packages/5f/70/4db84213b6da1ee0690b8d3cecaf7c9c543ea76ac4767c1f2d777c1e7d99/zeroconf-0.145.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c7cfd3f2e7e087660cce118349960129d3b2e5c982d3c0896b0c3bd13efbb55",
"md5": "8f4e1a2a8272a3984156334ebab0deaf",
"sha256": "19fbf44233464a29467683b64c6f9c0ef557b640fd3d7422e75091500b826e08"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8f4e1a2a8272a3984156334ebab0deaf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 9720426,
"upload_time": "2025-02-15T23:40:51",
"upload_time_iso_8601": "2025-02-15T23:40:51.549044Z",
"url": "https://files.pythonhosted.org/packages/4c/7c/fd3f2e7e087660cce118349960129d3b2e5c982d3c0896b0c3bd13efbb55/zeroconf-0.145.0-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a0d4a3f3124a3d7c6d17de5c00fe41b62a7786b4e82c3c795d69c56761755b3",
"md5": "33423a534981118b253648952a34ffdf",
"sha256": "13a27bce377b95175dded8a58582ec44b68f0e4f546d23f298fdae7f796f0564"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "33423a534981118b253648952a34ffdf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10330222,
"upload_time": "2025-02-15T23:40:54",
"upload_time_iso_8601": "2025-02-15T23:40:54.952885Z",
"url": "https://files.pythonhosted.org/packages/8a/0d/4a3f3124a3d7c6d17de5c00fe41b62a7786b4e82c3c795d69c56761755b3/zeroconf-0.145.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05f1ccd1185b6709b81b0b98fabfcd366a8956e75e2c82913c37818a10af774f",
"md5": "2e5e4beb9952e96184496bed4b5454c0",
"sha256": "0e18b4650461df9b2bb7dcd18267fbff852052fe5f95339eb61f8063f2463434"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "2e5e4beb9952e96184496bed4b5454c0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10158582,
"upload_time": "2025-02-15T23:40:58",
"upload_time_iso_8601": "2025-02-15T23:40:58.121984Z",
"url": "https://files.pythonhosted.org/packages/05/f1/ccd1185b6709b81b0b98fabfcd366a8956e75e2c82913c37818a10af774f/zeroconf-0.145.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8539d3d5aab1f78e704c17f605bded0a65da5f60bca08f6d56cadc83f8bd7d31",
"md5": "23224b3542b41aa1264b4950af2a02bc",
"sha256": "4812f172d7cad43ba4c59f99fdaad1118592442693417d413b5e0e353cb35bda"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "23224b3542b41aa1264b4950af2a02bc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10330046,
"upload_time": "2025-02-15T23:41:02",
"upload_time_iso_8601": "2025-02-15T23:41:02.120930Z",
"url": "https://files.pythonhosted.org/packages/85/39/d3d5aab1f78e704c17f605bded0a65da5f60bca08f6d56cadc83f8bd7d31/zeroconf-0.145.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a94f8b5f7fb4cabfb94242ac17c66b39ec6e7c3f12094ae8d84a1f493485f213",
"md5": "8f999ba37ec7e8b2c0527fcacc0c21d0",
"sha256": "2f02a42cebdc171f58238e35235afe95ccfa6580d503a733a5a8e636755f6de5"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8f999ba37ec7e8b2c0527fcacc0c21d0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 10679021,
"upload_time": "2025-02-15T23:41:06",
"upload_time_iso_8601": "2025-02-15T23:41:06.444151Z",
"url": "https://files.pythonhosted.org/packages/a9/4f/8b5f7fb4cabfb94242ac17c66b39ec6e7c3f12094ae8d84a1f493485f213/zeroconf-0.145.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c40a095a68dffd084be3b5a2523fe3ec4b98309113455f29bf69af83986c41f6",
"md5": "a3aae76928bf1b6231373b6a96f94c2b",
"sha256": "156fa3610153b88cf1ae8a5e37b1382c912624aa083531eb98c7c945f132f546"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "a3aae76928bf1b6231373b6a96f94c2b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 1439657,
"upload_time": "2025-02-15T23:41:08",
"upload_time_iso_8601": "2025-02-15T23:41:08.612276Z",
"url": "https://files.pythonhosted.org/packages/c4/0a/095a68dffd084be3b5a2523fe3ec4b98309113455f29bf69af83986c41f6/zeroconf-0.145.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d33d7e37a6a88681f36fb9d676cf116a8dab6d4e9d4671b9769d69a358b09a7",
"md5": "087e4a0e306e5695975e094e60423e0a",
"sha256": "ca881bb93c7f2b38e563040680647eb9dee7ce1a865e318d387fd01299f99621"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "087e4a0e306e5695975e094e60423e0a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<4.0,>=3.9",
"size": 1667740,
"upload_time": "2025-02-15T23:41:11",
"upload_time_iso_8601": "2025-02-15T23:41:11.103814Z",
"url": "https://files.pythonhosted.org/packages/2d/33/d7e37a6a88681f36fb9d676cf116a8dab6d4e9d4671b9769d69a358b09a7/zeroconf-0.145.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29b7ce820c6628906b53a174449b72cc5775a69f240397b818af22c5b1042cae",
"md5": "ca49fe314b5f75561aaf93464257d58e",
"sha256": "c104ab12e41d14d79244f34ae2bec4fb26203bc6d0a2e0e8ac55202b9f2aac7a"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "ca49fe314b5f75561aaf93464257d58e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1591491,
"upload_time": "2025-02-15T23:41:12",
"upload_time_iso_8601": "2025-02-15T23:41:12.845485Z",
"url": "https://files.pythonhosted.org/packages/29/b7/ce820c6628906b53a174449b72cc5775a69f240397b818af22c5b1042cae/zeroconf-0.145.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2286a7e7facda797957e4881eb11ff86e943a6ecafe6359711d33f0515435164",
"md5": "e642f10cdde4197c67c0415a7a47ad97",
"sha256": "3e55d17bd22bcf68415c1e103e68ee2e01a4a82bfb3cb0d6c274ddc2a79d3ed5"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e642f10cdde4197c67c0415a7a47ad97",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1511078,
"upload_time": "2025-02-15T23:41:14",
"upload_time_iso_8601": "2025-02-15T23:41:14.642483Z",
"url": "https://files.pythonhosted.org/packages/22/86/a7e7facda797957e4881eb11ff86e943a6ecafe6359711d33f0515435164/zeroconf-0.145.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "616055039bfbfabcde22d33f2d918b4fa95a604b043d7c3a72a19d7a882fa553",
"md5": "dea3eca6366fbeb4861fc613298a2303",
"sha256": "50fd4f5cb35a49dfbe8d8a66b52ac4909cb6b4b11fa063adabd32db617ecd3d1"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "dea3eca6366fbeb4861fc613298a2303",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1788583,
"upload_time": "2025-02-15T23:41:17",
"upload_time_iso_8601": "2025-02-15T23:41:17.644272Z",
"url": "https://files.pythonhosted.org/packages/61/60/55039bfbfabcde22d33f2d918b4fa95a604b043d7c3a72a19d7a882fa553/zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53a5e3f3c517908131b7c8eee0d3dded80ba243af1a24c7e31b7248fe61baa49",
"md5": "e83cad39ffd796d318e8233b6324bf1c",
"sha256": "c0c959dc6a3dc192a4bb95d5530161480638f7aa028a91bb483c70d3e2617ca3"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e83cad39ffd796d318e8233b6324bf1c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1914730,
"upload_time": "2025-02-15T23:41:19",
"upload_time_iso_8601": "2025-02-15T23:41:19.604909Z",
"url": "https://files.pythonhosted.org/packages/53/a5/e3f3c517908131b7c8eee0d3dded80ba243af1a24c7e31b7248fe61baa49/zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2dcd8a5b0e293be05b0603359bccba2ee940b18145aa6885ba1ae4c08c57d744",
"md5": "89fc0bf7ad93d3e81e630c7709136733",
"sha256": "b35d56d180289d914acd35f38b92e9fc4896ed4d2f15565019c43e9a6c07bdbb"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "89fc0bf7ad93d3e81e630c7709136733",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1872863,
"upload_time": "2025-02-15T23:41:21",
"upload_time_iso_8601": "2025-02-15T23:41:21.453672Z",
"url": "https://files.pythonhosted.org/packages/2d/cd/8a5b0e293be05b0603359bccba2ee940b18145aa6885ba1ae4c08c57d744/zeroconf-0.145.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa3d7c8ff2a0c6127e4441d3785b22f2fabdc8f1986673ea3f529c9fb3e93f14",
"md5": "613b2e3a32462d14ae68b8f8c73baa70",
"sha256": "b573c126c9cca46d7adfd604838708034e28c23cfce855d381b87e5159ff1b33"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "613b2e3a32462d14ae68b8f8c73baa70",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<4.0,>=3.9",
"size": 1547982,
"upload_time": "2025-02-15T23:41:23",
"upload_time_iso_8601": "2025-02-15T23:41:23.986821Z",
"url": "https://files.pythonhosted.org/packages/aa/3d/7c8ff2a0c6127e4441d3785b22f2fabdc8f1986673ea3f529c9fb3e93f14/zeroconf-0.145.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec31d0c25e024d59a38ed1c874ccf16b6950dd852200682914ac0c0abe32ba89",
"md5": "352b57d1ab79c03a21faafba177a4c33",
"sha256": "d0f58d4039a022f5383f90b4f9abe089ae4e95f639102c96304edc506ed0c0c1"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "352b57d1ab79c03a21faafba177a4c33",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1588022,
"upload_time": "2025-02-15T23:41:31",
"upload_time_iso_8601": "2025-02-15T23:41:31.174745Z",
"url": "https://files.pythonhosted.org/packages/ec/31/d0c25e024d59a38ed1c874ccf16b6950dd852200682914ac0c0abe32ba89/zeroconf-0.145.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6eb579fce0fef0797a0f9cffe39b2734e56b1ad9a2acf3b23f3d23a530768f33",
"md5": "ac57320272f0e96bddea361eff6abc61",
"sha256": "38a6e81d2cfdc86176c46c1bfe999fc1437176e5e9761907cc001230326040e7"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ac57320272f0e96bddea361eff6abc61",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1508619,
"upload_time": "2025-02-15T23:41:33",
"upload_time_iso_8601": "2025-02-15T23:41:33.099429Z",
"url": "https://files.pythonhosted.org/packages/6e/b5/79fce0fef0797a0f9cffe39b2734e56b1ad9a2acf3b23f3d23a530768f33/zeroconf-0.145.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "001c55ecf52c3707bcfb51bec25855f5577acb3ccfdaa4f7c77deaf1068c01f6",
"md5": "0332ea3d6f8d4ace2309bc81a17f6421",
"sha256": "e97bf4d340013ff638d850b7f9bc90d1e9599853081647dba7244092a9c4732d"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0332ea3d6f8d4ace2309bc81a17f6421",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1785606,
"upload_time": "2025-02-15T23:41:36",
"upload_time_iso_8601": "2025-02-15T23:41:36.249552Z",
"url": "https://files.pythonhosted.org/packages/00/1c/55ecf52c3707bcfb51bec25855f5577acb3ccfdaa4f7c77deaf1068c01f6/zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f97e735816a2f5cfb181313c17d862b312d3460760849250107fe5c09747444c",
"md5": "33bc863c7adefba1e71c1de4a4d78a77",
"sha256": "8a6de54c82cf21ec06bfbee8588adb95f615f09cffdefada6d4232b75f685249"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "33bc863c7adefba1e71c1de4a4d78a77",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1911841,
"upload_time": "2025-02-15T23:41:38",
"upload_time_iso_8601": "2025-02-15T23:41:38.700894Z",
"url": "https://files.pythonhosted.org/packages/f9/7e/735816a2f5cfb181313c17d862b312d3460760849250107fe5c09747444c/zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "328456adb16d0351649c74eb77ed45b53afb49c1f80883bdf1978dc80d71dd63",
"md5": "4b15daa72f92001e2c7feedec42887d4",
"sha256": "05438445ad02f7df2c953bf68d0e6ee269890ef348b67cdff692c53948efa0de"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4b15daa72f92001e2c7feedec42887d4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1869988,
"upload_time": "2025-02-15T23:41:40",
"upload_time_iso_8601": "2025-02-15T23:41:40.534896Z",
"url": "https://files.pythonhosted.org/packages/32/84/56adb16d0351649c74eb77ed45b53afb49c1f80883bdf1978dc80d71dd63/zeroconf-0.145.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6607137e0f774ed196123c4e64219b7c87609a5136702e19dcc9122eddab5d9e",
"md5": "5878492ecdc45dd77f2520ef85140b06",
"sha256": "8a2928417166aa7926ec1ab87bd0e2e8e92635b0c00df14ebfbe7a9dfa80b4c6"
},
"downloads": -1,
"filename": "zeroconf-0.145.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "5878492ecdc45dd77f2520ef85140b06",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<4.0,>=3.9",
"size": 1545321,
"upload_time": "2025-02-15T23:41:43",
"upload_time_iso_8601": "2025-02-15T23:41:43.116985Z",
"url": "https://files.pythonhosted.org/packages/66/07/137e0f774ed196123c4e64219b7c87609a5136702e19dcc9122eddab5d9e/zeroconf-0.145.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01bd667f1a964e2fea08f34100c3959783b35d8aa653c0bdb8778e06acabddb4",
"md5": "dd36d30f0156be8c8587b548266aa7a5",
"sha256": "846ffc6f22e2f9f5a8bdf7b9c201ed926f7414f65636a496e76c5be662b82190"
},
"downloads": -1,
"filename": "zeroconf-0.145.0.tar.gz",
"has_sig": false,
"md5_digest": "dd36d30f0156be8c8587b548266aa7a5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 161541,
"upload_time": "2025-02-15T23:00:35",
"upload_time_iso_8601": "2025-02-15T23:00:35.971236Z",
"url": "https://files.pythonhosted.org/packages/01/bd/667f1a964e2fea08f34100c3959783b35d8aa653c0bdb8778e06acabddb4/zeroconf-0.145.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-15 23:00:35",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "python-zeroconf",
"github_project": "python-zeroconf",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "zeroconf"
}