Skip to main content

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

This version

1.5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyenet_dlts-1.5.tar.gz (250.3 kB view details)

Uploaded Source

Built Distributions

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

pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl (83.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl (104.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

pyenet_dlts-1.5-cp314-cp314-win_arm64.whl (78.2 kB view details)

Uploaded CPython 3.14Windows ARM64

pyenet_dlts-1.5-cp314-cp314-win_amd64.whl (89.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

pyenet_dlts-1.5-cp313-cp313-win_arm64.whl (75.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pyenet_dlts-1.5-cp313-cp313-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyenet_dlts-1.5-cp312-cp312-win_arm64.whl (76.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pyenet_dlts-1.5-cp312-cp312-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

pyenet_dlts-1.5-cp311-cp311-win_arm64.whl (75.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pyenet_dlts-1.5-cp311-cp311-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

pyenet_dlts-1.5-cp310-cp310-win_arm64.whl (75.9 kB view details)

Uploaded CPython 3.10Windows ARM64

pyenet_dlts-1.5-cp310-cp310-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

pyenet_dlts-1.5-cp39-cp39-win_arm64.whl (76.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pyenet_dlts-1.5-cp39-cp39-win_amd64.whl (87.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

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

Hashes for pyenet_dlts-1.5.tar.gz
Algorithm Hash digest
SHA256 dc112e5bbf56460d6012319252d5447d1d3b4a3cbe4096c6a7d78eb8078030df
MD5 a9e1e65b403c1ec9002a1850cac96891
BLAKE2b-256 d620a8124a57d4a0445bb7039552d5ab8ebf04b119fb1bd4b8ce767b013dc6e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5.tar.gz:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f50dd138bb8bffab5df3b9bc24907d19abc6334cbc3ec5e146934e6794b2e688
MD5 1e8dd692d2d88963db736cccc7e88fb4
BLAKE2b-256 58c708b3486c5b2f01b12d5ae82d6c352f579c9e4c66ef5241f95b3f2b3db51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96671cf88d7e9753ba1bce6d0ee3d59d55984a3164d3d1a7959bbabd83dd6637
MD5 62c360b59c25363547ee5537cfdb03bf
BLAKE2b-256 632b94046d88c8329f83253264b4967dac4ef84da012ddfd9c5b4907275e182d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86cba549c4a306ab01b38d85601fecbe95da169e041f70ad1c1f578e60562801
MD5 22eb12cf7c8fb7f23f3f059b2a0aa355
BLAKE2b-256 6df92cd9a92d14c70276a80b5f41e333320e3870c981ef6dcbe1f9b11c0bc206

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93a60e4173cd688ae04fda5276a2deafc1720c3c30574e27941d608c2db88872
MD5 499d38b7df3f1af64f5c5f8a56ba5ab5
BLAKE2b-256 276a74c0b602acd216fefb250601d5bfdf1a388d2f78771fe2aa4bb4469ea82a

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d80848dc12e251acad7d464fda7fb398adeb047fc03c509b6a24fcdfa178d5a0
MD5 b54029e3cfb34a5fd07fd412e3f60959
BLAKE2b-256 d612c9d794515d4028a38a91f6aeb60f4870b7faa63f2b2730ccdb01d4c4f6c5

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c78a640df81e3bfdedf8e5855339ce4c35a231cdc60dc36f0ebdc9822a79c889
MD5 af2b46a1aada5f40ca0409e98f91b634
BLAKE2b-256 e49ae65def6474c526f773bae1e48a5102273c7cad00ba68db9165bc0ff4c1ff

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cb1387d5bd20c5833f4cadb804d32dc4729036707a0be2fc953ce053acc6f757
MD5 eb1231cdbc7c6f3a7aa0699f0461ce75
BLAKE2b-256 0539e04ee16921b58600bd16a8b6c157892f7a7779e7360a9552f420d6f532a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e39fb49f5d7f9bbb0dfb1943bc46ba702474ea6b0a436b34b19849f5d2e2fff7
MD5 8de77768c3d36a10711999d2ca7da3a9
BLAKE2b-256 1643dfd2955d9f507aeedc0b53a724c350e2a9643e01c22bfb3fa6d386d07c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79ea05f38332e510cbe32dc180955b21bae2cfcd4da5433be72fc9f5f620bb64
MD5 edaf79e7d12307937f1a2d27439605eb
BLAKE2b-256 04a7af3e5d938c8a430da34943d64a559998434ab86e4b340e7ed5906d64460f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8a55348c37759dbb8ec589bdbc71cbf004b32a98a898f21591fb1a8a1981590
MD5 dc1b815e3ef540a05db875e50b969caf
BLAKE2b-256 740e4ff0d402b5870892525f8f3ee281e1c8873e0b7933021626db7d9ed31a64

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 27a59b66991c2aa294e88e44bb709ae9f415316714d170a8dc92ad572d745b60
MD5 5c34b24a51d21ecb896183caefde16e1
BLAKE2b-256 91e14ad5ed70c4a58bb590f6ddc2d47fa65def5523d762b1f19f10ed044e0c91

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 62c326647c2cfefcbe07cee38886bdd196361108f3235775e5198c6b50b07ff2
MD5 c97a0f762e3f28f31f2589b9b5b90f59
BLAKE2b-256 9f45bff33a79033533cbb4edf841ebda61ec3b4d2c4e993660704d7f06dca2ca

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7793b331595694dea8b9c003222be9747c276d6931507a929de171ba84fe3bbb
MD5 8085555d07d0279ce647c1cfc662be1b
BLAKE2b-256 2d12712b354c13ef04bafb442bfabd2c3f2cabdd0cc083476bf9a9ca622a3980

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02dd101e8916cc2b3a3ad958085132f690ecc8e6bd670d4d88a4febbf3ae2828
MD5 30b5d868bef1dc5863422a75db212c8b
BLAKE2b-256 5e4bf75b691225a7d3a857e1537847492102de1339ff6c5b4e882b67120adfa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1ad6e9161b68c918d9724f71e8fea9a42253b7405c4b0646450f22c79169be6
MD5 74799eb553769dc04b75918ca136a193
BLAKE2b-256 0e3bd0ee72936cd675bc67d38cc6b171d04aa9fb9c9a085fe92dcf9056134b60

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 099be4dd9e1e49cd8afc9df5995ec8b47762cf2c886608b955bfc4f1ca81cfe5
MD5 3b9957c80cf1f90a884a685b22469600
BLAKE2b-256 52b05a2f3a1771fc570288ee96376ab2f927c8d01724a9a1e0d50e6e9660700b

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7a8c6d7f003a57834671b9e8b6896ba63bf74711b229692a33550701e8a5f919
MD5 3e9fec96596167d0af598b69cb7a9031
BLAKE2b-256 6a590cc483e4cd370dead7ac3ba22fab8bc92e6da5a37ba23fd3aeaba597b54f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 33ff9e40e20c135e49462c516c8bbcac9354e77dfe86bc819b678e36f60837cc
MD5 7c961128021bd18efee4beda8332e623
BLAKE2b-256 02389fd0e5b85c60287d10131f5c6b3cf4f9ca568ffdef6a9b3a4ed3ada89803

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 56589090ef05c029a77d675bed45454f084071520b1ac9b3f4a6de09f319d52e
MD5 14a85de5b767fd49b17b125a650493a7
BLAKE2b-256 ce2a5f95bec3a6ec8002dd9a8b4b0e0034bc8beb8cab527f860c442d74c0c316

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c7a3880285bb930b5c579612f2a1b2d47c5bf6a7125a3bea2e96d8576436e71
MD5 796f3a99382b499e93eda7ca002dfc5e
BLAKE2b-256 70492a2f895419e82348a9f99a9aa61f998aa549c41188116d40c12595f66950

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ccf8fed20aa90cbe3a9fd47dc44208a30950c008ff9186c077289e6d8eafaa9
MD5 55123af47d51384f29e972a1e5c3f307
BLAKE2b-256 7a48acf467dcf280c8ed3997d1f224eda02ec3c8771cb94d7e1390c817d0feb1

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 469b11623f0ae7887ff78d3c4e5a629fc540ec12619d138e888e0c4cc24b9cb5
MD5 80a6c2844fa7d822f8d466995df72c78
BLAKE2b-256 d54fd5519f95ba3ea2b8a088be83ac82c38f924514d68596e5120c3e88009a03

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b4b2693dee14ed79f34914a911ecb1647e30e78ecb25cfdfc1635d654c7dadff
MD5 2805d2dd9c559cf091cdf3d7b5aef970
BLAKE2b-256 057205ac1cd45da50df90e99e560be08970024dd7238d8b9b6555b35fa545421

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d7086889d21592d819523edd46d83a930b6ebc8dc2b611b2b7255ffea3a6c9ca
MD5 da2155f122d682310cbda7f655800b08
BLAKE2b-256 657ada6eaa4b30e9aac9eae8fe76de21360d188bc1d99ff32e367d6e045ed733

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3772824bde8ea4dfc978952f706a37cf1da6acbe77d03d2a17b796f43d935452
MD5 c3ce8baab870fa4200012457db628e96
BLAKE2b-256 5bc062df688dcbe8a09ea332197cf7731f97f7e44004d7e1eda7bbaaaf71fc20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b63f391ebbbcfefa7f0de041c63c5b51b28cdaf7e9d72433dd745df21ddecaa5
MD5 664e7ac786663a370ce7a27f292cfcff
BLAKE2b-256 7cad4279b55d1dbd49d3d0f6ada27199ae8823a2c481e018134bf52e1eb8b7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66b48e6bd05ee5288f753a3563a25e260bab0e55ad26b6e4bc7afa73b3ac4aa0
MD5 63164639a1a3abec3091e5dce9d6ac80
BLAKE2b-256 3045dc468803fcb708bf993740a1e262320450fb2f667315545f0645d72ff9ef

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcead2cc49429eb3b75fbf52aa9ac47933220fda07a8073559c2d74f173cbf50
MD5 bdf5e00f706dd97215c0c9f395b3bb94
BLAKE2b-256 eefa2a2c87bbe5e2058944f15d8e785dec15a22fe6f80e6f9f39c32a9ae44cb6

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d92d61e758935c8dffbe7f937a6d456a0c41487be1224e448f104fdde736ca51
MD5 76bf9a3fd972b0778a248fb643d415e2
BLAKE2b-256 3b6618deb9cffeaf91195b3bbaa940c35a48ee0f2bf8a4d72e933ba7e47cf992

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 448aa678acca00a1d2fd122952c84454de548cb4b8a1f6cf14865f261bdb63e2
MD5 3963a67c870935f3c55e040f69f4c32f
BLAKE2b-256 392b30df2cf7c6c7e1f56467f58bdbae1dc55d323087922e85c8d4060605b31f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 13d1aeedb89f446d04d53d97baf099de92e196d8d3779f6a6d60938068c48f38
MD5 9159c9a5abb9da5cc0ac9fd7846cdb5d
BLAKE2b-256 aa598b0392eb3a27a21c5aa0572d3539c514b6a96df0ccb08bc50e86a5bbe687

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7750a8ead1d109afa00a8f58f243bbbc98bc167c4aa8645c5da84b7bb442b6f1
MD5 9054e7acfd8171cf4b42798d38fcd4e6
BLAKE2b-256 4223315aa7f44e61c94b501d56e0c4eaf338c109bd9ae125bf8061888a1cff66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba71b1391359de411f79f51b8e88080585d0dd264003739fe1d63a24ecf580f9
MD5 d7df8d10d5cfce16a3425ed635b03d29
BLAKE2b-256 d67d442bea8124957b305207cb0e83ceb58611bcde748c269878c90b4c2011a7

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35a319906bf2b06406be6b936af0546c3e2340e3517e5cd3c290c221040388b6
MD5 51208758696c1e31d27da81d9563db23
BLAKE2b-256 22998fcf799a4289331f81eba4236241326faeff4407725634762d599b827c52

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a95b8446bac169f64f0d497c6242740e414a461b84e703df818b2f3976848c8c
MD5 99c1f4370adaaa977a32011342eb9dfa
BLAKE2b-256 09902ff71277e852787b7c036ee90dfc17d40a5ab8e209de6b7deba2eb9e3c3c

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fa1540ca2820e29a04a3ab63e4aca0a5c3108d9edf0c322849d4545536012af7
MD5 cc1e7a3f7e14c093e5764255e280541a
BLAKE2b-256 124e04c73d09f2fa9baf0a061eb7db55ced68010a1a320d95d71eaead07e35ca

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a8710284781394840b435efe4aea27115a3dd5bd49763176f4080c1f0c531546
MD5 1ee0a61208ab4664d00d9d6cfa8ae9f6
BLAKE2b-256 8124ebb850eab7a2cc5fffc0459a9a3af7a44cd32a9ad4bc2a6aedc8c2792908

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-win_arm64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for pyenet_dlts-1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ee47d29064143e34ba6ce3f76cb97bc4da6698451a2b2f1757ca0cd4da49fe81
MD5 cf052a5d9fd35b7bdc53832c5ba1cf87
BLAKE2b-256 efdff47a3fc6dd3e40da4cc61aa99106c0ab04f964785f53ce03b0ec9f22e537

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyenet_dlts-1.5-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on Kaifungamedev/pyenet-dlts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e71f98a102bc7ff59f21aa58187f97c7f231df0f35ed89a99d59a670cee5cfa
MD5 6b1c5fe08315f7d0a3a626503a493ac0
BLAKE2b-256 34a5a298034f6a3d1c10b42274262c166a0246565fcaad0a91442346f5a58623

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for pyenet_dlts-1.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5acc069cbdac05f561156372f394ce9ad7860a455133c097ff82c7bd2b76be46
MD5 b9a391668c29d76bbc601bb59cb65770
BLAKE2b-256 7090659c91171a4adb34064c859f8ce545e3631d197e40578c0224936e3f2851

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1526360446e4354c5f1182cef8b0638896da127adbfe6626ad2787a5e8c070bb
MD5 dd0d817dbdaa1f100917046f369eb71c
BLAKE2b-256 a4e77117614e83b75eb75766b4919328b44e5c27feffe41087972c4ff6ec8907

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyenet_dlts-1.5-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cee1cecc1d71f434aacfc75cf80f43da9c1a5f30dfeb992b00f519c47b0306bf
MD5 ec84a116eda23912e6c64a7456f879f8
BLAKE2b-256 7dc9c97c9b29885d5a391a0c08b70c2cb33e5ff003a229383f6b274239bc581c

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page