13 lines
500 B
Python
13 lines
500 B
Python
# Declare top-level shortcuts
|
|
from scrapling.core.custom_types import AttributesHandler, TextHandler
|
|
from scrapling.fetchers import (AsyncFetcher, CustomFetcher, Fetcher,
|
|
PlayWrightFetcher, StealthyFetcher)
|
|
from scrapling.parser import Adaptor, Adaptors
|
|
|
|
__author__ = "Karim Shoair (karim.shoair@pm.me)"
|
|
__version__ = "0.2.95"
|
|
__copyright__ = "Copyright (c) 2024 Karim Shoair"
|
|
|
|
|
|
__all__ = ['Adaptor', 'Fetcher', 'AsyncFetcher', 'StealthyFetcher', 'PlayWrightFetcher']
|