Measure execution time of any function
Project description
philiprehberger-timerfunc
Measure execution time of any function.
Installation
pip install philiprehberger-timerfunc
Usage
Context Manager
from philiprehberger_timerfunc import timer
with timer() as t:
do_work()
print(f"Took {t.elapsed_ms:.1f}ms")
Decorator
from philiprehberger_timerfunc import timed
@timed
def process_data():
... # logs: "process_data took 42.3ms"
@timed(threshold_ms=100)
def api_call():
... # only logs if slower than 100ms
Benchmark
from philiprehberger_timerfunc import benchmark
result = benchmark(my_function, args=(data,), iterations=1000)
print(f"Mean: {result.mean_ms:.2f}ms, P95: {result.p95_ms:.2f}ms")
print(f"Fastest: {result.fastest:.2f}ms, Slowest: {result.slowest:.2f}ms")
print(result) # full stats summary
Comparing benchmarks
from philiprehberger_timerfunc import benchmark, compare_benchmarks
old = benchmark(old_impl, iterations=1000)
new = benchmark(new_impl, iterations=1000)
ratio = compare_benchmarks(new, old)
# ratio > 1 means `new` is faster than `old` (old took proportionally longer)
print(f"new is {ratio:.2f}x faster than old")
API
| Function / Class | Description |
|---|---|
timer() |
Context manager returning TimerResult |
@timed / @timed(threshold_ms=0) |
Decorator logging execution time |
benchmark(fn, args, kwargs, iterations, warmup) |
Returns BenchmarkResult |
BenchmarkResult.fastest |
Duration of the fastest run (ms); alias of min_ms |
BenchmarkResult.slowest |
Duration of the slowest run (ms); alias of max_ms |
compare_benchmarks(a, b) |
Returns b.mean / a.mean; values > 1 mean a is faster |
Development
pip install -e .
python -m pytest tests/ -v
Support
If you find this project useful:
License
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file philiprehberger_timerfunc-0.2.0.tar.gz.
File metadata
- Download URL: philiprehberger_timerfunc-0.2.0.tar.gz
- Upload date:
- Size: 173.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32f79823400e91f66c4fb0dcf827b085c8eb5955151b9c0aaf365d16570339b3
|
|
| MD5 |
f829b5efacb91f6982edb14de81e3641
|
|
| BLAKE2b-256 |
ee478656df09c5df36597368036df0c8ddf60ffa7d4d12f87121b503248ad71f
|
File details
Details for the file philiprehberger_timerfunc-0.2.0-py3-none-any.whl.
File metadata
- Download URL: philiprehberger_timerfunc-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea75a1ab61d2ffaec7be76d2282350b8711df3cb35cdb364dc374b202e18539
|
|
| MD5 |
cce85e798963414539ebf65f32a23d23
|
|
| BLAKE2b-256 |
b71a528262e00865e4f76f4dc38e2bc15f3660574cacd74447ddad0c20d4f668
|