A timer module. Makes it easy to track elapsed time.
Project description
A timer module. Makes it easy to track elapsed time.
Installation
Latest stable version on PyPI:
$ pip install simple_timer
Latest stable version on bitbucket:
$ pip install -e hg+http://bitbucket.org/barseghyanartur/timer@stable#egg=simple_timer
Usage example
Required imports.
>>> from simple_timer import Timer
Initialise timer.
>>> timer = Timer()
Print elapsed duration.
>>> print timer.duration 0.16
Print elapsed timedelta.
>>> print timer.timedelta datetime.timedelta(0, 0, 7)
Stop the timer. Stopping the timer makes the duration and timedelta properties to freeze.
>>> timer.stop()
Print frozen timedelta value.
>>> print timer.timedelta datetime.timedelta(0, 2, 943660)
Print frozen duration value.
>>> print timer.duration 2.94366
Once stoped, when calling the stop method again unfreezes the timer, calculates the new values and freezes the timer again.
Shortcut for stopping and returning the duration value.
>>> timer.stop_and_return_duration() 143.230978
Shortcut for stopping and returning the timedelta value.
>>> timer.stop_and_return_timedelta() datetime.timedelta(0, 170, 351115)
License
GPL 2.0/LGPL 2.1
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
File details
Details for the file simple_timer-0.2.tar.gz
.
File metadata
- Download URL: simple_timer-0.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 785e2d6bea269bded6f67b07827a8ea5324688f42a638c67153e113c1e899c7e |
|
MD5 | ea984ad7aba0ee16a14dea8f00e028e9 |
|
BLAKE2b-256 | 900506b9e3247646aa1ff4e5f012c402b0a722a3bbd332d7702a8a64ad7f0535 |