Skip to main content

Fast, simple and accurate Python timing. Written in Rust.

Project description

Fast, simple and accurate Python timing. Written in Rust.

badge

Installation

Install with pip.

$ python -m pip install tictoc

Usage

Import.

from tictoc import tic,toc

Begin timing with tic(), and stop with toc().

tic()
# some code
toc()

A call to tic() can be followed with multiple toc() calls. Each will print the time elapsed since the most recent tic() call.

tic()
time.sleep(3)
toc()
# >>> The elapsed time was 3.000132333 seconds.
time.sleep(3)
toc()
# >>> The elapsed time was 6.000383124 seconds.

For more complex timing operations, you can assign the output of tic() and pass it as an input to toc().

[!NOTE] This syntax cannot be used interchangeably with the default syntax above. Any call to tic() resets the global timer.

firstTic = tic()
time.sleep(3)
secondTic = tic()
time.sleep(1)
toc(firstTic)
# >>> The elapsed time was 4.000317251 seconds.
time.sleep(3)
toc(secondTic)
# >>> The elapsed time was 4.000312568 seconds.

Any call to toc() will print the elapsed time in seconds. You can save the results with full precision by assigning the output of toc().

tic()
# some code
results = toc()

The available units are:

results.nanos   # u128
results.micros  # u128
results.millis  # u128
results.seconds # f64

Full example

import time
from tictoc import tic,toc

tic()         # start timing
time.sleep(3) # sleep for 3 seconds
toc()         # stop timing
# >>> The elapsed time was 3.000132333 seconds.

firstTic = tic()
time.sleep(3)
secondTic = tic()
time.sleep(1)
toc(firstTic)
# >>> The elapsed time was 4.000317251 seconds.
time.sleep(3)
toc(secondTic)
# >>> The elapsed time was 4.000312568 seconds.

tic()
results = toc()
print(results.nanos)
# >>> 2825

Project details


Download files

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

Source Distribution

tictoc-0.2.0.tar.gz (39.1 kB view details)

Uploaded Source

Built Distributions

tictoc-0.2.0-pp310-pypy310_pp73-win_amd64.whl (138.7 kB view details)

Uploaded PyPyWindows x86-64

tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (265.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tictoc-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (664.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tictoc-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (666.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

tictoc-0.2.0-pp39-pypy39_pp73-win_amd64.whl (139.0 kB view details)

Uploaded PyPyWindows x86-64

tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (265.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tictoc-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (665.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

tictoc-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (666.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

tictoc-0.2.0-cp313-cp313t-win_amd64.whl (137.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

tictoc-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (264.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

tictoc-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl (658.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

tictoc-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (661.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

tictoc-0.2.0-cp313-cp313-win_amd64.whl (137.8 kB view details)

Uploaded CPython 3.13Windows x86-64

tictoc-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (265.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (658.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tictoc-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (661.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tictoc-0.2.0-cp312-cp312-win_amd64.whl (138.0 kB view details)

Uploaded CPython 3.12Windows x86-64

tictoc-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (265.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (659.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tictoc-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (662.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tictoc-0.2.0-cp311-cp311-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tictoc-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tictoc-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (265.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (664.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tictoc-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (666.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tictoc-0.2.0-cp310-cp310-win_amd64.whl (138.7 kB view details)

Uploaded CPython 3.10Windows x86-64

tictoc-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (265.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (663.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tictoc-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (665.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

tictoc-0.2.0-cp39-cp39-win_amd64.whl (139.1 kB view details)

Uploaded CPython 3.9Windows x86-64

tictoc-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (265.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (666.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tictoc-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (667.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

tictoc-0.2.0-cp38-cp38-win_amd64.whl (139.0 kB view details)

Uploaded CPython 3.8Windows x86-64

tictoc-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (265.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

tictoc-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

tictoc-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (666.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

tictoc-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file tictoc-0.2.0.tar.gz.

File metadata

  • Download URL: tictoc-0.2.0.tar.gz
  • Upload date:
  • Size: 39.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b52fda6a3003f6d79d036412da51650c4015dade2a44a39f4890ae31503fe633
MD5 b9ec07f2ee794213f8af92dd180e7a7b
BLAKE2b-256 be3f9672bc5abe7fab04f548f2014a754911f6fbf57fbb927ebb4432e5ff8241

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8e129c9f27bf896cefb6a19358d993df791548bbbda48092b33918e062ff6204
MD5 6b5e6b1f8522d20f8ee4c183cb090c2b
BLAKE2b-256 ea3207e9b309edbafc620b00fe10d35b9f2c3398d3b60baa3539ec84df9e1c15

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e8fcea1d5691f00b03d95cc56406f6fe09966d87c76e36a73da0f4c10ae9e85
MD5 84d6f7b01ea431ae6cc6fba1c7f8daa1
BLAKE2b-256 5da96096114e15cf63962b07b8df31651953ce0c1fba45aa6750ae1177678213

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2617bbd018f788084c7e372a0a2ad1390deda47ead3e797b3e516cf461d3eba1
MD5 7d8c1061be71913abcdf5baef582479d
BLAKE2b-256 8473bbfe6ca8f10a87afd19f2c1acee815a7f59db489bf368e65fa43b5f15ea0

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e30a92748000354c9d21b7a7e23a13f9645239e74c0f7f9f270fbc8aa75969
MD5 a6bf4fbab191bbf0a1b2749cc7d48b68
BLAKE2b-256 e726ac4ea1e7bcce09ae07ca29268df9008cd6dfecd3a98394d74d11403a8dcb

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ac1ae329314b2b8f911605da830570aff4578074c06a5438eb21391f621cf8a
MD5 3e107e7460fc85e539fb28b845b0eb03
BLAKE2b-256 303d737a5fa8c19bd26003b343c24c5607539cfa6b46ae5ff6ba0dd47729cbe5

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7f83bec5ee8eb1d2306bef98cea8a8ea38f635275747fb3e22d4cc33671d9a7a
MD5 59284c2baaadf630f514123743efbfaa
BLAKE2b-256 9ef191e97428407bae4b52837a06e61be1967e9b05f378788dd8194ee6bc9920

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a0363f904fc84662f2ba96f0a5180f50fd6863ec5ecdad336f14ab491f5d11a
MD5 a0d70c5b0a8b395425825c749c4fc176
BLAKE2b-256 2a64017118793a0621591e79a0cd57277af7e9bb4003b8b189b45e46c28d62e2

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aac5dc5ade3843ba68e99e9d71a3f529da61f2ecc0584e6e48e9bf9496366e2e
MD5 10cd5feb0c0ec6f95272cfe30e3c1084
BLAKE2b-256 8d9d44c989dedab2f23b24c4514d3e8387183dcb7c9998185484270a06be472c

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e1fe80a6bc5b195f939cf9e05e3688299805a00d21feb6809b08ed3f96750d3
MD5 4cc746db952f97b022532c7e95b55212
BLAKE2b-256 b4230e5ec2c968d27ee19e90f74c9fa35aef873b31d1dbd9b2fb1297e0f8c8e8

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 120d8f05a0eb7a3eaf5e5c5cfa2af637d0e8cdd614a80727dc8cc0b7d1a31b68
MD5 689ed0caaa907b7c8cfb317c3defa005
BLAKE2b-256 3a60d12badd902b6b1cc867d70efc9028406d1f835951c72c1d5684a776862f0

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 137.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 da35cbffe9761ea49c4bffa0ef5a23fadbfb0cad4871ba52c1c14339ab9e9c2b
MD5 3834476db379d206bdf095804339c4a4
BLAKE2b-256 73215007061dabcb1e66d7c48f6cc1dc9fae08ff558e8ffe94b75a167f0db3c7

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 527b9451de0d83519971d1a141fb7c2fe8ccd0115d3e2440425e41e9705c1380
MD5 6b094130d0c5176421d38590cf968ec3
BLAKE2b-256 1cea95349d4c8da66c2f0bd046cf89baf891484c0af8bb84a4c4113dbfc101a9

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a20b06494d4dc52559c6ae901e8966dd8aa4369e3cffa9b994bf15960d6045fe
MD5 6a12c148e5ddf84cf8e248471216f926
BLAKE2b-256 33ee10f1bcaa38c68a713de5c0135e5c42a486721167ef9f97396525cdaea102

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 096bc048e92f04c55f7128aa7b824ec2b14ad2eea34c635d7e6d8a29d01aab2f
MD5 6a0e93801a11b1a72eb1196d86540d48
BLAKE2b-256 9931fa4ae1f47055ebfeee643884922847639c3c9c7988a4d13215e9e4ede170

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccd12e34720bdb2659d906c0fca4cbfee6ca2a25d21257f3768dc121fc85917d
MD5 2e45ee54ce9d8ee9959482a26bb784fd
BLAKE2b-256 667ddd62f9ee9fcaac9614dd29ace970a28292fff050f1c9ae3e6ace2e08f3e4

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 137.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7bc2eb6f51b32cd12080eac3bccde61326676a16f6ce3e229f3636d2982e254c
MD5 c1a1a5e57e547ea05e7a26c2ed7d3ee3
BLAKE2b-256 5679ab8eacea00652d54fd30dea19c04eb6e897362da17337f030029b4e2a4b0

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b7754afd4698b6bf0cd55abd5644120d7aabe0b7e73f4078e242e8e62d74885
MD5 08cf0fde6563564be29b27108d9ca30c
BLAKE2b-256 8b3a7c4bc57f0d6f52fc5b494e57ad8abbeb265c03023796d82bd9a8961e8a36

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65b561d9412ffd623c20de44e9ffba7782c2323c863bc29e6440076beec03ceb
MD5 36c75cc4d428ab299612631958ec7a6a
BLAKE2b-256 1c7a1747d30de6437cebeaf3ca5d9987bdd7276232016cc2c7dc4b98cc073e47

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 828d5a66c2a5d309689592aa00ade646440dee9ebf7353f8f4d59a640f52c602
MD5 e562892d47232891fc5d9cd18d98980b
BLAKE2b-256 b3661e2ba98eda7be624a115b99f9550be240b257d8f00193aa582e3bb569dc0

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc55081c375630c7b77c92abac93ee78c65934469a07c9a83fd8e04bbda81bad
MD5 3a54b9485b1e3d3e8c0f8eddd210ab08
BLAKE2b-256 bac520846de05b72ee4e85c0bc72aba6b8027f3924f9d5bb04e9e24dd3cc15fa

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 138.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 168e78490831cbe4da4f514f99c7db0db7dc9d333bb0548ea1c25385d7f813bb
MD5 6448b73b8a7aa108333af7ccbac34c24
BLAKE2b-256 b13ecedeea3bb93c4c3c43de6654a9d0ab729e50c58484860cd74131642584f9

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fc1abf4b5ea8d20aa50d6574d30ca09c2edfac04e3fb64ab7f225867b8aa5c8
MD5 c3e70d929bbaad4e7897e398c272eca4
BLAKE2b-256 423fdfe28573792dadf2e0c42a5abfa7ad23deba91eb53f3d85bac970b7f1d38

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aff1ad3cfc79cc424bf5a228c5ea5d054ff25d596e867f1dd5e33e8c128e5b74
MD5 ce308ad9fad42a2979d97f4651a7f46c
BLAKE2b-256 b8ea4c2640c0393684dbc9295601f3c75be806c4cec75114edd17add632484bd

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acbf47580eb6c878e6fb6cf95ee128bdb5d3824711c9eeeb00c5d88e899166ed
MD5 58d65b22d80fbe86a9871f8342b711b3
BLAKE2b-256 7165dc9f8af45db83aa7dc33a124ed84c0fafebfafb4ddc5be9a5e9506784b56

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 478477a511f0a823088f7686268503d8ec5679c0ab3289bf1c8de7f5794238bc
MD5 2963d8a747255e1ee46625be6923d0bd
BLAKE2b-256 9b1e164ef995dfdf2c8732734401404fc659846b1d1c985aee6c2c2ea02edc32

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 138.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d066d58a44695d06e7b649a780a53fdf5a8b0893d797f3557a672857910eb879
MD5 1f24034b69b2907bb7ca5ceb9c116ab7
BLAKE2b-256 7e0a6f8846c691f0fb6e0599888e0af35ca103dcef73acf430ac25463154d305

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9e9e1fa26fc4c12730f26d148ddf1a87efaf7b4f692431a9cb1eff08ce86a76
MD5 288f37163451fbd58d29695cf3536495
BLAKE2b-256 4508d244182b4060837c52c1d7b431faaa8ae404a3a14651e983218f32e69ad9

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb00eee108632a4aac6475977f4e596cb01c5ee3817f398d6a69a50bdb6352a3
MD5 9887477db74bd7d4fce206bed2bb8e14
BLAKE2b-256 87ffa8eac90d02d4b7bc536488ecab5d9d28d62ab9013273a9e5c58fcdd25d3a

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2317d3f4e6b301228d6e0e9aa979ace21250809d23b0089345875353bce0e45e
MD5 d44a905a177d511326d3843721d88448
BLAKE2b-256 a5c8075bdda5a1df06004b609ec494487ac926c36dfd7d95c5e1567c63d6f077

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8efa8b36e1a13c93617f8d3563d671ef367f2450cdfd3b6a1adafc0eb2a4ff34
MD5 b20d5940ad71af7bc23ed89a4ec8cac8
BLAKE2b-256 cb393591938dd66e74e4f2f0395b823432598cb3d04d03fc90d4373298d7fea0

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1b383196ba73032f51c1908525913a7762bf967664975657cc4d691c8b7a579
MD5 167def3a496b42459e6876449ccad789
BLAKE2b-256 0456aa2221bc05c282af5cfefc90490719ecf4c300a4eb26af15452ddbcdd4f9

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 138.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6a06356ea8a41a9f902bb9a114861c767e5fd1c502dd0cfc05432b698ffcffc
MD5 fb5e6c699babcec3c33227310f131dcc
BLAKE2b-256 c29c463b9d93a2e6f8bc153f9180fff180ba3d6d7b9fdfa22d9222419c07b2db

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee3804ac6c02ea97c1d893da08e68e352c6e5264b8a41fa2cad6304b8bc57d75
MD5 09b12f9a19a1d636aea5aa736770ac31
BLAKE2b-256 0ecaa164989eb2e41412edc2f4afe4c4d9f2ad4065cece55fd3dbe02ffdb889c

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10ead934c995f13afeb76d8f7c17ecaed55640819fa4fa8491dc4ea56feb4cfb
MD5 9723e62e4d4440be8d28cd512cef4e27
BLAKE2b-256 da96872bae4945fd94417dbb5f10f41e22af9e1dc52ff94e6ece4756c676c87a

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5886158a5cffa54f62780918eea50db9756be480459f5bebb40e68d900dbc2d6
MD5 560887c9d0b1cba1c03371ad0e547379
BLAKE2b-256 4cd4106bf32f3f1cab1e4cfdfee2afccf91dbf839640a15696f5e3441b24215d

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 394cbb822596d93a7ce591666c0be2530b21f4cf3ae7d7ff892a3765e8429e9d
MD5 711951cb05a0e4a6254901e9b4e60a2f
BLAKE2b-256 8b4ddcd55f5a32578b2028c846185a53331fb94d2f295ebed9a173994759cbac

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 139.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 264b89ffad7194d2fa4963e2e034282bfe52366897bfe2ac279b7a59b4e8f61b
MD5 c5699bef4a4f8a27f4c7ba77e9888e7e
BLAKE2b-256 ce0cd8a11ca6b9653b0b3c9b75c861eb0e9a45b74ae85e500c6f8660e3a0d824

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21664f05c80db85477052abfb75aff4fbcb0f5d20b122ba88a44a217e185766a
MD5 3fc5f83156ac1546aca23dd39029bbc5
BLAKE2b-256 950627f62780405b917b5454ec67020e662348ffb09a2c9f5bc33b7ff17f98a2

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 439b48fd495e4adaedbbe98dbcae19e4fdaac9ffcd85f56e0347db4a48624f01
MD5 e253e3d8f460c942029fbdac0d226c2e
BLAKE2b-256 2178f53ec21c51924932147b11a9af150c42a4e1d2acc826e7a4cf48d7240b3d

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9741dadf82a3fb71afa6b21356b945ce9e521576c49a21395ca033fa6b770216
MD5 3e406c3aa611cca6f5cc9af48cae9ee7
BLAKE2b-256 6c455c8f517bb404c0ed5d76dbd62be30e18493cac9624b3e60691a42787a641

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04e9eefd0d307c038879e24f41b8ddae1a9e0377cab4439cbe0ef81e149248f9
MD5 9db3c288f522bba2842c21ee1e512310
BLAKE2b-256 c601608c828c4b64c4cea29aa3929973266f2714b5c7c839a67e9644ab99ead1

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: tictoc-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 139.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.2

File hashes

Hashes for tictoc-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1826dc1b009f0daea7482cfdfe0f6a304dda985fcb6414fe826d1a4b1ef2b990
MD5 5d59a0ba933df0812c04fc334ddb28ce
BLAKE2b-256 6b3d7dc9d4838e1aa3fe9c720c582131e2962a4fca992b46ce6f18a721bbefac

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 907e11f9dd4e6cb04a9ba5ef564a39755951b2ea620ce29a76ec8de523c708a9
MD5 9978675fa1f7b40f0d9c57fdd20808ec
BLAKE2b-256 d96be152bb336ad1d883ade0d783e6b741f86117383d8056004881fb8ad7922f

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aec4d8f78c9cfbdc49bccc2ce838d6c87250c004129d583131344ab63f9fa27
MD5 f38b96b7e0c3c20048dea04ca882e9c8
BLAKE2b-256 9eca090c3a1755aece0ffb62e75c6b20ccc09203ae2c7c735a8dafc75a58d133

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a431e92b1945c5848341c4ee258f2fad6dfee28118b0bf5fb2738758d5f731a
MD5 f994aca0cd0a388c597d36adc243a826
BLAKE2b-256 2f19ca62ffe043f9409a8dd982d7669cb4287c29a9ad3c88648b3947baacc806

See more details on using hashes here.

File details

Details for the file tictoc-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tictoc-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e358499e5222d318939dd930a625d055b1a85757b437b92be8628e546e689690
MD5 042d4197462f7a008b5492c8a5051aa8
BLAKE2b-256 d71e58bed7d547326c7a6f1ef813d45727c5cc35906a5d573aad04048c2e6b34

See more details on using hashes here.

Supported by

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