A cooldown/counter class to wait for stuff in games
Project description
pgcooldown - Cooldown & co...
DESCRIPTION
This module started with just the Cooldown class, which can be used check if a specified time has passed. It is mostly indended to be used to control objects in a game loop, but it is general enough for other purposes as well.
fire_cooldown = Cooldown(1, cold=True)
while True:
if fire_shot and fire_cooldown.cold():
fire_cooldown.reset()
launch_bullet()
...
With the usage of Cooldown on ramp data (e.g. a Lerp between an opaque and a
fully transparent sprite over the time of n seconds), I came up with the
LerpThing. The LerpThing gives you exactly that. A lerp between from and
to mapped onto a duration.
alpha = LerpThing(0, 255, 5)
while True:
...
sprite.set_alpha(alpha())
# or sprite.set_alpha(alpha.v)
if alpha.finished:
sprite.kill()
Finally, the need to use Cooldown for scheduling the creations of game objects, the CronD class was added. It schedules functions to run after a wait period.
Note, that CronD doesn't do any magic background timer stuff, it needs to be updated in the game loop.
crond = CronD()
crond.add(1, create_enemy(screen.center))
crond.add(2, create_enemy(screen.center))
crond.add(3, create_enemy(screen.center))
crond.add(4, create_enemy(screen.center))
while True:
...
crond.update()
Installation
The project home is https://github.com/dickerdackel/pgcooldown
Installing HEAD from github directly
pip install git+https://github.com/dickerdackel/pgcooldown
Getting it from pypi
pip install pgcooldown
Tarball from github
Found at https://github.com/dickerdackel/pgcooldown/releases
Licensing stuff
This lib is under the MIT license.
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 pgcooldown-0.3.3.tar.gz.
File metadata
- Download URL: pgcooldown-0.3.3.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5ae57fe0de1cef583d0f2dc7e3a24ce282e8aecd821c6312c1e300d9c8acea0
|
|
| MD5 |
4f172bd305e57f91fe9e1f7d9cab7dba
|
|
| BLAKE2b-256 |
2d65ab0b1a1b0d46853fc57f9771ca89035c00a95d9fc091140405aed4c2eed9
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 17.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c6cca01af66d313aec563ab08c3009a723426a1b09fc6a8cde83f0ca9fa5ff8
|
|
| MD5 |
a738c0bad94e5cdee16b73068440d7f6
|
|
| BLAKE2b-256 |
b6d03362598cbd2f9db0d7d5d518553019f28f0c83d9bb481459895271c995bb
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-win32.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-win32.whl
- Upload date:
- Size: 17.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3ce74d4925cb4064f7a394550c5ffe64f5c3c8ac35623441ded61c54cd1a096
|
|
| MD5 |
45259feba9443af61cbca373b4da5c71
|
|
| BLAKE2b-256 |
e8aef5457d2023db83225541b577216bd3f3440b5b6029bedfcca9a7fb84527a
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 35.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ff2377c79c258eacb422c9965f43f686f3af7c20678c1e048881690193c626e
|
|
| MD5 |
b98bfc355f7c8959428f1328d6fd0b4d
|
|
| BLAKE2b-256 |
9bb8ad9377671108bb4a0d09d59399289e9ad5dbe0490ea81df93691ce677795
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 34.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc2a233869ac890e8227becda2cec0eb142525104647b7cc08aab7c1792d9e4
|
|
| MD5 |
a31203a1fa266d59c889560b2714d5f0
|
|
| BLAKE2b-256 |
09910d65c4a8168dedc6fd3cf3a98e0f5bf6595a8e649874ede4f13ff6486ebe
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf14efca2715a720ed92ddf49c5485570f791c1d43806d589d48584f1fa35a00
|
|
| MD5 |
e6f7f2171807d3ecc97878ebeba178c3
|
|
| BLAKE2b-256 |
6963ea7600f1234b9163c79d08beeb9a2c5aab148c956caa57af72e2788d5d74
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 32.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2282474f7d181678ae6561baff020b03e92fcc04637eee5741d24c072216b33
|
|
| MD5 |
02052dfcd5999e7c1f0a9d825a912d31
|
|
| BLAKE2b-256 |
b8662b69c87fa895d13ddedc46812a608c01d27d7051c964e9521b981f8d5f59
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 15.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b1988a4d7d8375c14f16d3f4092972f199ecbbf22802d6d21f1b582a7ffeaea
|
|
| MD5 |
298b4f10219b76791fa0356bdeb78769
|
|
| BLAKE2b-256 |
14a4d678fdb9292b3e0d1a437fe5dcdd14ad8ab68d1cad9adb6e029ad467df1a
|
File details
Details for the file pgcooldown-0.3.3-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 14.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a77410b1cb630d31b5de737d06e4eea073a5227b1aa4697a694477e32413fe90
|
|
| MD5 |
3c8313fcaa739b63fed4d5d6df7a048d
|
|
| BLAKE2b-256 |
5a8628e64eee708b7ee0fc26aad68b220317f7c31416165cc9bf766139f82ff4
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 17.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73283ddc5afc3ec4d187ed9ec18ecceb266324fa7c664fbc70293677c336efe3
|
|
| MD5 |
813144961224ab79c85968da0eb4f8f4
|
|
| BLAKE2b-256 |
442463ae74c0d36f925ed258ed676274c9207baa641cd4fcd024564b9450199d
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-win32.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-win32.whl
- Upload date:
- Size: 17.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b98e04c211b363727dd6b3ac0c518b10f998a8c97849f41b845bcc999c50e8c0
|
|
| MD5 |
0202b063504a10f61797471ccc8685af
|
|
| BLAKE2b-256 |
d7db0212a6b7e913518c4d85f6dfb9f8858dc94c602f73000fdda992ec7b1a7b
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 35.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
398bbc88a8a6d49e0a5744dbee5e61a13fb586d3140e9c97a5ae171968d2e638
|
|
| MD5 |
81f54b8521108788e6c102fe34eb13e6
|
|
| BLAKE2b-256 |
3709fc3c1ea55952b50ebb2a9cbda04d96f7fb765a1445a79845e5cf351660f6
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 34.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cb53d98d984cdc4983e17c0317673ea4248d998622b47686d2e6cd43161eeb2
|
|
| MD5 |
241ed303a5f63195e515a0d5585677c9
|
|
| BLAKE2b-256 |
77e120822892a506138d6db8f4bd0006bf731ce98af4b9879bdb7392059a555c
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d99a23b1ef9c6e1bd6f07b2bcc567d4f746f8387c7dc4a59c9a78e5bc2471ce6
|
|
| MD5 |
ccc68ef66cad96db9aef5af456bc52be
|
|
| BLAKE2b-256 |
d28e354fcdc1ebc169050a0d61e025050f99788f5e976450e900af8008e0398f
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 32.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5976e384f9bc02bffbaac8d0407ce05b3f84f54bbe424dad1e9a7ef3dc08952
|
|
| MD5 |
8a0d5f8f40c4a6f13c3badb0a200f3e2
|
|
| BLAKE2b-256 |
5a16d296fa6ebd689ac3a8e7612ea8e195c98454ac9e6a74b725c7db0278d04b
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 15.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dc9ae05fdad0bd62a9c6b1bd6bd5de1ca5907fded76919659de2939fc77e6a9
|
|
| MD5 |
d63e58e31e14feac4d585bdb314b3f77
|
|
| BLAKE2b-256 |
d59ffa1cdba6ed54e14e2b9c34a09041384cffa231aca058ae33200bfc564bbf
|
File details
Details for the file pgcooldown-0.3.3-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 14.9 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1a3570a46836ca2d312b26838c841e2db849904f49e00feb4362c6de03f68ed
|
|
| MD5 |
ce54fff64b4bec2c8527a5b4a1557256
|
|
| BLAKE2b-256 |
36c89bfd2e5ed19a462d394396fa41418a10a9cf84fa9458cca40d2887b97b46
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 17.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfb9bfc5e2e4d1d9dee295594be34800319d45a19ae61e16d28062b5ca43e3ba
|
|
| MD5 |
cf62560cbc577165111d7e2be6ba0ca7
|
|
| BLAKE2b-256 |
519a82b432373f32cf3846d949e3a7f570e7fade37cbe2e5953746c9ae0723d1
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-win32.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-win32.whl
- Upload date:
- Size: 17.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db2047087a8a00c7fea28ab95034d8bdfa2b8d79d980cb9ed099ec03a78d7846
|
|
| MD5 |
31fb47da7c0a09e83d9eaa69937072de
|
|
| BLAKE2b-256 |
55f5c56d4fa3d52c5ea8f92aecf8e0f5c689371450565d98799eead729bfa814
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 35.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a5aac6d5d7b50a35dac5ba568a45cf1c84c4cb2ed5f6213cdf119858ccfb82b
|
|
| MD5 |
946fa3649f01d7b1bb556c46d12136a4
|
|
| BLAKE2b-256 |
cf1664d47d6f46c54ae8b0b53a7d1175c0088b65e8c3de896241349852e818d9
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 34.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd10bc9ec2d1689cc5a2d0424b7091b1635918d8e9583c035e1890951fd09fde
|
|
| MD5 |
ff53e64bc046dd37f67539c758524726
|
|
| BLAKE2b-256 |
a2889087b2f0052910f69273b24e8358487e1805c772a684b9cbd01c8dc36178
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ac2f8d81ac7c865ae49a9d16b619353f30b398352fda1032f85f21b079e0a54
|
|
| MD5 |
a50ebb1a5db54e6aab74db80f57d0272
|
|
| BLAKE2b-256 |
b8e42f79ae5353bbc685070dcee9034c59ddc73355f5656f064752531471a016
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 32.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f4af98650492a64a055757f4c73291ee624b9e03066b11bafe897f5db26563c
|
|
| MD5 |
c692fed3060e4a6406e278b810dfd5b8
|
|
| BLAKE2b-256 |
d402a2a32c3e7d7d7192024a85af0cd4081364772714f4c959955a0da33ef46c
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 15.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f8683f862b4da406491e8338c88fe4e0873ec411c7d3127a50660a177553e09
|
|
| MD5 |
88b0e660e884e035ecb60251be18f650
|
|
| BLAKE2b-256 |
24dff92fea5e066295c7835a377ae4b6b0a36b6f7d9083b33f384e6fe4765951
|
File details
Details for the file pgcooldown-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 14.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8d96f76181050237ef86530d48d02d2bc2b47b4d017cfb1ebc5e7b7996dce00
|
|
| MD5 |
a81a06976bcb94b20f1fc6c8d0a09aef
|
|
| BLAKE2b-256 |
8bc0f6127d625df4578c1630eb491409e87e601aa8d6ff306d7cc95df66414b9
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 17.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6acd6f541070ff7b7d6e37c20f84d63726e92647b46a827c85136e1ba0e541a5
|
|
| MD5 |
6e30a6878311ad0281e56b5b50dfc8d8
|
|
| BLAKE2b-256 |
7940539a34ba8c084bc97b9ecc19aba4ccf9276c7eb1708e6279cd0f59579033
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-win32.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-win32.whl
- Upload date:
- Size: 17.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b327683417ac466467659da0b7c96d67109ff0b2fbf027f9ae1beed49acdddde
|
|
| MD5 |
0bb26b9ca4675c9ba66ef0428b2db0cd
|
|
| BLAKE2b-256 |
cdf4a244832c8a14c135dc13c88c415724c876aab46a8de785090bba546ff7ec
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 35.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d87f1377b3097d24cd4b993d966c2a140fdabe3939408ca87dad1276875b098b
|
|
| MD5 |
722fb13bef13253a9e04368600ec6b74
|
|
| BLAKE2b-256 |
b3c593c97ff71c7e4e03106524ceceea4d667b12d139df4e799e830182fc692c
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 34.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8156d68aaafe23582df7ee0b8de8b9abf7a64e808b0f4f78715eb847e4f2ed37
|
|
| MD5 |
fbb3fc27f48819f70012689c3ebe42f0
|
|
| BLAKE2b-256 |
fe89604c04ee1898e9fb72e285766715577f65c8806b4c81565cc0fd25e8b520
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 35.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd60ae119e150f19561b8ec030ef727659b7ae6b4edc46f32019f02e3c7e8ba4
|
|
| MD5 |
ffdb0a083831930f50e4d0c0bc199963
|
|
| BLAKE2b-256 |
2fb788378eea109e6368aff4f3dcd64236e29d93f837ec9b195d474702b4954b
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 32.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9fd68233de07e8e54662a393dbfafdda79426c72fcb44c9a5e3041c85d2ddfe
|
|
| MD5 |
c0d7456817e17fd0d0ec13daab5d8770
|
|
| BLAKE2b-256 |
4fdba3e4804e9cbac65743c2f71c7d76783092a986db57696f7b4735584cd40a
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 15.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c476484c9855f47713631acb0c1a4877bef9c6ece455469a534b39402a116fe2
|
|
| MD5 |
895d131e5d55c8a7141278c20f4a4568
|
|
| BLAKE2b-256 |
1e40265d64153fe2872fdbcd9af16589e32e952db0d6dc5d3155c47baa72af5c
|
File details
Details for the file pgcooldown-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pgcooldown-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 14.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc6d609f1eaeb82f65c6cb9de378d4038ca11876ade25587612f9a6862db65fc
|
|
| MD5 |
0def1028d86dc92b01dfa6c3b367c3c0
|
|
| BLAKE2b-256 |
c3d82f09ff19c2673af3ddab48a2e5ba630de163255fb3ea1766b5f75704bfcf
|