from pathlib import Path # The base directory of the project. Don't change unless you know why. BASE_DIR = Path(__file__).resolve().parent # File name of the sqlite3 database. Don't change unless you know why. DB_NAME = BASE_DIR / "database.db" # To enable Telegram notifications, insert a bot token and a list of recipient chat IDs TELEGRAM_TOKEN = "" TELEGRAM_RECIPIENT_IDS = []