Skip to main content

A beautiful timer from ufomap by Daniel Duberg, nanobind by Qingwen Zhang

Project description

dztimer

Stable Version Python Versions Download Stats

A beautiful timer from ufomap by Daniel Duberg, nanobind by Qingwen Zhang.

Running on macOS, Windows and Linux, with Python Version >= 3.8.

Install:

pip install dztimer
python3 -c 'import dztimer'

Quick Demo:

import dztimer
from time import sleep

timer = dztimer.Timing()
timer.start("Total")
timer[0].start("One Scan Cost")
for i in range(5):
    sleep(0.05 + i * 0.01)
timer[0].stop()

for i in range(5):
    timer[1].start("Second Scan Cost")
    sleep(0.08 + i * 0.01)
    print("latest one cost:",timer[1].lastSeconds())
    timer[1].stop()
timer.print(random_colors=True, bold=True)

image

Build from source

git clone https://github.com/KTH-RPL/dztimer
cd dztimer
pip install .
python3 -c 'import dztimer'

Issue I met when write this package

  1. multiple platform support, especially for windows, there is an error: error C2668: 'fpclassify': ambiguous call to overloaded function,https://stackoverflow.com/questions/61646166/how-to-resolve-fpclassify-ambiguous-call-to-overloaded-function. It's turn out if you want to std::isnan() in windows, you need to include <cmath> and std::isnan(static_cast<double> (you_value)).
  2. If you use std::array except linux, you need to include #include <array> and std::array<int, 2> my_array; instead of std::array my_array;

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

dztimer-1.1.1-pp310-pypy310_pp73-win_amd64.whl (54.8 kB view details)

Uploaded PyPy Windows x86-64

dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (77.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dztimer-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dztimer-1.1.1-pp310-pypy310_pp73-macosx_10_14_x86_64.whl (48.1 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

dztimer-1.1.1-pp39-pypy39_pp73-win_amd64.whl (54.8 kB view details)

Uploaded PyPy Windows x86-64

dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (77.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dztimer-1.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dztimer-1.1.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl (48.1 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

dztimer-1.1.1-pp38-pypy38_pp73-win_amd64.whl (54.9 kB view details)

Uploaded PyPy Windows x86-64

dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (77.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

dztimer-1.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

dztimer-1.1.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl (48.2 kB view details)

Uploaded PyPy macOS 10.14+ x86-64

dztimer-1.1.1-cp312-abi3-win_amd64.whl (54.8 kB view details)

Uploaded CPython 3.12+ Windows x86-64

dztimer-1.1.1-cp312-abi3-win32.whl (49.2 kB view details)

Uploaded CPython 3.12+ Windows x86

dztimer-1.1.1-cp312-abi3-musllinux_1_1_x86_64.whl (127.0 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ x86-64

dztimer-1.1.1-cp312-abi3-musllinux_1_1_i686.whl (133.0 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

dztimer-1.1.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.6 kB view details)

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

dztimer-1.1.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (77.3 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

dztimer-1.1.1-cp312-abi3-macosx_11_0_arm64.whl (46.8 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

dztimer-1.1.1-cp312-abi3-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.12+ macOS 10.14+ x86-64

dztimer-1.1.1-cp311-cp311-win_amd64.whl (56.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

dztimer-1.1.1-cp311-cp311-win32.whl (50.6 kB view details)

Uploaded CPython 3.11 Windows x86

dztimer-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (130.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

dztimer-1.1.1-cp311-cp311-musllinux_1_1_i686.whl (136.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

dztimer-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (80.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

dztimer-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (49.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dztimer-1.1.1-cp311-cp311-macosx_10_14_x86_64.whl (51.6 kB view details)

Uploaded CPython 3.11 macOS 10.14+ x86-64

dztimer-1.1.1-cp310-cp310-win_amd64.whl (56.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

dztimer-1.1.1-cp310-cp310-win32.whl (50.7 kB view details)

Uploaded CPython 3.10 Windows x86

dztimer-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (130.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

dztimer-1.1.1-cp310-cp310-musllinux_1_1_i686.whl (136.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

dztimer-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (80.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

dztimer-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (49.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dztimer-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl (51.7 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

dztimer-1.1.1-cp39-cp39-win_amd64.whl (57.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

dztimer-1.1.1-cp39-cp39-win32.whl (51.1 kB view details)

Uploaded CPython 3.9 Windows x86

dztimer-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

dztimer-1.1.1-cp39-cp39-musllinux_1_1_i686.whl (136.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

dztimer-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (78.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (81.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

dztimer-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (49.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

dztimer-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl (51.9 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

dztimer-1.1.1-cp38-cp38-win_amd64.whl (56.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

dztimer-1.1.1-cp38-cp38-win32.whl (50.8 kB view details)

Uploaded CPython 3.8 Windows x86

dztimer-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (130.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

dztimer-1.1.1-cp38-cp38-musllinux_1_1_i686.whl (135.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

dztimer-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (77.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dztimer-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (80.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

dztimer-1.1.1-cp38-cp38-macosx_11_0_arm64.whl (48.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

dztimer-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl (51.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

File details

Details for the file dztimer-1.1.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c66e26146c83df23b9e59cad1aafad6e4ee44cbe493ff40079444b0342ab4a3f
MD5 faf45843b2bcbe38c134fa5c6f01f444
BLAKE2b-256 d02065e824e2349f5dfb69ad33bc80b1fd454488649bec88452bb92c6981c195

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33114411361a62ac4307552dd53b4f0ec207d300712d0244f2b18e0b98a723aa
MD5 db2494abb6c671b19127a6a4c16d88b8
BLAKE2b-256 fb4b97b22bddb5a508b62ded28691e5e7bd116f2e4e7b9b835f8c2468b69483a

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e70632142c7344d458faf1057e808c39072c0515b7fe448fe22e522c0ae816ef
MD5 795a91d2e2efe13b5b7a3c13535059dd
BLAKE2b-256 8569f7f6bd68df7e545f6e5bc019e273aaff875e4726e111b29927ff430a629f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 652c2b1241df90bdce88cb7ddff265ed1301789d5372a7887c8274483993aa1e
MD5 0d867d9b5578970e86c8c654633f3aec
BLAKE2b-256 82779657a98a605c7d954aee01f24549a63bf4d125242725d69df19fb5679a9e

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp310-pypy310_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp310-pypy310_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1703ed63ca5b5947049df62c828ddad830dc8e002266b5a35e60bb67383d2f21
MD5 0f35650d83dafc7813948a752edc5f1d
BLAKE2b-256 2f9e7da9000273fac5834bd496b16f04295e42d1cbd9f1522b2841efaa9526f1

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a64c17ac9d97322e2fa22675c21a70310a3b275d89b23475ca8b5c939306bcaf
MD5 2b47dc2c64b2ead12eb0f4e4a30125c8
BLAKE2b-256 ed37ed282d8e579a376a66f7bd009fd8db1ef9215a716d7b32a1571bcb75e824

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 489d1d1854b6c30c05a38fca2e19fbed1e09074fa86b6d6ab47ba23703ee0ac6
MD5 3fb65db48620370b7e9e6120517e14f2
BLAKE2b-256 862f380bd2993bde8c85565776390b73fa8b7a91547943cf50c819eb72377e4f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5de7db1ed5417ec27cf7eaa1c011b4d7eecc4bc71fedfb431e3854a72e65c1e2
MD5 c244e5ab8df4e1702234c3223a6cd57c
BLAKE2b-256 aff245d638824d4883a503909d8036108398d28d6409e5d0c92b4fe1906fb0b5

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 589fe68cec33ad20e1d2a62faf53b58a9cb72cc1bb9cb0e551a1ebba27bb6a5d
MD5 621802b3c65ebf52401474ce701fb3b3
BLAKE2b-256 a1a29daca38bc58eab423ccfa7cd48c85a30456ec5466652065b8c6df592049d

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp39-pypy39_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5dd745c92bf2d20996813a3b083cbdbba9785605272c979b4cf2a0ccb4a59f25
MD5 ca52e4390bd46d356ab253edb8e05435
BLAKE2b-256 8295678a1b4a101cc3504cb6af7711823d4ec35a22f035bae1e4b3defd0ca117

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61a229cdd8cfb8639c3e7fb5c60cf637f9256c6bf74f52aad5bda9fb0e3d47a8
MD5 02ff8c8fc3ee125d2d05a7e01340adbb
BLAKE2b-256 341eb38b1ef34d20c6b97b75e9e703626078a5a71e6db236f2cf09c98b7fad4f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55dae09eed39c9189382bfea1f4d4c9167764bae8c6acf75909a4fc242a0d48c
MD5 4756f1148c2d105d8462ddfb2b126672
BLAKE2b-256 f866a9e012c89af38af356cad9d9f0f363a60d58b654e91fd58a895140108476

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 503dc861f11a14dff7cb7a90979b7f809b7a64325853ef87fd2832c50215bc18
MD5 6aa6fd255b7d54755cdd5dd3c5a02170
BLAKE2b-256 39d7d5f646a30d485a1fe34094ce9496ef14bc368b25cbba2b78e586c5560989

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4df33f10a90dda81cc6e5401ca7363c498dc073d516a3e7276e462adb11cff57
MD5 9590662e2c1fbe3fbdf7570f623b038f
BLAKE2b-256 31e5a0d56d85b75f105b2fb66195bb55cc0638c99c8819948f786fc92d43ff85

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-pp38-pypy38_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 93457714335b507ab6cd8146925a31c42e065a97d518361ecee7566773dedf6a
MD5 3d0f65ef824ccaa6d483ec71190847ac
BLAKE2b-256 27dccf3ab354417b6088da4ef391e012ad1e0331a31fad511c76c886f3e6b0b7

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 54.8 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d2d70a72cc69f36dcc01ff74dea76fea2625b35fd099a57916bb98b39c428733
MD5 86ad188e16f8712b89e83c6ded274813
BLAKE2b-256 e83a72c663fb5d5442f11fe5a3f29435673831ea5ce80454898a7f24a0cfa9ff

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-win32.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp312-abi3-win32.whl
  • Upload date:
  • Size: 49.2 kB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 e8cfec7c87c5ecff40fd1501d7adc9d76e74c013d4228c2c7e4d50dbf8b09627
MD5 a82585c472aa89aab5683733492036bb
BLAKE2b-256 e8f48fa28258fc2915256503941bb3d5dd2e9f16e63c952df10992202d8202f9

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 22e82d7f44d08c5881f79dc3d418b1d4e8bb2fecfc42ac7481d8ff80cfe506f5
MD5 b41e52d0e310500899a2889882249fee
BLAKE2b-256 af1d1249a0638ee08d6c467797b6b9a16497757a0fb1ae701b7f26896c28d7d7

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5c4b9d62cd5bcfbf6acde9c28ff08941a7170d26a90d849ffaa97cdacbbcb4b2
MD5 0691949f37b19042b89bcbb15835fefb
BLAKE2b-256 7d9978ff24c80c1521ff6ca384a9e037ccded0d0cb9f55adbddef833b019a961

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1238b69b21edbba16e1b8bbf325acf1520c12180b57bd21dcff6887b090a8d81
MD5 69269244aa4502ac4920f27eb3ebff99
BLAKE2b-256 0bb73d954938184f7e55c0a87cfe0ab8dc7e8d64712e4db643a1ed3aa1151a7d

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2e08ad6ef3c1b65b5b2584c3b8aff0ab0e26fb876731fa9e3a095a59ab86b7e
MD5 b05f270da638c528313dfc47165e8beb
BLAKE2b-256 abf9e933b55db59b801d87ba53757fcac9f47cb4971d88650053f709e485240f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7a70f0f0d3b60fc2480cbf6bfb96529becb2c73c8149377660df9da6e149598
MD5 98fdbea40de97a996411dd5c9e5f50d2
BLAKE2b-256 984474886a168854ce17d923478e7b6e46274b406c3d8937c0897d8c0e934d0d

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp312-abi3-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp312-abi3-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b4a192bdd96d462dcccb5923ef7121b3ac35d8ffb6f518e479d643ccbfb74678
MD5 6ee74f354c378cea0fbb8f029e6b2435
BLAKE2b-256 5fdca953a58427d2fc1ac7960eb5cdd82fd4484e8a37bbcd3cfd218f19470a4f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 56.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c383ed571509b975fbca3b2624bd9b56678017be1dbe6e6bcad20fe13a4ca465
MD5 ae24d2c69fdb49f03dccba15cf1df8d1
BLAKE2b-256 3273f4cfb84d4c87cf8640c06609e11c5fb22073c65f91104fd6c86ca8dfbf57

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 50.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4b35d268eeffc91774b72caf6a95199625cff4ed54ab78793f69fd59ffb31c66
MD5 e8ab2e4f852247601821db73820def63
BLAKE2b-256 827ee48477fc4bc3cbb582341a61c36e6284649609c90e8da161c9d72d8a409b

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c508a4c420eb8ce3a9789e50a2f4b7330dd2af394f0718ccfe1f801f7d754a37
MD5 4e32707627c0fdbcd2b61f01b5deb157
BLAKE2b-256 02fb33c1bac2e1030f7f5370ca31ee08e8bc95e02452d0f469fd0a2f74a1649a

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0ae12dda48d90d7dd7de8663e742d7dbefaec148a8aebd69e3dbb962e545828c
MD5 3c0eb2762426f23d952ba9f81836d7eb
BLAKE2b-256 12bcdba9d3c4f2d37e77def056d7e6c82171a131d20405a302ff49ae23e1ec8e

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b89be40109888aecbaf31c3310758c91a10290bf848904886f640a3c586f77c9
MD5 5da13bf3c635ec4f36b06d959cdb784a
BLAKE2b-256 5d615615f50dee753cf8bc57056a9d54ebac09b26415514544d616e61c753e16

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00365d8dbd7589bca80a51c34d73cf2482e69bb0d63de6e5f8a299f501788890
MD5 755fc40c9b7ad9c88627269e920d9208
BLAKE2b-256 543fc93556033b3d7bd21b9dd6ddb773eaeeabbb3d4e40411703d8d662227350

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be7734beeae1679c94ef5689caf6d24981bbbd995e83e4ae0cb71a2a43916db7
MD5 97ebb6bd181e097d3be026a7df2feab1
BLAKE2b-256 6d7762aa8b9b8c00fd1c2999d8eaa038997796ed6fe99afd2a6d72b3dfd69ae7

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 da9442deebbec888564c4d2d2b470e2ff11badb9a427fa88151c89a3205740b5
MD5 d5b255628d85eb5079bd894fe085764d
BLAKE2b-256 d9ae25f8d6564107f5a4a314fe59107e23ab51fa305df2a3935b10c6785e784f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 56.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a807ab2038688a8399edd7a303d2c9cc55ad48eea1fd836f9778f01ce58a2c94
MD5 abbc5a5582aa4363fb114bc059aac426
BLAKE2b-256 7532836101d8089516738e8b4c1e052b7de276361dc89fea04e41681c544cf34

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 50.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b8536262aa8fed01949d1e0c95a0b9a945d6eb5306ffe6792326e125080da7ab
MD5 15cc90fd8470a350f0ca5f3647cf5767
BLAKE2b-256 6339da70a436b6c1d42b255cf7163eeffe6f0662906119f12e64d3ab459e0d86

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb5a3857d7362120b15198d66c36309175bc71f41fcaae0f975c481bc026f579
MD5 da9eb4a89af70ea955393cd6792c4aa3
BLAKE2b-256 f850df5381f89e0648ef3390277513640d7dbf4d43d3b33880642c741e53440c

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e4610566c953396e3f3dbc3bb64e17fed166d95059a3068efc58c06f876989a9
MD5 75fc4fdf522cb8f60c609a2c7b5c1b07
BLAKE2b-256 b164f5bfb8565898b1ad08d5100c7021e1ba1d338b63ec42652cfbbc4fc821e4

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f48b0ac8ba2ed9ae941a238b846737e1e729b662d931e9f18495825d4ced3a57
MD5 63ae4000e00a438d5e6facfcecff2693
BLAKE2b-256 21c65959867457e36ad51c3c1c738b96078450ba657fb7f7eaa272edafe16406

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a06b1998535775c81823d25e7bf8328b3a50baf216a8fa62d3d9e8c65c5288f1
MD5 9434b463e99a4d6a0536d452729378ff
BLAKE2b-256 31ba5b8c09b49f380965740c410cd124d8ffce507d5b4a8b7ff7f0b36fd516ab

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae865321fa4d84aa6819c1d3b4cb58d8160e9341a44755079be8c266fabfdda
MD5 229f8d08f5a14d32a8052c45df047ac2
BLAKE2b-256 274f0ab8b78a08c86baaf5a98ea276cbaf822206f122e1f84c5c5051d874e88d

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 aa3555d13d4ca7e21d9aaee19ef7945f33b14f6d048e80ca21f08e8cff0b4a27
MD5 ba253b743cc3b213b5714c0ae174e449
BLAKE2b-256 9b12a1d61d5bd0465c0e6d44b403f1f7fff4ede9eeb4808126a57f2280e0be65

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e7182daa2164e3baaa19f82cff3c8a95492bf85d1b24349de576d887695058b
MD5 5f91ce106ebb86e1820a780bdc205bb6
BLAKE2b-256 c3d4d27d4fc757de75399866d904d908ca772bd5f3d29217c9a510a3ad8be29f

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 51.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c78ca7d354e3134c11168a40e6e87c96da36a5bbd15df33c0a085017eff5f59
MD5 f6f01110e90301b00d5a03f2bddd74c1
BLAKE2b-256 1153f1449d9997f822db3ee45df19098b96db63bb976576597cd66d5b1b05f1a

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a3a2dda613942e37a03626652a271b2e0f031c2d978d5c8109c4352e070208d
MD5 3fa7996caffca49954d6fc0c676d9159
BLAKE2b-256 a8057028bfa671c8c20b781d54a16e3d9828bf47cf52509870ed7bc32821c244

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bb0e14a16e66adddfc3544cb6a278ca1774876d36387be5d44359ad2ba37d64e
MD5 ce512c7201177a2333ac8dd094b148e1
BLAKE2b-256 bf6834ee2d2a850e49f5096ed3ccb67dbd22450bbd59b0e5b5f4e8f506ef20aa

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc4e3315568a43c6808bf6dba575c6bd913ddee61f4457f3055aeaa2e24a93d1
MD5 e0d4792b8f66532ae59ea611eb8338f9
BLAKE2b-256 cd2f870c3fb7c0ef4ba954a897b7eb6faf6378a018865171d38526f6177e9b73

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd21b5c22d364fad7cbeac4b8c54e42a398673454d8a498ba39b5e1d08add1b6
MD5 57c6071370238d6ee5648fd21c0ad83d
BLAKE2b-256 fefb8e1e598482cd7f8c518a73f19d996d8a7eb9119e363b2d4e768883c6aeb8

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36a336a386f191a40a8588942909c5a57971e59d76dee22d344aee09d3c6ef17
MD5 24d552b4a9a93c418f0b12271a9c4abe
BLAKE2b-256 81a85b063961c1c87deab0539f4f641c022b5c117e9c1f1e4aaf967eb5ddb9b6

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b1e10d3a486dd5d6afb1b00e7c3536782fbbab2bd095f05d7c5188460622c29d
MD5 1755a00d4ed73db2c79c8030dbeac2e4
BLAKE2b-256 a9031d2309baec229a4611d25fc9e303d95caec73fd9560b86f79a56f2f6009d

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 56.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e204af667af5b381f74c1ffc4bc3e7f74aee4fbc68c92fb921f87751dd70f98c
MD5 c47afd6dcf7f04bc50774cdbc6ee7818
BLAKE2b-256 452ca6319fe9a5b7d6983e08ffc2ef370e57da50a8baf07c3a1d93cbea9df1e0

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: dztimer-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50af4c533160a2da606d58c0a7d0698b411161ff427558561a8c1fa8706a1e29
MD5 81daa961fe603bbd7fd514c0ea4a3fdc
BLAKE2b-256 46754d0004af58aa3676979cc541be6f7393df2680aa6e8c7e670defce46be1c

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e32a1e7dff76ecdf853fe541bb26e7e40289a1f65a027c742ee67ab81af15bbb
MD5 df35abe9e7ed79ae437213c435ed1c0b
BLAKE2b-256 6a3841ebbc0986f49a28a9cf563138ef4bd42781f671470e2ca9538400828fca

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8983a6ef45539351172d3573d171e19229022a585449f324958449c7671fbafe
MD5 fa135f4e0bd047bfd1cc204fcda678a3
BLAKE2b-256 b6cd4952ff51ff7d02bb60c981df712eb2f61b572e99c38a5b9cd794347e9301

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664e35e1fef4090902a4f84033a894862235df470ce1d487558bcf4ded0cb427
MD5 ec9d07746e2a189a2a827fbb43d32d1a
BLAKE2b-256 e45f6168e883b9cdd021864331900a619ca95872e39d5efa66fde2540bca5eee

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66bcc01a67794a962fec3d7f927fd36a82ca745f1a09956814ecf66ac6132021
MD5 c94a258b7879d292b0afea60e61879ce
BLAKE2b-256 0c1cc47d8b79f4cde400f51fbaf02bacb855c9340049aa3ae2be6fb416009aef

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48f4746588282489ba277ae78143324272e6ec4575cc0ad790678fd2de705674
MD5 153e29ee3958f57fac7d6298cd59ade6
BLAKE2b-256 591ae6f270961831ed7b914f59d4ef7f7ef991c4744196bb4ea3a207f1cf433b

See more details on using hashes here.

File details

Details for the file dztimer-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for dztimer-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1f22e495a71db5fdc75cefbd7b61712493f75a1b57a3d1164f563f9626e9de12
MD5 951449179c077ccd1925c0a40bc7717a
BLAKE2b-256 6733340648a3a85b74bca2ae0499cfca767dd1c36c05abd4a69239b8342a79ee

See more details on using hashes here.

Supported by

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