Helpers for common functional work done across several projects
Project description
pylib-helpers
Helpers for logging, sleeping, and other common functional work done across projects
RetryHandler
Samples can be found here in the tests
Example usage:
from somelib import ClientError
from helpers import Logger, RetryHandler, Sleeper
LOGGER = Logger()
SLEEPER = Sleeper()
def _client_error(err_obj):
err_msg = str(err_obj)
if "Recoverable" not in err_msg:
raise err_obj
else:
LOGGER.print_error(err_msg)
SLEEPER.normal_sleep()
@RetryHandler(
(ClientError),
max_retries=10,
wait_time=0,
err_callbacks={"ClientError": (_client_error, {})},
).wrap
def do_the_thing(data):
pass
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pylib-helpers-0.3.90.tar.gz
(16.8 kB
view hashes)
Built Distribution
Close
Hashes for pylib_helpers-0.3.90-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 060efe09e9b2eef4eb7bd4dfc97d45354debb10e2fc7350c9b69e6e328ba74f7 |
|
MD5 | 9b8fbdea1a0cb9a3fc7e2652dcccb4f3 |
|
BLAKE2b-256 | cb7a05fcfe67b37811c31d1fbf576dda21f22a70e8cc12db6aa1cbfc3f11db9b |