Conveniently measures the time of loops, contexts and functions.
Project description
Horology
Conveniently measures the time of your loops, contexts and functions.
Installation
horology version | compatible python |
---|---|
1.3 | 3.8-3.11 |
1.2 | 3.6-3.9 |
1.1 | 3.6-3.8 |
Horology can be installed with PIP. It has no dependencies.
pip install horology
Usage
The following 3 tools will let you measure practically any part of your Python code.
Timing an iterable (list, tuple, generator, etc)
Quick example
from horology import Timed
animals = ['cat', 'dog', 'crocodile']
for x in Timed(animals):
feed(x)
Result:
iteration 1: 12.0 s
iteration 2: 8.00 s
iteration 3: 100 s
total 3 iterations in 120 s
min/median/max: 8.00/12.0/100 s
average (std): 40.0 (52.0) s
Customization
You can specify where (if at all) you want each iteration and summary to be printed, eg.:
for x in Timed(animals, unit='ms',
iteration_print_fn=logger.debug,
summary_print_fn=logger.info):
feed(x)
Timing a function with a @timed
decorator
Quick example
from horology import timed
@timed
def foo():
...
Result:
>>> foo()
foo: 7.12 ms
Customization
Chose time unit and name:
@timed(unit='s', name='Processing took ')
def bar():
...
Result:
>>> bar()
Processing took 0.185 s
Timing part of code with a Timing
context
Quick example
Just wrap your code using a with
statement
from horology import Timing
with Timing(name='Important calculations: '):
...
Result:
Important calculations: 12.4 s
Customization
You can suppress default printing and directly use measured time (also within context)
with Timing(print_fn=None) as t:
...
make_use_of(t.interval)
Time units
Time units are by default automatically adjusted, for example you will see
foo: 7.12 ms
rather than foo: 0.007 s
. If you don't like it, you can
override this by setting the unit
argument with one of these names:
['ns', 'us', 'ms', 's', 'min', 'h', 'd']
.
Contributions
Contributions are welcomed, see contribution guide.
Internals
Horology internally measures time with perf_counter
which provides the highest available resolution,
see docs.
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
Built Distribution
File details
Details for the file horology-1.3.1.tar.gz
.
File metadata
- Download URL: horology-1.3.1.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.11.0 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b609d94ce15832897e7876ce30d311049b0e794e96eddb239369a1ddc4d64c73 |
|
MD5 | 0f524945f5538a36668217e083fbbe27 |
|
BLAKE2b-256 | cb4a77bd1e977ca2b15584f756164e448476d417b2c3c544a2a495210eba0376 |
File details
Details for the file horology-1.3.1-py3-none-any.whl
.
File metadata
- Download URL: horology-1.3.1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.11.0 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a651a7400803012e6ed70ee66141a1ee2939dc59f5b510605f81a58744f1654 |
|
MD5 | a06c5212fb9a597321e4dc6f851ab5cf |
|
BLAKE2b-256 | 179adaa8314185c1e1b4f6916f68ee087a156768a39d7884c4278ed00ed53f7a |