From b8afb390aeeade25bb8b6ab9a3d9d086e921c2a4 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 3 Nov 2024 22:43:16 +0200 Subject: [PATCH] Renaming `fetcher` file to `fetchers` for clarity --- scrapling/__init__.py | 2 +- scrapling/{fetcher.py => fetchers.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scrapling/{fetcher.py => fetchers.py} (100%) diff --git a/scrapling/__init__.py b/scrapling/__init__.py index 8323d50..d33f63a 100644 --- a/scrapling/__init__.py +++ b/scrapling/__init__.py @@ -1,5 +1,5 @@ # Declare top-level shortcuts -from scrapling.fetcher import Fetcher, StealthyFetcher, PlayWrightFetcher, CustomFetcher +from scrapling.fetchers import Fetcher, StealthyFetcher, PlayWrightFetcher, CustomFetcher from scrapling.parser import Adaptor, Adaptors from scrapling.core.custom_types import TextHandler, AttributesHandler diff --git a/scrapling/fetcher.py b/scrapling/fetchers.py similarity index 100% rename from scrapling/fetcher.py rename to scrapling/fetchers.py