zeroconf 0.146.3
pip install zeroconf
Released:
A pure python implementation of multicast DNS service discovery
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: OSI Approved (LGPL-2.1-or-later)
- Author: Paul Scott-Murphy
- Requires: Python <4.0, >=3.9
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
python-zeroconf
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:
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
License
LGPL, see COPYING file for details.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: OSI Approved (LGPL-2.1-or-later)
- Author: Paul Scott-Murphy
- Requires: Python <4.0, >=3.9
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
Built Distributions
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ i686
Uploaded
CPython 3.13
musllinux: musl 1.2+ ARMv7l
Uploaded
CPython 3.13
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.36+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARMv7l
manylinux: glibc 2.31+ ARMv7l
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.13+ x86-64
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ i686
Uploaded
CPython 3.12
musllinux: musl 1.2+ ARMv7l
Uploaded
CPython 3.12
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARMv7l
manylinux: glibc 2.31+ ARMv7l
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.13+ x86-64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ i686
Uploaded
CPython 3.11
musllinux: musl 1.2+ ARMv7l
Uploaded
CPython 3.11
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARMv7l
manylinux: glibc 2.31+ ARMv7l
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ i686
Uploaded
CPython 3.10
musllinux: musl 1.2+ ARMv7l
Uploaded
CPython 3.10
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARMv7l
manylinux: glibc 2.31+ ARMv7l
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ i686
Uploaded
CPython 3.9
musllinux: musl 1.2+ ARMv7l
Uploaded
CPython 3.9
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARMv7l
manylinux: glibc 2.31+ ARMv7l
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.9+ x86-64
File details
Details for the file zeroconf-0.146.3.tar.gz
.
File metadata
- Download URL: zeroconf-0.146.3.tar.gz
- Upload date:
- Size: 162.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc64ed2394291927468b0fcc71c70483fc333bb38e7f9c0f7c5369b525248a85 |
|
MD5 | d42b8d54213a41778e4eff70c4e1cb6f |
|
BLAKE2b-256 | 54708e0f52a1982a28516898d780a41831695df5d3e7e1ffe18afaf20000a11a |
Provenance
The following attestation bundles were made for zeroconf-0.146.3.tar.gz
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3.tar.gz
- Subject digest:
fc64ed2394291927468b0fcc71c70483fc333bb38e7f9c0f7c5369b525248a85
- Sigstore transparency entry: 191613994
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419500323fd0ee417e533bd1c70f2336bdfd35c87081cecf3d13728c907473f9 |
|
MD5 | 7d99fa931b7976e848a2794a65f0e3a1 |
|
BLAKE2b-256 | 90f5a53547470ff8ea341cbaa5d39443936416e8dfe73195429590bd41028842 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-win_amd64.whl
- Subject digest:
419500323fd0ee417e533bd1c70f2336bdfd35c87081cecf3d13728c907473f9
- Sigstore transparency entry: 191620566
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5afd88c8524655e11eac42227a2450b6a36b0e945af732a69d1c8637c1b41980 |
|
MD5 | 6ec1d6e3fdff2964154f5172abdfa9df |
|
BLAKE2b-256 | 69a6dc2c3d7066a8dd64075fcbe2e47835c5a23afb13c47c704b35770a02037b |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
5afd88c8524655e11eac42227a2450b6a36b0e945af732a69d1c8637c1b41980
- Sigstore transparency entry: 191620531
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00dd3dc80e21bca18ac75cff0170041dc82e552905b18d5a181eb56f229ebd91 |
|
MD5 | 5b382803bd3c8953908317a9b5d9a894 |
|
BLAKE2b-256 | 0bc6377b9975fddca45f45dfe5e32a13a4a6cf8b2b4788a8af81b51d2a9e2a0b |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
00dd3dc80e21bca18ac75cff0170041dc82e552905b18d5a181eb56f229ebd91
- Sigstore transparency entry: 191620537
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c29795845148f95401a877d71ad877b41e7c2d1dddc3cae5f00c73caf41fe23 |
|
MD5 | adef608c680e21d3e4ff56e5568e2124 |
|
BLAKE2b-256 | 4fc3b17aed9df700d404832b0f9697b983161f0ea8c5669a60a577a3bde3c728 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
6c29795845148f95401a877d71ad877b41e7c2d1dddc3cae5f00c73caf41fe23
- Sigstore transparency entry: 191620519
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6749d9fc80747c4d9671741da4a73071ad18ad87d90b56bd3bbd2e71d160276c |
|
MD5 | 89693aaf9cfb7f8526502948d1873a99 |
|
BLAKE2b-256 | 69d0895b4a60ef524911fb73398edd34059fc00ec2800b34cbd282b3ccfcfc31 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Subject digest:
6749d9fc80747c4d9671741da4a73071ad18ad87d90b56bd3bbd2e71d160276c
- Sigstore transparency entry: 191620541
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 800c685a9efdd55bce1ec9139f054fcee788b7de1303d5e48ca582e0f76a0832 |
|
MD5 | 9e25cd5c504cfe3898de25a55d17d2d5 |
|
BLAKE2b-256 | e8319c71d42b3aab367adee3ebb19cced8129ca4bd14fbc428cfaf73d4f79a03 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Subject digest:
800c685a9efdd55bce1ec9139f054fcee788b7de1303d5e48ca582e0f76a0832
- Sigstore transparency entry: 191620485
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36ef264b8b9841cbeeb2fb3549e756dd74838746aaf4e48196fbae72517a036e |
|
MD5 | 1fae32afa72e12d9585fbfacc9bce817 |
|
BLAKE2b-256 | 266f26346a0878aa152d21e62aa14f9491827e371cde34b8c20619191d0662fd |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-win_amd64.whl
- Subject digest:
36ef264b8b9841cbeeb2fb3549e756dd74838746aaf4e48196fbae72517a036e
- Sigstore transparency entry: 191620471
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d718cdd9b055bfe0db7704386bb92c8411af05eee41b76eb37d0d0f0be6e685a |
|
MD5 | 70d12c8a4cb0e273876fe2d9374bc2fb |
|
BLAKE2b-256 | a3314cbade5e218d7ac9133ad052a279552c6245538af5ce1387dac63aca009e |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
d718cdd9b055bfe0db7704386bb92c8411af05eee41b76eb37d0d0f0be6e685a
- Sigstore transparency entry: 191620460
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | deddd3f95b9cb43e0c569571c49d4141b8aa16a1b29e4eb68900bebe58d848a4 |
|
MD5 | ef82776a1ce530fcd4bd82611c808b14 |
|
BLAKE2b-256 | ee670e775017d628c00d5dfe7d43d40aca2f8c364230f69df0ee3955d3f526fd |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
deddd3f95b9cb43e0c569571c49d4141b8aa16a1b29e4eb68900bebe58d848a4
- Sigstore transparency entry: 191620493
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adbef6dc4870b835ac7b73c6d4da4ccc410597c607f0eeec124b07f36a933fd7 |
|
MD5 | 226902fc34967e75151878333e79049d |
|
BLAKE2b-256 | 3dc1b845a5b947043a6a3d59f458d62bcf92b73581cae5610badd0abebea221d |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
adbef6dc4870b835ac7b73c6d4da4ccc410597c607f0eeec124b07f36a933fd7
- Sigstore transparency entry: 191620526
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4658eb927ba96b47497a8a019128fcd3e55343307de7cae52b30030c940bc9e |
|
MD5 | 2798c1075a33a8d1079e3e8d70d5221e |
|
BLAKE2b-256 | 7a9892cd3f1ce84ff3554655d6505db699813f85eae1fb8bed5c6fdfa81cb87f |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Subject digest:
d4658eb927ba96b47497a8a019128fcd3e55343307de7cae52b30030c940bc9e
- Sigstore transparency entry: 191620479
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f76c0a4a5801d4c32674ce1321c5f9c9ba73b9b7abc02fc5dfc60db2a06fa90e |
|
MD5 | 7ddd17285f5a3c94129cf5350f39ac02 |
|
BLAKE2b-256 | 4e79102e70295b8a7aeceb7be1f0b27f3304ae80ddb1507273a728e4d9b69192 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Subject digest:
f76c0a4a5801d4c32674ce1321c5f9c9ba73b9b7abc02fc5dfc60db2a06fa90e
- Sigstore transparency entry: 191620568
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9b9b8aec63d937ff3052a8349a36e8bf53ff9dd03ba90b33c13ab316d7c2dbf |
|
MD5 | 3d038ca03d1d996b22b0b27d8ea7eabc |
|
BLAKE2b-256 | 188b20c367293e757449cc5025013966858815f353a22a4c822f1fc9aa3ecfdb |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-win_amd64.whl
- Subject digest:
c9b9b8aec63d937ff3052a8349a36e8bf53ff9dd03ba90b33c13ab316d7c2dbf
- Sigstore transparency entry: 191620503
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 971b3101fd299364cca26e1dbab0422612adff49d34d3662b4de49979daea399 |
|
MD5 | d84d61345cace596e31dbb109cacf0a9 |
|
BLAKE2b-256 | d14c81e29c6a5cc02796938912784669a8a2de105e9771222e9f62f5a4cd5af6 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
971b3101fd299364cca26e1dbab0422612adff49d34d3662b4de49979daea399
- Sigstore transparency entry: 191620477
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82186f4ac840a62e4b2db277ec35ac7371ac7ea7d8da36248d92098af6320b77 |
|
MD5 | 54229313def921d3d445791fdc91935a |
|
BLAKE2b-256 | 1bfab3705e5c3339fb4746a43343ff5e39765209ab4f7b5d0442f2bb9e57c8b2 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
82186f4ac840a62e4b2db277ec35ac7371ac7ea7d8da36248d92098af6320b77
- Sigstore transparency entry: 191620457
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a422427ae9595b8d3832b231a6bb62559072da91edf46c34e84f491d3131b6 |
|
MD5 | b39973ef981947c39e4aa2f9a91ae8f4 |
|
BLAKE2b-256 | d589c950e177bf1b58a34fa8aff1e731fcda8398c57d22978faffa5ae8c947cf |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
e9a422427ae9595b8d3832b231a6bb62559072da91edf46c34e84f491d3131b6
- Sigstore transparency entry: 191620535
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bf92bea1c1b6c546753ba67215946de1aecbab551c547f7822f844c5423b6a2 |
|
MD5 | 87252487fc9d1fda472e26564e902d2e |
|
BLAKE2b-256 | 6dc5a5ee2a8fe3085d3fe53f76330d73cf39eada2dad4f1e56c88b017713bd78 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Subject digest:
4bf92bea1c1b6c546753ba67215946de1aecbab551c547f7822f844c5423b6a2
- Sigstore transparency entry: 191620481
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7554f98d5d414b74cdbb2fb09422d5e877d513402438042f05238ce56c9b467e |
|
MD5 | 88e26bc2c4d91744dac0b71d39ebc448 |
|
BLAKE2b-256 | eeedc489604675011639812c54c9a1b462b6050886664d5423b4c28675e16ace |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Subject digest:
7554f98d5d414b74cdbb2fb09422d5e877d513402438042f05238ce56c9b467e
- Sigstore transparency entry: 191620565
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d1201d8f883e5dc7e8e5819ecb5d0f95f81c5a2d2c6b484cbb91101861df224 |
|
MD5 | 3efd41b3756e64a7eab7af9d78966f45 |
|
BLAKE2b-256 | 5d9e77e60a5c3d1d380441f0c52e98ffa698998d8e343aa2a65307bb4d16c034 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-win_amd64.whl
- Subject digest:
9d1201d8f883e5dc7e8e5819ecb5d0f95f81c5a2d2c6b484cbb91101861df224
- Sigstore transparency entry: 191620571
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-win32.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2199212f0169c6a4a72acf21c1d08279bfd1b537d4a1729438297c17f5db64f |
|
MD5 | 3e52ccc094269ed6395d2649b4a976d0 |
|
BLAKE2b-256 | 11245a6653a9c617cadc024b9dcb6f42eef0f5ce7cd88742a7556403781bf0eb |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-win32.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-win32.whl
- Subject digest:
d2199212f0169c6a4a72acf21c1d08279bfd1b537d4a1729438297c17f5db64f
- Sigstore transparency entry: 191620454
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d9239fa0fb05949551d46d10d2c70bc0d7ea04518a6476140350e57ce7a957a |
|
MD5 | 109dd9a4c3813303d2cb05f855f59d34 |
|
BLAKE2b-256 | 67fb23634af33f657972ee5d38269ab26deb29c90ff21acce6c6707eacdc4412 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-musllinux_1_2_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Subject digest:
9d9239fa0fb05949551d46d10d2c70bc0d7ea04518a6476140350e57ce7a957a
- Sigstore transparency entry: 191620559
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a61455e8025d9131fa90934a98df38db377b8822fafa20eef83a9b40a66cc62a |
|
MD5 | 244862449ed37daf9191f7c3c0f44a10 |
|
BLAKE2b-256 | ff7eda55afa63d7ed74a4e67371e2d09510d763bdb5571ba4d43d59e3e83c898 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-musllinux_1_2_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-musllinux_1_2_i686.whl
- Subject digest:
a61455e8025d9131fa90934a98df38db377b8822fafa20eef83a9b40a66cc62a
- Sigstore transparency entry: 191620439
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 696cef95da93a6ca015e96e3bae72e34d5af6d35cc80e9d814672f638dc67a2e |
|
MD5 | 5635c8757677d21a51cb7a78b933d95f |
|
BLAKE2b-256 | 101c80532ca3f62dc3f70fecc899306c30232e971327a92994cc449f8ad9ba85 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-musllinux_1_2_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Subject digest:
696cef95da93a6ca015e96e3bae72e34d5af6d35cc80e9d814672f638dc67a2e
- Sigstore transparency entry: 191620510
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa1642f9bd4f569b427deb9ccad96470ddc168ee17c9b68504353dcf541cb61e |
|
MD5 | 51b276c15e2b2dc87ad868019c67c856 |
|
BLAKE2b-256 | d1b7bc23ac6a49c738245fd43b0ad8558dd09779a6988ec517ebe197550287f7 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-musllinux_1_2_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Subject digest:
aa1642f9bd4f569b427deb9ccad96470ddc168ee17c9b68504353dcf541cb61e
- Sigstore transparency entry: 191620518
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-manylinux_2_36_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-manylinux_2_36_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.36+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa41c11bc05e1cef651f31dcb9fff421b523944bd92ebd7b8ade214c581c793b |
|
MD5 | 5eb8d0490241a723f34dc98d58e73488 |
|
BLAKE2b-256 | 22656dcc86cee39a12966827a9e86be2023de7b0719a0bdbe2fa66e8f44ed24c |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-manylinux_2_36_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-manylinux_2_36_x86_64.whl
- Subject digest:
aa41c11bc05e1cef651f31dcb9fff421b523944bd92ebd7b8ade214c581c793b
- Sigstore transparency entry: 191613996
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5526ff32b25a9d49a7c3733015f0492ca10fa398d2ddafd62c492ab43bdd843 |
|
MD5 | 792abeacfad499a125b0666c82d63d96 |
|
BLAKE2b-256 | c9d9231ce9e90c682336c162c4383827b3c1554b6c6b92e4df368f0e93f761b4 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Subject digest:
e5526ff32b25a9d49a7c3733015f0492ca10fa398d2ddafd62c492ab43bdd843
- Sigstore transparency entry: 191620550
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a94f01b7c8951ce1a7e92da8d3553ac9bef79a8a0134fe2fd3939850a3b70628 |
|
MD5 | e3f83d34bd82a91685085cf5d8ab927b |
|
BLAKE2b-256 | 44331c6a7f0c15c85e4a2eabad10ecaca448439d1930a6034c574e1959790297 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
a94f01b7c8951ce1a7e92da8d3553ac9bef79a8a0134fe2fd3939850a3b70628
- Sigstore transparency entry: 191620523
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b04eacdb4e080ec20eef67fa36bec893dcc34fe04582b097dbca3ab217e359b |
|
MD5 | cfa5ddf42c72b85f35d2d045face6971 |
|
BLAKE2b-256 | 70c4b67920a89fe1b67fc1495e06e4f15f34c290c5fe57eac40ef0beb49d3b2c |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
7b04eacdb4e080ec20eef67fa36bec893dcc34fe04582b097dbca3ab217e359b
- Sigstore transparency entry: 191620466
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4ec0193f9623f0f12895b72be55b6254809d4e64396fe97b05847eb5c0e7e85 |
|
MD5 | 686bf3c6ea66a7088dd3883acdd468f0 |
|
BLAKE2b-256 | a22e3641322b2a308bdd6a26e8503f4f8ea5f37301b17b7008b5bb4e66946c47 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
e4ec0193f9623f0f12895b72be55b6254809d4e64396fe97b05847eb5c0e7e85
- Sigstore transparency entry: 191620480
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8402906d7667d61f5764d91699f88ab79ba1e693c67bccbdf357592b53ecc858 |
|
MD5 | 1001d3e3e1f04b24a796d21cad0dee2d |
|
BLAKE2b-256 | 04e5bb8a1031f46374a3b517740d74d00523c9e197f4d4c22e609db8cd0c0caf |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-macosx_11_0_arm64.whl
- Subject digest:
8402906d7667d61f5764d91699f88ab79ba1e693c67bccbdf357592b53ecc858
- Sigstore transparency entry: 191620534
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7f3423e672dbff96090cba632a9829a6f173d71d5e5b842220ab7cc4a3495c0 |
|
MD5 | cb88f4488a389a1d0b2937b3f8e0682c |
|
BLAKE2b-256 | b5bfc40a527e8d6f099daa1c35ad15c7af438429ee2327bfca767c841cf1329e |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp313-cp313-macosx_10_13_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp313-cp313-macosx_10_13_x86_64.whl
- Subject digest:
a7f3423e672dbff96090cba632a9829a6f173d71d5e5b842220ab7cc4a3495c0
- Sigstore transparency entry: 191620551
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89bbcdc5ed96c9678ac91a1cbe19aed7e27b28f408529920b3e3a4c0f758c1f3 |
|
MD5 | 8103f910c72ce23dbbb08ebeaa40f00f |
|
BLAKE2b-256 | 57c0a7388320b6bb7e59ce5f9319ce41754333504f15eb2e2f8696157f7c4060 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-win_amd64.whl
- Subject digest:
89bbcdc5ed96c9678ac91a1cbe19aed7e27b28f408529920b3e3a4c0f758c1f3
- Sigstore transparency entry: 191620512
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-win32.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c6c6f13a32380c357d1193aafa542aaacb013fc64da37fc608230f967cbcfda |
|
MD5 | 82e40520f843153bb4293f6dc320bc03 |
|
BLAKE2b-256 | df23f975f5d73013722b3a104a1c49772e74e25e48bafadf3233e4798b8e017c |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-win32.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-win32.whl
- Subject digest:
5c6c6f13a32380c357d1193aafa542aaacb013fc64da37fc608230f967cbcfda
- Sigstore transparency entry: 191620520
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94546e09319686b937f062aaeec11f6ac85621d7a4fd6a24833ee5c009348df0 |
|
MD5 | 64ec4e9864a55645cced07aa8872c366 |
|
BLAKE2b-256 | c3cc61391b0ec1957d9926ecf5288063aa90a16002b1845d0ea7ef8d5947c977 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-musllinux_1_2_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Subject digest:
94546e09319686b937f062aaeec11f6ac85621d7a4fd6a24833ee5c009348df0
- Sigstore transparency entry: 191620505
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a54929722444ecbc19551c7c4cc30515987506634a00a920fc6b7abc4ae260df |
|
MD5 | 216f6fdd38c05a30d6a158e740e501b4 |
|
BLAKE2b-256 | c5ba3ecd6c380bde84d9f92814bc2af411b0a67df76320a96055780140ff22ce |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-musllinux_1_2_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-musllinux_1_2_i686.whl
- Subject digest:
a54929722444ecbc19551c7c4cc30515987506634a00a920fc6b7abc4ae260df
- Sigstore transparency entry: 191620452
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2a38f1a9745b8ae3a9364e4499a0561c14c41ebada8c44daf7c60c0a4b23ba2 |
|
MD5 | ae3b7c9763a3fdbc443cca03293650bb |
|
BLAKE2b-256 | b869ca39dcbe53937151095f200e1f6ec42e76f1f8b583e7c29f1fd26c49db3f |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-musllinux_1_2_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Subject digest:
f2a38f1a9745b8ae3a9364e4499a0561c14c41ebada8c44daf7c60c0a4b23ba2
- Sigstore transparency entry: 191620515
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a9bbe168b86f2fea1a19f3fa6fe432cd6729f389dbc9ac5188e07d9632d9fe1 |
|
MD5 | f7943cf95ccb7638ea871229a1286260 |
|
BLAKE2b-256 | bad8c02bdbc36f30c9cacc04d23ea0641d65a3c76064a13b18aff16260a8fa05 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-musllinux_1_2_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Subject digest:
5a9bbe168b86f2fea1a19f3fa6fe432cd6729f389dbc9ac5188e07d9632d9fe1
- Sigstore transparency entry: 191620563
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70d79d645b8442eeed0963af07c2b5b498a39bda16a5d322b5a248420ae7f0bd |
|
MD5 | 2808a9c02b485326db23209a61a4d7bd |
|
BLAKE2b-256 | e69549e9cf2c563102de454bbf90d6fa79d886167a91c9af133a25b9498bca51 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Subject digest:
70d79d645b8442eeed0963af07c2b5b498a39bda16a5d322b5a248420ae7f0bd
- Sigstore transparency entry: 191620494
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e7a6696bffba37645d1998f682056d88099187cef882a527e0893daad6a540a |
|
MD5 | b57f30cc51f7baa220505ffbebc2ab98 |
|
BLAKE2b-256 | 52b42bb97938b99788c6b32a470703354650dac47c7f65ad5863c5f2198c31f4 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
8e7a6696bffba37645d1998f682056d88099187cef882a527e0893daad6a540a
- Sigstore transparency entry: 191620489
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2869bc2a8f588d3d2fc7bd7118453d6ab92927bdc286505b1a984b4ec31a245d |
|
MD5 | 0c9ef34cc2f7665384df9225137896b2 |
|
BLAKE2b-256 | 50e1754be6ee9f4a5517e392598077791e7c9f5c43fc0033926406df855eb849 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
2869bc2a8f588d3d2fc7bd7118453d6ab92927bdc286505b1a984b4ec31a245d
- Sigstore transparency entry: 191620499
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4e1f511143cb14f176011820cc66375e6041452f3730b9dbc48e4b9e5b0ab84 |
|
MD5 | 2f36c872df97c246157080868cd75117 |
|
BLAKE2b-256 | 5b879bd4d12507983737857ea1dc0d79f96ed87cd5f5c40e58f788e6390e3c50 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
a4e1f511143cb14f176011820cc66375e6041452f3730b9dbc48e4b9e5b0ab84
- Sigstore transparency entry: 191620529
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59769a5fdbe1a55efe8476989eae2ce9276e0b05431c4a8c6b9174539922961f |
|
MD5 | d91b74516ffd5b267992395578e42796 |
|
BLAKE2b-256 | 535d291c75bf657f8f727fbae5b6b86077166aa9ea595a1392de5ff022e8777b |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
59769a5fdbe1a55efe8476989eae2ce9276e0b05431c4a8c6b9174539922961f
- Sigstore transparency entry: 191620468
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a23b4a17b90c936b83752e63c3378ce477deb40d2fd327cf09078bdb1b7edfdb |
|
MD5 | 45434ea96202be9b101efd9c041f1a0f |
|
BLAKE2b-256 | bb38d6d3c84951eef2008a759f9709dbc282bbddd90944cb0f28d63a0f8f4b44 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp312-cp312-macosx_10_13_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp312-cp312-macosx_10_13_x86_64.whl
- Subject digest:
a23b4a17b90c936b83752e63c3378ce477deb40d2fd327cf09078bdb1b7edfdb
- Sigstore transparency entry: 191620500
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edc7fc6f929369dd17fdc7411ce900afa745de4d40d839c7266555f16b93b0bc |
|
MD5 | edc6bf18dc30287c2cd003e8cfc0371a |
|
BLAKE2b-256 | b49fe25f649407af2022f7b54c65cc7fc1a7aa0850c0b258ac65b38de39c7fab |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-win_amd64.whl
- Subject digest:
edc7fc6f929369dd17fdc7411ce900afa745de4d40d839c7266555f16b93b0bc
- Sigstore transparency entry: 191620547
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-win32.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd17ab2d1b42d01405d645db8756d9a2929cfaefb8b940c4be7a498f73fcb6fa |
|
MD5 | 30f84c9773920adb71c3e656009b9d03 |
|
BLAKE2b-256 | cc4981bc99e26856f8f00d17b2309a32007df4762ec9052da956909511aa9e71 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-win32.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-win32.whl
- Subject digest:
dd17ab2d1b42d01405d645db8756d9a2929cfaefb8b940c4be7a498f73fcb6fa
- Sigstore transparency entry: 191620546
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee34b60e60d2ff3280f625eed85fb5921b941ab1903527b390968534633a8ae9 |
|
MD5 | 5758a9902574ce733e212541f2c94ee6 |
|
BLAKE2b-256 | 6921c55bf06f6a48615f77a2e92a5d48c2186c0065e9064040055baa8671cf42 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-musllinux_1_2_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Subject digest:
ee34b60e60d2ff3280f625eed85fb5921b941ab1903527b390968534633a8ae9
- Sigstore transparency entry: 191620478
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af9d0c2ec239c040cfd46af3638e2120cfc8ff33e2dd724b471d59392d561dd2 |
|
MD5 | c0952cde208a3313058debb63c2f3e97 |
|
BLAKE2b-256 | e7518871b57f0d96e152a84fde20761617ccee3a66cf9aadc74ca5b2efa0df87 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-musllinux_1_2_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-musllinux_1_2_i686.whl
- Subject digest:
af9d0c2ec239c040cfd46af3638e2120cfc8ff33e2dd724b471d59392d561dd2
- Sigstore transparency entry: 191620552
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1c69cab61e229926be2ad94b1595874f41e2d6cf4015c4a33ce788c3afc2f5e |
|
MD5 | 9cb8c837777887d3d8d5c6ab402ffc41 |
|
BLAKE2b-256 | 28c16bb86f65e49a210806f22a23b1d6ba821614a652882f5a194bad59297ba4 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-musllinux_1_2_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Subject digest:
b1c69cab61e229926be2ad94b1595874f41e2d6cf4015c4a33ce788c3afc2f5e
- Sigstore transparency entry: 191620438
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52b6d3e361b1fffc5342d931a1aade8b4d46ca1ee9cadb5d0fe0e42624efbb42 |
|
MD5 | 2ea05634a9360ea82dc713ea29fe277d |
|
BLAKE2b-256 | ec1876fb101751a8d95b61d06fb3b202210867c09ae3c892de5e41fae286605e |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-musllinux_1_2_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Subject digest:
52b6d3e361b1fffc5342d931a1aade8b4d46ca1ee9cadb5d0fe0e42624efbb42
- Sigstore transparency entry: 191620560
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56f0bf5d93736f143714de36468b03b0fcb9c49a5248e588505ced20ae7bef9a |
|
MD5 | f2ac90a6ee58e3a56263ef4fd267cfce |
|
BLAKE2b-256 | ebbf72590bf866ce893ab720c1a35d91ab50424e8eeae9ee78f17121aea16639 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Subject digest:
56f0bf5d93736f143714de36468b03b0fcb9c49a5248e588505ced20ae7bef9a
- Sigstore transparency entry: 191620469
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6ecbcb40660b23d6cfaecba8895b376bf769a2de46bb9004f67b7590738ab6d |
|
MD5 | b5a4469d75874a177c52001367100208 |
|
BLAKE2b-256 | fb2ce75310e5095b199b1a7907615879fab80e82d72eaaafa8315760418b86ec |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
d6ecbcb40660b23d6cfaecba8895b376bf769a2de46bb9004f67b7590738ab6d
- Sigstore transparency entry: 191620554
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9daad2458dc4723743716e697cbf164b90b63b5854ec125ca4494d14bdb08a08 |
|
MD5 | 06e34270b72da7e3f7c09ed48cbe7ee1 |
|
BLAKE2b-256 | fa7ac8f9a1a53f9d44c9b0b2568f7271435c673c00d8476eedfd232696400ac5 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
9daad2458dc4723743716e697cbf164b90b63b5854ec125ca4494d14bdb08a08
- Sigstore transparency entry: 191620497
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b79034c88d9890b3b7d60ca101cc13e3675cd5c168f6cb25239a2a535454c427 |
|
MD5 | 59eaba9ac8fb4567cbecfb44b76f0050 |
|
BLAKE2b-256 | dd1dfd50f39b061e69a7da0e243c3ffb354e9674e4a6a1737e322c9e511f4f59 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
b79034c88d9890b3b7d60ca101cc13e3675cd5c168f6cb25239a2a535454c427
- Sigstore transparency entry: 191620542
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49d3dae62277cf187c377c9ea0c92e6e2734909f5b3cec85750b38c86e110053 |
|
MD5 | 392dc305cddaa8c62ad3d6370bcbaa2c |
|
BLAKE2b-256 | 4c7373736d79357f24be1f2414f5c8f5a9941f0b6bcab938d9c76e1ed91dfc83 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
49d3dae62277cf187c377c9ea0c92e6e2734909f5b3cec85750b38c86e110053
- Sigstore transparency entry: 191620482
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f427c767a2e6b5c529a6444b0aad2840fd456d2a798210b761bc0ce570689518 |
|
MD5 | 5b36b764564e154d5b456ff8ab60e0af |
|
BLAKE2b-256 | 8f3a8a442a3a9bd4310f84d58e0f6715fa9cb9fd4b41f93e44a154dcf6054395 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp311-cp311-macosx_10_9_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp311-cp311-macosx_10_9_x86_64.whl
- Subject digest:
f427c767a2e6b5c529a6444b0aad2840fd456d2a798210b761bc0ce570689518
- Sigstore transparency entry: 191620491
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bb3dd890201a49b603b8c268516e5cc57fff6a3b0aad51696537a3aefd5dd59 |
|
MD5 | 5476391bef03633380ceaa3d0d66963a |
|
BLAKE2b-256 | 8161846e091aaf9371d4cf86c9e067f6f8260bb0d6f339536b153345bb9ad717 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-win_amd64.whl
- Subject digest:
6bb3dd890201a49b603b8c268516e5cc57fff6a3b0aad51696537a3aefd5dd59
- Sigstore transparency entry: 191620561
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-win32.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bddec05c19f83f2721eefe81ccc5db0f32092eb6f29fe990687c2681630422c5 |
|
MD5 | f3d1bf0ce31c9273748e9693b691a133 |
|
BLAKE2b-256 | 7d46d377e37e1c649864cce1fe4b3e842406bf71282fb4e2b63bcb4e308b444c |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-win32.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-win32.whl
- Subject digest:
bddec05c19f83f2721eefe81ccc5db0f32092eb6f29fe990687c2681630422c5
- Sigstore transparency entry: 191620521
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63296d87de11e3ab6353ecd51f19141a4b1c0ef4b484cb8d4a0ce6cb2a48042f |
|
MD5 | 35981ce990566a4bd62e1a5d84faa791 |
|
BLAKE2b-256 | 0046c8ad5f66151a4f97429e3db4477bcb6763f0d3fef19bc47c6513a8a4aea0 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-musllinux_1_2_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Subject digest:
63296d87de11e3ab6353ecd51f19141a4b1c0ef4b484cb8d4a0ce6cb2a48042f
- Sigstore transparency entry: 191620458
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1f4cb35d4811098f3196a7aa5887da6e073949ebc45ac490be80f04d6d0a853 |
|
MD5 | 011d39a19d39ec8df6a8dd95196b2af0 |
|
BLAKE2b-256 | df1cc4f6a9b61a48131d7f570ae74afa14de25f3ba37c770ab01daebd6d71901 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-musllinux_1_2_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-musllinux_1_2_i686.whl
- Subject digest:
f1f4cb35d4811098f3196a7aa5887da6e073949ebc45ac490be80f04d6d0a853
- Sigstore transparency entry: 191620557
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddfe04083137e45600ea3a3fcc4fa0dc34075f801267601166de8c795b6092a0 |
|
MD5 | 04299b06e618606d83777c8f0e2b0367 |
|
BLAKE2b-256 | e5f69230adbc313653fb3afa29cfe811922f949242e1af57207e7cbb4daa78d9 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-musllinux_1_2_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Subject digest:
ddfe04083137e45600ea3a3fcc4fa0dc34075f801267601166de8c795b6092a0
- Sigstore transparency entry: 191620444
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9d96cfe1a01e0f0f0a83b8ba135f55efda7fdb1b00c8147c8c89dcbd0e55ce3 |
|
MD5 | 49ec53e3c5a25da5131fdaa21b7ee588 |
|
BLAKE2b-256 | 408a3da616dc8b045f1acb2730289adc602b34a29b90b2c309971036a1b449c4 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-musllinux_1_2_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Subject digest:
a9d96cfe1a01e0f0f0a83b8ba135f55efda7fdb1b00c8147c8c89dcbd0e55ce3
- Sigstore transparency entry: 191620532
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70957d89ba45e202dcb382a9bb46a3423691f342f9305a83f9d52f2fb4324d2f |
|
MD5 | e0bd0ffdfccddda7115231b7ed6165ae |
|
BLAKE2b-256 | 9a8d9a4c4c17988965b9261f3d5edce2b1ebb40dae8a34369eba4ecfbfe0debb |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Subject digest:
70957d89ba45e202dcb382a9bb46a3423691f342f9305a83f9d52f2fb4324d2f
- Sigstore transparency entry: 191620473
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dd0e0cddf976f30bf2675ab85da9d5c2f3b1bb8745aef8a0cfe8ab483b73758 |
|
MD5 | fec274df337f1f9c7c0ea2a511464889 |
|
BLAKE2b-256 | 2175f0e4401387d1250c442d30a101a6268a14f47549f61e087316b16371273e |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
8dd0e0cddf976f30bf2675ab85da9d5c2f3b1bb8745aef8a0cfe8ab483b73758
- Sigstore transparency entry: 191620445
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da81dc9e6fe038a10250722fc252bf991259cfa579e922987832b4fdd0fc48f7 |
|
MD5 | 8f48ac635919a6ec8a992c0bb9e405d3 |
|
BLAKE2b-256 | 31f5e7d7b9ea85c33989faf5e42a792b9e8a18d247cf00bd04fc211396257414 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
da81dc9e6fe038a10250722fc252bf991259cfa579e922987832b4fdd0fc48f7
- Sigstore transparency entry: 191620544
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79e58c2da48a38b3b116a7047dff3d6ac879d5ed228677a48ce9951635f8e110 |
|
MD5 | 4d39d707906b6dc29be5cc2007bb45bd |
|
BLAKE2b-256 | e5adabb141344a9afb6fea8ae7208220154ee72fcc7a01d1415f2b9c8a2b5434 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
79e58c2da48a38b3b116a7047dff3d6ac879d5ed228677a48ce9951635f8e110
- Sigstore transparency entry: 191620486
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72dee254b03a9e11e60a25b68513c6c481da0f7fa244a4722fa89e0919254eba |
|
MD5 | 2d8716d0d94734282d6b450785c93134 |
|
BLAKE2b-256 | dd23240828f0724988db79aee967d7d63788293ea59b28ca7eebaec5d601b8b1 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
72dee254b03a9e11e60a25b68513c6c481da0f7fa244a4722fa89e0919254eba
- Sigstore transparency entry: 191620436
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffe1f1ff9caa9d1db336b706abd3da29d4541735039615c212da867a6f440da7 |
|
MD5 | 2e1e9964f2f1ed43de7ccd235a06f5ec |
|
BLAKE2b-256 | 9519ffde73400fbb66f3911865e85bc6c6ff679f61b3d38e00594a7934dc4ec8 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp310-cp310-macosx_10_9_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp310-cp310-macosx_10_9_x86_64.whl
- Subject digest:
ffe1f1ff9caa9d1db336b706abd3da29d4541735039615c212da867a6f440da7
- Sigstore transparency entry: 191620446
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 877be3e8ed62cf65c1a743953372f243aba487fbcedb2374ba62d72d4327d6b8 |
|
MD5 | b6f6f35cd817f17d9fcd5fb9dde724fb |
|
BLAKE2b-256 | 51088f996939d3b647896da31f8b2fc4c8d2f7e1b6b4b711686ae9f2c587ae09 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-win_amd64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-win_amd64.whl
- Subject digest:
877be3e8ed62cf65c1a743953372f243aba487fbcedb2374ba62d72d4327d6b8
- Sigstore transparency entry: 191620507
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-win32.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-win32.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07129953835f48f5faa4733be6b7c83941a4541d064c839e6a7f2ba52fc3baf9 |
|
MD5 | 678915bd60018d3320bc3bda3bfc624a |
|
BLAKE2b-256 | cea1ee3f720148e4f9be3293320505e6d2bb3407c1b2eb362d8053edb2ff9103 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-win32.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-win32.whl
- Subject digest:
07129953835f48f5faa4733be6b7c83941a4541d064c839e6a7f2ba52fc3baf9
- Sigstore transparency entry: 191620556
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e2ba95335df1dc97133c83ee26de1bc89279966784492a01fc45e26e9610840 |
|
MD5 | 8a42799322f1833df2daee61267c6ed5 |
|
BLAKE2b-256 | 60d4e888bc22f34dc0bb178754482c2d2733601468885346c3dc4a409e816f09 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-musllinux_1_2_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Subject digest:
5e2ba95335df1dc97133c83ee26de1bc89279966784492a01fc45e26e9610840
- Sigstore transparency entry: 191620527
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 892d1fd9e07011b8157588b45e3f3d887337425ef2fcb508e39449428c3deca4 |
|
MD5 | 39d7518abb2cfc2a0953cef407e25db1 |
|
BLAKE2b-256 | bf7fae770b9585ed28e7ba179001e340fedc83dd2cfd2e5d20e924c3a41d36b4 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-musllinux_1_2_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-musllinux_1_2_i686.whl
- Subject digest:
892d1fd9e07011b8157588b45e3f3d887337425ef2fcb508e39449428c3deca4
- Sigstore transparency entry: 191620456
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 500daf890955e3280163cbc7aeb900c8bb2b7bd00067bc47dcdfada6db990263 |
|
MD5 | fc4cfbd6605b1e43a913c12a5047db78 |
|
BLAKE2b-256 | a6c7a04fd8c2699b78dc6deb59d1cbb177ed5cb4782c9996c0d32f7402552872 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-musllinux_1_2_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Subject digest:
500daf890955e3280163cbc7aeb900c8bb2b7bd00067bc47dcdfada6db990263
- Sigstore transparency entry: 191620462
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7665d8260361f8bbc57d0313f4c1a90a99ca49e9775f84de53efb8f90813f1e |
|
MD5 | 9bf6517ff7f9bd25754666fc1b4be294 |
|
BLAKE2b-256 | f068395c0adabfab2404eed239cbe9d625c0baef75c19f1de1d2a82eb1098cb2 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-musllinux_1_2_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Subject digest:
e7665d8260361f8bbc57d0313f4c1a90a99ca49e9775f84de53efb8f90813f1e
- Sigstore transparency entry: 191620498
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6516483845a679ac794c8cd19943fe48c6a7973c8902bb1fbbb88fe97b0b1892 |
|
MD5 | 15a1330c59610725fcfea633267007ca |
|
BLAKE2b-256 | 0d3ce1a98c7d4a12b49289fcc39fc36b9fb326d50140aed93de7afdf6d65e9f1 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-manylinux_2_31_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Subject digest:
6516483845a679ac794c8cd19943fe48c6a7973c8902bb1fbbb88fe97b0b1892
- Sigstore transparency entry: 191620508
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b30422cd534381a211f14ffd3081bfc058e951b3aba456775a44c8d2264857eb |
|
MD5 | 92fd193164c4851d4e7c2d1e00f4d1e0 |
|
BLAKE2b-256 | 829b0a078a112f1da1a3730ef448c7c2e60d24fe644a45c5289ea43f6b3b9a9d |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
b30422cd534381a211f14ffd3081bfc058e951b3aba456775a44c8d2264857eb
- Sigstore transparency entry: 191620474
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76ebe18df0ea2929e601556b3a900bcd8899fdb03bdbda3d4b4955c7680af75e |
|
MD5 | 392c29da54c203f58121fa5ddf133105 |
|
BLAKE2b-256 | 52051b41cc2f0d8cd451bd7dfc22082618a27bc8859338581003e799c79f66cf |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
76ebe18df0ea2929e601556b3a900bcd8899fdb03bdbda3d4b4955c7680af75e
- Sigstore transparency entry: 191620448
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbc96219f0af3e066905f94735cc499e5814b2ef2a4fded59ec1e974aa7ea001 |
|
MD5 | 4d600104278f0c352eb153e3b07e81e2 |
|
BLAKE2b-256 | b6633139bd09e422f3286e2e414bab96032497245423a7a95ffc2f5a1b98aab2 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
bbc96219f0af3e066905f94735cc499e5814b2ef2a4fded59ec1e974aa7ea001
- Sigstore transparency entry: 191620524
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 075838ffbf95dad6eff9fc592ccc18d2231eef9d6d3002e99cd3ebcdd0176cdc |
|
MD5 | f529f53a9c4d7fce785d3a313de75c73 |
|
BLAKE2b-256 | 0cb08d5fb847ebd9dd930c67d00ee72aa9a6f9b1f63afd83b791e31d8e92310d |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
075838ffbf95dad6eff9fc592ccc18d2231eef9d6d3002e99cd3ebcdd0176cdc
- Sigstore transparency entry: 191620538
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type:
File details
Details for the file zeroconf-0.146.3-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: zeroconf-0.146.3-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0144e6b3b529c648a3716d2045d4327e8ade842094039e2c845f85616dd959e3 |
|
MD5 | 58d861bc28d7176e917029ac69ac4899 |
|
BLAKE2b-256 | 86ee1c6e8043081abda0b82a3c1b9a954d0df262cf3aea0ffb767352260df9c8 |
Provenance
The following attestation bundles were made for zeroconf-0.146.3-cp39-cp39-macosx_10_9_x86_64.whl
:
Publisher:
ci.yml
on python-zeroconf/python-zeroconf
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
zeroconf-0.146.3-cp39-cp39-macosx_10_9_x86_64.whl
- Subject digest:
0144e6b3b529c648a3716d2045d4327e8ade842094039e2c845f85616dd959e3
- Sigstore transparency entry: 191620496
- Sigstore integration time:
- Permalink:
python-zeroconf/python-zeroconf@bd643a227bc4d6a949d558850ad1431bc2940d74
- Branch / Tag:
refs/heads/master
- Owner: https://github.com/python-zeroconf
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@bd643a227bc4d6a949d558850ad1431bc2940d74
- Trigger Event:
push
- Statement type: