Skip to main content

Timeout timer use signal or thread module, support nested loop

Project description

PyPI version

Installation

python setup.py install

Timeout Timer

Add a timeout function to a function or statement and raise a exception if time limit runs out, can work as a context or decorator, support loop nesting and should use diff exception class, if use signal timer, outside timer will fired after the inside signal timer finish the work(raise exception or normal finish).

Support signal timer and thread timer, signal timer can only work on main thread, if not on main thread use thread timer, thread timer may cost longer time than time out seconds settled if the user’s function is busy in a system call (time.sleep(), socket.accept()…), exception will fired after system call done.

Usage

support nested loop

from timeout_timer import timeout, TimeoutInterrupt

class TimeoutInterruptNested(TimeoutInterrupt):
    pass

def test_timeout_nested_loop_both_timeout(timer):
    cnt = 0
    try:
        with timeout(5, timer=timer):
            try:
                with timeout(2, timer=timer, exception=TimeoutInterruptNested):
                    sleep(2)
            except TimeoutInterruptNested:
                cnt += 1
            time.sleep(10)
    except TimeoutInterrupt:
        cnt += 1
    assert cnt == 2

use as decorator

@timeout(2):
def f():
    time.sleep(3)
    time.sleep(2)

License

Code released under the MIT license

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

timeout-timer-0.2.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

timeout_timer-0.2.0-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file timeout-timer-0.2.0.tar.gz.

File metadata

  • Download URL: timeout-timer-0.2.0.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for timeout-timer-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e33a32dd03148527272348faa38cc6844e591948e1ce8042938de3c592751384
MD5 9d3010a83cc2917b597c96688ac541c9
BLAKE2b-256 d3587bbcf7a85ce7542aa71b245a199477b614229c44fbb1d7f2e42e11fe4f0d

See more details on using hashes here.

File details

Details for the file timeout_timer-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: timeout_timer-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for timeout_timer-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 67c512191e422849b7aa6157b978b2b354b139b23b44d9f311011e7a5f6b2300
MD5 9cb7b97f80cd3f7935b2b4b0d7d2d0eb
BLAKE2b-256 79c8768c9b08ce4d0a57b247f6cca9aab4b0349bfcf8ca76952b4b4fd6e3c17c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page