Skip to main content

It lets call any function with a timeout

Project description

pythonversions License

Timekiller

It lets call any function with a timeout!

Install

pip install timekiller

Link pypi: https://pypi.python.org/pypi/timekiller

Example

Call function

import timekiller
import time


def long_function(foo, bar):
    while True:
        time.sleep(10)
        print(foo, bar)

# call(func, max_time, *args, **kwargs)
timekiller.call(long_function, 5, "woo", bar="Uhmm")


@timekiller.timeout(5)
def long_function_with_decorator(foo, bar)
    while True:
        time.sleep(10)
        print(foo, bar)

long_function_with_decorator("woo", "Uhmm")

Capture exception

import timekiller
import time


@timeout(1)
def long_function():
    try:
        time.sleep(10)
    except timekiller.TimeoutException:
        print("capture exception")

long_function()

TODO: - It works in main thread and processes (not work in threads)

CHANGELOG

0.0.3 (2016-06-15)

  • Fix manifest.in

  • Fix pip install version

0.0.2 (2016-06-15)

  • Fix raise exception

0.0.1 (2016-06-14)

  • Initial version

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

timekiller-0.0.3.tar.gz (2.5 kB view details)

Uploaded Source

File details

Details for the file timekiller-0.0.3.tar.gz.

File metadata

  • Download URL: timekiller-0.0.3.tar.gz
  • Upload date:
  • Size: 2.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for timekiller-0.0.3.tar.gz
Algorithm Hash digest
SHA256 2e00c4664979637a75bc5a6cbc4ab9ed0b9116c68fa3b386d9d397b8bcd32882
MD5 9d57ff820ca9fbb8744b12333585f932
BLAKE2b-256 6b69c7358534a058fce60ba583c150671faee428603685a0a8978397b9d6abf9

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