Skip to main content

Async HTTP client with retry, backoff, and proxy rotation

Project description

resilient-httpx

python coverage

HTTP client with retry, backoff, and proxy rotation. Sync and async. Built on top of httpx, tenacity, and structlog.

Installation

pip install resilient-httpx

Usage

Sync client

from resilient_httpx import ProxyHttpClient, RetryPolicy

with ProxyHttpClient(retry=RetryPolicy(max_attempts=5), timeout=15.0) as client:
    response = client.get("https://api.example.com/data")

Async client

from resilient_httpx import AsyncProxyHttpClient, RetryPolicy

async with AsyncProxyHttpClient(retry=RetryPolicy(max_attempts=5), timeout=15.0) as client:
    response = await client.get("https://api.example.com/data")

With proxy rotation

from resilient_httpx import ProxyHttpClient, RetryPolicy

client = ProxyHttpClient(
    proxies=[
        "http://proxy1:8080",
        "http://user:pass@proxy2:8080",
        "socks5://proxy3:1080",
    ],
    proxy_strategy="round-robin",  # or "random"
    retry=RetryPolicy(max_attempts=5, backoff="exponential"),
    timeout=15.0,
    blacklist_threshold=3,
    blacklist_ttl=300.0,
)

with client:
    response = client.get("https://api.example.com/data")
    data = response.json()

AsyncProxyHttpClient accepts the same parameters:

from resilient_httpx import AsyncProxyHttpClient, RetryPolicy

async with AsyncProxyHttpClient(
    proxies=["http://proxy1:8080", "http://proxy2:8080"],
    retry=RetryPolicy(max_attempts=5, backoff="exponential"),
) as client:
    response = await client.get("https://api.example.com/data")

Custom retry policy

import httpx
from resilient_httpx import RetryPolicy

policy = RetryPolicy(
    max_attempts=5,
    backoff="exponential",       # "exponential" | "fixed" | "random_jitter"
    min_wait=1.0,
    max_wait=30.0,
    retry_on=[429, 500, 502, 503, 504],
    retry_on_exception=[httpx.TimeoutException, httpx.ConnectError],
)

Error handling

from resilient_httpx import ProxyHttpClient, AllProxiesExhausted, MaxRetriesExceeded

with ProxyHttpClient(proxies=proxy_list) as client:
    try:
        response = client.get("https://api.example.com/data")
    except AllProxiesExhausted:
        ...  # all proxies blacklisted
    except MaxRetriesExceeded as exc:
        ...  # retries exhausted, exc.__cause__ has the last error

Configuration Reference

Both ProxyHttpClient and AsyncProxyHttpClient accept the same parameters:

Parameter Type Default Description
proxies list[str] | None None Proxy URLs
proxy_strategy str "round-robin" "round-robin" or "random"
retry RetryPolicy RetryPolicy() Retry configuration
timeout float 30.0 Request timeout in seconds
headers dict[str, str] | None None Default headers
blacklist_threshold int 3 Consecutive failures before blacklisting
blacklist_ttl float 300.0 Blacklist duration in seconds
fallback_to_direct bool False Request without proxy when all are blacklisted

Development

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest

Run with coverage:

pytest --cov=resilient_httpx --cov-report=term-missing

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

resilient_httpx-1.0.0.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

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

resilient_httpx-1.0.0-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file resilient_httpx-1.0.0.tar.gz.

File metadata

  • Download URL: resilient_httpx-1.0.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for resilient_httpx-1.0.0.tar.gz
Algorithm Hash digest
SHA256 eae21f958fabefe7f8270d2fde3693bd7a08e3e2ec76470bb809023fe20ab864
MD5 eb454df7c7a092ee0e62a5c0fb9937ac
BLAKE2b-256 85a88d0e863b288c4cb8ae125c94598ccdab368a8825720aa669d58c512fbea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for resilient_httpx-1.0.0.tar.gz:

Publisher: publish.yml on galthran-wq/resilient-httpx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file resilient_httpx-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for resilient_httpx-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e4f9fb2f847f194f980fd83c5beda02fafacb29ecfdfc51c7ce7bc646007db7
MD5 52a6834a853f5daef86a1a0d18086772
BLAKE2b-256 64e21cc40b184a959bef455d34df26f9ff1e7e648edb0aebb850d40e33f616d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for resilient_httpx-1.0.0-py3-none-any.whl:

Publisher: publish.yml on galthran-wq/resilient-httpx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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