diff --git a/scrapling/defaults.py b/scrapling/defaults.py new file mode 100644 index 0000000..79aa2ff --- /dev/null +++ b/scrapling/defaults.py @@ -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()