Skip to main content

Specify a timeout with any given function

Project description

bombfuse

Python module for specifying timeouts when executing functions

Installation

To install this package, run the following command:

$ pip install bombfuse

Usage

>>> import time
>>> import bombfuse
>>> # here's an infinite loop
>>> def func(msg):
>>>     while True:
>>>         time.sleep(1)
>>>         print msg
>>>
>>> # time out in 5 seconds
>>> bombfuse.timeout(5, func, "Hello world!")
Hello world!
Hello world!
Hello world!
Hello world!
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "bombfuse\__init__.py", line 64, in timeout
    raise e
bombfuse.TimeoutError: The function 'func' timed out
>>>

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

bombfuse-0.2.1.tar.gz (2.0 kB view hashes)

Uploaded Source

Built Distribution

bombfuse-0.2.1-py2-none-any.whl (3.1 kB view hashes)

Uploaded Python 2

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