Skip to main content

timely :: easy stopwatch interface in Python

Project description

Python Timely
=============

Stopwatch interface for Python. Currently supports two modes: timing execution (:class:`Stopwatch`), and pausing the completion of a block of code until a specified time has elapsed :class:`Blocker`.

Stopwatch usage
---------------

::

with Stopwatch() as s:
do_a()
do_b()
print s.duration() # time it took to execute do_a() and do_b()
do_c()

print s.duration() # time it took to execute do_a(), do_b(), and do_c()

if s > 3: # comparators implicitly evaluate duration
print 'took longer than 3 seconds'

Blocker usage
-------------

::

with Blocker(3) as w:
print 'Happens immediately!'
time.sleep(1.5) # executes immediately
# ... we wait here until 3 seconds have passed

print '3 seconds have passed!'

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

timely-0.1.tar.gz (2.4 kB view hashes)

Uploaded Source

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