From b77c5b7abf797e12fdb5df676cf51610b02e94f7 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 22 Jun 2025 02:11:26 +0300 Subject: [PATCH] refactor: updating top level shortcuts --- scrapling/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrapling/__init__.py b/scrapling/__init__.py index 5bcfd47..c6a52c8 100644 --- a/scrapling/__init__.py +++ b/scrapling/__init__.py @@ -34,8 +34,8 @@ def __getattr__(name): from scrapling.fetchers import StealthyFetcher as cls return cls - elif name == "PlayWrightFetcher": - from scrapling.fetchers import PlayWrightFetcher as cls + elif name == "DynamicFetcher": + from scrapling.fetchers import DynamicFetcher as cls return cls elif name == "CustomFetcher": @@ -46,4 +46,4 @@ def __getattr__(name): raise AttributeError(f"module 'scrapling' has no attribute '{name}'") -__all__ = ["Adaptor", "Fetcher", "AsyncFetcher", "StealthyFetcher", "PlayWrightFetcher"] +__all__ = ["Adaptor", "Fetcher", "AsyncFetcher", "StealthyFetcher", "DynamicFetcher"]