Files
mai-bot/src/webui/middleware/__init__.py

18 lines
327 B
Python

from .anti_crawler import (
ALLOWED_IPS,
ANTI_CRAWLER_MODE,
TRUST_XFF,
TRUSTED_PROXIES,
AntiCrawlerMiddleware,
create_robots_txt_response,
)
__all__ = [
"AntiCrawlerMiddleware",
"create_robots_txt_response",
"ANTI_CRAWLER_MODE",
"ALLOWED_IPS",
"TRUSTED_PROXIES",
"TRUST_XFF",
]