A precise and lightweight stopwatch built on top of `perf_counter`. Stopwatch can be used as a direct replacement for `perf_counter` that returns absolute timing starting from zero.
Project description
stoppy ⏱
A precise and lightweight stopwatch built on top of perf_counter
. Stopwatch can be used as a direct replacement for perf_counter
that returns absolute timing starting from zero.
The stopwatch can optionally be started automatically by calling time(True)
instead of start()
, which can streamline usage when polling the time repeatedly.
Installation
Install from PyPI via:
pip install stoppy
Usage
Basic usage is as follows:
from time import sleep
from stoppy import Stopwatch
with Stopwatch(start=True) as stopwatch:
sleep(0.1)
stopwatch.stop()
print(stopwatch.time())
stopwatch.reset()
It can also be used as a direct replacement for perf_counter
with absolute timing starting from zero:
from stoppy import Stopwatch
with Stopwatch() as stopwatch:
# Calling `stopwatch.time(True)` is equivalent to calling `perf_counter()`, but starts from exactly zero
print(stopwatch.time(True))
For all usage examples see examples/.
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
Built Distribution
File details
Details for the file stoppy-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: stoppy-1.0.3-py3-none-any.whl
- Upload date:
- Size: 2.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.10.8 Darwin/21.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bda27d444a25aa48e7ff0f3c0929afe79b02a36539c8ae8b920e713308eeaba5 |
|
MD5 | 1f350fbe0e3e09695b6440c67d8d8988 |
|
BLAKE2b-256 | 8aab5bee451aebe13975fc590f1471bdc8e4eeeeac22f942c58d3d01de574222 |