A fork of pyenet with DLTS support
Project description
pyenet-dtls is a Python wrapper for the ENet UDP networking library with DTLS (Datagram Transport Layer Security) support via OpenSSL.
It is a fork of pyenet, originally written by Scott Robinson and maintained by Andrew Resch and the piqueserver team.
Features
Full Python 3 support (Cython 3)
Optional DTLS encryption for secure UDP communication
Builds with or without OpenSSL (DTLS is automatically enabled when OpenSSL is available)
Pre-built wheels for Linux, Windows, and macOS
License
pyenet-dtls is licensed under the BSD license, see LICENSE for details. ENet is licensed under the MIT license, see http://enet.bespin.org/License.html
Dependencies
Python >= 3.9
Cython >= 3
OpenSSL development headers
Installation
From PyPI
pip install pyenet-dtls
From source
git clone --recursive <repo-url> cd pyenet pip install .
Building wheels
Build locally using Docker/Podman (Linux only):
./scripts/build_packages.sh
Wheels are output to the wheelhouse/ directory.
For all platforms (Linux, Windows, macOS), push to GitHub and use the Wheel build workflow, or create a release to trigger the Publish to PyPI workflow.
Usage
Basic example (no DTLS):
>>> import enet
>>> # Server
>>> server = enet.Host(enet.Address("localhost", 33333), 32, 2, 0, 0)
>>> event = server.service(1000)
>>> # Client
>>> client = enet.Host(None, 1, 2, 0, 0)
>>> peer = client.connect(enet.Address("localhost", 33333), 2)
With DTLS encryption:
>>> import enet
>>> # Server with TLS certificate
>>> server = enet.Host(enet.Address("localhost", 33333), 32, 2, 0, 0,
... dtls_cert="server.pem", dtls_key="server.key")
>>> # Client connecting with DTLS
>>> client = enet.Host(None, 1, 2, 0, 0)
>>> peer = client.connect(enet.Address("localhost", 33333), 2, dtls=True)
Check if DTLS support is available:
>>> import enet >>> print(enet.DTLS_AVAILABLE) True
Generating a self-signed certificate
DTLS requires a certificate and private key for the server. To generate a self-signed certificate for testing or development:
openssl req -x509 -newkey rsa:2048 -nodes \
-keyout server.key -out server.pem \
-days 365 -subj "/CN=localhost"
This creates server.pem (certificate) and server.key (private key) valid for 365 days. For production use, obtain a certificate from a trusted certificate authority.
More information on ENet usage can be found at: http://enet.bespin.org/Tutorial.html
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyenet_dlts-1.5.tar.gz.
File metadata
- Download URL: pyenet_dlts-1.5.tar.gz
- Upload date:
- Size: 250.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc112e5bbf56460d6012319252d5447d1d3b4a3cbe4096c6a7d78eb8078030df
|
|
| MD5 |
a9e1e65b403c1ec9002a1850cac96891
|
|
| BLAKE2b-256 |
d620a8124a57d4a0445bb7039552d5ab8ebf04b119fb1bd4b8ce767b013dc6e9
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5.tar.gz:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5.tar.gz -
Subject digest:
dc112e5bbf56460d6012319252d5447d1d3b4a3cbe4096c6a7d78eb8078030df - Sigstore transparency entry: 957232386
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 83.7 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f50dd138bb8bffab5df3b9bc24907d19abc6334cbc3ec5e146934e6794b2e688
|
|
| MD5 |
1e8dd692d2d88963db736cccc7e88fb4
|
|
| BLAKE2b-256 |
58c708b3486c5b2f01b12d5ae82d6c352f579c9e4c66ef5241f95b3f2b3db51a
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl -
Subject digest:
f50dd138bb8bffab5df3b9bc24907d19abc6334cbc3ec5e146934e6794b2e688 - Sigstore transparency entry: 957234448
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 104.9 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96671cf88d7e9753ba1bce6d0ee3d59d55984a3164d3d1a7959bbabd83dd6637
|
|
| MD5 |
62c360b59c25363547ee5537cfdb03bf
|
|
| BLAKE2b-256 |
632b94046d88c8329f83253264b4967dac4ef84da012ddfd9c5b4907275e182d
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl -
Subject digest:
96671cf88d7e9753ba1bce6d0ee3d59d55984a3164d3d1a7959bbabd83dd6637 - Sigstore transparency entry: 957235076
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86cba549c4a306ab01b38d85601fecbe95da169e041f70ad1c1f578e60562801
|
|
| MD5 |
22eb12cf7c8fb7f23f3f059b2a0aa355
|
|
| BLAKE2b-256 |
6df92cd9a92d14c70276a80b5f41e333320e3870c981ef6dcbe1f9b11c0bc206
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
86cba549c4a306ab01b38d85601fecbe95da169e041f70ad1c1f578e60562801 - Sigstore transparency entry: 957236073
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93a60e4173cd688ae04fda5276a2deafc1720c3c30574e27941d608c2db88872
|
|
| MD5 |
499d38b7df3f1af64f5c5f8a56ba5ab5
|
|
| BLAKE2b-256 |
276a74c0b602acd216fefb250601d5bfdf1a388d2f78771fe2aa4bb4469ea82a
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
93a60e4173cd688ae04fda5276a2deafc1720c3c30574e27941d608c2db88872 - Sigstore transparency entry: 957235869
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14t, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d80848dc12e251acad7d464fda7fb398adeb047fc03c509b6a24fcdfa178d5a0
|
|
| MD5 |
b54029e3cfb34a5fd07fd412e3f60959
|
|
| BLAKE2b-256 |
d612c9d794515d4028a38a91f6aeb60f4870b7faa63f2b2730ccdb01d4c4f6c5
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl -
Subject digest:
d80848dc12e251acad7d464fda7fb398adeb047fc03c509b6a24fcdfa178d5a0 - Sigstore transparency entry: 957232761
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.14t, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c78a640df81e3bfdedf8e5855339ce4c35a231cdc60dc36f0ebdc9822a79c889
|
|
| MD5 |
af2b46a1aada5f40ca0409e98f91b634
|
|
| BLAKE2b-256 |
e49ae65def6474c526f773bae1e48a5102273c7cad00ba68db9165bc0ff4c1ff
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl -
Subject digest:
c78a640df81e3bfdedf8e5855339ce4c35a231cdc60dc36f0ebdc9822a79c889 - Sigstore transparency entry: 957232817
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 78.2 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb1387d5bd20c5833f4cadb804d32dc4729036707a0be2fc953ce053acc6f757
|
|
| MD5 |
eb1231cdbc7c6f3a7aa0699f0461ce75
|
|
| BLAKE2b-256 |
0539e04ee16921b58600bd16a8b6c157892f7a7779e7360a9552f420d6f532a7
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-win_arm64.whl -
Subject digest:
cb1387d5bd20c5833f4cadb804d32dc4729036707a0be2fc953ce053acc6f757 - Sigstore transparency entry: 957235575
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 89.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e39fb49f5d7f9bbb0dfb1943bc46ba702474ea6b0a436b34b19849f5d2e2fff7
|
|
| MD5 |
8de77768c3d36a10711999d2ca7da3a9
|
|
| BLAKE2b-256 |
1643dfd2955d9f507aeedc0b53a724c350e2a9643e01c22bfb3fa6d386d07c4b
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-win_amd64.whl -
Subject digest:
e39fb49f5d7f9bbb0dfb1943bc46ba702474ea6b0a436b34b19849f5d2e2fff7 - Sigstore transparency entry: 957232564
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79ea05f38332e510cbe32dc180955b21bae2cfcd4da5433be72fc9f5f620bb64
|
|
| MD5 |
edaf79e7d12307937f1a2d27439605eb
|
|
| BLAKE2b-256 |
04a7af3e5d938c8a430da34943d64a559998434ab86e4b340e7ed5906d64460f
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
79ea05f38332e510cbe32dc180955b21bae2cfcd4da5433be72fc9f5f620bb64 - Sigstore transparency entry: 957233900
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8a55348c37759dbb8ec589bdbc71cbf004b32a98a898f21591fb1a8a1981590
|
|
| MD5 |
dc1b815e3ef540a05db875e50b969caf
|
|
| BLAKE2b-256 |
740e4ff0d402b5870892525f8f3ee281e1c8873e0b7933021626db7d9ed31a64
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c8a55348c37759dbb8ec589bdbc71cbf004b32a98a898f21591fb1a8a1981590 - Sigstore transparency entry: 957236300
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.14, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27a59b66991c2aa294e88e44bb709ae9f415316714d170a8dc92ad572d745b60
|
|
| MD5 |
5c34b24a51d21ecb896183caefde16e1
|
|
| BLAKE2b-256 |
91e14ad5ed70c4a58bb590f6ddc2d47fa65def5523d762b1f19f10ed044e0c91
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl -
Subject digest:
27a59b66991c2aa294e88e44bb709ae9f415316714d170a8dc92ad572d745b60 - Sigstore transparency entry: 957232638
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.14, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c326647c2cfefcbe07cee38886bdd196361108f3235775e5198c6b50b07ff2
|
|
| MD5 |
c97a0f762e3f28f31f2589b9b5b90f59
|
|
| BLAKE2b-256 |
9f45bff33a79033533cbb4edf841ebda61ec3b4d2c4e993660704d7f06dca2ca
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl -
Subject digest:
62c326647c2cfefcbe07cee38886bdd196361108f3235775e5198c6b50b07ff2 - Sigstore transparency entry: 957232980
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 75.6 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7793b331595694dea8b9c003222be9747c276d6931507a929de171ba84fe3bbb
|
|
| MD5 |
8085555d07d0279ce647c1cfc662be1b
|
|
| BLAKE2b-256 |
2d12712b354c13ef04bafb442bfabd2c3f2cabdd0cc083476bf9a9ca622a3980
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-win_arm64.whl -
Subject digest:
7793b331595694dea8b9c003222be9747c276d6931507a929de171ba84fe3bbb - Sigstore transparency entry: 957234791
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 87.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02dd101e8916cc2b3a3ad958085132f690ecc8e6bd670d4d88a4febbf3ae2828
|
|
| MD5 |
30b5d868bef1dc5863422a75db212c8b
|
|
| BLAKE2b-256 |
5e4bf75b691225a7d3a857e1537847492102de1339ff6c5b4e882b67120adfa0
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-win_amd64.whl -
Subject digest:
02dd101e8916cc2b3a3ad958085132f690ecc8e6bd670d4d88a4febbf3ae2828 - Sigstore transparency entry: 957234044
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1ad6e9161b68c918d9724f71e8fea9a42253b7405c4b0646450f22c79169be6
|
|
| MD5 |
74799eb553769dc04b75918ca136a193
|
|
| BLAKE2b-256 |
0e3bd0ee72936cd675bc67d38cc6b171d04aa9fb9c9a085fe92dcf9056134b60
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d1ad6e9161b68c918d9724f71e8fea9a42253b7405c4b0646450f22c79169be6 - Sigstore transparency entry: 957232450
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
099be4dd9e1e49cd8afc9df5995ec8b47762cf2c886608b955bfc4f1ca81cfe5
|
|
| MD5 |
3b9957c80cf1f90a884a685b22469600
|
|
| BLAKE2b-256 |
52b05a2f3a1771fc570288ee96376ab2f927c8d01724a9a1e0d50e6e9660700b
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
099be4dd9e1e49cd8afc9df5995ec8b47762cf2c886608b955bfc4f1ca81cfe5 - Sigstore transparency entry: 957233720
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a8c6d7f003a57834671b9e8b6896ba63bf74711b229692a33550701e8a5f919
|
|
| MD5 |
3e9fec96596167d0af598b69cb7a9031
|
|
| BLAKE2b-256 |
6a590cc483e4cd370dead7ac3ba22fab8bc92e6da5a37ba23fd3aeaba597b54f
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl -
Subject digest:
7a8c6d7f003a57834671b9e8b6896ba63bf74711b229692a33550701e8a5f919 - Sigstore transparency entry: 957233806
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33ff9e40e20c135e49462c516c8bbcac9354e77dfe86bc819b678e36f60837cc
|
|
| MD5 |
7c961128021bd18efee4beda8332e623
|
|
| BLAKE2b-256 |
02389fd0e5b85c60287d10131f5c6b3cf4f9ca568ffdef6a9b3a4ed3ada89803
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl -
Subject digest:
33ff9e40e20c135e49462c516c8bbcac9354e77dfe86bc819b678e36f60837cc - Sigstore transparency entry: 957236187
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 76.1 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56589090ef05c029a77d675bed45454f084071520b1ac9b3f4a6de09f319d52e
|
|
| MD5 |
14a85de5b767fd49b17b125a650493a7
|
|
| BLAKE2b-256 |
ce2a5f95bec3a6ec8002dd9a8b4b0e0034bc8beb8cab527f860c442d74c0c316
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-win_arm64.whl -
Subject digest:
56589090ef05c029a77d675bed45454f084071520b1ac9b3f4a6de09f319d52e - Sigstore transparency entry: 957233961
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 88.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c7a3880285bb930b5c579612f2a1b2d47c5bf6a7125a3bea2e96d8576436e71
|
|
| MD5 |
796f3a99382b499e93eda7ca002dfc5e
|
|
| BLAKE2b-256 |
70492a2f895419e82348a9f99a9aa61f998aa549c41188116d40c12595f66950
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-win_amd64.whl -
Subject digest:
2c7a3880285bb930b5c579612f2a1b2d47c5bf6a7125a3bea2e96d8576436e71 - Sigstore transparency entry: 957235462
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ccf8fed20aa90cbe3a9fd47dc44208a30950c008ff9186c077289e6d8eafaa9
|
|
| MD5 |
55123af47d51384f29e972a1e5c3f307
|
|
| BLAKE2b-256 |
7a48acf467dcf280c8ed3997d1f224eda02ec3c8771cb94d7e1390c817d0feb1
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
2ccf8fed20aa90cbe3a9fd47dc44208a30950c008ff9186c077289e6d8eafaa9 - Sigstore transparency entry: 957232929
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
469b11623f0ae7887ff78d3c4e5a629fc540ec12619d138e888e0c4cc24b9cb5
|
|
| MD5 |
80a6c2844fa7d822f8d466995df72c78
|
|
| BLAKE2b-256 |
d54fd5519f95ba3ea2b8a088be83ac82c38f924514d68596e5120c3e88009a03
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
469b11623f0ae7887ff78d3c4e5a629fc540ec12619d138e888e0c4cc24b9cb5 - Sigstore transparency entry: 957235702
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4b2693dee14ed79f34914a911ecb1647e30e78ecb25cfdfc1635d654c7dadff
|
|
| MD5 |
2805d2dd9c559cf091cdf3d7b5aef970
|
|
| BLAKE2b-256 |
057205ac1cd45da50df90e99e560be08970024dd7238d8b9b6555b35fa545421
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl -
Subject digest:
b4b2693dee14ed79f34914a911ecb1647e30e78ecb25cfdfc1635d654c7dadff - Sigstore transparency entry: 957232887
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7086889d21592d819523edd46d83a930b6ebc8dc2b611b2b7255ffea3a6c9ca
|
|
| MD5 |
da2155f122d682310cbda7f655800b08
|
|
| BLAKE2b-256 |
657ada6eaa4b30e9aac9eae8fe76de21360d188bc1d99ff32e367d6e045ed733
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl -
Subject digest:
d7086889d21592d819523edd46d83a930b6ebc8dc2b611b2b7255ffea3a6c9ca - Sigstore transparency entry: 957233396
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3772824bde8ea4dfc978952f706a37cf1da6acbe77d03d2a17b796f43d935452
|
|
| MD5 |
c3ce8baab870fa4200012457db628e96
|
|
| BLAKE2b-256 |
5bc062df688dcbe8a09ea332197cf7731f97f7e44004d7e1eda7bbaaaf71fc20
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-win_arm64.whl -
Subject digest:
3772824bde8ea4dfc978952f706a37cf1da6acbe77d03d2a17b796f43d935452 - Sigstore transparency entry: 957232708
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 87.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b63f391ebbbcfefa7f0de041c63c5b51b28cdaf7e9d72433dd745df21ddecaa5
|
|
| MD5 |
664e7ac786663a370ce7a27f292cfcff
|
|
| BLAKE2b-256 |
7cad4279b55d1dbd49d3d0f6ada27199ae8823a2c481e018134bf52e1eb8b7a8
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-win_amd64.whl -
Subject digest:
b63f391ebbbcfefa7f0de041c63c5b51b28cdaf7e9d72433dd745df21ddecaa5 - Sigstore transparency entry: 957235296
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66b48e6bd05ee5288f753a3563a25e260bab0e55ad26b6e4bc7afa73b3ac4aa0
|
|
| MD5 |
63164639a1a3abec3091e5dce9d6ac80
|
|
| BLAKE2b-256 |
3045dc468803fcb708bf993740a1e262320450fb2f667315545f0645d72ff9ef
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
66b48e6bd05ee5288f753a3563a25e260bab0e55ad26b6e4bc7afa73b3ac4aa0 - Sigstore transparency entry: 957233207
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcead2cc49429eb3b75fbf52aa9ac47933220fda07a8073559c2d74f173cbf50
|
|
| MD5 |
bdf5e00f706dd97215c0c9f395b3bb94
|
|
| BLAKE2b-256 |
eefa2a2c87bbe5e2058944f15d8e785dec15a22fe6f80e6f9f39c32a9ae44cb6
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
dcead2cc49429eb3b75fbf52aa9ac47933220fda07a8073559c2d74f173cbf50 - Sigstore transparency entry: 957233144
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d92d61e758935c8dffbe7f937a6d456a0c41487be1224e448f104fdde736ca51
|
|
| MD5 |
76bf9a3fd972b0778a248fb643d415e2
|
|
| BLAKE2b-256 |
3b6618deb9cffeaf91195b3bbaa940c35a48ee0f2bf8a4d72e933ba7e47cf992
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl -
Subject digest:
d92d61e758935c8dffbe7f937a6d456a0c41487be1224e448f104fdde736ca51 - Sigstore transparency entry: 957234166
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
448aa678acca00a1d2fd122952c84454de548cb4b8a1f6cf14865f261bdb63e2
|
|
| MD5 |
3963a67c870935f3c55e040f69f4c32f
|
|
| BLAKE2b-256 |
392b30df2cf7c6c7e1f56467f58bdbae1dc55d323087922e85c8d4060605b31f
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl -
Subject digest:
448aa678acca00a1d2fd122952c84454de548cb4b8a1f6cf14865f261bdb63e2 - Sigstore transparency entry: 957235977
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 75.9 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13d1aeedb89f446d04d53d97baf099de92e196d8d3779f6a6d60938068c48f38
|
|
| MD5 |
9159c9a5abb9da5cc0ac9fd7846cdb5d
|
|
| BLAKE2b-256 |
aa598b0392eb3a27a21c5aa0572d3539c514b6a96df0ccb08bc50e86a5bbe687
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-win_arm64.whl -
Subject digest:
13d1aeedb89f446d04d53d97baf099de92e196d8d3779f6a6d60938068c48f38 - Sigstore transparency entry: 957234654
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 86.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7750a8ead1d109afa00a8f58f243bbbc98bc167c4aa8645c5da84b7bb442b6f1
|
|
| MD5 |
9054e7acfd8171cf4b42798d38fcd4e6
|
|
| BLAKE2b-256 |
4223315aa7f44e61c94b501d56e0c4eaf338c109bd9ae125bf8061888a1cff66
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-win_amd64.whl -
Subject digest:
7750a8ead1d109afa00a8f58f243bbbc98bc167c4aa8645c5da84b7bb442b6f1 - Sigstore transparency entry: 957234109
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba71b1391359de411f79f51b8e88080585d0dd264003739fe1d63a24ecf580f9
|
|
| MD5 |
d7df8d10d5cfce16a3425ed635b03d29
|
|
| BLAKE2b-256 |
d67d442bea8124957b305207cb0e83ceb58611bcde748c269878c90b4c2011a7
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ba71b1391359de411f79f51b8e88080585d0dd264003739fe1d63a24ecf580f9 - Sigstore transparency entry: 957233079
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35a319906bf2b06406be6b936af0546c3e2340e3517e5cd3c290c221040388b6
|
|
| MD5 |
51208758696c1e31d27da81d9563db23
|
|
| BLAKE2b-256 |
22998fcf799a4289331f81eba4236241326faeff4407725634762d599b827c52
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
35a319906bf2b06406be6b936af0546c3e2340e3517e5cd3c290c221040388b6 - Sigstore transparency entry: 957232789
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a95b8446bac169f64f0d497c6242740e414a461b84e703df818b2f3976848c8c
|
|
| MD5 |
99c1f4370adaaa977a32011342eb9dfa
|
|
| BLAKE2b-256 |
09902ff71277e852787b7c036ee90dfc17d40a5ab8e209de6b7deba2eb9e3c3c
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl -
Subject digest:
a95b8446bac169f64f0d497c6242740e414a461b84e703df818b2f3976848c8c - Sigstore transparency entry: 957233275
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa1540ca2820e29a04a3ab63e4aca0a5c3108d9edf0c322849d4545536012af7
|
|
| MD5 |
cc1e7a3f7e14c093e5764255e280541a
|
|
| BLAKE2b-256 |
124e04c73d09f2fa9baf0a061eb7db55ced68010a1a320d95d71eaead07e35ca
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl -
Subject digest:
fa1540ca2820e29a04a3ab63e4aca0a5c3108d9edf0c322849d4545536012af7 - Sigstore transparency entry: 957233580
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 76.2 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8710284781394840b435efe4aea27115a3dd5bd49763176f4080c1f0c531546
|
|
| MD5 |
1ee0a61208ab4664d00d9d6cfa8ae9f6
|
|
| BLAKE2b-256 |
8124ebb850eab7a2cc5fffc0459a9a3af7a44cd32a9ad4bc2a6aedc8c2792908
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-win_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-win_arm64.whl -
Subject digest:
a8710284781394840b435efe4aea27115a3dd5bd49763176f4080c1f0c531546 - Sigstore transparency entry: 957233481
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 87.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee47d29064143e34ba6ce3f76cb97bc4da6698451a2b2f1757ca0cd4da49fe81
|
|
| MD5 |
cf052a5d9fd35b7bdc53832c5ba1cf87
|
|
| BLAKE2b-256 |
efdff47a3fc6dd3e40da4cc61aa99106c0ab04f964785f53ce03b0ec9f22e537
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-win_amd64.whl -
Subject digest:
ee47d29064143e34ba6ce3f76cb97bc4da6698451a2b2f1757ca0cd4da49fe81 - Sigstore transparency entry: 957234542
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e71f98a102bc7ff59f21aa58187f97c7f231df0f35ed89a99d59a670cee5cfa
|
|
| MD5 |
6b1c5fe08315f7d0a3a626503a493ac0
|
|
| BLAKE2b-256 |
34a5a298034f6a3d1c10b42274262c166a0246565fcaad0a91442346f5a58623
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5e71f98a102bc7ff59f21aa58187f97c7f231df0f35ed89a99d59a670cee5cfa - Sigstore transparency entry: 957234327
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5acc069cbdac05f561156372f394ce9ad7860a455133c097ff82c7bd2b76be46
|
|
| MD5 |
b9a391668c29d76bbc601bb59cb65770
|
|
| BLAKE2b-256 |
7090659c91171a4adb34064c859f8ce545e3631d197e40578c0224936e3f2851
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5acc069cbdac05f561156372f394ce9ad7860a455133c097ff82c7bd2b76be46 - Sigstore transparency entry: 957234914
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, macOS 15.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1526360446e4354c5f1182cef8b0638896da127adbfe6626ad2787a5e8c070bb
|
|
| MD5 |
dd0d817dbdaa1f100917046f369eb71c
|
|
| BLAKE2b-256 |
a4e77117614e83b75eb75766b4919328b44e5c27feffe41087972c4ff6ec8907
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl -
Subject digest:
1526360446e4354c5f1182cef8b0638896da127adbfe6626ad2787a5e8c070bb - Sigstore transparency entry: 957232854
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl.
File metadata
- Download URL: pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, macOS 15.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cee1cecc1d71f434aacfc75cf80f43da9c1a5f30dfeb992b00f519c47b0306bf
|
|
| MD5 |
ec84a116eda23912e6c64a7456f879f8
|
|
| BLAKE2b-256 |
7dc9c97c9b29885d5a391a0c08b70c2cb33e5ff003a229383f6b274239bc581c
|
Provenance
The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl:
Publisher:
publish.yml on Kaifungamedev/pyenet-dlts
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl -
Subject digest:
cee1cecc1d71f434aacfc75cf80f43da9c1a5f30dfeb992b00f519c47b0306bf - Sigstore transparency entry: 957234236
- Sigstore integration time:
-
Permalink:
Kaifungamedev/pyenet-dlts@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Kaifungamedev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1acc0cf7d7a29987ef80771ffdcc932a3ce2f4bd -
Trigger Event:
workflow_dispatch
-
Statement type: