Metadata-Version: 2.1
Name: timeoutd
Version: 0.6.1
Summary: Simple way to add a timeout to any Python code.
Home-page: https://github.com/juhannc/timeoutd
Author: Johann Christensen
Author-email: johannchristensen@outlook.de
License: MIT
Project-URL: Source, https://github.com/juhannc/timeoutd.git
Project-URL: Tracker, https://github.com/juhannc/timeoutd/issues
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8
Provides-Extra: tests
Provides-Extra: all

# timeoutd

![pytest](https://github.com/juhannc/timeoutd/actions/workflows/pytest.yml/badge.svg)
[![Pypi Status](https://badge.fury.io/py/timeoutd.svg)](https://badge.fury.io/py/timeoutd)
[![codecov](https://codecov.io/gh/juhannc/timeoutd/branch/main/graph/badge.svg)](https://codecov.io/gh/juhannc/timeoutd)
[![Maintainability](https://api.codeclimate.com/v1/badges/ba14c01e22ad0343af8c/maintainability)](https://codeclimate.com/github/juhannc/timeoutd/maintainability)

## Installation

From [PyPI](https://pypi.org/project/timeoutd/):

```shell
pip install timeoutd
```

From source code:

```shell
git clone https://github.com/juhannc/timeoutd.git
pip install -e .
```

## Usage

```python
import time
import timeoutd

@timeoutd.timeout(5)
def mytest():
    print("Start")
    for i in range(1, 10):
        time.sleep(1)
        print(f"{i} seconds have passed")

if __name__ == '__main__':
    mytest()
```

Specify an alternate exception to raise on timeout:

```python
import time
import timeoutd

@timeoutd.timeout(5, exception_type=StopIteration)
def mytest():
    print("Start")
    for i in range(1, 10):
        time.sleep(1)
        print(f"{i} seconds have passed")

if __name__ == '__main__':
    mytest()

```

You can also specify a function to be called on timeout instead of raising an exception:

```python
import time
import timeoutd

def add_two_numbers(i: int, j: int | None = None):
    if j is None:
        j = 0
    print(f"The sum of {i = } and {j = } is {i + j}")

@timeoutd.timeout(
    5,
    on_timeout=add_two_numbers,
    on_timeout_args=(1,),
    on_timeout_kwargs={"j": 2}
)
def mytest():
    print("Start")
    for i in range(1, 10):
        time.sleep(1)
        print(f"{i} seconds have passed")

if __name__ == '__main__':
    mytest()
```

### Multithreading

_Note:_ This feature appears to be broken in some cases for the original timeout-decorator.
Some issues might still exist in this fork.

By default, `timeoutd` uses signals to limit the execution time of the given function.
This approach does not work if your function is executed not in a main thread (for example if it's a worker thread of the web application).
There is alternative timeout strategy for this case - by using multiprocessing.
To use it, just pass `use_signals=False` to the timeout decorator function:

```python
import time
import timeoutd

@timeoutd.timeout(5, use_signals=False)
def mytest():
    print "Start"
    for i in range(1, 10):
        time.sleep(1)
        print("{} seconds have passed".format(i))

if __name__ == '__main__':
    mytest()
```

_Warning:_
Make sure that in case of multiprocessing strategy for timeout, your function does not return objects which cannot be pickled, otherwise it will fail at marshalling it between master and child processes.

## Acknowledgement

Derived from
<http://www.saltycrane.com/blog/2010/04/using-python-timeout-decorator-uploading-s3/>, <https://code.google.com/p/verse-quiz/source/browse/trunk/timeout.py>, and <https://github.com/pnpnpn/timeout-decorator>
