Skip to main content

Resilient HTTP client with automatic retries and backoff.

Project description

philiprehberger-http-retry

Tests PyPI version Last updated

Resilient HTTP client with automatic retries and configurable backoff.

Installation

pip install philiprehberger-http-retry

Usage

from philiprehberger_http_retry import resilient_get, resilient_post, Session

Simple Requests

# GET request with default retries (3 attempts, exponential backoff)
response = resilient_get("https://api.example.com/data")
print(response.read().decode())

# POST with JSON body
response = resilient_post(
    "https://api.example.com/items",
    json_data={"name": "widget", "count": 5},
)

Backoff Strategies

from philiprehberger_http_retry import resilient_request

# Exponential backoff (default): 0.5s, 1s, 2s, ...
resilient_request("GET", url, backoff="exponential")

# Linear backoff: 0.5s, 1s, 1.5s, ...
resilient_request("GET", url, backoff="linear")

# Constant backoff: 0.5s, 0.5s, 0.5s, ...
resilient_request("GET", url, backoff="constant")

# Custom callable: receives attempt number, returns delay in seconds
resilient_request("GET", url, backoff=lambda attempt: 0.1 * (attempt + 1))

Retry Hook

import logging

def log_retry(attempt: int, error: Exception) -> None:
    logging.warning(f"Retry {attempt}: {error}")

response = resilient_get(
    "https://api.example.com/data",
    on_retry=log_retry,
)

Session with Defaults

session = Session(
    base_url="https://api.example.com",
    default_headers={"Authorization": "Bearer token123"},
    retries=5,
    backoff="linear",
    timeout=15,
    on_retry=log_retry,
)

response = session.get("/users")
response = session.post("/users", json_data={"name": "Alice"})

Error Handling

from philiprehberger_http_retry import resilient_get, RetryExhaustedError

try:
    response = resilient_get("https://unreliable-api.example.com/data")
except RetryExhaustedError as err:
    print(f"Failed after {err.attempts} attempts: {err.last_error}")

API

Function / Class Description
resilient_request(method, url, **kwargs) Core retry function. Supports data, headers, retries, backoff, timeout, retry_on, on_retry.
resilient_get(url, **kwargs) GET convenience wrapper around resilient_request.
resilient_post(url, data=None, json_data=None, **kwargs) POST wrapper. Auto-serializes json_data and sets Content-Type.
Session(base_url, default_headers, retries, backoff, timeout, retry_on, on_retry) Stores defaults. Methods: get(path), post(path).
RetryExhaustedError Raised after all retries fail. Attributes: .attempts, .last_error.

Development

pip install -e .
python -m pytest tests/ -v

Support

If you find this project useful:

Star the repo

🐛 Report issues

💡 Suggest features

❤️ Sponsor development

🌐 All Open Source Projects

💻 GitHub Profile

🔗 LinkedIn Profile

License

MIT

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

philiprehberger_http_retry-0.2.1.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

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

philiprehberger_http_retry-0.2.1-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_http_retry-0.2.1.tar.gz.

File metadata

File hashes

Hashes for philiprehberger_http_retry-0.2.1.tar.gz
Algorithm Hash digest
SHA256 8225b9e73b52bfbb8118bc5b1956c3f1b7fcd1f869eec45d3b775b6549becab0
MD5 896cf4d2c980bd6de5442e94813be068
BLAKE2b-256 47ee99cb5af1e983562aef6862b380c5a08d06091929673d3fa545992a2f19eb

See more details on using hashes here.

File details

Details for the file philiprehberger_http_retry-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_http_retry-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6159351830a908448d9b6b6f42d519e1413d20a16477ae5e3c4ac857652a43b6
MD5 087deab1b3400caa5311134731610d84
BLAKE2b-256 9a706ec68fbbd6709b611d62fb8ea72e3894e4c7cbcbca588fad13e3af6d935d

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