2026-06-09 00:15:10 -07:00
|
|
|
"""Backward-compatible shim for the proxy helpers.
|
2026-02-05 20:44:13 -08:00
|
|
|
|
2026-06-09 00:15:10 -07:00
|
|
|
The implementation now lives in the modular :mod:`app.utils.proxy` package.
|
|
|
|
|
Existing imports of ``app.utils.proxy_config`` keep working via these re-exports.
|
|
|
|
|
Prefer importing from ``app.utils.proxy`` (and ``get_proxy_url``) in new code.
|
2026-02-05 20:44:13 -08:00
|
|
|
"""
|
|
|
|
|
|
2026-06-09 00:15:10 -07:00
|
|
|
from app.utils.proxy import (
|
|
|
|
|
get_playwright_proxy,
|
|
|
|
|
get_proxy_url,
|
|
|
|
|
get_requests_proxies,
|
|
|
|
|
get_residential_proxy_url,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"get_playwright_proxy",
|
|
|
|
|
"get_proxy_url",
|
|
|
|
|
"get_requests_proxies",
|
|
|
|
|
"get_residential_proxy_url",
|
|
|
|
|
]
|