Skip to main content

A Python library for handling retries, timeouts and fallbacks in a resilient way.

Project description

PyResilient

PyPI version License: 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

You can install PyResilient using pip:

pip install PyResilient

PyResilient requires Python 3.8 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 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 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 to 0.

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 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

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.
  • Dedicated to felipe hrdina, who says that I never finish my projects xd

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

pyresilient-0.0.5.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

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

PyResilient-0.0.5-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file pyresilient-0.0.5.tar.gz.

File metadata

  • Download URL: pyresilient-0.0.5.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for pyresilient-0.0.5.tar.gz
Algorithm Hash digest
SHA256 4976d26d1d9cf211858213cd33b1fe801543c31127663b5230f859136bc01934
MD5 87fdaca0dd20a29d4982ce4f7681061d
BLAKE2b-256 8d0f05a83636bb804e631d004d76466e76aa06f3faeb85a9bd3bff0dd3c19876

See more details on using hashes here.

File details

Details for the file PyResilient-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: PyResilient-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for PyResilient-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 756a92fbc7be8d4d8d93ef1ad2ec17233fbee7ced6f97bbac07820d6a71f89ae
MD5 df4d3d0147c5d1e246b027b68938fcdd
BLAKE2b-256 07a376b8ef47097575f225af71898874f5e1b389e40e856000205415e67c7fdc

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