Skip to main content

Easily measure timing and throughput of code blocks, with beautiful human friendly representations.

Project description

about-time

A cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions.

Coverage Maintenance PyPI version PyPI pyversions PyPI status PyPI Downloads

What does it do?

Did you ever need to measure the duration of an operation? Yeah, this is easy.

But how to:

  • measure the duration of two or more blocks at the same time, including the whole duration?
  • instrument a code to cleanly retrieve duration in one line, to log or send to a time series database?
  • easily see human friendly durations with units like ms (milliseconds), us (microseconds) and even ns (nanoseconds)?
  • measure the throughput of a block? it is way harder, as it needs to measure both duration and iterations!
  • easily see human friendly throughputs in "per second", "per minute", "per hour" or even "per day"?

Yes, it can get complex! And even while one could do it, it would probably get messy and pollute the code being instrumented.

I have the solution, behold!

from about_time import about_time


def some_func():
    import time
    time.sleep(85e-3)
    return True


def main():
    with about_time() as at1:  # <-- use it like a context manager!

        at2 = about_time(some_func)  # <-- use it with any callable!!

        at3 = about_time(x * 2 for x in range(5))  # <-- use it with any iterable or generator!!!
        data = [x for x in at3]  # then just iterate!

    print(f'total: {at1.duration_human}')
    print(f'  some_func: {at2.duration_human} -> result: {at2.result}')
    print(f'  generator: {at3.duration_human} -> {at3.count} elements, throughput: {at3.throughput_human}, result: {data}')

This main() function prints:

total: 85.12ms
  some_func: 85.04ms -> result: True
  generator: 6.68us -> 5 elements, throughput: 748614.98/s, result: [0, 2, 4, 6, 8]

How cool is that? 😲👏

You can also get the duration in seconds if needed:

In [7]: at1.duration
Out[7]: 0.08511673200064251

But 85.12ms is way better, isn't it?

So, about_time measures code blocks, both time and throughput, and converts to beautiful human friendly representations! 👏

Get it

Just install with pip:

$ pip install about-time

Use it

There're three modes of operation: context manager, callable and throughput. Let's dive in.

1. Use it like a context manager:

from about_time import about_time

with about_time() as at:
    # the code to be measured...
    # any lenghty block.

print(f'The whole block took: {at.duration_human}')

This way you can nicely wrap any amount of code.

In this mode, there are the basic fields duration and duration_human.

2. Use it with any callable:

from about_time import about_time

at = about_time(some_func)

print(f'The whole block took: {at.duration_human}')
print(f'And the result was: {at.result}')

This way you have a nice one liner, and do not need to increase the indent of your code.

In this mode, there is an additional field result, with the return of the callable.

If the callable have params, you can use a lambda or (📌 new) simply send them:

def add(n, m):
    return n + m

at = about_time(add, 1, 41)
# or:
at = about_time(add, n=1, m=41)
# or even:
at = about_time(lambda: add(1, 41))

3. Use it with any iterable or generator:

from about_time import about_time

at = about_time(iterable)
for item in at:
    # process item.

print(f'The whole block took: {at.duration_human}')
print(f'It was detected {at.count} elements')
print(f'The throughput was: {at.throughput_human}')

This way about_time also extracts the number of iterations, and with the measured duration it calculates the throughput of the whole loop! Specially useful with generators, which do not have length.

In this mode, there are the additional fields count, throughput and throughput_human, which should be self-descriptive at this point.

Cool tricks under the hood:

  • you can use it even with generator expressions, anything that is iterable to python!
  • you can consume it not only in a for loop, but also in {list|dict|set} comprehensions, map()s, filter()s, sum()s, max()s, list()s, etc, thus any function that expects an iterator! 👏
  • the timer only starts when the first element is queried, so you can initialize whatever you need before entering the loop! 👏
  • the count and throughput/throughput_human fields are updated in real time, so you can use them even inside the loop!

Accuracy

about_time supports all versions of python, but in pythons >= 3.3 it performs even better, with much higher resolution and smaller propagation of errors, thanks to the new time.perf_counter. In older versions, it uses time.time as usual.

Want to know more about the duration human magic?

