Files
scrapling/service/scrapers/__init__.py

6 lines
171 B
Python

from .fetcher import HttpScraper
from .stealthy import StealthyScraper
from .dynamic import DynamicScraper
__all__ = ["HttpScraper", "StealthyScraper", "DynamicScraper"]