From 4e3829fced0f830be5c6de88e3f5ba35d502269e Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 10 Feb 2026 21:20:07 +0200 Subject: [PATCH] style: expose `ProxyRotator` class to the public API --- scrapling/fetchers/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scrapling/fetchers/__init__.py b/scrapling/fetchers/__init__.py index e2e5866..7db355d 100644 --- a/scrapling/fetchers/__init__.py +++ b/scrapling/fetchers/__init__.py @@ -1,4 +1,5 @@ from typing import TYPE_CHECKING, Any +from scrapling.engines.toolbelt import ProxyRotator if TYPE_CHECKING: from scrapling.fetchers.requests import Fetcher, AsyncFetcher, FetcherSession @@ -22,6 +23,7 @@ _LAZY_IMPORTS = { __all__ = [ "Fetcher", "AsyncFetcher", + "ProxyRotator", "FetcherSession", "DynamicFetcher", "DynamicSession",