I've used just one key concept in designing the duration human features: cleanliness.

3.44s is more meaningful than 3.43584783784s, and 14.12us is much nicer than .0000141233333s.

So what I do is: round values to at most two decimal places, and find the best scale unit to represent them, minimizing resulting values smaller than 1. The search for the best unit considers even the rounding been applied!

0.000999999 does not end up as 999.99us (truncate) nor 1000.0us (bad unit), but is auto-upgraded to the next unit 1.0ms!

The duration_human units change seamlessly from nanoseconds to hours.

  • values smaller than 60 seconds are always rendered as "num.D[D]unit", with one or two decimals;
  • from 1 minute onward it changes to "H:MM:SS[.m]".

It feels much more humanly humm? ;)

Some examples:

duration (float seconds) duration_human
.00000000185 '1.85ns'
.000000999996 '1.0us'
.00001 '10.0us'
.0000156 '15.6us'
.01 '10.0ms'
.0141233333333 '14.12ms'
.1099999 '110.0ms'
.1599999 '160.0ms'
.8015 '801.5ms'
3.434999 '3.43s'
59.999 '0:01:00'
68.5 '0:01:08.5'
125.825 '0:02:05.8'
4488.395 '1:14:48.4'

Or about the throughput human one?

I've made the throughput_human with a similar logic. It is funny how much trickier "throughput" is to the human brain!

If something took 1165263 seconds to handle 123 items, how fast did it go? It's not obvious...

Even dividing the duration by the number of items, we get 9473 seconds/item, which also does not mean much. How fast it that? We can't say. How many do we do per time?

Oh we just need to invert it, so 0.000105555569858 items/second, there it is! 😂

To make some sense of it we need to multiply that by 3600 (seconds in an hour) to finally get 0.38/h, which is much better! Now we know how fast that process was!

The throughput_human unit changes seamlessly from per-second, per-minute, per-hour and even per-day.

duration (float seconds) number of elements throughput_human
1. 10 '10.0/s'
1. 2500 '2500.0/s'
2. 1 '30.0/m'
2. 10 '5.0/s'
1.981981981981982 11 '5.55/s'
100. 10 '6.0/m'
1600. 3 '6.75/h'
.99 1 '1.01/s'
1165263. 123 '0.38/h'

Changelog highlights:

  • 3.1.1: make duration_human() and throughput_human() available for external use
  • 3.1.0: include support for parameters in callable mode; official support for python 3.8, 3.9 and 3.10
  • 3.0.0: greatly improved the counter/throughput mode, with a single argument and working in real time
  • 2.0.0: feature complete, addition of callable and throughput modes
  • 1.0.0: first public release, context manager mode

License

This software is licensed under the MIT License. See the LICENSE file in the top distribution directory for the full license text.

Did you like it?

Thank you for your interest!

I've put much ❤️ and effort into this.
If you've appreciated my work and would like me to continue improving it, you can donate me a beer or a coffee! I would really appreciate that 😊! (the button is on the top-right corner) Thank you!

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

about-time-3.1.1.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

about_time-3.1.1-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

Details for the file about-time-3.1.1.tar.gz.

File metadata

  • Download URL: about-time-3.1.1.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.2 CPython/3.8.5

File hashes

Hashes for about-time-3.1.1.tar.gz
Algorithm Hash digest
SHA256 586b329450c9387d1ae8c42d2db4f5b4c57a54508d0f1b7bb00322ffd5ce9f9b
MD5 27ee2e1f2c38679a6967d84bd108010e
BLAKE2b-256 e667a3c982456707c5304017548b56ba5d9eec71b2f69a0f8e567622a0792bff

See more details on using hashes here.

File details

Details for the file about_time-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: about_time-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.2 CPython/3.8.5

File hashes

Hashes for about_time-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 96841beb3f9b5de1cbb323d2bdb0fa9abdecbc46f2d546b9b3c2483d23daa17a
MD5 39a4e0f9598ce1c2c127027479850e59
BLAKE2b-256 bc3e97d324a2161da150d5d8f979ffce526ebbb938dbaf9536caaf0c4efe3680

See more details on using hashes here.

Supported by

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