6 lines
171 B
Python
6 lines
171 B
Python
from .fetcher import HttpScraper
|
|
from .stealthy import StealthyScraper
|
|
from .dynamic import DynamicScraper
|
|
|
|
__all__ = ["HttpScraper", "StealthyScraper", "DynamicScraper"]
|