Byparr/src/utils/consts.py

23 lines
415 B
Python
Raw Normal View History

2024-07-25 00:06:56 +00:00
import logging
import os
2024-07-24 20:41:57 +00:00
from pathlib import Path
2024-07-25 00:06:56 +00:00
LOG_LEVEL = os.getenv("LOG_LEVEL") or "INFO"
2024-07-25 01:17:40 +00:00
LOG_LEVEL = logging.getLevelName(LOG_LEVEL.upper())
2024-07-25 00:06:56 +00:00
2024-07-24 13:57:40 +00:00
CHALLENGE_TITLES = [
# Cloudflare
"Just a moment...",
# DDoS-GUARD
"DDoS-Guard",
]
EXTENTION_REPOSITIORIES = [
"OhMyGuus/I-Still-Dont-Care-About-Cookies",
"uBlockOrigin/uBOL-home",
]
SLEEP_SECONDS = 1
2024-07-24 15:16:46 +00:00
2024-07-24 20:41:57 +00:00
EXTENTIONS_PATH = Path(".extentions")