Adding a file import initialized fetchers for cleaner looking code

and lazy people like me :)
This commit is contained in:
Karim shoair
2024-11-16 21:10:26 +02:00
parent cefc95cc3d
commit 422c135aae
+6
View File
@@ -0,0 +1,6 @@
from .fetchers import Fetcher, StealthyFetcher, PlayWrightFetcher
# If you are going to use Fetchers with the default settings, import them from this file instead for a cleaner looking code
Fetcher = Fetcher()
StealthyFetcher = StealthyFetcher()
PlayWrightFetcher = PlayWrightFetcher()