Timeout & retry functions in Python with a single line of code
Project description
Python Timeout
Timeout & retry functions in Python with a single line of code
Explore the docs »
·
Report Bug
·
Request Feature
·
Table of Contents
About The Project
This is a Python package that provides decorators for adding timeout and retry functionality to your functions. With just one line of code, you can easily set a timeout for your function and choose to retry it any number of times in case of timeout.
Getting Started
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
Installation
Build from source
- Clone the repository
git clone github.com/radioactive11/pyrtout
- Run the following command to install the project
python3 setup.py install
Install using pip
To install the function using pip, run
pip3 install pyrtout
Usage
Basic Usage
-
To set timeout for a function, import the module using
from libtimeout import Timeout
. -
Create a Timeout object class with the following parameters:
`timeout_limit`: The time limit for the function to run (in seconds). Default is 10 seconds. `retry_limit`: The number of times to retry the function in case of timeout. Deafult is 0.
-
Use the
bind
method to bind the timeout decorator to the function you want to set timeout for. This returns a new function with the timeout decorator applied. -
Call the new function with the same parameters as the original function.
Example
from libtimeout import Timeout
timeout_ = Timeout(timeout_limit=5, retry_limit=2)
@timeout_.bind()
def my_function(a, b):
# Do something
return a + b
my_function(1, 2)
Advanced Usage
By default, the timeout decorator raises a TimeoutError in case of timeout. You can change this behavior by passing the following parameters:
timeout_exception: The exception to raise in case of timeout. This must be a subclass of Exception.
timeout_handler: The function to call in case of timeout. This must raise the exception specified in timeout_exception.
Example
from libtimeout import Timeout
class CustomException(Exception):
pass
def custom_handler():
# do something like deleting partial downloaded files etc.
raise CustomException("Custom exception raised")
timeout_ = Timeout(timeout_limit=60, retry_limit=2, timeout_exception=CustomException, timeout_handler=custom_handler)
@timeout_.bind()
def download_large_file(url):
# Download file
return
Roadmap
- [] Add retry with backoff
- [] Add multi-threading support
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE.txt
for more information.
Contact
Arijit Roy - @radioactive11 - roy.arijit@icloud.com
Project Link: https://github.com/your_username/repo_namehttps://github.com/radioactive11/pyrtout
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
Built Distribution
File details
Details for the file pyrtout-1.0.5.tar.gz
.
File metadata
- Download URL: pyrtout-1.0.5.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 727e615acef5e5157ec5eb9915b8a3954aa6ce27156758e86161984092cef653 |
|
MD5 | 295a7ad38f8bbe92673900ef0c268365 |
|
BLAKE2b-256 | 2746af9b50557effd7c07a27b3f13b1f2607165b993fed552e2bf158e45886ad |
File details
Details for the file pyrtout-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: pyrtout-1.0.5-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98484e4c887273e6bbddeeada366c20140fd7a1b5c2ea88c1b4bdc1f4435ead6 |
|
MD5 | 5df24802cd4d6ce2ab7818b9b5f8d2e1 |
|
BLAKE2b-256 | 714b0386a71d18c5d0040ed21383b2f50fdff76194d881da904f14b6716e3cca |