Files
Scrapling/scrapling/defaults.py
T
2024-11-30 14:02:06 +02:00

7 lines
287 B
Python

from .fetchers import Fetcher, PlayWrightFetcher, StealthyFetcher
# 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()