A Python library for handling retries, timeouts and fallbacks in a resilient way.
Project description
# PyResilient
[](https://pypi.org/project/PyResilient/)
[](https://opensource.org/licenses/MIT)
PyResilient is a Python module designed to provide resilience strategies such as retries, timeouts, and fallback mechanisms for your functions. This module is ideal for elegantly and robustly handling errors and exceptions in your applications, enhancing reliability and user experience.
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Fallback Decorator](#fallback-decorator)
- [Retry Decorator](#retry-decorator)
- [License](#license)
- [Author](#author)
- [Acknowledgments](#acknowledgments)
## Installation
You can install PyResilient using pip:
```sh
pip install PyResilient
PyResilient requires Python 3.6 or higher.
Usage
PyResilient provides decorators that can be easily applied to your functions to add resilience features with minimal code changes.
Fallback Decorator
The fallback decorator allows you to apply a fallback strategy to a function. If the original function raises an exception, the fallback function will be executed.
from PyResilient.fallback import fallback
def fallback_function():
print("Executing fallback function")
return "Default value"
@fallback(fallback_function, exceptions=(ValueError,))
def my_function():
raise ValueError("An error occurred")
result = my_function() # Will print "Executing fallback function"
print(result) # Outputs: Default value
Parameters:
fallback_function(callable): The function to execute if an exception is raised.exceptions(tuple of Exception types, optional): The exceptions that trigger the fallback. Defaults to(Exception,).
Retry Decorator
The retry decorator allows you to retry the execution of a function a specific number of times before failing.
from PyResilient.retry import retry
@retry(retries=3, exceptions=(ValueError,), delay=2)
def my_function():
print("Attempting to execute function")
raise ValueError("An error occurred")
my_function()
# Will attempt to execute the function 3 times with a 2-second delay between attempts
Parameters:
retries(int): The maximum number of retry attempts.exceptions(tuple of Exception types, optional): The exceptions that trigger a retry. Defaults to(Exception,).delay(int or float, optional): The delay between retry attempts in seconds. Defaults to0.
Timeout Decorator
The timeout decorator allows you to set a time limit for the execution of a function. If the function does not complete within the specified time, a TimeoutError is raised.
from PyResilient.timeout import timeout
@timeout(seconds=5)
def my_function():
import time
time.sleep(10)
return "Completed"
try:
result = my_function()
except TimeoutError:
print("Function execution timed out")
Parameters:
seconds(int or float): The maximum allowed execution time in seconds.
Note: The timeout decorator uses threading under the hood, which may have implications for thread safety and resource management in your application.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Author
Bastián García
- Email: bastiang@uc.cl
- GitHub: github.com/bastiang96
Acknowledgments
- Inspired by the need for robust error handling mechanisms in Python applications.
- Thanks to the open-source community for their continuous support and contributions.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyresilient-0.0.2.tar.gz.
File metadata
- Download URL: pyresilient-0.0.2.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
352a8297aaf1cb436171d65f8123974932ed9f9c0d8261a39cc862cce9a79211
|
|
| MD5 |
eefa94ad6e5542e4c07a1fbf19842851
|
|
| BLAKE2b-256 |
a1b725eb8331653c70b17ead15572765e684c13a00184d7868ffb10eab56248f
|
File details
Details for the file PyResilient-0.0.2-py3-none-any.whl.
File metadata
- Download URL: PyResilient-0.0.2-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e90fec4bd4f116c9f935855b7434d32533f1f181f6869f0d74a2a96a8072d33d
|
|
| MD5 |
141308404746c880b948128ab944796a
|
|
| BLAKE2b-256 |
8dc1d891b6ad637f68bac8333e74219eb611be29d085d3394f51f720377e518a
|