retrying icon indicating copy to clipboard operation
retrying copied to clipboard

Retrying is an Apache 2.0 licensed general-purpose retrying library, written in Python, to simplify the task of adding retry behavior to just about anything.

Results 53 retrying issues
Sort by recently updated
recently updated
newest added

Stop when specific exceptions occur: e.g. keyboardInterpret

Thanks for this useful package and work over the years. Given that your priorities now lie elsewhere, would you be open to transferring ownership of the PyPI package name to...

I use [mypy](https://mypy-lang.org/) and want to have type hints for retrying to fix this error: ``` error: Skipping analyzing "retrying": module is installed, but missing library stubs or py.typed marker...

Add print_exception attribute for exception printing for every attempt. For example ####Define functions (before_attempts, after_attempts)#### def print_attemt(attempt): print(f"Start Attempt # {attempt}") return attempt def print_attemt_after(attempt): print(f"Attempt # {attempt} was failed")...

Hey guys, could you please create a new release (1.3.4?) from master? I really need the latests commits that are found in master. Thanks in advance :)

Hello, I have a list of items that should be pushed to a stream. Every push command, which is a batch push command, may accept a strict subset of the...

I want to decorate methods of a class with @retry and use a specific method as the "retry_on_exception" function. Issue is of course, that you can not do ```python @retry(retry_on_exception=self.retry_handler)...

**Summary** Installing retrying on aarch64/x86 via pip using command "pip3 install retrying" tries to build wheel from source code **Problem description** retrying doesn't have wheel for aarch64/x86 on PyPI repository....