Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1741 > unrolled thread

ANN lauda 1.0.0

Started byAndrea Stagi <stagi.andrea@gmail.com>
First post2015-06-16 09:26 +0200
Last post2015-06-16 09:26 +0200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python.announce


Contents

  ANN lauda 1.0.0 Andrea Stagi <stagi.andrea@gmail.com> - 2015-06-16 09:26 +0200

#1741 — ANN lauda 1.0.0

FromAndrea Stagi <stagi.andrea@gmail.com>
Date2015-06-16 09:26 +0200
SubjectANN lauda 1.0.0
Message-ID<mailman.502.1434439897.13271.python-announce-list@python.org>
I've created lauda, a little python module to measure time. You can install
it with

    pip install lauda

you can find the source code on Github: https://github.com/astagi/lauda

You can use lauda StopWatch to measure a portion of code

    from lauda import StopWatch

    watch = StopWatch()
    watch.start()
    for i in range(10000000):
        pass
    watch.stop()
    print ('Time spent in range {0}'.format(watch.elapsed_time))

If you want to measure an entire function execution, you can decorate it
using the stopwatch decorator

    from lauda import stopwatch

    @stopwatch
    def awesome_mul(a, b):
        return a * b

By default stopwatch decorator will print the time spent inside the
decorated function, if you want more control you can pass to your decorator
a callback that will receive a StopWatch instance and the decorated
function.

    from lauda import stopwatch

    def stopwatch_sum_cb(watch, function):
        print ('Time spent {0}'.format(watch.elapsed_time))

    @stopwatch(callback=stopwatch_sum_cb)
    def awesome_sum(a, b):
        return a + b


-- 
Andrea Stagi (@4stagi) - Develover @Nephila
Job profile: http://linkedin.com/in/andreastagi
Website: http://4spills.blogspot.it/
Github: http://github.com/astagi

[toc] | [standalone]


Back to top | Article view | comp.lang.python.announce


csiph-web