Skip to main content
Version:
0.1.0

Introduction

The timer2 module lets you schedule Python functions at specific times, or at an interval. It can be used as a replacement to threading.Timer, the difference is that timer2 is always only using a single thread (unless you manually start more of them)

You should never use this to apply expensive operations, as this would not be effective when running in a single thread, rather you should make the timer move the operations to a execution pool (like a thread/multiprocessing pool, or maybe sending a message):

>>> pool = multiprocessing.Pool()
>>> timer2.apply_after(10000, pool.apply_async, (expensive_fun, ))

Documentation

Timer is using Sphinx, and the latest documentation is available at GitHub:

http://ask.github.com/timer2

Installation

You can install timer2 either via the Python Package Index (PyPI) or from source.

To install using pip,:

$ pip install timer2

To install using easy_install,:

$ easy_install timer2

If you have downloaded a source tarball you can install it by doing the following,:

$ python setup.py build
# python setup.py install # as root

Examples

Apply function after n msecs:

>>> import timer2
>>> timer2.apply_after(msecs, fun, args, kwargs, priority=0)

Apply function every n msecs:

>>> timer2.apply_interval(msecs, fun, args, kwargs, priority=0)

Apply function at a specific date (a datetime object):

>>> timer2.apply_at(datetime, fun, args, kwargs, priority=0)

Cancelling timers

The apply_* functions returns a timer2.Entry instance, you can use this to cancel the execution:

>>> tref = timer2.apply_after(msecs, fun, args, kwargs)
>>> tref.cancel()

Running custom Timer threads

When using the module interface a default timer thread is started as soon as you schedule something. If you want to keep track of the thread manually, you can use the timer2.Timer class:

>>> timer = timer2.Timer()
>>> timer.apply_after(msecs, fun, args, kwargs)
>>> timer.stop() # stops the thread and joins it.

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to our issue tracker at http://github.com/ask/timer2/issues/

Contributing

Development of timer2 happens at Github: http://github.com/ask/timer2

You are highly encouraged to participate in the development. If you don’t like Github (for some reason) you’re welcome to send regular patches.

License

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

Release files for timer2 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for timer2 0.1.0
File Size Uploaded
timer2-0.1.0.tar.gz 126.0 kB Details

Release files / timer2-0.1.0.tar.gz

Download URL timer2-0.1.0.tar.gz
Size 126.0 kB
Tags Source
SHA-256 checksum
How to use checksums
f20b97c4c48c9a88c05e614d46f9ab10865a7c6c3156e382ed55c1e2c9873018
BLAKE2b-256 checksum
How to use checksums
6a247e395fc0f5fb593f206780232255283b7c7feec1c404263307d33ab8f358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.0 This release

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page