From fa9d803501ac025a1c56d25d75547c9e4c17d57f Mon Sep 17 00:00:00 2001 From: erfan-karimi <100835460+erfan-karimii@users.noreply.github.com> Date: Thu, 30 Jul 2026 22:31:35 +0330 Subject: [PATCH 1/2] docs: add printing help text --- src/platforms/telegram/starter.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/platforms/telegram/starter.py b/src/platforms/telegram/starter.py index 834eed2..0252afc 100644 --- a/src/platforms/telegram/starter.py +++ b/src/platforms/telegram/starter.py @@ -3,8 +3,13 @@ from repositories.telegram import TelegramRepository from utils.validations import regex_validation +HELP_TEXT = """ +insure to have a channel and a bot, and add the bot to your channel as an admin. +get your bot token from @BotFather and your channel id from @username_to_id_bot +""" def telegram_starter() -> tuple[str, str]: + print(HELP_TEXT) while True: bot_token = input("Enter Your Bot Token: ") if not regex_validation(pattern=TELEGRAM_BOT_TOKEN_REGEX, string=bot_token): From c8cdc63549270f2b31e71f46c60f51d47bd40f16 Mon Sep 17 00:00:00 2001 From: erfan-karimi <100835460+erfan-karimii@users.noreply.github.com> Date: Thu, 30 Jul 2026 22:32:22 +0330 Subject: [PATCH 2/2] chore: ignore and remove SQLite database files from version control --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 83972fa..67794b5 100644 --- a/.gitignore +++ b/.gitignore @@ -60,6 +60,7 @@ cover/ local_settings.py db.sqlite3 db.sqlite3-journal +myfile.db # Flask stuff: instance/